Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | WordPress Page Builder – Beaver Builder |
Version | 1.7.3 |
Comparing to | |
See all releases |
Code changes from version 1.7.1 to 1.7.3
- changelog.txt +25 -0
- classes/class-fl-builder-ajax-layout.php +9 -4
- classes/class-fl-builder-ajax.php +43 -9
- classes/class-fl-builder-model.php +15 -5
- classes/class-fl-builder.php +14 -8
- css/fl-builder-layout.css +3 -3
- fl-builder.php +2 -2
- includes/updater-config.php +1 -1
- js/fl-builder.js +5 -2
- js/fl-builder.min.js +2 -2
- languages/it_IT.mo +0 -0
- languages/it_IT.po +2602 -2768
changelog.txt
CHANGED
@@ -1,3 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h4>1.7.1 - 01/24/2016</h4>
|
2 |
<p><strong>Security</strong></p>
|
3 |
<ul>
|
1 |
+
<h4>1.7.3 - 02/01/2016</h4>
|
2 |
+
<p><strong>Enhancements</strong></p>
|
3 |
+
<ul>
|
4 |
+
<li>Developers can now hook into AJAX requests using the fl_ajax_* hooks.</li>
|
5 |
+
<li>Added the fl_builder_render_js filter for filtering JavaScript cached by the builder.</li>
|
6 |
+
<li>Added the fl_builder_render_shortcodes filter for disabling shortcode parsing by the builder.</li>
|
7 |
+
<li>Added the fl_builder_get_upload_dir and fl_builder_get_cache_dir filters for filtering those paths.</li>
|
8 |
+
<li>Added the fl_builder_before_save_layout and fl_builder_after_save_layout actions for hooking into when layout data is saved .</li>
|
9 |
+
</ul>
|
10 |
+
<p><strong>Bug Fixes</strong></p>
|
11 |
+
<ul>
|
12 |
+
<li>Fixed a bug with vertically centered content in full height rows on iOS devices.</li>
|
13 |
+
<li>Fixed a bug with the read more link not showing in the Posts Slider module when the content is hidden.</li>
|
14 |
+
<li>Fixed a bug with backslashes being stripped out of the layout settings.</li>
|
15 |
+
<li>Fixed a bug with the Pricing Table module buttons caused in 1.7.</li>
|
16 |
+
<li>Fixed a bug with the link field's auto suggest.</li>
|
17 |
+
</ul>
|
18 |
+
|
19 |
+
<h4>1.7.2 - 01/26/2016</h4>
|
20 |
+
<p><strong>Bug Fixes</strong></p>
|
21 |
+
<ul>
|
22 |
+
<li>Fixed an AJAX bug caused in the last update that broke all auto suggest fields.</li>
|
23 |
+
<li>Fixed post status issues when publishing a pending post via the builder. Also fixes published posts becoming pending when the Revisionary plugin is being used.</li>
|
24 |
+
</ul>
|
25 |
+
|
26 |
<h4>1.7.1 - 01/24/2016</h4>
|
27 |
<p><strong>Security</strong></p>
|
28 |
<ul>
|
classes/class-fl-builder-ajax-layout.php
CHANGED
@@ -391,10 +391,15 @@ final class FLBuilderAJAXLayout {
|
|
391 |
// Get the rendered HTML.
|
392 |
$html = ob_get_clean();
|
393 |
|
394 |
-
//
|
395 |
-
|
396 |
-
|
397 |
-
|
|
|
|
|
|
|
|
|
|
|
398 |
}
|
399 |
|
400 |
/**
|
391 |
// Get the rendered HTML.
|
392 |
$html = ob_get_clean();
|
393 |
|
394 |
+
// Render shortcodes.
|
395 |
+
if ( apply_filters( 'fl_builder_render_shortcodes', true ) ) {
|
396 |
+
ob_start();
|
397 |
+
echo do_shortcode( $html );
|
398 |
+
$html = ob_get_clean();
|
399 |
+
}
|
400 |
+
|
401 |
+
// Return the rendered HTML.
|
402 |
+
return $html;
|
403 |
}
|
404 |
|
405 |
/**
|
classes/class-fl-builder-ajax.php
CHANGED
@@ -45,6 +45,7 @@ final class FLBuilderAJAX {
|
|
45 |
static public function add_action( $action, $method, $args = array() )
|
46 |
{
|
47 |
self::$actions[ $action ] = array(
|
|
|
48 |
'method' => $method,
|
49 |
'args' => $args
|
50 |
);
|
@@ -128,14 +129,14 @@ final class FLBuilderAJAX {
|
|
128 |
if ( ! is_user_logged_in() ) {
|
129 |
return;
|
130 |
}
|
131 |
-
|
132 |
-
// Get the $_POST data.
|
133 |
-
$post_data = FLBuilderModel::get_post_data();
|
134 |
|
135 |
// Verify the AJAX nonce.
|
136 |
-
if ( !
|
137 |
return;
|
138 |
}
|
|
|
|
|
|
|
139 |
|
140 |
// Get the post ID.
|
141 |
$post_id = FLBuilderModel::get_post_id();
|
@@ -167,19 +168,26 @@ final class FLBuilderAJAX {
|
|
167 |
}
|
168 |
|
169 |
// Get the action data.
|
170 |
-
$action
|
171 |
-
$args
|
|
|
172 |
|
173 |
// Build the args array.
|
174 |
foreach ( $action['args'] as $arg ) {
|
175 |
-
$args[] = isset( $post_data[ $arg ] ) ? $post_data[ $arg ] : null;
|
176 |
}
|
177 |
|
178 |
// Tell WordPress this is an AJAX request.
|
179 |
define( 'DOING_AJAX', true );
|
|
|
|
|
|
|
180 |
|
181 |
-
// Call the
|
182 |
-
$result = call_user_func_array( $action['method'], $args );
|
|
|
|
|
|
|
183 |
|
184 |
// JSON encode the result.
|
185 |
echo json_encode( $result );
|
@@ -187,4 +195,30 @@ final class FLBuilderAJAX {
|
|
187 |
// Complete the request.
|
188 |
die();
|
189 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
}
|
45 |
static public function add_action( $action, $method, $args = array() )
|
46 |
{
|
47 |
self::$actions[ $action ] = array(
|
48 |
+
'action' => $action,
|
49 |
'method' => $method,
|
50 |
'args' => $args
|
51 |
);
|
129 |
if ( ! is_user_logged_in() ) {
|
130 |
return;
|
131 |
}
|
|
|
|
|
|
|
132 |
|
133 |
// Verify the AJAX nonce.
|
134 |
+
if ( ! self::verify_nonce() ) {
|
135 |
return;
|
136 |
}
|
137 |
+
|
138 |
+
// Get the $_POST data.
|
139 |
+
$post_data = FLBuilderModel::get_post_data();
|
140 |
|
141 |
// Get the post ID.
|
142 |
$post_id = FLBuilderModel::get_post_id();
|
168 |
}
|
169 |
|
170 |
// Get the action data.
|
171 |
+
$action = self::$actions[ $action ];
|
172 |
+
$args = array();
|
173 |
+
$keys_args = array();
|
174 |
|
175 |
// Build the args array.
|
176 |
foreach ( $action['args'] as $arg ) {
|
177 |
+
$args[] = $keys_args[ $arg ] = isset( $post_data[ $arg ] ) ? $post_data[ $arg ] : null;
|
178 |
}
|
179 |
|
180 |
// Tell WordPress this is an AJAX request.
|
181 |
define( 'DOING_AJAX', true );
|
182 |
+
|
183 |
+
// Allow developers to hook before the action runs.
|
184 |
+
do_action( 'fl_ajax_before_' . $action['action'], $keys_args );
|
185 |
|
186 |
+
// Call the action and allow developers to filter the result.
|
187 |
+
$result = apply_filters( 'fl_ajax_' . $action['action'], call_user_func_array( $action['method'], $args ), $keys_args );
|
188 |
+
|
189 |
+
// Allow developers to hook after the action runs.
|
190 |
+
do_action( 'fl_ajax_after_' . $action['action'], $keys_args );
|
191 |
|
192 |
// JSON encode the result.
|
193 |
echo json_encode( $result );
|
195 |
// Complete the request.
|
196 |
die();
|
197 |
}
|
198 |
+
|
199 |
+
/**
|
200 |
+
* Checks to make sure the AJAX nonce is valid.
|
201 |
+
*
|
202 |
+
* @since 1.7.2
|
203 |
+
* @access private
|
204 |
+
* @return bool
|
205 |
+
*/
|
206 |
+
static private function verify_nonce()
|
207 |
+
{
|
208 |
+
$post_data = FLBuilderModel::get_post_data();
|
209 |
+
$nonce = false;
|
210 |
+
|
211 |
+
if ( isset( $post_data['_wpnonce'] ) ) {
|
212 |
+
$nonce = $post_data['_wpnonce'];
|
213 |
+
}
|
214 |
+
else if ( isset( $_REQUEST['_wpnonce'] ) ) {
|
215 |
+
$nonce = $_REQUEST['_wpnonce'];
|
216 |
+
}
|
217 |
+
|
218 |
+
if ( ! $nonce || ! wp_verify_nonce( $nonce, 'fl_ajax_update' ) ) {
|
219 |
+
return false;
|
220 |
+
}
|
221 |
+
|
222 |
+
return true;
|
223 |
+
}
|
224 |
}
|
classes/class-fl-builder-model.php
CHANGED
@@ -497,7 +497,7 @@ final class FLBuilderModel {
|
|
497 |
mkdir( $dir_info['path'] );
|
498 |
}
|
499 |
|
500 |
-
return $dir_info;
|
501 |
}
|
502 |
|
503 |
/**
|
@@ -529,7 +529,7 @@ final class FLBuilderModel {
|
|
529 |
mkdir( $dir_info['path'] );
|
530 |
}
|
531 |
|
532 |
-
return $dir_info;
|
533 |
}
|
534 |
|
535 |
/**
|
@@ -2975,7 +2975,7 @@ final class FLBuilderModel {
|
|
2975 |
$old_settings = self::get_layout_settings( $status, $post_id );
|
2976 |
$new_settings = (object)array_merge( (array)$old_settings, (array)$settings );
|
2977 |
|
2978 |
-
update_metadata( 'post', $post_id, $key, $new_settings );
|
2979 |
|
2980 |
return $new_settings;
|
2981 |
}
|
@@ -3083,6 +3083,9 @@ final class FLBuilderModel {
|
|
3083 |
$post_id = self::get_post_id();
|
3084 |
$data = self::get_layout_data('draft', $post_id);
|
3085 |
$settings = self::get_layout_settings('draft', $post_id);
|
|
|
|
|
|
|
3086 |
|
3087 |
// Delete the old published layout.
|
3088 |
self::delete_layout_data('published', $post_id);
|
@@ -3104,10 +3107,14 @@ final class FLBuilderModel {
|
|
3104 |
|
3105 |
// Publish the post?
|
3106 |
if ( $publish ) {
|
|
|
|
|
|
|
|
|
3107 |
if ( current_user_can( 'publish_posts' ) ) {
|
3108 |
-
$post_status =
|
3109 |
}
|
3110 |
-
else {
|
3111 |
$post_status = 'pending';
|
3112 |
}
|
3113 |
}
|
@@ -3118,6 +3125,9 @@ final class FLBuilderModel {
|
|
3118 |
'post_status' => $post_status,
|
3119 |
'post_content' => $editor_content
|
3120 |
));
|
|
|
|
|
|
|
3121 |
}
|
3122 |
|
3123 |
/**
|
497 |
mkdir( $dir_info['path'] );
|
498 |
}
|
499 |
|
500 |
+
return apply_filters( 'fl_builder_get_upload_dir', $dir_info );
|
501 |
}
|
502 |
|
503 |
/**
|
529 |
mkdir( $dir_info['path'] );
|
530 |
}
|
531 |
|
532 |
+
return apply_filters( 'fl_builder_get_cache_dir', $dir_info );
|
533 |
}
|
534 |
|
535 |
/**
|
2975 |
$old_settings = self::get_layout_settings( $status, $post_id );
|
2976 |
$new_settings = (object)array_merge( (array)$old_settings, (array)$settings );
|
2977 |
|
2978 |
+
update_metadata( 'post', $post_id, $key, self::slash_settings( $new_settings ) );
|
2979 |
|
2980 |
return $new_settings;
|
2981 |
}
|
3083 |
$post_id = self::get_post_id();
|
3084 |
$data = self::get_layout_data('draft', $post_id);
|
3085 |
$settings = self::get_layout_settings('draft', $post_id);
|
3086 |
+
|
3087 |
+
// Fire the before action.
|
3088 |
+
do_action( 'fl_builder_before_save_layout', $post_id, $publish, $data, $settings );
|
3089 |
|
3090 |
// Delete the old published layout.
|
3091 |
self::delete_layout_data('published', $post_id);
|
3107 |
|
3108 |
// Publish the post?
|
3109 |
if ( $publish ) {
|
3110 |
+
|
3111 |
+
$is_draft = strstr($post_status, 'draft');
|
3112 |
+
$is_pending = strstr($post_status, 'pending');
|
3113 |
+
|
3114 |
if ( current_user_can( 'publish_posts' ) ) {
|
3115 |
+
$post_status = $is_draft || $is_pending ? 'publish' : $post_status;
|
3116 |
}
|
3117 |
+
else if( $is_draft ) {
|
3118 |
$post_status = 'pending';
|
3119 |
}
|
3120 |
}
|
3125 |
'post_status' => $post_status,
|
3126 |
'post_content' => $editor_content
|
3127 |
));
|
3128 |
+
|
3129 |
+
// Fire the after action.
|
3130 |
+
do_action( 'fl_builder_after_save_layout', $post_id, $publish, $data, $settings );
|
3131 |
}
|
3132 |
|
3133 |
/**
|
classes/class-fl-builder.php
CHANGED
@@ -821,9 +821,11 @@ final class FLBuilder {
|
|
821 |
add_filter( 'the_content', 'FLBuilder::render_content' );
|
822 |
|
823 |
// Do shortcodes here since letting the WP filter run can cause an infinite loop.
|
824 |
-
|
825 |
-
|
826 |
-
|
|
|
|
|
827 |
|
828 |
// Add srcset attrs to images with the class wp-image-<ID>.
|
829 |
if ( function_exists( 'wp_make_content_images_responsive' ) ) {
|
@@ -2272,6 +2274,8 @@ final class FLBuilder {
|
|
2272 |
// Save the js
|
2273 |
if(!empty($js)) {
|
2274 |
|
|
|
|
|
2275 |
if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG ) {
|
2276 |
$js = FLJSMin::minify( $js );
|
2277 |
}
|
@@ -2425,15 +2429,17 @@ final class FLBuilder {
|
|
2425 |
}
|
2426 |
|
2427 |
/**
|
2428 |
-
* Custom
|
2429 |
*
|
2430 |
* @since 1.0
|
2431 |
* @return void
|
2432 |
*/
|
2433 |
-
static public function log(
|
2434 |
{
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
|
|
|
|
2438 |
}
|
2439 |
}
|
821 |
add_filter( 'the_content', 'FLBuilder::render_content' );
|
822 |
|
823 |
// Do shortcodes here since letting the WP filter run can cause an infinite loop.
|
824 |
+
if ( apply_filters( 'fl_builder_render_shortcodes', true ) ) {
|
825 |
+
$pattern = get_shortcode_regex();
|
826 |
+
$content = preg_replace_callback( "/$pattern/s", 'FLBuilder::double_escape_shortcodes', $content );
|
827 |
+
$content = do_shortcode( $content );
|
828 |
+
}
|
829 |
|
830 |
// Add srcset attrs to images with the class wp-image-<ID>.
|
831 |
if ( function_exists( 'wp_make_content_images_responsive' ) ) {
|
2274 |
// Save the js
|
2275 |
if(!empty($js)) {
|
2276 |
|
2277 |
+
$js = apply_filters( 'fl_builder_render_js', $js, $nodes, $global_settings );
|
2278 |
+
|
2279 |
if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG ) {
|
2280 |
$js = FLJSMin::minify( $js );
|
2281 |
}
|
2429 |
}
|
2430 |
|
2431 |
/**
|
2432 |
+
* Custom logging function that handles objects and arrays.
|
2433 |
*
|
2434 |
* @since 1.0
|
2435 |
* @return void
|
2436 |
*/
|
2437 |
+
static public function log()
|
2438 |
{
|
2439 |
+
foreach ( func_get_args() as $arg ) {
|
2440 |
+
ob_start();
|
2441 |
+
print_r( $arg );
|
2442 |
+
error_log( ob_get_clean() );
|
2443 |
+
}
|
2444 |
}
|
2445 |
}
|
css/fl-builder-layout.css
CHANGED
@@ -199,7 +199,7 @@
|
|
199 |
*/
|
200 |
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
|
201 |
.fl-row-full-height .fl-row-content-wrap{
|
202 |
-
height: 1024px;
|
203 |
}
|
204 |
}
|
205 |
|
@@ -208,7 +208,7 @@
|
|
208 |
*/
|
209 |
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
|
210 |
.fl-row-full-height .fl-row-content-wrap{
|
211 |
-
height: 768px;
|
212 |
}
|
213 |
}
|
214 |
|
@@ -218,7 +218,7 @@
|
|
218 |
*/
|
219 |
@media screen and (device-aspect-ratio: 40/71) {
|
220 |
.fl-row-full-height .fl-row-content-wrap {
|
221 |
-
height: 500px;
|
222 |
}
|
223 |
}
|
224 |
|
199 |
*/
|
200 |
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
|
201 |
.fl-row-full-height .fl-row-content-wrap{
|
202 |
+
min-height: 1024px;
|
203 |
}
|
204 |
}
|
205 |
|
208 |
*/
|
209 |
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
|
210 |
.fl-row-full-height .fl-row-content-wrap{
|
211 |
+
min-height: 768px;
|
212 |
}
|
213 |
}
|
214 |
|
218 |
*/
|
219 |
@media screen and (device-aspect-ratio: 40/71) {
|
220 |
.fl-row-full-height .fl-row-content-wrap {
|
221 |
+
min-height: 500px;
|
222 |
}
|
223 |
}
|
224 |
|
fl-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
-
* Version: 1.7.
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
@@ -11,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.7.
|
15 |
define('FL_BUILDER_FILE', __FILE__);
|
16 |
define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
|
17 |
define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
+
* Version: 1.7.3
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
+
define('FL_BUILDER_VERSION', '1.7.3');
|
15 |
define('FL_BUILDER_FILE', __FILE__);
|
16 |
define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
|
17 |
define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
|
includes/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.7.
|
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.7.3',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
js/fl-builder.js
CHANGED
@@ -4680,7 +4680,8 @@
|
|
4680 |
field.autoSuggest(FLBuilder._ajaxUrl({
|
4681 |
'fl_action' : 'fl_builder_autosuggest',
|
4682 |
'fl_as_action' : field.data('action'),
|
4683 |
-
'fl_as_action_data' : field.data('action-data')
|
|
|
4684 |
}), {
|
4685 |
asHtmlID : field.attr('name'),
|
4686 |
selectedItemProp : 'name',
|
@@ -5532,6 +5533,7 @@
|
|
5532 |
FLBuilder.ajax({
|
5533 |
action: 'render_settings_form',
|
5534 |
node_id: form.attr('data-node'),
|
|
|
5535 |
type: type,
|
5536 |
settings: settings.replace(/'/g, "'")
|
5537 |
},
|
@@ -5717,7 +5719,8 @@
|
|
5717 |
|
5718 |
searchInput.autoSuggest(FLBuilder._ajaxUrl({
|
5719 |
'fl_action' : 'fl_builder_autosuggest',
|
5720 |
-
'fl_as_action' : 'fl_as_links'
|
|
|
5721 |
}), {
|
5722 |
asHtmlID : searchInput.attr('name'),
|
5723 |
selectedItemProp : 'name',
|
4680 |
field.autoSuggest(FLBuilder._ajaxUrl({
|
4681 |
'fl_action' : 'fl_builder_autosuggest',
|
4682 |
'fl_as_action' : field.data('action'),
|
4683 |
+
'fl_as_action_data' : field.data('action-data'),
|
4684 |
+
'_wpnonce' : FLBuilderConfig.ajaxNonce
|
4685 |
}), {
|
4686 |
asHtmlID : field.attr('name'),
|
4687 |
selectedItemProp : 'name',
|
5533 |
FLBuilder.ajax({
|
5534 |
action: 'render_settings_form',
|
5535 |
node_id: form.attr('data-node'),
|
5536 |
+
node_settings: FLBuilder._getSettings(form),
|
5537 |
type: type,
|
5538 |
settings: settings.replace(/'/g, "'")
|
5539 |
},
|
5719 |
|
5720 |
searchInput.autoSuggest(FLBuilder._ajaxUrl({
|
5721 |
'fl_action' : 'fl_builder_autosuggest',
|
5722 |
+
'fl_as_action' : 'fl_as_links',
|
5723 |
+
'_wpnonce' : FLBuilderConfig.ajaxNonce
|
5724 |
}), {
|
5725 |
asHtmlID : searchInput.attr('name'),
|
5726 |
selectedItemProp : 'name',
|
js/fl-builder.min.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
!function(e){FLBuilderAJAXLayout=function(t,l){this._data=e.extend({},this._defaults,"string"==typeof t?JSON.parse(t):t),this._callback=l,this._post=e("#fl-post-id").val(),this._head=e("head").eq(0),this._body=e("body").eq(0),this._data.css&&(this._loader=e('<img src="'+this._data.css+'" />'),this._oldCss=e('link[href*="/cache/'+this._post+'"]'),this._newCss=e('<link rel="stylesheet" id="fl-builder-layout-'+this._post+'-css" href="'+this._data.css+'" />')),this._data.partial?(this._data.js&&(this._oldJs=e("#fl-builder-partial-refresh-js"),this._newJs=e('<script type="text/javascript" id="fl-builder-partial-refresh-js">'+this._data.js+"</script>")),this._data.nodeId&&(this._data.oldNodeId?(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.oldNodeId+'"]'),this._content=e(".fl-node-"+this._data.oldNodeId)):(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.nodeId+'"]'),this._content=e(".fl-node-"+this._data.nodeId)))):(this._oldJs=e('script[src*="/cache/'+this._post+'"]'),this._newJs=e('<script src="'+this._data.js+'"></script>'),this._oldScriptsStyles=e(".fl-builder-layout-scripts-styles"),this._content=e(FLBuilder._contentClass)),this._init()},FLBuilderAJAXLayout.prototype={_defaults:{partial:!1,nodeId:null,nodeType:null,nodeParent:null,nodePosition:null,oldNodeId:null,html:null,scriptsStyles:null,css:null,js:null},_data:null,_callback:function(){},_post:null,_head:null,_body:null,_loader:null,_oldCss:null,_newCss:null,_oldJs:null,_newJs:null,_oldScriptsStyles:null,_content:null,_init:function(){this._body.height(this._body.height()),this._loader?(this._loader.on("error",e.proxy(this._loadNewCSSComplete,this)),this._body.append(this._loader)):this._finish()},_loadNewCSSComplete:function(){this._loader.remove(),this._oldCss.length>0?this._oldCss.after(this._newCss):this._head.append(this._newCss),setTimeout(e.proxy(this._finish,this),250)},_finish:function(){this._removeOldContentAndAssets(),this._cleanNewHTML(),this._cleanNewAssets(),this._addNewHTML(),this._addNewScriptsStyles(),this._addNewJS(),e(FLBuilder._contentClass).trigger("fl-builder.layout-rendered"),FLBuilder.hideAjaxLoader(),"undefined"!=typeof this._callback&&this._callback()},_removeOldContentAndAssets:function(){this._content&&this._content.empty(),this._oldCss&&this._oldCss.remove(),this._oldJs&&this._oldJs.remove(),this._oldScriptsStyles&&this._oldScriptsStyles.remove()},_cleanNewHTML:function(){if(this._data.scriptsStyles){var t=e("<div>"+this._data.html+"</div>"),l="fl-row",i=this._data.scriptsStyles,o="";this._data.partial&&(l="column-group"==this._data.nodeType?"fl-col-group":"column"==this._data.nodeType?"fl-col":"fl-"+this._data.nodeType),t.find("> *").each(function(){e(this).hasClass(l)||(o=e(this).remove(),i+=o[0].outerHTML)}),""!==i&&(i=this._data.partial?'<div class="fl-builder-node-scripts-styles" data-node="'+this._data.nodeId+'">'+i+"<div>":'<div class="fl-builder-node-scripts-styles">'+i+"<div>"),this._data.html=t.html(),this._data.scriptsStyles=i}},_addNewHTML:function(){var e;this._data.partial?this._data.nodeParent?(e=this._data.nodeParent.hasClass("fl-builder-content")?this._data.nodeParent.find(".fl-row"):this._data.nodeParent.hasClass("fl-row-content")?this._data.nodeParent.find(".fl-col-group"):this._data.nodeParent.find(".fl-module"),0===e.length||e.length==this._data.nodePosition?this._data.nodeParent.append(this._data.html):e.eq(this._data.nodePosition).before(this._data.html)):(this._content.after(this._data.html),this._content.remove()):this._content.append(this._data.html)},_cleanNewAssets:function(){var t=this;this._data.html=this._removeDuplicateAssets(this._data.html),this._data.scriptsStyles&&""!==this._data.scriptsStyles&&(this._data.scriptsStyles=this._removeDuplicateAssets(this._data.scriptsStyles)),this._data.partial?e(".fl-builder-node-scripts-styles").each(function(){t._data.html.indexOf("fl-node-"+e(this).data("node"))>-1&&e(this).remove()}):(e("#fl-builder-partial-refresh-js").remove(),e(".fl-builder-node-scripts-styles").remove())},_removeDuplicateAssets:function(t){var l=e("<div>"+t+"</div>"),i="",o=null,s="",r=null,n=window.location,a=n.protocol+"//"+n.hostname+(n.port?":"+n.port:"");return l.find("script").each(function(){i=e(this).attr("src"),"undefined"!=typeof i&&(i=i.replace(a,""),o=e('script[src*="'+i+'"]'),o.length>0&&e(this).remove())}),l.find("link").each(function(){s=e(this).attr("href"),"undefined"!=typeof s&&(s=s.replace(a,""),r=e('link[href*="'+s+'"]'),r.length>0&&e(this).remove())}),l.html()},_addNewScriptsStyles:function(){this._data.scriptsStyles&&""!==this._data.scriptsStyles&&this._body.append(this._data.scriptsStyles)},_addNewJS:function(){setTimeout(e.proxy(function(){this._newJs&&this._head.append(this._newJs)},this),50)},_complete:function(){FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._initSortables(),FLBuilder._resizeLayout(),FLBuilder._initMediaElements(),FLBuilderLayout.init(),this._body.height("auto")}}}(jQuery),function(e){FLBuilderPreview=function(t){this.type=t.type,"undefined"!=t.state&&t.state?this.state=t.state:this._saveState(),"undefined"!=t.layout&&t.layout?FLBuilder._renderLayout(t.layout,e.proxy(this._init,this)):this._init()},FLBuilderPreview._fontsList={},FLBuilderPreview.prototype={type:"",nodeId:null,classes:{},elements:{},state:null,_savedSettings:null,_styleSheet:null,_timeout:null,_lastClassName:null,_xhr:null,_init:function(){switch(this.nodeId=e(".fl-builder-settings").data("node"),this._saveSettings(),this._initElementsAndClasses(),this._initDefaultFieldPreviews(),this.type){case"row":this._initRow();break;case"col":this._initColumn();break;case"module":this._initModule()}},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings");this._savedSettings=FLBuilder._getSettings(t)},_settingsHaveChanged:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=FLBuilder._getSettings(t);return JSON.stringify(this._savedSettings)!=JSON.stringify(l)},_initElementsAndClasses:function(){var t;t="row"==this.type?".fl-row-content-wrap":".fl-"+this.type+"-content",e.extend(this.classes,{settings:".fl-builder-"+this.type+"-settings",settingsHeader:".fl-builder-"+this.type+"-settings .fl-lightbox-header",node:FLBuilder._contentClass+" .fl-node-"+this.nodeId,content:FLBuilder._contentClass+" .fl-node-"+this.nodeId+" "+t}),e.extend(this.elements,{settings:e(this.classes.settings),settingsHeader:e(this.classes.settingsHeader),node:e(this.classes.node),content:e(this.classes.content)})},updateCSSRule:function(e,t,l){this._styleSheet||(this._styleSheet=new FLStyleSheet),this._styleSheet.updateRule(e,t,l)},delay:function(e,t){this._cancelDelay(),this._timeout=setTimeout(t,e)},_cancelDelay:function(){null!==this._timeout&&clearTimeout(this._timeout)},hexToRgb:function(e){var t=parseInt(e,16),l=t>>16&255,i=t>>8&255,o=255&t;return[l,i,o]},parseFloat:function(e){return isNaN(parseFloat(e))?0:parseFloat(e)},_saveState:function(){var t=e("#fl-post-id").val(),l=e('link[href*="/cache/'+t+'"]').attr("href"),i=e('script[src*="/cache/'+t+'"]').attr("src"),o=e(FLBuilder._contentClass).html();this.state={css:l,js:i,html:o}},preview:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);this._cancelPreview(),this._xhr=FLBuilder.ajax({action:"render_layout",node_id:l,node_preview:i},e.proxy(this._renderPreview,this))},delayPreview:function(t){var l="undefined"==typeof t?[]:e(t.target).closest("tr").find("th"),i=e(".fl-builder-widget-settings .fl-builder-settings-title"),o=e(".fl-builder-settings .fl-lightbox-header"),s=FLBuilderLayoutConfig.paths.pluginUrl+"img/ajax-loader-small.gif",r=e('<img class="fl-builder-preview-loader" src="'+s+'" />');e(".fl-builder-preview-loader").remove(),l.length>0?l.append(r):i.length>0?i.append(r):o.length>0&&o.append(r),this.delay(1e3,e.proxy(this.preview,this))},_cancelPreview:function(){this._xhr&&(this._xhr.abort(),this._xhr=null)},_renderPreview:function(t){this._xhr=null,FLBuilder._renderLayout(t,e.proxy(this._renderPreviewComplete,this))},_renderPreviewComplete:function(){this._initElementsAndClasses(),e(".fl-builder-preview-loader").remove(),e(FLBuilder._contentClass).trigger("fl-builder.preview-rendered")},revert:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&this._styleSheet.remove(),this._settingsHaveChanged()&&FLBuilder._renderLayout(this.state)},clear:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&(this._styleSheet.remove(),this._styleSheet=null)},_initNodeTextColor:function(){e.extend(this.elements,{textColor:e(this.classes.settings+" input[name=text_color]"),linkColor:e(this.classes.settings+" input[name=link_color]"),hoverColor:e(this.classes.settings+" input[name=hover_color]"),headingColor:e(this.classes.settings+" input[name=heading_color]")}),this.elements.textColor.on("change",e.proxy(this._textColorChange,this)),this.elements.linkColor.on("change",e.proxy(this._textColorChange,this)),this.elements.hoverColor.on("change",e.proxy(this._textColorChange,this)),this.elements.headingColor.on("change",e.proxy(this._textColorChange,this))},_textColorChange:function(t){var l=this.elements.textColor.val(),i=this.elements.linkColor.val(),o=this.elements.hoverColor.val(),s=this.elements.headingColor.val();i=""===i?l:i,o=""===o?l:o,s=""===s?l:s,this.delay(100,e.proxy(function(){""===l?this.updateCSSRule(this.classes.node,"color","inherit"):this.updateCSSRule(this.classes.node,"color","#"+l),""===i?this.updateCSSRule(this.classes.node+" a","color","inherit"):this.updateCSSRule(this.classes.node+" a","color","#"+i),""===o?this.updateCSSRule(this.classes.node+" a:hover","color","inherit"):this.updateCSSRule(this.classes.node+" a:hover","color","#"+o),""===s?(this.updateCSSRule(this.classes.node+" h1","color","inherit"),this.updateCSSRule(this.classes.node+" h2","color","inherit"),this.updateCSSRule(this.classes.node+" h3","color","inherit"),this.updateCSSRule(this.classes.node+" h4","color","inherit"),this.updateCSSRule(this.classes.node+" h5","color","inherit"),this.updateCSSRule(this.classes.node+" h6","color","inherit"),this.updateCSSRule(this.classes.node+" h1 a","color","inherit"),this.updateCSSRule(this.classes.node+" h2 a","color","inherit"),this.updateCSSRule(this.classes.node+" h3 a","color","inherit"),this.updateCSSRule(this.classes.node+" h4 a","color","inherit"),this.updateCSSRule(this.classes.node+" h5 a","color","inherit"),this.updateCSSRule(this.classes.node+" h6 a","color","inherit")):(this.updateCSSRule(this.classes.node+" h1","color","#"+s),this.updateCSSRule(this.classes.node+" h2","color","#"+s),this.updateCSSRule(this.classes.node+" h3","color","#"+s),this.updateCSSRule(this.classes.node+" h4","color","#"+s),this.updateCSSRule(this.classes.node+" h5","color","#"+s),this.updateCSSRule(this.classes.node+" h6","color","#"+s),this.updateCSSRule(this.classes.node+" h1 a","color","#"+s),this.updateCSSRule(this.classes.node+" h2 a","color","#"+s),this.updateCSSRule(this.classes.node+" h3 a","color","#"+s),this.updateCSSRule(this.classes.node+" h4 a","color","#"+s),this.updateCSSRule(this.classes.node+" h5 a","color","#"+s),this.updateCSSRule(this.classes.node+" h6 a","color","#"+s))},this))},_initNodeBg:function(){e.extend(this.elements,{bgType:e(this.classes.settings+" select[name=bg_type]"),bgColor:e(this.classes.settings+" input[name=bg_color]"),bgColorPicker:e(this.classes.settings+" .fl-picker-bg_color"),bgOpacity:e(this.classes.settings+" input[name=bg_opacity]"),bgImageSrc:e(this.classes.settings+" select[name=bg_image_src]"),bgRepeat:e(this.classes.settings+" select[name=bg_repeat]"),bgPosition:e(this.classes.settings+" select[name=bg_position]"),bgAttachment:e(this.classes.settings+" select[name=bg_attachment]"),bgSize:e(this.classes.settings+" select[name=bg_size]"),bgVideo:e(this.classes.settings+" input[name=bg_video]"),bgVideoFallbackSrc:e(this.classes.settings+" select[name=bg_video_fallback_src]"),bgSlideshowSource:e(this.classes.settings+" select[name=ss_source]"),bgSlideshowPhotos:e(this.classes.settings+" input[name=ss_photos]"),bgSlideshowFeedUrl:e(this.classes.settings+" input[name=ss_feed_url]"),bgSlideshowSpeed:e(this.classes.settings+" input[name=ss_speed]"),bgSlideshowTrans:e(this.classes.settings+" select[name=ss_transition]"),bgSlideshowTransSpeed:e(this.classes.settings+" input[name=ss_transitionDuration]"),bgParallaxImageSrc:e(this.classes.settings+" select[name=bg_parallax_image_src]"),bgOverlayColor:e(this.classes.settings+" input[name=bg_overlay_color]"),bgOverlayOpacity:e(this.classes.settings+" input[name=bg_overlay_opacity]")}),this.elements.bgType.on("change",e.proxy(this._bgTypeChange,this)),this.elements.bgColor.on("change",e.proxy(this._bgColorChange,this)),this.elements.bgOpacity.on("keyup",e.proxy(this._bgOpacityChange,this)),this.elements.bgImageSrc.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgRepeat.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgPosition.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgAttachment.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSize.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSlideshowSource.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowPhotos.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowFeedUrl.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTrans.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTransSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgParallaxImageSrc.on("change",e.proxy(this._bgParallaxChange,this)),this.elements.bgOverlayColor.on("change",e.proxy(this._bgOverlayChange,this)),this.elements.bgOverlayOpacity.on("keyup",e.proxy(this._bgOverlayChange,this))},_bgTypeChange:function(e){var t=this.elements.bgType.val();this.elements.node.removeClass("fl-row-bg-video"),this.elements.node.removeClass("fl-row-bg-slideshow"),this.elements.node.removeClass("fl-row-bg-parallax"),this.elements.node.find(".fl-bg-video").remove(),this.elements.node.find(".fl-bg-slideshow").remove(),this.elements.content.css("background-image",""),this.updateCSSRule(this.classes.content,{"background-color":"transparent","background-image":"none"}),"none"==t?this._bgOverlayClear():"color"==t?(this.elements.bgColor.trigger("change"),this._bgOverlayClear()):"photo"==t?(this.elements.bgColor.trigger("change"),this.elements.bgImageSrc.trigger("change")):"video"==t?(this.elements.bgColor.trigger("change"),""!=this.elements.bgVideo.val()&&this.preview()):"slideshow"==t?(this.elements.bgColor.trigger("change"),this._bgSlideshowChange()):"parallax"==t&&(this.elements.bgColor.trigger("change"),this.elements.bgParallaxImageSrc.trigger("change"))},_bgColorChange:function(t){var l,i,o;""===this.elements.bgColor.val()||isNaN(this.elements.bgOpacity.val())?this.updateCSSRule(this.classes.content,"background-color","transparent"):(l=this.hexToRgb(this.elements.bgColor.val()),i=this.parseFloat(this.elements.bgOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"background-color",o)},this)))},_bgOpacityChange:function(e){this.elements.bgColor.trigger("change")},_bgPhotoChange:function(e){this.elements.bgImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgImageSrc.val()+")","background-repeat":this.elements.bgRepeat.val(),"background-position":this.elements.bgPosition.val(),"background-attachment":this.elements.bgAttachment.val(),"background-size":this.elements.bgSize.val()})},_bgSlideshowChange:function(t){var l=this.elements,i=l.bgSlideshowSource.val(),o=l.bgSlideshowPhotos.val(),s=l.bgSlideshowFeedUrl.val(),r=l.bgSlideshowSpeed.val(),n=l.bgSlideshowTransSpeed.val();("wordpress"!=i||""!==o)&&("smugmug"!=i||""!==s)&&(isNaN(parseInt(r))||isNaN(parseInt(n))||this.delay(500,e.proxy(this.preview,this)))},_bgParallaxChange:function(e){this.elements.bgParallaxImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgParallaxImageSrc.val()+")","background-repeat":"no-repeat","background-position":"center center","background-attachment":"fixed","background-size":"cover"})},_bgOverlayChange:function(t){var l,i,o;""===this.elements.bgOverlayColor.val()||isNaN(this.elements.bgOverlayOpacity.val())?(this.elements.node.removeClass("fl-row-bg-overlay"),this.elements.node.removeClass("fl-col-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color","transparent")):(l=this.hexToRgb(this.elements.bgOverlayColor.val()),i=this.parseFloat(this.elements.bgOverlayOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.elements.node.hasClass("fl-col")?this.elements.node.addClass("fl-col-bg-overlay"):this.elements.node.addClass("fl-row-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color",o)},this)))},_bgOverlayClear:function(e){this.elements.bgOverlayColor.prev(".fl-color-picker-clear").trigger("click")},_initNodeBorder:function(){e.extend(this.elements,{borderType:e(this.classes.settings+" select[name=border_type]"),borderColor:e(this.classes.settings+" input[name=border_color]"),borderColorPicker:e(this.classes.settings+" .fl-picker-border_color"),borderOpacity:e(this.classes.settings+" input[name=border_opacity]"),borderTopWidth:e(this.classes.settings+" input[name=border_top]"),borderBottomWidth:e(this.classes.settings+" input[name=border_bottom]"),borderLeftWidth:e(this.classes.settings+" input[name=border_left]"),borderRightWidth:e(this.classes.settings+" input[name=border_right]")}),this.elements.borderType.on("change",e.proxy(this._borderTypeChange,this)),this.elements.borderColor.on("change",e.proxy(this._borderColorChange,this)),this.elements.borderOpacity.on("keyup",e.proxy(this._borderOpacityChange,this)),this.elements.borderTopWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderBottomWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderLeftWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderRightWidth.on("keyup",e.proxy(this._borderWidthChange,this))},_borderTypeChange:function(e){var t=this.elements.borderType.val();this.updateCSSRule(this.classes.content,{"border-style":""===t?"none":t}),this.elements.borderColor.trigger("change"),this.elements.borderTopWidth.trigger("keyup")},_borderColorChange:function(t){var l,i,o;""===this.elements.borderColor.val()||isNaN(this.elements.borderOpacity.val())?this.updateCSSRule(this.classes.content,"border-color","transparent"):(l=this.hexToRgb(this.elements.borderColor.val()),i=parseInt(this.elements.borderOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"border-color",o)},this)))},_borderOpacityChange:function(e){this.elements.borderColor.trigger("change")},_getBorderWidths:function(e){var t=this.elements.borderTopWidth.val(),l=this.elements.borderBottomWidth.val(),i=this.elements.borderLeftWidth.val(),o=this.elements.borderRightWidth.val();return""===t&&(t=this.elements.borderTopWidth.attr("placeholder")),""===l&&(l=this.elements.borderBottomWidth.attr("placeholder")),""===i&&(i=this.elements.borderLeftWidth.attr("placeholder")),""===o&&(o=this.elements.borderRightWidth.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_borderWidthChange:function(e){var t=this._getBorderWidths();this.elements.borderColor.trigger("change"),this.updateCSSRule(this.classes.content,{"border-top-width":t.top+"px","border-bottom-width":t.bottom+"px","border-left-width":t.left+"px","border-right-width":t.right+"px"}),this._positionAbsoluteBgs()},_initNodeClassName:function(){e.extend(this.elements,{className:e(this.classes.settings+" input[name=class]")}),this.elements.className.on("keyup",e.proxy(this._classNameChange,this)),this._lastClassName=this.elements.className.val()},_classNameChange:function(e){var t=this.elements.className.val();null!==this._lastClassName&&this.elements.node.removeClass(this._lastClassName),this.elements.node.addClass(t),this._lastClassName=t},_initMargins:function(){e.extend(this.elements,{marginTop:e(this.classes.settings+" input[name=margin_top]"),marginBottom:e(this.classes.settings+" input[name=margin_bottom]"),marginLeft:e(this.classes.settings+" input[name=margin_left]"),marginRight:e(this.classes.settings+" input[name=margin_right]")}),this.elements.marginTop.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginBottom.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginLeft.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginRight.on("keyup",e.proxy(this._marginChange,this))},_getMargins:function(e){var t=this.elements.marginTop.val(),l=this.elements.marginBottom.val(),i=this.elements.marginLeft.val(),o=this.elements.marginRight.val();return""===t&&(t=this.elements.marginTop.attr("placeholder")),""===l&&(l=this.elements.marginBottom.attr("placeholder")),""===i&&(i=this.elements.marginLeft.attr("placeholder")),""===o&&(o=this.elements.marginRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_marginChange:function(e){var t=this._getMargins();this.updateCSSRule(this.classes.content,{"margin-top":t.top+"px","margin-bottom":t.bottom+"px","margin-left":t.left+"px","margin-right":t.right+"px"}),this._positionAbsoluteBgs()},_initPadding:function(){e.extend(this.elements,{paddingTop:e(this.classes.settings+" input[name=padding_top]"),paddingBottom:e(this.classes.settings+" input[name=padding_bottom]"),paddingLeft:e(this.classes.settings+" input[name=padding_left]"),paddingRight:e(this.classes.settings+" input[name=padding_right]")}),this.elements.paddingTop.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingBottom.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingLeft.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingRight.on("keyup",e.proxy(this._paddingChange,this))},_getPadding:function(e){var t=this.elements.paddingTop.val(),l=this.elements.paddingBottom.val(),i=this.elements.paddingLeft.val(),o=this.elements.paddingRight.val();return""===t&&(t=this.elements.paddingTop.attr("placeholder")),""===l&&(l=this.elements.paddingBottom.attr("placeholder")),""===i&&(i=this.elements.paddingLeft.attr("placeholder")),""===o&&(o=this.elements.paddingRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_paddingChange:function(e){var t=this._getPadding();this.updateCSSRule(this.classes.content,{"padding-top":t.top+"px","padding-bottom":t.bottom+"px","padding-left":t.left+"px","padding-right":t.right+"px"}),this._positionAbsoluteBgs()},_positionAbsoluteBgs:function(){var e=this.elements.node.find(".fl-bg-slideshow"),t=this.elements.node.find(".fl-bg-video"),l=null,i=null;(e.length>0||t.length>0)&&(l=this._getMargins(),i=this._getBorderWidths(),e.length>0&&(this.updateCSSRule(this.classes.node+" .fl-bg-slideshow",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}),FLBuilder._resizeLayout()),t.length>0&&this.updateCSSRule(this.classes.node+" .fl-bg-video",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}))},_initRow:function(){e.extend(this.elements,{width:e(this.classes.settings+" select[name=width]"),height:e(this.classes.settings+" select[name=full_height]"),contentWidth:e(this.classes.settings+" select[name=content_width]")}),this.elements.width.on("change",e.proxy(this._rowWidthChange,this)),this.elements.height.on("change",e.proxy(this._rowHeightChange,this)),this.elements.contentWidth.on("change",e.proxy(this._rowContentWidthChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_rowWidthChange:function(e){var t=this.elements.node;"full"==this.elements.width.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_rowHeightChange:function(e){var t=this.elements.node;"full"==this.elements.height.val()?t.addClass("fl-row-full-height"):t.removeClass("fl-row-full-height")},_rowContentWidthChange:function(e){var t=this.elements.content.find(".fl-row-content");"full"==this.elements.contentWidth.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_initColumn:function(){e.extend(this.elements,{size:e(this.classes.settings+" input[name=size]"),columnHeight:e(this.classes.settings+" select[name=equal_height]")}),this.elements.size.on("keyup",e.proxy(this._colSizeChange,this)),this.elements.columnHeight.on("change",e.proxy(this._colHeightChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_colSizeChange:function(){var t=10,l=100-t,i=parseFloat(this.elements.size.val()),o=this.elements.node.prev(".fl-col"),s=this.elements.node.next(".fl-col"),r=0===s.length?o:s,n=this.elements.node.siblings(".fl-col"),a=0;0===n.length||isNaN(i)||(n.each(function(){e(this).data("node")!=r.data("node")&&(l-=parseFloat(e(this)[0].style.width),a+=parseFloat(e(this)[0].style.width))}),t>i&&(i=t),i>l&&(i=l),r.css("width",100-a-i+"%"),this.elements.node.css("width",i+"%"))},_colHeightChange:function(){var e=this.elements.node.parent(".fl-col-group");"yes"==this.elements.columnHeight.val()?e.addClass("fl-col-group-equal-height"):e.removeClass("fl-col-group-equal-height")},_initModule:function(){this._initNodeClassName(),this._initMargins()},_initDefaultFieldPreviews:function(){for(var e=this.elements.settings.find(".fl-field"),t=null,l=null,i=0;i<e.length;i++)t=e.eq(i),l=t.data("preview"),"refresh"==l.type&&this._initFieldRefreshPreview(t),"text"==l.type&&this._initFieldTextPreview(t),"css"==l.type&&this._initFieldCSSPreview(t),"widget"==l.type&&this._initFieldWidgetPreview(t),"font"==l.type&&this._initFieldFontPreview(t)},_initFieldRefreshPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this.delayPreview,this);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"select":t.find("select").on("change",o);break;case"color":t.find(".fl-color-picker-value").on("change",o);break;case"photo":t.find("select").on("change",o);break;case"multiple-photos":t.find("input").on("change",o);break;case"photo-sizes":t.find("select").on("change",o);break;case"video":t.find("input").on("change",o);break;case"multiple-audios":t.find("input").on("change",o);break;case"icon":t.find("input").on("change",o);break;case"form":t.delegate("input","change",o);break;case"editor":this._addTextEditorCallback(t,i);break;case"code":t.find("textarea").on("change",o);break;case"post-type":t.find("select").on("change",o);break;case"suggest":t.find(".as-values").on("change",o)}},_initFieldTextPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this._previewText,this,i);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"code":t.find("textarea").on("change",o);break;case"editor":this._addTextEditorCallback(t,i)}},_previewText:function(t,l){var i=this.elements.node.find(t.selector),o=e("<div>"+e(l.target).val()+"</div>");i.length>0&&(o.find("script").remove(),i.html(o.html()))},_previewTextEditor:function(t,l,i){var o=this.elements.node.find(t.selector),s="undefined"!=typeof tinyMCE?tinyMCE.get(l):null,r=e("#"+l),n="";o.length>0&&(n=e(s&&"none"==r.css("display")?"<div>"+s.getContent()+"</div>":"undefined"==typeof switchEditors||"undefined"==typeof switchEditors.wpautop?"<div>"+r.val()+"</div>":"<div>"+switchEditors.wpautop(r.val())+"</div>"),n.find("script").remove(),o.html(n.html()))},_addTextEditorCallback:function(t,l){var i=t.find("textarea.wp-editor-area").attr("id"),o=null;if("refresh"==l.type)o=e.proxy(this.delayPreview,this);else{if("text"!=l.type)return;o=e.proxy(this._previewTextEditor,this,l,i)}e("#"+i).on("keyup",o),"undefined"!=typeof tinyMCE&&(editor=tinyMCE.get(i),editor.on("change",o),editor.on("keyup",o))},_initFieldFontPreview:function(t){var l=t.data("type"),i=t.data("preview");i.id=t.attr("id");var o=e.proxy(this._previewFont,this,i);"font"==l&&t.find(".fl-font-field").on("change","select",o)},_previewFont:function(t,l){var i=e(l.delegateTarget),o=i.find(".fl-font-field-font"),s=e(o).find(":selected"),r=s.parent().attr("label"),n=i.find(".fl-font-field-weight"),a=t.id+"-"+this.nodeId,d=this._getPreviewSelector(this.classes.node,t.selector);"Google"==r&&this._buildFontStylesheet(a,o.val(),n.val()),"Default"==o.val()?(this.updateCSSRule(d,"font-family",""),this.updateCSSRule(d,"font-weight","")):(this.updateCSSRule(d,"font-family",o.val()),this.updateCSSRule(d,"font-weight",n.val()))},_buildFontStylesheet:function(t,l,i){var o="//fonts.googleapis.com/css?family=",s="",r={},n={};r[l]=[i],FLBuilderPreview._fontsList[t]=r,Object.keys(FLBuilderPreview._fontsList).forEach(function(e){var t=FLBuilderPreview._fontsList[e];Object.keys(t).forEach(function(e){var l=t[e];n[e]=n[e]||[],l=l.filter(function(t){return n[e].indexOf(t)<0}),n[e]=n[e].concat(l)})}),e.each(n,function(e,t){s+=e+":"+t.join()+"|"}),s=o+s.slice(0,-1).replace(" ","+"),e("#fl-builder-google-fonts-preview").length<1?e("<link>").attr("id","fl-builder-google-fonts-preview").attr("type","text/css").attr("rel","stylesheet").attr("href",s).appendTo("head"):e("#fl-builder-google-fonts-preview").attr("href",s)},_initFieldCSSPreview:function(e){var t=e.data("preview"),l=null;if("undefined"!=typeof t.rules)for(l in t.rules)this._initFieldCSSPreviewCallback(e,t.rules[l]);else this._initFieldCSSPreviewCallback(e,t)},_initFieldCSSPreviewCallback:function(t,l){switch(t.data("type")){case"text":t.find("input[type=text]").on("keyup",e.proxy(this._previewCSS,this,l));break;case"select":t.find("select").on("change",e.proxy(this._previewCSS,this,l));break;case"color":t.find(".fl-color-picker-value").on("change",e.proxy(this._previewColor,this,l))}},_previewCSS:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=t.property,s="undefined"==typeof t.unit?"":t.unit,r=e(l.target).val();"%"==s?r=parseInt(r)/100:r+=s,this.updateCSSRule(i,o,r)},_previewColor:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=e(l.target).val(),s=""===o?"inherit":"#"+o;this.updateCSSRule(i,t.property,s)},_initFieldWidgetPreview:function(t){var l=e.proxy(this.delayPreview,this);t.find("input").on("keyup",l),t.find("input[type=checkbox]").on("click",l),t.find("textarea").on("keyup",l),t.find("select").on("change",l)},_getPreviewSelector:function(e,t){for(var l="",i=t.split(","),o=0;o<i.length;o++)l+=e+" "+i[o],o!=i.length-1&&(l+=", ");return l}}}(jQuery),function(e){var t={init:function(){var t=e("body");t.delegate(".fl-builder-service-select","change",this._serviceChange),t.delegate(".fl-builder-service-connect-button","click",this._connectClicked),t.delegate(".fl-builder-service-account-select","change",this._accountChange),t.delegate(".fl-builder-service-account-delete","click",this._accountDeleteClicked),t.delegate(".fl-builder-campaign-monitor-client-select","change",this._campaignMonitorClientChange),t.delegate(".fl-builder-mailchimp-list-select","change",this._mailChimpListChange)},_startSettingsLoading:function(t){var l=e(".fl-builder-settings"),i=t.closest(".fl-builder-service-settings"),o=e(".fl-builder-service-error");
|
2 |
l.append('<div class="fl-builder-loading"></div>'),i.addClass("fl-builder-service-settings-loading"),o.remove()},_finishSettingsLoading:function(){var t=e(".fl-builder-settings"),l=e(".fl-builder-service-settings-loading");t.find(".fl-builder-loading").remove(),l.removeClass("fl-builder-service-settings-loading")},_serviceChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this),o=i.closest("tr"),s=i.val();o.siblings("tr.fl-builder-service-account-row").remove(),o.siblings("tr.fl-builder-service-connect-row").remove(),o.siblings("tr.fl-builder-service-field-row").remove(),e(".fl-builder-service-error").remove(),""!==s&&(t._startSettingsLoading(i),FLBuilder.ajax({action:"render_service_settings",node_id:l,service:s},t._serviceChangeComplete))},_serviceChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row");s.after(i.html),t._addAccountDelete(o),t._finishSettingsLoading()},_connectClicked:function(){for(var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-connect-row"),r=i.find(".fl-builder-service-connect-input"),n=null,a=null,d=0,u={action:"connect_service",node_id:l,service:o.val(),fields:{}};d<r.length;d++)n=r.eq(d),a=n.attr("name"),u.fields[a]=n.val();s.hide(),t._startSettingsLoading(o),FLBuilder.ajax(u,t._connectComplete)},_connectComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row"),r=o.find(".fl-builder-service-select"),n=o.find(".fl-builder-service-account-row"),a=o.find(".fl-builder-service-account-select"),d=o.find(".fl-builder-service-connect-row");i.error?(d.show(),0===a.length?r.after('<div class="fl-builder-service-error">'+i.error+"</div>"):a.after('<div class="fl-builder-service-error">'+i.error+"</div>")):(d.remove(),n.remove(),s.after(i.html)),t._addAccountDelete(o),t._finishSettingsLoading()},_accountChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-connect-row"),n=i.find("tr.fl-builder-service-field-row"),a=e(".fl-builder-service-error"),d=s.val(),u=null;r.remove(),n.remove(),a.remove(),"add_new_account"==d?u={action:"render_service_settings",node_id:l,service:o.val(),add_new:!0}:""!==d&&(u={action:"render_service_fields",node_id:l,service:o.val(),account:d}),u&&(t._startSettingsLoading(o),FLBuilder.ajax(u,t._accountChangeComplete)),t._addAccountDelete(i)},_accountChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-account-row");s.after(i.html),t._finishSettingsLoading()},_addAccountDelete:function(e){var t=e.find(".fl-builder-service-account-select");t.length>0&&(e.find(".fl-builder-service-account-delete").remove(),""!==t.val()&&"add_new_account"!=t.val()&&t.after('<a href="javascript:void(0);" class="fl-builder-service-account-delete">'+FLBuilderStrings.deleteAccount+"</a>"))},_accountDeleteClicked:function(){var l=e(this).closest(".fl-builder-service-settings"),i=l.find(".fl-builder-service-select"),o=l.find(".fl-builder-service-account-select");confirm(FLBuilderStrings.deleteAccountWarning)&&(FLBuilder.ajax({action:"delete_service_account",service:i.val(),account:o.val()},t._accountDeleteComplete),t._startSettingsLoading(o))},_accountDeleteComplete:function(){var l=e(".fl-builder-service-settings-loading"),i=l.find(".fl-builder-service-select");t._finishSettingsLoading(),i.trigger("change")},_campaignMonitorClientChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=e(this),n=i.find(".fl-builder-service-list-select"),a=r.val();0!==n.length&&n.closest("tr").remove(),""!==a&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),client:a},t._campaignMonitorClientChangeComplete))},_campaignMonitorClientChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-campaign-monitor-client-select");s.closest("tr").after(i.html),t._finishSettingsLoading()},_mailChimpListChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-list-select");e(".fl-builder-mailchimp-group-select").closest("tr").remove(),""!==r.val()&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),list_id:r.val()},t._mailChimpListChangeComplete))},_mailChimpListChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-list-select");s.closest("tr").after(i.html),t._finishSettingsLoading()}};e(function(){t.init()})}(jQuery),function(e){FLBuilderTour={_tour:null,start:function(){FLBuilderTour._tour?FLBuilderTour._tour.restart():(FLBuilderTour._tour=new Tour(FLBuilderTour._config()),FLBuilderTour._tour.init()),FLBuilderTour._tour.start()},_config:function(){var t={storage:!1,onStart:FLBuilderTour._onStart,onPrev:FLBuilderTour._onPrev,onNext:FLBuilderTour._onNext,onEnd:FLBuilderTour._onEnd,template:'<div class="popover" role="tooltip"> <i class="fa fa-times" data-role="end"></i> <div class="arrow"></div> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="next">'+FLBuilderStrings.tourNext+"</button> </div> </div>",steps:[{animation:!1,element:".fl-builder-bar",placement:"bottom",title:FLBuilderStrings.tourTemplatesTitle,content:FLBuilderStrings.tourTemplates,onShown:function(){0===e(".fl-template-selector").length?(e(".popover[class*=tour-]").css("visibility","hidden"),FLBuilder._showTemplateSelector()):FLBuilderTour._templateSelectorLoaded()}},{animation:!1,element:"#fl-builder-blocks-rows .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddRowsTitle,content:FLBuilderStrings.tourAddRows,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e(".fl-template-selector .fl-builder-settings-cancel").trigger("click"),e("#fl-builder-blocks-rows .fl-builder-blocks-section-title").trigger("click")}},{animation:!1,element:"#fl-builder-blocks-basic .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddContentTitle,content:FLBuilderStrings.tourAddContent,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e("#fl-builder-blocks-basic .fl-builder-blocks-section-title").trigger("click"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-row:first-of-type",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-row:first-of-type .fl-module-overlay .fl-block-overlay-actions",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent2,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-builder-add-content-button",placement:"bottom",title:FLBuilderStrings.tourAddContentButtonTitle,content:FLBuilderStrings.tourAddContentButton,onShow:function(){FLBuilderTour._dimSection("body"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-builder-templates-button",placement:"bottom",title:FLBuilderStrings.tourTemplatesButtonTitle,content:FLBuilderStrings.tourTemplatesButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-tools-button",placement:"bottom",title:FLBuilderStrings.tourToolsButtonTitle,content:FLBuilderStrings.tourToolsButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-done-button",placement:"bottom",title:FLBuilderStrings.tourDoneButtonTitle,content:FLBuilderStrings.tourDoneButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,orphan:!0,backdrop:!0,title:FLBuilderStrings.tourFinishedTitle,content:FLBuilderStrings.tourFinished,template:'<div class="popover" role="tooltip"> <div class="arrow"></div> <i class="fa fa-times" data-role="end"></i> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="end">'+FLBuilderStrings.tourEnd+"</button> </div> </div>"}]};return FLBuilderConfig.lite?t.steps.shift():"disabled"==FLBuilderConfig.enabledTemplates?t.steps.shift():"fl-builder-template"==FLBuilderConfig.postType&&t.steps.shift(),t},_onStart:function(){var t=e("body");t.append('<div class="fl-builder-tour-mask"></div>'),t.on("fl-builder.template-selector-loaded",FLBuilderTour._templateSelectorLoaded),0===e(".fl-row").length&&"module"!=FLBuilderConfig.userTemplateType&&(e(".fl-builder-content").append('<div class="fl-builder-tour-demo-content fl-row fl-row-fixed-width fl-row-bg-none"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-fixed-width fl-node-content"> <div class="fl-col-group"> <div class="fl-col" style="width:100%"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text" data-type="rich-text" data-name="Text Editor"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pellentesque ut lorem non cursus. Sed mauris nunc, porttitor iaculis lorem a, sollicitudin lacinia sapien. Proin euismod orci lacus, et sollicitudin leo posuere ac. In hac habitasse platea dictumst. Maecenas elit magna, consequat in turpis suscipit, ultrices rhoncus arcu. Phasellus finibus sapien nec elit tempus venenatis. Maecenas tincidunt sapien non libero maximus, in aliquam felis tincidunt. Mauris mollis ultricies facilisis. Duis condimentum dignissim tortor sit amet facilisis. Aenean gravida lacus eu risus molestie egestas. Donec ut dolor dictum, fringilla metus malesuada, viverra nunc. Maecenas ut purus ac justo aliquet lacinia. Cras vestibulum elementum tincidunt. Maecenas mattis tortor neque, consectetur dignissim neque tempor nec.</p></div> </div> </div> </div> </div> </div> </div> </div> </div>'),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols())},_onPrev:function(){e(".fl-builder-tour-dimmed").remove()},_onNext:function(){e(".fl-builder-tour-dimmed").remove()},_onEnd:function(){e("body").off("fl-builder.template-selector-loaded"),e(".fl-builder-tour-mask").remove(),e(".fl-builder-tour-dimmed").remove(),e(".fl-builder-tour-demo-content").remove(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showPanel(),FLBuilder._initTemplateSelector()},_dimSection:function(t){e(t).find(".fl-builder-tour-dimmed").remove(),e(t).append('<div class="fl-builder-tour-dimmed"></div>')},_templateSelectorLoaded:function(){var t=e(".fl-builder-settings-lightbox .fl-lightbox-header"),l=t.height(),i=t.offset().top+75;e(".popover[class*=tour-]").css({top:i+l+"px",visibility:"visible"})}}}(jQuery),function(e){FLBuilder={preview:null,_actionsLightbox:null,_addModuleAfterRowRender:null,_colResizeData:null,_colResizing:!1,_contentClass:!1,_dragEnabled:!1,_dragging:!1,_exitUrl:null,_layout:null,_layoutSettingsCSSCache:null,_layoutSettingsCSSTimeout:null,_lightbox:null,_lightboxScrollbarTimeout:null,_loadedModuleAssets:[],_moduleHelpers:{},_multiplePhotoSelector:null,_newColGroupParent:null,_newColGroupPosition:0,_newModuleParent:null,_newModulePosition:0,_newRowPosition:0,_selectedTemplateId:null,_selectedTemplateType:null,_singlePhotoSelector:null,_singleVideoSelector:null,_multipleAudiosSelector:null,_silentUpdate:!1,_silentUpdateCallbackData:null,_init:function(){FLBuilder._initJQueryReadyFix(),FLBuilder._initGlobalErrorHandling(),FLBuilder._initPostLock(),FLBuilder._initClassNames(),FLBuilder._initMediaUploader(),FLBuilder._initOverflowFix(),FLBuilder._initScrollbars(),FLBuilder._initLightboxes(),FLBuilder._initSortables(),FLBuilder._initCoreTemplateSettings(),FLBuilder._bindEvents(),FLBuilder._bindOverlayEvents(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showTourOrTemplates()},_initJQueryReadyFix:function(){FLBuilderConfig.debug||(jQuery.fn.oldReady=jQuery.fn.ready,jQuery.fn.ready=function(e){return jQuery.fn.oldReady(function(){try{"function"==typeof e&&e()}catch(t){FLBuilder.logError(t)}})})},_initGlobalErrorHandling:function(){FLBuilderConfig.debug||(window.onerror=function(e,t,l,i,o){return FLBuilder.logGlobalError(e,t,l,i,o),!0})},_initPostLock:function(){"undefined"!=typeof wp.heartbeat&&(wp.heartbeat.interval(30),wp.heartbeat.enqueue("fl_builder_post_lock",{post_id:e("#fl-post-id").val()}))},_initClassNames:function(){e("html").addClass("fl-builder-edit"),e("body").addClass("fl-builder"),FLBuilderConfig.simpleUi&&e("body").addClass("fl-builder-simple"),FLBuilder._contentClass=".fl-builder-content-"+FLBuilderConfig.postId},_initMediaUploader:function(){wp.media.model.settings.post.id=e("#fl-post-id").val()},_initOverflowFix:function(){e(FLBuilder._contentClass).parents().css("overflow","visible")},_initScrollbars:function(){e(".fl-nanoscroller").nanoScroller({alwaysVisible:!0,preventPageScrolling:!0,paneClass:"fl-nanoscroller-pane",sliderClass:"fl-nanoscroller-slider",contentClass:"fl-nanoscroller-content"})},_initLightboxes:function(){FLBuilder._lightbox=new FLLightbox({className:"fl-builder-lightbox fl-builder-settings-lightbox"}),FLBuilder._lightbox.on("close",FLBuilder._lightboxClosed),FLBuilder._actionsLightbox=new FLLightbox({className:"fl-builder-actions-lightbox"})},_initSortables:function(){var t={appendTo:"body",cursor:"move",cursorAt:{left:25,top:20},distance:1,helper:FLBuilder._blockDragHelper,start:FLBuilder._blockDragStart,sort:FLBuilder._blockDragSort,placeholder:"fl-builder-drop-zone",tolerance:"intersect"},l="",i="";l="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content",i="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content, "+FLBuilder._contentClass+" .fl-col-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content, "+FLBuilder._contentClass+" .fl-col:not(.fl-node-global) .fl-col-content",e(".fl-builder-rows").sortable(e.extend({},t,{connectWith:l,items:".fl-builder-block-row",stop:FLBuilder._rowDragStop})),e(".fl-builder-row-templates").sortable(e.extend({},t,{connectWith:FLBuilder._contentClass,items:".fl-builder-block-row-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-rows").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:FLBuilder._contentClass,items:".fl-builder-block-saved-row",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-modules, .fl-builder-widgets").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module",stop:FLBuilder._moduleDragStop})),e(".fl-builder-module-templates").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-modules").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:i,items:".fl-builder-block-saved-module",stop:FLBuilder._nodeTemplateDragStop})),e(FLBuilder._contentClass).sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-row",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-row-content").sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-col-group",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-col-content").sortable(e.extend({},t,{connectWith:i,handle:".fl-module-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._moduleDragHelper,items:".fl-module",stop:FLBuilder._moduleDragStop}))},_bindEvents:function(){e("a").on("click",FLBuilder._preventDefault),e(".fl-page-nav .nav a").on("click",FLBuilder._headerLinkClicked),e(document).on("heartbeat-tick",FLBuilder._initPostLock),e(window).on("beforeunload",FLBuilder._warnBeforeUnload),e("body").delegate(".fl-builder-has-submenu","click",FLBuilder._submenuParentClicked),e("body").delegate(".fl-builder-has-submenu a","click",FLBuilder._submenuChildClicked),e("body").delegate(".fl-builder-submenu","mouseenter",FLBuilder._submenuMouseenter),e("body").delegate(".fl-builder-submenu","mouseleave",FLBuilder._submenuMouseleave),e(".fl-builder-tools-button").on("click",FLBuilder._toolsClicked),e(".fl-builder-done-button").on("click",FLBuilder._doneClicked),e(".fl-builder-add-content-button").on("click",FLBuilder._showPanel),e(".fl-builder-templates-button").on("click",FLBuilder._changeTemplateClicked),e(".fl-builder-buy-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-upgrade-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-help-button").on("click",FLBuilder._helpButtonClicked),e(".fl-builder-panel-actions .fl-builder-panel-close").on("click",FLBuilder._closePanel),e(".fl-builder-blocks-section-title").on("click",FLBuilder._blockSectionTitleClicked),e("body").delegate(".fl-builder-node-template-actions","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-delete","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","click",FLBuilder._editNodeTemplateClicked),e("body").delegate(".fl-builder-node-template-delete","click",FLBuilder._deleteNodeTemplateClicked),e("body").delegate(".fl-builder-block","mousedown",FLBuilder._blockDragInit),e("body").on("mouseup",FLBuilder._blockDragCancel),e("body").delegate(".fl-builder-actions .fl-builder-cancel-button","click",FLBuilder._cancelButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-publish-button","click",FLBuilder._publishButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-draft-button","click",FLBuilder._draftButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-discard-button","click",FLBuilder._discardButtonClicked),e("body").delegate(".fl-builder-save-user-template-button","click",FLBuilder._saveUserTemplateClicked),e("body").delegate(".fl-builder-duplicate-layout-button","click",FLBuilder._duplicateLayoutClicked),e("body").delegate(".fl-builder-layout-settings-button","click",FLBuilder._layoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-save","click",FLBuilder._saveLayoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-builder-global-settings-button","click",FLBuilder._globalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-save","click",FLBuilder._saveGlobalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-template-category-select","change",FLBuilder._templateCategoryChanged),e("body").delegate(".fl-template-preview","click",FLBuilder._templateClicked),e("body").delegate(".fl-user-template","click",FLBuilder._userTemplateClicked),e("body").delegate(".fl-user-template-edit","click",FLBuilder._editUserTemplateClicked),e("body").delegate(".fl-user-template-delete","click",FLBuilder._deleteUserTemplateClicked),e("body").delegate(".fl-builder-template-replace-button","click",FLBuilder._templateReplaceClicked),e("body").delegate(".fl-builder-template-append-button","click",FLBuilder._templateAppendClicked),e("body").delegate(".fl-builder-template-actions .fl-builder-cancel-button","click",FLBuilder._templateCancelClicked),e("body").delegate(".fl-builder-user-template-settings .fl-builder-settings-save","click",FLBuilder._saveUserTemplateSettings),e("body").delegate(".fl-builder-help-tour-button","click",FLBuilder._startHelpTour),e("body").delegate(".fl-builder-help-video-button","click",FLBuilder._watchVideoClicked),e("body").delegate(".fl-builder-knowledge-base-button","click",FLBuilder._viewKnowledgeBaseClicked),e("body").delegate(".fl-builder-forums-button","click",FLBuilder._visitForumsClicked),e("body").delegate(".fl-builder-no-tour-button","click",FLBuilder._noTourButtonClicked),e("body").delegate(".fl-builder-yes-tour-button","click",FLBuilder._yesTourButtonClicked),e("body").delegate(".fl-builder-alert-close","click",FLBuilder._alertClose),e("body").delegate(".fl-row-overlay .fl-block-remove","click",FLBuilder._deleteRowClicked),e("body").delegate(".fl-row-overlay .fl-block-copy","click",FLBuilder._rowCopyClicked),e("body").delegate(".fl-row-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-row-overlay .fl-block-settings","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-row-overlay","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-builder-row-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-builder-col-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay .fl-block-remove","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-edit","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-delete","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-before","click",FLBuilder._insertColBeforeClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-after","click",FLBuilder._insertColAfterClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-reset","click",FLBuilder._resetColumnWidths),e("body").delegate(".fl-module-overlay .fl-block-remove","click",FLBuilder._deleteModuleClicked),e("body").delegate(".fl-module-overlay .fl-block-copy","click",FLBuilder._moduleCopyClicked),e("body").delegate(".fl-module-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-module-overlay .fl-block-settings","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-module-overlay","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-builder-module-settings .fl-builder-settings-save","click",FLBuilder._saveModuleClicked),e("body").delegate(".fl-builder-settings-save-as","click",FLBuilder._showNodeTemplateSettings),e("body").delegate(".fl-builder-node-template-settings .fl-builder-settings-save","click",FLBuilder._saveNodeTemplate),e("body").delegate(".fl-builder-settings-tabs a","click",FLBuilder._settingsTabClicked),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),e("body").delegate(".fl-help-tooltip-icon","mouseover",FLBuilder._showHelpTooltip),e("body").delegate(".fl-help-tooltip-icon","mouseout",FLBuilder._hideHelpTooltip),e("body").delegate(".fl-builder-field-add","click",FLBuilder._addFieldClicked),e("body").delegate(".fl-builder-field-copy","click",FLBuilder._copyFieldClicked),e("body").delegate(".fl-builder-field-delete","click",FLBuilder._deleteFieldClicked),e("body").delegate(".fl-builder-settings-fields select","change",FLBuilder._settingsSelectChanged),e("body").delegate(".fl-photo-field .fl-photo-select","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-edit","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-replace","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-remove","click",FLBuilder._singlePhotoRemoved),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-select","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-edit","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-add","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-video-field .fl-video-select","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-video-field .fl-video-replace","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-select","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-edit","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-add","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-icon-field .fl-icon-select","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-replace","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-remove","click",FLBuilder._removeIcon),e("body").delegate(".fl-form-field .fl-form-field-edit","click",FLBuilder._formFieldClicked),e("body").delegate(".fl-form-field-settings .fl-builder-settings-save","click",FLBuilder._saveFormFieldClicked),e("body").delegate(".fl-layout-field-option","click",FLBuilder._layoutFieldClicked),e("body").delegate(".fl-link-field-select","click",FLBuilder._linkFieldSelectClicked),e("body").delegate(".fl-link-field-search-cancel","click",FLBuilder._linkFieldSelectCancelClicked),e("body").delegate(".fl-loop-builder select[name=post_type]","change",FLBuilder._loopBuilderPostTypeChange),e("body").delegate(".fl-select-add-value","change",FLBuilder._textFieldAddValueSelectChange)},_bindOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.delegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.delegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.delegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.delegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.delegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_destroyOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.undelegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.undelegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.undelegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.undelegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.undelegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_preventDefault:function(e){e.preventDefault()},_stopPropagation:function(e){e.stopPropagation()},_headerLinkClicked:function(t){var l=e(this),i=l.attr("href");t.preventDefault(),FLBuilderConfig.isUserTemplate||(FLBuilder._exitUrl=i.indexOf("?")>-1?i:i+"?fl_builder",FLBuilder._doneClicked())},_warnBeforeUnload:function(){var t=e(".fl-builder-row-settings").length>0,l=e(".fl-builder-col-settings").length>0,i=e(".fl-builder-module-settings").length>0;return t||l||i?FLBuilderStrings.unloadWarning:void 0},_initTipTips:function(){e(".fl-tip").tipTip()},_hideTipTips:function(){e("#tiptip_holder").stop().remove()},_submenuParentClicked:function(t){var l=e(this),i=l.find(".fl-builder-submenu");l.hasClass("fl-builder-submenu-open")?(l.removeClass("fl-builder-submenu-open"),l.removeClass("fl-builder-submenu-right")):(l.offset().left+i.width()>e(window).width()&&l.addClass("fl-builder-submenu-right"),l.addClass("fl-builder-submenu-open")),FLBuilder._hideTipTips(),t.preventDefault(),t.stopPropagation()},_submenuChildClicked:function(t){e(this).closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},_submenuMouseenter:function(t){var l=e(this),i=l.data("timeout");"undefined"!=typeof i&&clearTimeout(i)},_submenuMouseleave:function(t){var l=e(this),i=setTimeout(function(){l.closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},500);l.data("timeout",i)},_toolsClicked:function(){var e={},t=FLBuilderConfig.lite,l=FLBuilderConfig.enabledTemplates;t||FLBuilderConfig.isUserTemplate||"enabled"!=l&&"user"!=l||(e["save-user-template"]=FLBuilderStrings.saveTemplate,"undefined"!=typeof FLBuilderTemplateSettings&&(e["save-template"]=FLBuilderStrings.saveCoreTemplate)),FLBuilderConfig.isUserTemplate?"undefined"!=typeof window.opener&&window.opener||(e["duplicate-layout"]=FLBuilderStrings.duplicateLayout):e["duplicate-layout"]=FLBuilderStrings.duplicateLayout,e["layout-settings"]=FLBuilderStrings.editLayoutSettings,e["global-settings"]=FLBuilderStrings.editGlobalSettings,FLBuilder._showActionsLightbox({className:"fl-builder-tools-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_doneClicked:function(){FLBuilder._showActionsLightbox({className:"fl-builder-save-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{publish:FLBuilderStrings.publish,draft:FLBuilderStrings.draft,discard:FLBuilderStrings.discard}})},_upgradeClicked:function(){window.open(FLBuilderConfig.upgradeUrl)},_helpButtonClicked:function(){var e={};FLBuilderConfig.help.tour&&(e["help-tour"]=FLBuilderStrings.takeHelpTour),FLBuilderConfig.help.video&&(e["help-video"]=FLBuilderStrings.watchHelpVideo),FLBuilderConfig.help.knowledge_base&&(e["knowledge-base"]=FLBuilderStrings.viewKnowledgeBase),FLBuilderConfig.help.forums&&(e.forums=FLBuilderStrings.visitForums),FLBuilder._showActionsLightbox({className:"fl-builder-help-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_closePanel:function(){e(".fl-builder-panel").stop(!0,!0).animate({right:"-350px"},500,function(){e(this).hide()}),e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeIn()},_showPanel:function(){e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeOut(),e(".fl-builder-panel").stop(!0,!0).show().animate({right:"0"},500)},_blockSectionTitleClicked:function(){var t=e(this),l=t.parent();l.hasClass("fl-active")?l.removeClass("fl-active"):(e(".fl-builder-blocks-section").removeClass("fl-active"),l.addClass("fl-active")),FLBuilder._initScrollbars()},_publishButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_draftButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_draft"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_discardButtonClicked:function(){var e=confirm(FLBuilderStrings.discardMessage);e&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"clear_draft_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close())},_cancelButtonClicked:function(){FLBuilder._exitUrl=null,FLBuilder._actionsLightbox.close()},_exit:function(){var e=window.location.href;FLBuilderConfig.isUserTemplate&&"undefined"!=typeof window.opener&&window.opener?("undefined"!=typeof window.opener.FLBuilder&&window.opener.FLBuilder._updateLayout(),
|
3 |
window.close()):(e=FLBuilder._exitUrl?FLBuilder._exitUrl:e.replace("?fl_builder","").replace("&fl_builder",""),window.location.href=e)},_duplicateLayoutClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"duplicate_post"},FLBuilder._duplicateLayoutComplete)},_duplicateLayoutComplete:function(t){var l=e("#fl-admin-url").val();window.location.href=l+"post.php?post="+t+"&action=edit"},_layoutSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder._closePanel(),FLBuilder.ajax({action:"render_layout_settings"},FLBuilder._layoutSettingsLoaded)},_layoutSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS()},_layoutSettingsInitCSS:function(){var t=e(".fl-builder-settings #fl-field-css textarea:not(.ace_text-input)");t.on("change",FLBuilder._layoutSettingsCSSChanged),FLBuilder._layoutSettingsCSSCache=t.val()},_layoutSettingsCSSChanged:function(){FLBuilder._layoutSettingsCSSTimeout&&clearTimeout(FLBuilder._layoutSettingsCSSTimeout),FLBuilder._layoutSettingsCSSTimeout=setTimeout(e.proxy(FLBuilder._layoutSettingsCSSDoChange,this),600)},_layoutSettingsCSSDoChange:function(){var t=e(".fl-builder-settings"),l=e(this),i=l.parents("#fl-field-css");i.find(".ace_error").length>0||(t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(l.val()):e("#fl-builder-global-css").html(l.val()),FLBuilder._layoutSettingsCSSTimeout=null)},_saveLayoutSettingsClicked:function(){for(var t=e(this).closest(".fl-builder-settings"),l=t.serializeArray(),i={},o=0;o<l.length;o++)i[l[o].name]=l[o].value;FLBuilder.showAjaxLoader(),FLBuilder._lightbox.close(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_layout_settings",settings:i},FLBuilder._updateLayout)},_cancelLayoutSettingsClicked:function(){var t=e(".fl-builder-settings");t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(FLBuilder._layoutSettingsCSSCache):e("#fl-builder-global-css").html(FLBuilder._layoutSettingsCSSCache),FLBuilder._layoutSettingsCSSCache=null},_globalSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_global_settings"},FLBuilder._globalSettingsLoaded)},_globalSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS(),FLBuilder._initSettingsValidation({module_margins:{required:!0,number:!0},row_margins:{required:!0,number:!0},row_padding:{required:!0,number:!0},row_width:{required:!0,number:!0},responsive_breakpoint:{required:!0,number:!0}})},_saveGlobalSettingsClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=t.serializeArray(),o={},s=0;if(l){for(;s<i.length;s++)o[i[s].name]=i[s].value;FLBuilder.showAjaxLoader(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_global_settings",settings:o},FLBuilder._updateLayout),FLBuilder._lightbox.close()}},_initTemplateSelector:function(){var t=e(FLBuilder._contentClass).find(".fl-row");0===t.length&&FLBuilder._showTemplateSelector()},_changeTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showTemplateSelector()},_showTemplateSelector:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||"disabled"!=FLBuilderConfig.enabledTemplates&&(FLBuilderConfig.lite||(FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_template_selector"},FLBuilder._templateSelectorLoaded)))},_templateSelectorLoaded:function(t){var l=JSON.parse(t),i=null,o=null;FLBuilder._setLightboxContent(l.html),i=e(".fl-template-category-select"),o=e(".fl-user-template"),("user"==FLBuilderConfig.enabledTemplates||o.length>0)&&(i.val("fl-builder-settings-tab-yours"),e(".fl-builder-settings-tab").removeClass("fl-active"),e("#fl-builder-settings-tab-yours").addClass("fl-active")),0===o.length&&e(".fl-user-templates-message").show(),e("body").trigger("fl-builder.template-selector-loaded")},_templateCategoryChanged:function(){e(".fl-template-selector .fl-builder-settings-tab").hide(),e("#"+e(this).val()).show()},_templateClicked:function(){var t=e(this),l=t.closest(".fl-template-preview").attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?0===l?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate(0,!1,"core")):(FLBuilder._selectedTemplateId=l,FLBuilder._selectedTemplateType="core",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(l,!1,"core")},_showTemplateActions:function(){FLBuilder._showActionsLightbox({className:"fl-builder-template-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{"template-replace":FLBuilderStrings.templateReplace,"template-append":FLBuilderStrings.templateAppend}})},_templateReplaceClicked:function(){confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!1,FLBuilder._selectedTemplateType))},_templateAppendClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!0,FLBuilder._selectedTemplateType)},_templateCancelClicked:function(){FLBuilder._lightbox._node.show()},_applyTemplate:function(e,t,l){t="undefined"!=typeof t&&t?"1":"0",l="undefined"==typeof l?"core":l,FLBuilder._lightbox.close(),FLBuilder.showAjaxLoader(),"core"==l?FLBuilder.ajax({action:"apply_template",template_id:e,append:t},FLBuilder._updateLayout):FLBuilder.ajax({action:"apply_user_template",template_id:e,append:t},FLBuilder._updateLayout)},_saveUserTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_user_template_settings"},FLBuilder._userTemplateSettingsLoaded)},_userTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveUserTemplateSettings:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=FLBuilder._getSettings(t);l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_user_template",settings:i},FLBuilder._saveUserTemplateSettingsComplete),FLBuilder._lightbox.close())},_saveUserTemplateSettingsComplete:function(){FLBuilder.alert(FLBuilderStrings.templateSaved)},_userTemplateClicked:function(){var t=e(this).attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?"blank"==t?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate("blank",!1,"user")):(FLBuilder._selectedTemplateId=t,FLBuilder._selectedTemplateType="user",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(t,!1,"user")},_editUserTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteUserTemplateClicked:function(t){var l=e(this).closest(".fl-user-template"),i=l.attr("data-id"),o=e(".fl-user-template[data-id="+i+"]"),s=null;confirm(FLBuilderStrings.deleteTemplate)&&(FLBuilder.ajax({action:"delete_user_template",template_id:i}),o.fadeOut(function(){l=e(this),s=l.closest(".fl-user-template-category"),l.remove(),0===s.find(".fl-user-template").length&&s.remove(),1===e(".fl-user-template").length&&(e(".fl-user-templates").hide(),e(".fl-user-templates-message").show())})),t.stopPropagation()},_initCoreTemplateSettings:function(){"undefined"!=typeof FLBuilderTemplateSettings&&FLBuilderTemplateSettings.init()},_watchVideoClicked:function(){var e=wp.template("fl-video-lightbox");FLBuilder._actionsLightbox.close(),FLBuilder._lightbox.open(e({video:FLBuilderConfig.help.video_embed}))},_viewKnowledgeBaseClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.knowledge_base_url)},_visitForumsClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.forums_url)},_showTourOrTemplates:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||(FLBuilderConfig.help.tour&&FLBuilderConfig.newUser?FLBuilder._showTourLightbox():FLBuilder._initTemplateSelector())},_showTourLightbox:function(){var e=wp.template("fl-tour-lightbox");FLBuilder._actionsLightbox.open(e())},_noTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._initTemplateSelector()},_yesTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_startHelpTour:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_setupEmptyLayout:function(){var t=e(FLBuilder._contentClass);FLBuilderConfig.isUserTemplate&&"module"==FLBuilderConfig.userTemplateType||(t.removeClass("fl-builder-empty"),t.find(".fl-builder-empty-message").remove(),0===t.children(".fl-row").length&&(t.addClass("fl-builder-empty"),t.append('<span class="fl-builder-empty-message">'+FLBuilderStrings.emptyMessage+"</span>"),FLBuilder._initSortables()))},_updateLayout:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"render_layout"},FLBuilder._renderLayout)},_renderLayout:function(e,t){FLBuilder._layout=new FLBuilderAJAXLayout(e,t)},_renderLayoutComplete:function(){FLBuilder._layout&&(FLBuilder._layout._complete(),FLBuilder._layout=null)},_resizeLayout:function(){e(window).trigger("resize"),"undefined"!=typeof YUI&&YUI().use("node-event-simulate",function(e){e.one(window).simulate("resize")})},_initMediaElements:function(){var t={};"undefined"!=typeof e.fn.mediaelementplayer&&("undefined"!=typeof _wpmejsSettings&&(t.pluginPath=_wpmejsSettings.pluginPath),e(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").mediaelementplayer(t))},_blockDragHelper:function(e,t){var l=t.clone();return t.clone().insertAfter(t),l.addClass("fl-builder-block-drag-helper"),l},_blockDragInit:function(t){var l=e(t.target),i=null,o=0,s="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)";FLBuilder._dragEnabled=!0,l.closest(".fl-module").length>0?i=l.closest(".fl-module"):l.closest(".fl-row").length>0?i=l.closest(".fl-row"):l.hasClass("fl-builder-block-row")||l.hasClass("fl-builder-block-saved-row")?e(".fl-row").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}):(l.hasClass("fl-builder-block-module")||l.hasClass("fl-builder-block-saved-module"))&&e(".fl-module").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}),null!==i?o=i.offset().top-e(window).scrollTop():i=l,e(".fl-builder-empty-message").hide(),e(FLBuilder._contentClass+" .fl-row"+s).addClass("fl-row-highlight"),(i.hasClass("fl-module")||i.hasClass("fl-builder-block-module")||i.hasClass("fl-builder-block-saved-module"))&&e(FLBuilder._contentClass+" .fl-col"+s).addClass("fl-col-highlight"),FLBuilder._disableGlobalRows(),FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents(),FLBuilder._removeAllOverlays(),o>0&&scrollTo(0,i.offset().top-o)},_blockDragStart:function(t,l){FLBuilder._dragging=!0,e(FLBuilder._contentClass).sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-row-content").sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-col-content").sortable("refreshPositions")},_blockDragSort:function(e,t){if("undefined"!=typeof t.placeholder){var l=t.placeholder.parent(),i=FLBuilderStrings.insert;l.hasClass("fl-col-content")?i=t.item.hasClass("fl-builder-block-module")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-module")||t.item.hasClass("fl-builder-block-module-template")?t.item.find(".fl-builder-block-title").text():t.item.attr("data-name"):l.hasClass("fl-row-content")?i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():FLBuilderStrings.newColumn:l.hasClass("fl-builder-content")&&(i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-row")?FLBuilderStrings.row:FLBuilderStrings.newRow),t.placeholder.html(i),t.item.hasClass("fl-node-global")||t.item.hasClass("fl-builder-block-global")?t.placeholder.addClass("fl-builder-drop-zone-global"):t.placeholder.removeClass("fl-builder-drop-zone-global")}},_blockDragStop:function(t,l){var i=l.item.parent(),o=i.offset().top-e(window).scrollTop();i.hasClass("fl-builder-blocks-section-content")&&FLBuilder._showPanel(),FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show(),scrollTo(0,i.offset().top-o)},_blockDragCancel:function(){FLBuilder._dragEnabled&&!FLBuilder._dragging&&(FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show())},_removeAllOverlays:function(){FLBuilder._removeRowOverlays(),FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._hideTipTips()},_appendOverlay:function(e,t){var l=0,i=null,o=e.hasClass("fl-row"),s=o?e.find("> .fl-row-content-wrap"):e.find("> .fl-node-content"),r={top:parseInt(s.css("margin-top"),10),bottom:parseInt(s.css("margin-bottom"),10)};e.append(t),e.addClass("fl-block-overlay-active"),FLBuilder._initTipTips(),i=e.find("> .fl-block-overlay"),r.top<0&&(l=parseInt(i.css("top"),10),l=isNaN(l)?0:l,i.css("top",r.top+l+"px")),r.bottom<0&&(l=parseInt(i.css("bottom"),10),l=isNaN(l)?0:l,i.css("bottom",r.bottom+l+"px")),o&&i.offset().top<43&&i.addClass("fl-row-overlay-header-bottom")},_highlightEmptyCols:function(){var t="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)",l=e(FLBuilder._contentClass+" .fl-row"+t),i=e(FLBuilder._contentClass+" .fl-col"+t);l.removeClass("fl-row-highlight"),i.removeClass("fl-col-highlight"),i.each(function(){var t=e(this);0===t.find(".fl-module").length&&t.addClass("fl-col-highlight")})},_removeRowOverlays:function(){e(".fl-row").removeClass("fl-block-overlay-active"),e(".fl-row-overlay").remove(),e(".fl-module").removeClass("fl-module-adjust-height")},_disableGlobalRows:function(){if("row"!=FLBuilderConfig.userTemplateType){var t=e(".fl-row.fl-node-global");t.addClass("fl-node-disabled"),t.append('<div class="fl-node-disabled-overlay"></div>')}},_enableGlobalRows:function(){"row"!=FLBuilderConfig.userTemplateType&&(e(".fl-node-disabled").removeClass("fl-node-disabled"),e(".fl-node-disabled-overlay").remove())},_rowMouseenter:function(){var t=e(this),l=wp.template("fl-row-overlay");t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,l({global:t.hasClass("fl-node-global"),node:t.attr("data-node")})),t.find(".fl-module").each(function(){e(this).outerHeight(!0)<20&&e(this).addClass("fl-module-adjust-height")}))},_rowMouseleave:function(t){var l=e(t.toElement)||e(t.relatedTarget),i=l.hasClass("fl-row-overlay"),o=l.closest(".fl-row-overlay").length>0,s=l.is("#tiptip_holder"),r=l.closest("#tiptip_holder").length>0;i||o||s||r||FLBuilder._removeRowOverlays()},_rowDragHelper:function(){return e('<div class="fl-builder-block-drag-helper" style="width: 190px; height: 45px;">'+FLBuilderStrings.row+"</div>")},_rowDragStop:function(t,l){var i=l.item,o=i.parent();return FLBuilder._blockDragStop(t,l),o.hasClass("fl-builder-rows")?void i.remove():void(i.hasClass("fl-builder-block")?(o.hasClass("fl-row-content")?FLBuilder._addColGroup(i.closest(".fl-row").attr("data-node"),i.attr("data-cols"),o.children(".fl-col-group, .fl-builder-block").index(i)):FLBuilder._addRow(i.attr("data-cols"),o.children(".fl-row, .fl-builder-block").index(i)),i.remove(),FLBuilder._showPanel(),e(".fl-builder-modules").siblings(".fl-builder-blocks-section-title").eq(0).trigger("click")):FLBuilder._reorderRow(i.attr("data-node"),o.children(".fl-row").index(i)))},_reorderRow:function(e,t){FLBuilder.ajax({action:"reorder_node",node_id:e,position:t,silent:!0})},_addRow:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._newRowPosition=t,FLBuilder.ajax({action:"render_new_row",cols:e,position:t},FLBuilder._addRowComplete)},_addRowComplete:function(t){var l=JSON.parse(t),i=e(FLBuilder._contentClass),o=e(l.html).data("node");l.nodeParent=i,l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+o+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_deleteRowClicked:function(t){var l=e(this).closest(".fl-row-overlay").attr("data-node"),i=e(".fl-row[data-node="+l+"]"),o=null;i.find(".fl-module").length?(o=confirm(FLBuilderStrings.deleteRowMessage),o&&FLBuilder._deleteRow(i)):FLBuilder._deleteRow(i),FLBuilder._removeAllOverlays(),t.stopPropagation()},_deleteRow:function(e){FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),FLBuilder._setupEmptyLayout(),FLBuilder._removeRowOverlays()},_rowCopyClicked:function(t){var l=e(this).closest(".fl-row"),i=l.attr("data-node");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newRowPosition=l.index(".fl-row")+1,FLBuilder.ajax({action:"copy_row",node_id:i},FLBuilder._rowCopyComplete),t.stopPropagation()},_rowCopyComplete:function(t){var l=JSON.parse(t);l.nodeParent=e(FLBuilder._contentClass),l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l)},_rowSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-row-overlay").attr("data-node"),o=l.closest(".fl-block-overlay-global").length>0;o&&"row"!=FLBuilderConfig.userTemplateType?FLBuilderConfig.userCanEditGlobalTemplates&&window.open(e('.fl-row[data-node="'+i+'"]').attr("data-template-url")):l.hasClass("fl-block-settings")&&(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_row_settings",node_id:i},FLBuilder._rowSettingsLoaded)),t.stopPropagation()},_rowSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.settings),FLBuilder.preview=new FLBuilderPreview({type:"row",state:t.state})},_colMouseenter:function(){var t=e(this),l=t.hasClass("fl-node-global"),i=t.parents(".fl-node-global").length>0,o=t.parents(".fl-col-group").find(".fl-col").length,s=0===t.index(),r=o===t.index()+1,n=wp.template("fl-col-overlay");FLBuilderConfig.simpleUi||l&&i&&"row"!=FLBuilderConfig.userTemplateType||t.find(".fl-module").length>0||(t.hasClass("fl-block-overlay-active")||(FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._appendOverlay(t,n({global:l,numCols:o,first:s,last:r})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_colMouseleave:function(t){var l=e(this),i=e(t.toElement)||e(t.relatedTarget),o=l.find(".fl-module").length>0,s=i.is("#tiptip_holder"),r=i.closest("#tiptip_holder").length>0;o||s||r||FLBuilder._removeColOverlays()},_removeColOverlays:function(){var t=e(".fl-col");t.removeClass("fl-block-overlay-active"),t.find(".fl-col-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_colSettingsClicked:function(t){var l=e(this).closest(".fl-col").attr("data-node");FLBuilder._colResizing||(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_column_settings",node_id:l},FLBuilder._colSettingsLoaded),t.stopPropagation())},_colSettingsLoaded:function(t){var l=JSON.parse(t),i=null,o=null,s=null;FLBuilder._setSettingsFormContent(l.settings),i=e(".fl-builder-col-settings"),o=i.data("node"),s=e('.fl-col[data-node="'+o+'"]'),0===s.siblings(".fl-col").length&&e(i).find("#fl-builder-settings-section-general").css("display","none"),FLBuilder.preview=new FLBuilderPreview({type:"col",state:l.state})},_deleteColClicked:function(t){var l=e(this),i=l.closest(".fl-col"),o=l.closest(".fl-module"),s=!0;o.length>0&&(s=confirm(FLBuilderStrings.deleteColumnMessage)),s&&(FLBuilder._deleteCol(i),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteCol:function(e){var t=e.closest(".fl-row"),l=e.closest(".fl-col-group"),i=0;e.remove(),rowCols=t.find(".fl-col"),groupCols=l.find(".fl-col"),0===rowCols.length&&"row"!=FLBuilderConfig.userTemplateType?FLBuilder._deleteRow(t):(0===groupCols.length?l.remove():(i=6===groupCols.length?16.65:7===groupCols.length?14.28:Math.round(100/groupCols.length*100)/100,groupCols.css("width",i+"%")),FLBuilder.ajax({action:"delete_col",node_id:e.attr("data-node"),new_width:i,silent:!0}))},_insertColBeforeClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"before"),t.stopPropagation()},_insertColAfterClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"after"),t.stopPropagation()},_insertCol:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder.ajax({action:"render_new_column",node_id:e.attr("data-node"),insert:t},FLBuilder._renderLayout)},_addColGroup:function(t,l,i){FLBuilder.showAjaxLoader(),FLBuilder._newColGroupParent=e(".fl-node-"+t+" .fl-row-content"),FLBuilder._newColGroupPosition=i,FLBuilder.ajax({action:"render_new_column_group",cols:l,node_id:t,position:i},FLBuilder._addColGroupComplete)},_addColGroupComplete:function(t){var l=JSON.parse(t),i=e(l.html).find(".fl-col").data("node");l.nodeParent=FLBuilder._newColGroupParent,l.nodePosition=FLBuilder._newColGroupPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+i+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_initColDragResizing:function(){e(".fl-block-col-resize").draggable({axis:"x",start:FLBuilder._colDragResizeStart,drag:FLBuilder._colDragResize,stop:FLBuilder._colDragResizeStop})},_colDragResizeStart:function(t,l){var i=e(l.helper),o="",s=i.closest(".fl-col-group"),r=s.find(".fl-col"),n=i.closest(".fl-col"),a=null,d=100,u=0;for(i.hasClass("fl-block-col-resize-e")?(o="e",a=n.next(".fl-col")):(o="w",a=n.prev(".fl-col"));u<r.length;u++)r.eq(u).data("node")!=n.data("node")&&r.eq(u).data("node")!=a.data("node")&&(d-=parseFloat(r.eq(u)[0].style.width));FLBuilder._colResizeData={handle:i,feedbackLeft:i.find(".fl-block-col-resize-feedback-left"),feedbackRight:i.find(".fl-block-col-resize-feedback-right"),direction:o,groupWidth:s.outerWidth(),col:n,colWidth:parseFloat(n[0].style.width)/100,sibling:a,offset:l.position.left,availWidth:d},FLBuilder._colResizing=!0,FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents()},_colDragResize:function(e,t){var l=FLBuilder._colResizeData,i=(l.offset-t.position.left)/l.groupWidth,o="e"==l.direction?100*(l.colWidth-i):100*(l.colWidth+i),s=Math.round(100*o)/100,r=l.availWidth-o,n=Math.round(100*r)/100,a=10,d=Math.round(100*(l.availWidth-10))/100;10>s?(s=a,n=d):10>n&&(s=d,n=a),"e"==l.direction?(l.feedbackLeft.html(s.toFixed(1)+"%").show(),l.feedbackRight.html(n.toFixed(1)+"%").show()):(l.feedbackLeft.html(n.toFixed(1)+"%").show(),l.feedbackRight.html(s.toFixed(1)+"%").show()),l.col.css("width",s+"%"),l.sibling.css("width",n+"%")},_colDragResizeStop:function(e,t){var l=FLBuilder._colResizeData;FLBuilder._colResizeData.feedbackLeft.hide(),FLBuilder._colResizeData.feedbackRight.hide(),FLBuilder.ajax({action:"resize_cols",col_id:l.col.data("node"),col_width:parseFloat(l.col[0].style.width),sibling_id:l.sibling.data("node"),sibling_width:parseFloat(l.sibling[0].style.width),silent:!0}),FLBuilder._colResizeData=null,FLBuilder._bindOverlayEvents(),setTimeout(function(){FLBuilder._colResizing=!1},50)},_resetColumnWidths:function(t){var l=e(this).closest(".fl-col-group"),i=l.find(".fl-col"),o=0;o=6===i.length?16.65:7===i.length?14.28:Math.round(100/i.length*100)/100,i.css("width",o+"%"),FLBuilder.ajax({action:"reset_col_widths",group_id:l.data("node"),silent:!0}),t.stopPropagation()},_moduleMouseenter:function(){var t=e(this),l=t.attr("data-name"),i=t.hasClass("fl-node-global"),o=t.parents(".fl-node-global").length>0,s=t.parents(".fl-col-group").find(".fl-col").length,r=t.parents(".fl-col"),n=0===r.index(),a=s===r.index()+1,d=wp.template("fl-module-overlay");FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),i&&o&&"row"!=FLBuilderConfig.userTemplateType||(t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,d({global:i,moduleName:l,numCols:s,parentFirst:n,parentLast:a})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_moduleMouseleave:function(t){var l=(e(this),e(t.toElement)||e(t.relatedTarget)),i=l.is("#tiptip_holder"),o=l.closest("#tiptip_holder").length>0;i||o||FLBuilder._removeModuleOverlays()},_removeModuleOverlays:function(){var t=e(".fl-module");t.removeClass("fl-block-overlay-active"),t.find(".fl-module-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_moduleDragHelper:function(t,l){return e('<div class="fl-builder-block-drag-helper">'+l.attr("data-name")+"</div>")},_moduleDragStop:function(e,t){var l=t.item,i=l.parent(),o=0,s=0;return FLBuilder._blockDragStop(e,t),i.hasClass("fl-builder-modules")||i.hasClass("fl-builder-widgets")?void l.remove():(l.hasClass("fl-builder-block")?(i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-builder-block").index(l),s=0):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-builder-block").index(l),s=l.closest(".fl-row").attr("data-node")):(o=i.children(".fl-module, .fl-builder-block").index(l),s=l.closest(".fl-col").attr("data-node")),FLBuilder._addModule(i,s,l.attr("data-type"),o,l.attr("data-widget")),t.item.remove()):i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addRow("1-col",o),l.remove()):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addColGroup(l.closest(".fl-row").attr("data-node"),"1-col",o),l.remove()):FLBuilder._reorderModule(l),void FLBuilder._resizeLayout())},_reorderModule:function(e){var t=e.closest(".fl-col").attr("data-node"),l=e.attr("data-parent"),i=e.attr("data-node"),o=e.index();t==l?FLBuilder.ajax({action:"reorder_node",node_id:i,position:o,silent:!0}):(e.attr("data-parent",t),FLBuilder.ajax({action:"move_node",new_parent:t,node_id:i,position:o,silent:!0}))},_deleteModuleClicked:function(t){var l=e(this).closest(".fl-module"),i=confirm(FLBuilderStrings.deleteModuleMessage);i&&(FLBuilder._deleteModule(l),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteModule:function(e){var t=e.closest(".fl-row");FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),t.removeClass("fl-block-overlay-muted"),FLBuilder._highlightEmptyCols(),FLBuilder._removeAllOverlays()},_moduleCopyClicked:function(t){var l=e(this).closest(".fl-module");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newModuleParent=l.parent(),FLBuilder._newModulePosition=l.index()+1,FLBuilder.ajax({action:"copy_module",node_id:l.attr("data-node")},FLBuilder._moduleCopyComplete),t.stopPropagation()},_moduleCopyComplete:function(e){var t=JSON.parse(e);t.nodeParent=FLBuilder._newModuleParent,t.nodePosition=FLBuilder._newModulePosition,FLBuilder._renderLayout(t)},_moduleSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-module").attr("data-node"),o=l.closest(".fl-col").attr("data-node"),s=l.closest(".fl-module").attr("data-type"),r=l.closest(".fl-block-overlay-global").length>0;t.stopPropagation(),FLBuilder._colResizing||(!r||FLBuilderConfig.userCanEditGlobalTemplates)&&FLBuilder._showModuleSettings(i,o,s)},_showModuleSettings:function(e,t,l){FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_module_settings",node_id:e,type:l,parent_id:t},FLBuilder._moduleSettingsLoaded)},_moduleSettingsLoaded:function(t){var l=JSON.parse(t),i=e("<div>"+l.settings+"</div>"),o=i.find("link.fl-builder-settings-css"),s=i.find("script.fl-builder-settings-js"),r=i.find(".fl-builder-settings"),n=r.attr("data-type"),a=null,d=null,u=null;e.inArray(n,FLBuilder._loadedModuleAssets)>-1?(o.remove(),s.remove()):(e("head").append(o),e("head").append(s),FLBuilder._loadedModuleAssets.push(n)),FLBuilder._setSettingsFormContent(i),"undefined"!=typeof l.layout&&(a=l.layout,a.nodeParent=FLBuilder._newModuleParent,a.nodePosition=FLBuilder._newModulePosition),"undefined"!=typeof l.state&&(d=l.state),FLBuilder.preview=new FLBuilderPreview({type:"module",layout:a,state:d}),u=FLBuilder._moduleHelpers[n],"undefined"!=typeof u&&(FLBuilder._initSettingsValidation(u.rules),u.init())},_saveModuleClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.attr("data-type"),i=(t.attr("data-node"),FLBuilder._moduleHelpers[l]),o=!0;"undefined"!=typeof i&&(t.find("label.error").remove(),t.validate().hideErrors(),o=t.validate().form(),o&&(o=i.submit())),o?(FLBuilder._saveSettings(),FLBuilder._lightbox.close()):FLBuilder._toggleSettingsTabErrors()},_addModule:function(e,t,l,i,o){FLBuilder.showAjaxLoader(),FLBuilder._newModuleParent=e,FLBuilder._newModulePosition=i,FLBuilder.ajax({action:"render_new_module",parent_id:t,type:l,position:i,node_preview:1,widget:"undefined"==typeof o?"":o},FLBuilder._addModuleComplete)},_addModuleComplete:function(t){FLBuilder._showLightbox(),FLBuilder._moduleSettingsLoaded(t),e(".fl-builder-module-settings").data("new-module","1")},registerModuleHelper:function(t,l){var i={rules:{},init:function(){},submit:function(){return!0},preview:function(){}};FLBuilder._moduleHelpers[t]=e.extend({},i,l)},_registerModuleHelper:function(e,t){FLBuilder.registerModuleHelper(e,t)},_showNodeTemplateSettings:function(t){var l=e(".fl-builder-settings-lightbox .fl-builder-settings");FLBuilder._saveSettings(),FLBuilder.ajax({action:"render_node_template_settings",node_id:l.attr("data-node")},FLBuilder._nodeTemplateSettingsLoaded)},_nodeTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._showLightbox(!1),FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveNodeTemplate:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.validate().form();l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_node_template",node_id:t.attr("data-node"),settings:FLBuilder._getSettings(t)},FLBuilder._saveNodeTemplateComplete),FLBuilder._lightbox.close())},_saveNodeTemplateComplete:function(t){var l=JSON.parse(t),i=e(".fl-builder-saved-"+l.type+"s"),o=i.find(".fl-builder-block"),s=null,r="",n=l.name.toLowerCase(),a=0,d=wp.template("fl-node-template-block");if("row"==l.type?FLBuilder.alert(FLBuilderStrings.rowTemplateSaved):"module"==l.type&&FLBuilder.alert(FLBuilderStrings.moduleTemplateSaved),l.layout&&FLBuilder._renderLayout(l.layout),0===o.length)i.append(d(l));else for(;a<o.length;a++){if(s=o.eq(a),r=s.text().toLowerCase().trim(),0===a&&r>n){i.prepend(d(l));break}if(r>n){s.before(d(l));break}if(o.length-1===a){i.append(d(l));break}}i.find(".fl-builder-block-no-node-templates").remove()},_nodeTemplateDragStop:function(e,t){var l=t.item,i=l.parent(),o=null,s=0,r="",n=null;FLBuilder._blockDragStop(e,t),l.hasClass("fl-builder-block-saved-row")||l.hasClass("fl-builder-block-row-template")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=null,r="render_new_row",n=FLBuilder._addRowComplete,FLBuilder._newRowPosition=s):(l.hasClass("fl-builder-block-saved-module")||l.hasClass("fl-builder-block-module-template"))&&(r="render_new_module",n=FLBuilder._addModuleComplete,i.hasClass("fl-builder-content")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=0):i.hasClass("fl-row-content")?(s=i.children(".fl-col-group, .fl-builder-block").index(l),o=l.closest(".fl-row").attr("data-node")):(s=i.children(".fl-module, .fl-builder-block").index(l),o=l.closest(".fl-col").attr("data-node")),FLBuilder._newModuleParent=i,FLBuilder._newModulePosition=s),
|
4 |
-
FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:r,template_id:l.attr("data-id"),parent_id:o,position:s},n),l.remove()},_editNodeTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteNodeTemplateClicked:function(t){var l=e(t.target),i=l.closest(".fl-builder-blocks-section"),o=i.find(".fl-builder-blocks-section-content"),s=o.find(".fl-builder-block"),r=l.closest(".fl-builder-block"),n=r.hasClass("fl-builder-block-global"),a=n?FLBuilder._updateLayout:void 0,d=n?FLBuilderStrings.deleteGlobalTemplate:FLBuilderStrings.deleteTemplate;confirm(d)&&(r.remove(),1===s.length&&(r.hasClass("fl-builder-block-saved-row")?o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedRows+"</span>"):o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedModules+"</span>")),FLBuilder.ajax({action:"delete_node_template",template_id:r.attr("data-id"),silent:r.hasClass("fl-builder-block-global")?!1:!0},a))},_initSettingsForms:function(){FLBuilder._initColorPickers(),FLBuilder._initSelectFields(),FLBuilder._initMultipleFields(),FLBuilder._initAutoSuggestFields(),FLBuilder._initLinkFields(),FLBuilder._initFontFields()},_setSettingsFormContent:function(e){FLBuilder._setLightboxContent(e),FLBuilder._initSettingsForms()},_settingsTabClicked:function(t){var l=e(this),i=l.closest(".fl-builder-settings"),o=l.attr("href").split("#").pop();i.find(".fl-builder-settings-tab").removeClass("fl-active"),i.find("#"+o).addClass("fl-active"),i.find(".fl-builder-settings-tabs .fl-active").removeClass("fl-active"),e(this).addClass("fl-active"),t.preventDefault()},_settingsCancelClicked:function(t){var l=e(".fl-builder-module-settings"),i=null,o=null,s=null,r=null;l.length>0&&"undefined"!=typeof l.data("new-module")?(i=e(FLBuilder.preview.state.html),o=e(".fl-node-"+l.data("node")),s=o.closest(".fl-col"),r=i.find(".fl-node-"+s.data("node")),r.length>0?FLBuilder._deleteModule(o):FLBuilder._deleteCol(s)):FLBuilder.preview&&FLBuilder.preview.revert(),FLBuilder.preview=null,FLLightbox.closeParent(this)},_initSettingsValidation:function(t,l){var i=e(".fl-builder-settings").last();i.validate({ignore:[],rules:t,messages:l,errorPlacement:FLBuilder._settingsErrorPlacement})},_settingsErrorPlacement:function(e,t){e.appendTo(t.parent())},_toggleSettingsTabErrors:function(){for(var t=e(".fl-builder-settings:visible"),l=t.find(".fl-builder-settings-tab"),i=null,o=null,s=0;s<l.length;s++)i=l.eq(s),o=i.find("label.error"),tabLink=t.find(".fl-builder-settings-tabs a[href*="+i.attr("id")+"]"),tabLink.find(".fl-error-icon").remove(),tabLink.removeClass("error"),o.length>0&&(tabLink.append('<span class="fl-error-icon"></span>'),tabLink.addClass("error"))},_getSettings:function(t){FLBuilder._updateEditorFields();var l=t.serializeArray(),i=0,o=0,s="",r="",n="",a=[],d=[],u={};for(i=0;i<l.length;i++)if(s=l[i].value.replace(/\r/gm,""),!(l[i].name.indexOf("flrich")>-1))if(l[i].name.indexOf("[")>-1){for(r=l[i].name.replace(/\[(.*)\]/,""),n=l[i].name.replace(r,""),a=[],d=n.match(/\[[^\]]*\]/g),o=0;o<d.length;o++)"[]"!=d[o]&&a.push(d[o].replace(/\[|\]/g,""));n.match(/\[\]\[[^\]]*\]\[[^\]]+\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]={}),"undefined"==typeof u[r][a[0]][a[1]]&&(u[r][a[0]][a[1]]={}),u[r][a[0]][a[1]]=s):n.match(/\[\]\[[^\]]*\]\[\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]=[]),u[r][a[0]].push(s)):n.match(/\[\]\[[^\]]*\]/)?("undefined"==typeof u[r]&&(u[r]={}),u[r][a[0]]=s):n.match(/\[\]/)&&("undefined"==typeof u[r]&&(u[r]=[]),u[r].push(s))}else u[l[i].name]=s;for(n in u)if("undefined"!=typeof u["as_values_"+n]){u[n]=e.grep(u["as_values_"+n].split(","),function(e){return""!==e}).join(",");try{delete u["as_values_"+n]}catch(c){}}return u},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_settings",node_id:l,settings:i},FLBuilder._saveSettingsComplete),FLBuilder._lightbox.close()},_saveSettingsComplete:function(e){FLBuilder._renderLayout(e,function(){FLBuilder.preview&&(FLBuilder.preview.clear(),FLBuilder.preview=null)})},_showHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeIn()},_hideHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeOut()},_initAutoSuggestFields:function(){e(".fl-suggest-field").each(FLBuilder._initAutoSuggestField)},_initAutoSuggestField:function(){var t=e(this);t.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:t.data("action"),fl_as_action_data:t.data("action-data")}),{asHtmlID:t.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,preFill:t.data("value"),queryParam:"fl_as_query",afterSelectionAdd:FLBuilder._updateAutoSuggestField,afterSelectionRemove:FLBuilder._updateAutoSuggestField,selectionLimit:t.data("limit")})},_updateAutoSuggestField:function(t,l,i){e(this).siblings(".as-values").val(i.join(",")).trigger("change")},_initMultipleFields:function(){for(var t=e(".fl-builder-field-multiples"),l=null,i=null,o=0,s=FLBuilderConfig.isRtl?{left:10}:{right:10};o<t.length;o++)l=t.eq(o),i=l.find(".fl-builder-field-multiple"),1===i.length?i.eq(0).find(".fl-builder-field-actions").addClass("fl-builder-field-actions-single"):i.find(".fl-builder-field-actions").removeClass("fl-builder-field-actions-single");e(".fl-builder-field-multiples").sortable({items:".fl-builder-field-multiple",cursor:"move",cursorAt:s,distance:5,opacity:.5,helper:FLBuilder._fieldDragHelper,placeholder:"fl-builder-field-dd-zone",stop:FLBuilder._fieldDragStop,tolerance:"pointer"})},_addFieldClicked:function(){var t=e(this),l=t.attr("data-field"),i=t.closest("tr").siblings("tr[data-field="+l+"]").last(),o=i.clone(),s=parseInt(i.find("label span.fl-builder-field-index").html(),10)+1;o.find("th label span.fl-builder-field-index").html(s),o.find(".fl-form-field-preview-text").html(""),o.find("input, textarea, select").val(""),i.after(o),FLBuilder._initMultipleFields()},_copyFieldClicked:function(){var t=e(this),l=t.closest("tr"),i=l.clone(),o=parseInt(l.find("label span.fl-builder-field-index").html(),10)+1;i.find("th label span.fl-builder-field-index").html(o),l.after(i),FLBuilder._renumberFields(l.parent()),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview()},_deleteFieldClicked:function(){var t=e(this).closest("tr"),l=t.parent(),i=confirm(FLBuilderStrings.deleteFieldMessage);i&&(t.remove(),FLBuilder._renumberFields(l),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview())},_renumberFields:function(e){for(var t=e.find(".fl-builder-field-multiple"),l=0;l<t.length;l++)t.eq(l).find("th label span.fl-builder-field-index").html(l+1)},_fieldDragHelper:function(){return e('<div class="fl-builder-field-dd-helper"></div>')},_fieldDragStop:function(e,t){FLBuilder._renumberFields(t.item.parent()),FLBuilder.preview.delayPreview()},_initSelectFields:function(){e(".fl-builder-settings:visible").find(".fl-builder-settings-fields select").trigger("change")},_settingsSelectChanged:function(){var t=e(this),l=t.attr("data-toggle"),i=t.attr("data-hide"),o=t.attr("data-trigger"),s=t.val(),r=0;if("undefined"!=typeof l){l=JSON.parse(l);for(r in l)FLBuilder._settingsSelectToggle(l[r].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(l[r].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[r].tabs,"hide","a[href*=fl-builder-settings-tab-","]");"undefined"!=typeof l[s]&&(FLBuilder._settingsSelectToggle(l[s].fields,"show","#fl-field-"),FLBuilder._settingsSelectToggle(l[s].sections,"show","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[s].tabs,"show","a[href*=fl-builder-settings-tab-","]"))}if("undefined"!=typeof i&&(i=JSON.parse(i),"undefined"!=typeof i[s]&&(FLBuilder._settingsSelectToggle(i[s].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(i[s].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(i[s].tabs,"hide","a[href*=fl-builder-settings-tab-","]"))),"undefined"!=typeof o&&(o=JSON.parse(o),"undefined"!=typeof o[s]&&"undefined"!=typeof o[s].fields))for(r=0;r<o[s].fields.length;r++)e("#fl-field-"+o[s].fields[r]).find("select").trigger("change")},_settingsSelectToggle:function(t,l,i,o){var s=0;if(o="undefined"==typeof o?"":o,"undefined"!=typeof t)for(;s<t.length;s++)e(i+t[s]+o)[l]()},_initColorPickers:function(){var t=FLBuilderConfig.colorPresets?FLBuilderConfig.colorPresets:[];FLBuilder.colorPicker=new FLBuilderColorPicker({elements:".fl-color-picker .fl-color-picker-value",presets:t,labels:{colorPresets:FLBuilderStrings.colorPresets,colorPicker:FLBuilderStrings.colorPicker,placeholder:FLBuilderStrings.placeholder,removePresetConfirm:FLBuilderStrings.removePresetConfirm,noneColorSelected:FLBuilderStrings.noneColorSelected,alreadySaved:FLBuilderStrings.alreadySaved,noPresets:FLBuilderStrings.noPresets,presetAdded:FLBuilderStrings.presetAdded}}),e(FLBuilder.colorPicker).on("presetRemoved presetAdded",function(e,t){FLBuilder.ajax({action:"save_color_presets",presets:t.presets})})},_selectSinglePhoto:function(){null===FLBuilder._singlePhotoSelector&&(FLBuilder._singlePhotoSelector=wp.media({title:FLBuilderStrings.selectPhoto,button:{text:FLBuilderStrings.selectPhoto},library:{type:"image"},multiple:!1})),FLBuilder._singlePhotoSelector.once("open",e.proxy(FLBuilder._singlePhotoOpened,this)),FLBuilder._singlePhotoSelector.once("select",e.proxy(FLBuilder._singlePhotoSelected,this)),FLBuilder._singlePhotoSelector.open()},_singlePhotoOpened:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=i.val(),s=null;e(this).hasClass("fl-photo-replace")?(t.reset(),l.addClass("fl-photo-empty"),i.val("")):""!==o?(s=wp.media.attachment(o),s.fetch(),t.add(s?[s]:[])):t.reset()},_singlePhotoSelected:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-photo-preview img"),s=l.find("select");i.val(t.id),o.attr("src",FLBuilder._getPhotoSrc(t)),l.removeClass("fl-photo-empty"),l.find("label.error").remove(),s.show(),s.html(FLBuilder._getPhotoSizeOptions(t)),s.trigger("change")},_singlePhotoRemoved:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find("select");t.reset(),l.addClass("fl-photo-empty"),i.val(""),o.html(""),o.trigger("change")},_getPhotoSrc:function(e){return"undefined"==typeof e.sizes?e.url:"undefined"!=typeof e.sizes.thumbnail?e.sizes.thumbnail.url:e.sizes.full.url},_getPhotoSizeOptions:function(e){var t="",l=null,i=null,o="",s={full:FLBuilderStrings.fullSize,large:FLBuilderStrings.large,medium:FLBuilderStrings.medium,thumbnail:FLBuilderStrings.thumbnail};if("undefined"==typeof e.sizes)t+='<option value="'+e.url+'">'+FLBuilderStrings.fullSize+"</option>";else for(l in e.sizes)o="undefined"!=typeof s[l]?s[l]+" - ":"undefined"!=typeof FLBuilderConfig.customImageSizeTitles[l]?FLBuilderConfig.customImageSizeTitles[l]+" - ":"",i="full"==l?' selected="selected"':"",t+='<option value="'+e.sizes[l].url+'"'+i+">"+o+e.sizes[l].width+" x "+e.sizes[l].height+"</option>";return t},_selectMultiplePhotos:function(){var t=e(this).closest(".fl-multiple-photos-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""===i?'[gallery ids="-1"]':'[gallery ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("gallery",o).shortcode,r=wp.media.gallery.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.gallery.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.gallery=n.gallery,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multiplePhotoSelector&&FLBuilder._multiplePhotoSelector.dispose(),FLBuilder._multiplePhotoSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-photos-edit")?"gallery-edit":"gallery-library",title:wp.media.view.l10n.editGalleryTitle,editing:!0,multiple:!0,selection:a}).open(),e(FLBuilder._multiplePhotoSelector.views.view.el).addClass("fl-multiple-photos-lightbox"),FLBuilder._multiplePhotoSelector.once("update",e.proxy(FLBuilder._multiplePhotosSelected,this))},_multiplePhotosSelected:function(t){for(var l=e(this).closest(".fl-multiple-photos-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-multiple-photos-count"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?o.html("1 "+FLBuilderStrings.photoSelected):o.html(s.length+" "+FLBuilderStrings.photosSelected),l.removeClass("fl-multiple-photos-empty"),l.find("label.error").remove(),i.val(JSON.stringify(s)).trigger("change")},_selectSingleVideo:function(){null===FLBuilder._singleVideoSelector&&(FLBuilder._singleVideoSelector=wp.media({title:FLBuilderStrings.selectVideo,button:{text:FLBuilderStrings.selectVideo},library:{type:"video"},multiple:!1})),FLBuilder._singleVideoSelector.once("select",e.proxy(FLBuilder._singleVideoSelected,this)),FLBuilder._singleVideoSelector.open()},_singleVideoSelected:function(){var t=FLBuilder._singleVideoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-video-field"),i=l.find(".fl-video-preview-img img"),o=l.find(".fl-video-preview-filename"),s=l.find("input[type=hidden]");i.attr("src",t.icon),o.html(t.filename),l.removeClass("fl-video-empty"),l.find("label.error").remove(),s.val(t.id).trigger("change")},_selectMultipleAudios:function(){var t=e(this).closest(".fl-multiple-audios-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""==i?'[playlist ids="-1"]':'[playlist ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("playlist",o).shortcode,r=wp.media.playlist.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.playlist.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.playlist=n.playlist,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multipleAudiosSelector&&FLBuilder._multipleAudiosSelector.dispose(),FLBuilder._multipleAudiosSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-audios-edit")?"playlist-edit":"playlist-library",title:wp.media.view.l10n.editPlaylistTitle,editing:!0,multiple:!0,selection:a}).open(),FLBuilder._multipleAudiosSelector.content.get("view").sidebar.unset("playlist"),FLBuilder._multipleAudiosSelector.on("content:render:browse",function(e){e&&e.sidebar.on("ready",function(){e.sidebar.unset("playlist")})}),FLBuilder._multipleAudiosSelector.once("update",e.proxy(FLBuilder._multipleAudiosSelected,this))},_multipleAudiosSelected:function(t){for(var l=e(this).closest(".fl-multiple-audios-field"),i=l.find(".fl-multiple-audios-count"),o=l.find("input[type=hidden]"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?i.html("1 "+FLBuilderStrings.audioSelected):i.html(s.length+" "+FLBuilderStrings.audiosSelected),o.val(JSON.stringify(s)).trigger("change"),l.removeClass("fl-multiple-audios-empty"),l.find("label.error").remove()},_selectIcon:function(){var e=this;FLIconSelector.open(function(t){FLBuilder._iconSelected.apply(e,[t])})},_iconSelected:function(t){var l=e(this).closest(".fl-icon-field"),i=l.find("input[type=hidden]"),o=l.find("i"),s=o.attr("data-icon");i.val(t).trigger("change"),o.removeClass(s),o.addClass(t),o.attr("data-icon",t),l.removeClass("fl-icon-empty"),l.find("label.error").remove()},_removeIcon:function(){var t=e(this).closest(".fl-icon-field"),l=t.find("input[type=hidden]"),i=t.find("i");l.val("").trigger("change"),i.removeClass(),i.attr("data-icon",""),t.addClass("fl-icon-empty")},_formFieldClicked:function(){var t=e(this),l=t.closest(".fl-lightbox-wrap").attr("data-instance-id"),i=FLLightbox._instances[l],o=i._node.find(".fl-lightbox").css("left"),s=i._node.find(".fl-lightbox").css("top"),r=t.closest(".fl-builder-settings"),n=t.attr("data-type"),a=t.siblings("input").val(),d=FLBuilder._moduleHelpers[n],u=new FLLightbox({className:"fl-builder-lightbox fl-form-field-settings",destroyOnClose:!0});t.closest(".fl-builder-lightbox").hide(),t.attr("id","fl-"+u._id),u.open('<div class="fl-builder-lightbox-loading"></div>'),u.draggable({handle:".fl-lightbox-header"}),e("body").undelegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),u._node.find(".fl-lightbox").css({left:o,top:Number(parseInt(s)+233)+"px"}),FLBuilder.ajax({action:"render_settings_form",node_id:r.attr("data-node"),type:n,settings:a.replace(/'/g,"'")},function(e){var t=JSON.parse(e);u.setContent(t.html),u._node.find("form.fl-builder-settings").attr("data-type",n),u._node.find(".fl-builder-settings-cancel").on("click",FLBuilder._closeFormFieldLightbox),FLBuilder._initSettingsForms(),"undefined"!=typeof d&&(FLBuilder._initSettingsValidation(d.rules),d.init()),u._node.find(".fl-lightbox").css({left:o,top:s})})},_closeFormFieldLightbox:function(){var t=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),l=FLLightbox._instances[t],i=e(".fl-builder-settings-lightbox"),o=i.find("form"),s=l._node.find(".fl-lightbox").css("left"),r=l._node.find(".fl-lightbox").css("top"),n=0,a=e(window),d=a.height();l._node.find(".fl-lightbox-content").html('<div class="fl-builder-lightbox-loading"></div>'),n=l._node.find(".fl-lightbox").height(),d-80>n?l._node.find(".fl-lightbox").css("top",(d-n)/2-40+"px"):l._node.find(".fl-lightbox").css("top","0px"),l.on("close",function(){i.show(),i.find("label.error").remove(),o.validate().hideErrors(),FLBuilder._toggleSettingsTabErrors(),i.find(".fl-lightbox").css({left:s,top:r})}),setTimeout(function(){l.close(),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked)},500)},_saveFormFieldClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),i=t.attr("data-type"),o=FLBuilder._getSettings(t),s=FLBuilder._moduleHelpers[i],r=e(".fl-builder-settings #fl-"+l),n=r.parent().attr("data-preview-text"),a=o[n],d=e('select[name="'+n+'"]'),u=document.createElement("div"),c=!0;return d.length>0&&(a=d.find('option[value="'+o[n]+'"]').text()),"undefined"!=typeof s&&(t.find("label.error").remove(),t.validate().hideErrors(),c=t.validate().form(),c&&(c=s.submit())),c?("undefined"!=typeof n&&(a.indexOf("fa fa-")>-1?a='<i class="'+a+'"></i>':a.length>35&&(u.innerHTML=a,a=(u.textContent||u.innerText||"").replace(/^(.{35}[^\s]*).*/,"$1")+"..."),r.siblings(".fl-form-field-preview-text").html(a)),r.siblings("input").val(JSON.stringify(o)).trigger("change"),FLBuilder._closeFormFieldLightbox.apply(this),!0):(FLBuilder._toggleSettingsTabErrors(),!1)},_layoutFieldClicked:function(){var t=e(this);t.siblings().removeClass("fl-layout-field-option-selected"),t.addClass("fl-layout-field-option-selected"),t.siblings("input").val(t.attr("data-value"))},_initLinkFields:function(){e(".fl-link-field").each(FLBuilder._initLinkField)},_initLinkField:function(){var t=e(this),l=t.find(".fl-link-field-search-input");l.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:"fl_as_links"}),{asHtmlID:l.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,queryParam:"fl_as_query",selectionLimit:1,afterSelectionAdd:FLBuilder._updateLinkField})},_updateLinkField:function(e,t,l){var i=e.closest(".fl-link-field"),o=i.find(".fl-link-field-search"),s=i.find(".fl-link-field-search-input"),r=i.find(".fl-link-field-input");r.val(t.value).trigger("keyup"),s.autoSuggest("remove",t.value),o.hide()},_linkFieldSelectClicked:function(){e(this).parent().find(".fl-link-field-search").show()},_linkFieldSelectCancelClicked:function(){e(this).parent().hide()},_initFontFields:function(){e(".fl-font-field").each(FLBuilder._initFontField)},_initFontField:function(){var t=e(this),l=t.find(".fl-font-field-font");l.on("change",function(){FLBuilder._getFontWeights(l)})},_getFontWeights:function(t){var l=t.next(".fl-font-field-weight"),i=t.val(),o={"default":"Default",regular:"Regular",100:"Thin 100",200:"Extra-Light 200",300:"Light 300",400:"Normal 400",500:"Medium 500",600:"Semi-Bold 600",700:"Bold 700",800:"Extra-Bold 800",900:"Ultra-Bold 900"},s={};l.html(""),s="undefined"!=typeof FLBuilderFontFamilies.system[i]?FLBuilderFontFamilies.system[i].weights:"undefined"!=typeof FLBuilderFontFamilies.google[i]?FLBuilderFontFamilies.google[i]:FLBuilderFontFamilies["default"][i],e.each(s,function(e,t){l.append('<option value="'+t+'">'+o[t]+"</option>")})},initEditorField:function(e){var t=tinyMCEPreInit.mceInit.flhiddeneditor;t.elements=e,tinyMCEPreInit.mceInit[e]=t},_updateEditorFields:function(){var t=e(".fl-builder-settings textarea.wp-editor-area");t.each(FLBuilder._updateEditorField)},_updateEditorField:function(){var t=e(this),l=t.closest(".wp-editor-wrap"),i=t.attr("id"),o=t.closest(".fl-editor-field").attr("id"),s="undefined"==typeof tinyMCE?!1:tinyMCE.get(i),r=t.siblings('textarea[name="'+o+'"]');0===r.length&&(r=e('<textarea name="'+o+'"></textarea>').hide(),t.after(r)),s&&l.hasClass("tmce-active")?r.val(s.getContent()):"undefined"!=typeof switchEditors?r.val(switchEditors.wpautop(t.val())):r.val(t.val())},_loopBuilderPostTypeChange:function(){var t=e(this).val();e(".fl-loop-builder-filter").hide(),e(".fl-loop-builder-"+t+"-filter").show()},_textFieldAddValueSelectChange:function(){var t=e(this),l=e('input[name="'+t.data("target")+'"]'),i=l.val(),o=t.val();-1==i.indexOf(o)&&l.attr("value",i.trim()+" "+o.trim()),t.val("")},ajax:function(t,l){var i;if(FLBuilder._silentUpdate)return FLBuilder.showAjaxLoader(),void(FLBuilder._silentUpdateCallbackData=[t,l]);t.silent===!0&&(FLBuilder._silentUpdate=!0);for(i in t)"undefined"==typeof t[i]&&(t[i]=null);return t._wpnonce=FLBuilderConfig.ajaxNonce,t.post_id=e("#fl-post-id").val(),t.fl_builder=1,t.fl_action=t.action,t={fl_builder_data:t},e.post(FLBuilder._ajaxUrl(),t,function(e){FLBuilder._ajaxComplete(),"undefined"!=typeof l&&l.call(this,e)})},_ajaxComplete:function(){var e,t;FLBuilder._silentUpdate=!1,null!==FLBuilder._silentUpdateCallbackData?(FLBuilder.showAjaxLoader(),e=FLBuilder._silentUpdateCallbackData[0],t=FLBuilder._silentUpdateCallbackData[1],FLBuilder._silentUpdateCallbackData=null,FLBuilder.ajax(e,t)):FLBuilder.hideAjaxLoader()},_ajaxUrl:function(e){var t=window.location.href.split("#").shift(),l=null;if("undefined"!=typeof e)for(l in e)t+=t.indexOf("?")>-1?"&":"?",t+=l+"="+e[l];return t},showAjaxLoader:function(){0===e(".fl-builder-lightbox-loading").length&&e(".fl-builder-loading").show()},hideAjaxLoader:function(){e(".fl-builder-loading").hide()},_showLightbox:function(e){e="undefined"==typeof e?!0:e,FLBuilder._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),e?FLBuilder._lightbox.draggable({handle:".fl-lightbox-header"}):FLBuilder._lightbox.draggable(!1),FLBuilder._removeAllOverlays(),FLBuilder._initLightboxScrollbars()},_setLightboxContent:function(e){FLBuilder._lightbox.setContent(e)},_initLightboxScrollbars:function(){FLBuilder._initScrollbars(),FLBuilder._lightboxScrollbarTimeout=setTimeout(FLBuilder._initLightboxScrollbars,500)},_lightboxClosed:function(){FLBuilder._lightbox.empty(),clearTimeout(FLBuilder._lightboxScrollbarTimeout)},_showActionsLightbox:function(e){var t=wp.template("fl-actions-lightbox");FLBuilder._actionsLightbox.open(t(e))},alert:function(e){var t=new FLLightbox({className:"fl-builder-lightbox fl-builder-alert-lightbox",destroyOnClose:!0}),l=wp.template("fl-alert-lightbox");t.open(l({message:e}))},_alertClose:function(){FLLightbox.closeParent(this)},log:function(e){"undefined"!=typeof window.console&&"undefined"!=typeof window.console.log&&console.log(e)},logError:function(e){var t=null;"undefined"!=typeof e&&("undefined"!=typeof e.stack?t=e.stack:"undefined"!=typeof e.message&&(t=e.message),t&&(FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(t),FLBuilder.log("************************************************************************")))},logGlobalError:function(e,t,l,i,o){FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(FLBuilderStrings.globalErrorMessage.replace("{message}",e).replace("{line}",l).replace("{file}",t)),"undefined"!=typeof o&&"undefined"!=typeof o.stack&&(FLBuilder.log(o.stack),FLBuilder.log("************************************************************************"))}},e(function(){FLBuilder._init()})}(jQuery);var FLBuilderColorPicker;!function(e,t){function l(){var t,l,i="backgroundImage";h?f="filter":(t=e('<div id="iris-gradtest" />'),l="linear-gradient(top,#fff,#000)",e.each(p,function(e,o){return t.css(i,o+l),t.css(i).match("gradient")?(f=e,!1):void 0}),f===!1&&(t.css("background","-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))"),t.css(this.bgImageString).match("gradient")&&(f="webkit")),t.remove())}function i(t,l){return t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),"webkit"===f?s(t,l):p[f]+"linear-gradient("+t+", "+l.join(", ")+")"}function o(t,l){var i,o,s,n,a,d,u,c,h;t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),i="top"===t?0:1,o=e(this),s=l.length-1,n="filter",a=1===i?"left":"top",d=1===i?"right":"bottom",u=1===i?"height":"width",c='<div class="iris-ie-gradient-shim" style="position:absolute;'+u+":100%;"+a+":%start%;"+d+":%end%;"+n+':%filter%;" data-color:"%color%"></div>',h="","static"===o.css("position")&&o.css({position:"relative"}),l=r(l),e.each(l,function(e,t){var o,r,n;return e===s?!1:(o=l[e+1],void(t.stop!==o.stop&&(r=100-parseFloat(o.stop)+"%",t.octoHex=new Color(t.color).toIEOctoHex(),o.octoHex=new Color(o.color).toIEOctoHex(),n="progid:DXImageTransform.Microsoft.Gradient(GradientType="+i+", StartColorStr='"+t.octoHex+"', EndColorStr='"+o.octoHex+"')",h+=c.replace("%start%",t.stop).replace("%end%",r).replace("%filter%",n))))}),o.find(".iris-ie-gradient-shim").remove(),e(h).prependTo(o)}function s(t,l){var i=[];return t="top"===t?"0% 0%,0% 100%,":"0% 100%,100% 100%,",l=r(l),e.each(l,function(e,t){i.push("color-stop("+parseFloat(t.stop)/100+", "+t.color+")")}),"-webkit-gradient(linear,"+t+i.join(",")+")"}function r(t){var l=[],i=[],o=[],s=t.length-1;return e.each(t,function(e,t){var o=t,s=!1,r=t.match(/1?[0-9]{1,2}%$/);r&&(o=t.replace(/\s?1?[0-9]{1,2}%$/,""),s=r.shift()),l.push(o),i.push(s)}),i[0]===!1&&(i[0]="0%"),i[s]===!1&&(i[s]="100%"),i=n(i),e.each(i,function(e){o[e]={color:l[e],stop:i[e]}}),o}function n(t){var l,i,o,s,r=0,a=t.length-1,d=0,u=!1;if(t.length<=2||e.inArray(!1,t)<0)return t;for(;d<t.length-1;)u||t[d]!==!1?u&&t[d]!==!1&&(a=d,d=t.length):(r=d-1,u=!0),d++;for(i=a-r,s=parseInt(t[r].replace("%"),10),l=(parseFloat(t[a].replace("%"))-s)/i,d=r+1,o=1;a>d;)t[d]=s+o*l+"%",o++,d++;return n(t)}var a=[],d=navigator.userAgent.toLowerCase(),u="Microsoft Internet Explorer"===navigator.appName,c=u?parseFloat(d.match(/msie ([0-9]{1,}[\.0-9]{0,})/)[1]):0,h=u&&10>c,f=!1,p=["-moz-","-webkit-","-o-","-ms-"];e.fn.gradient=function(){var t=arguments;return this.each(function(){h?o.apply(this,t):e(this).css("backgroundImage",i.apply(this,t))})},e.fn.raninbowGradient=function(t,l){var i,o,s,r;for(t=t||"top",i=e.extend({},{s:100,l:50},l),o="hsl(%h%,"+i.s+"%,"+i.l+"%)",s=0,r=[];360>=s;)r.push(o.replace("%h%",s)),s+=30;return this.each(function(){e(this).gradient(t,r)})},FLBuilderColorPicker=function(t){this._html='<div class="fl-color-picker-ui"><div class="iris-picker"><div class="iris-picker-inner"><div class="iris-square"><a class="iris-square-value" href="#"><span class="iris-square-handle ui-slider-handle"></span></a><div class="iris-square-inner iris-square-horiz"></div><div class="iris-square-inner iris-square-vert"></div></div><div class="iris-slider iris-strip"><div class="iris-slider-offset"></div></div></div></div></div>';var l={elements:null,color:"",mode:"hsl",controls:{horiz:"s",vert:"l",strip:"h"},target:!1,width:200,presets:[],labels:{colorPresets:"Color Presets",colorPicker:"Color Picker",placeholder:"Paste color here...",removePresetConfirm:"Are you sure?",noneColorSelected:"None color selected.",alreadySaved:"%s is already a saved preset.",noPresets:"Add a color preset first.",presetAdded:"%s added to presets!"}};this.options=e.extend({},l,t),(h===!1||h===!0&&c>7)&&this._init()},FLBuilderColorPicker.prototype={_html:"",_color:"",_currentElement:"",_inited:!1,_defaultHSLControls:{horiz:"s",vert:"l",strip:"h"},_defaultHSVControls:{horiz:"h",vert:"v",strip:"s"},_scale:{h:360,s:100,l:100,v:100},_init:function(){var t=this;e(t.options.elements);this._color=new Color("#000000").setHSpace(t.options.mode),a=this.options.presets,f===!1&&l(),e("html").hasClass("fl-color-picker-init")?t.picker=e(".fl-color-picker-ui"):t.picker=e(this._html).appendTo("body"),u?9===c?t.picker.addClass("iris-ie-9"):8>=c&&t.picker.addClass("iris-ie-lt9"):d.indexOf("compatible")<0&&d.indexOf("khtml")<0&&d.match(/mozilla/)&&t.picker.addClass("iris-mozilla"),t.controls={square:t.picker.find(".iris-square"),squareDrag:t.picker.find(".iris-square-value"),horiz:t.picker.find(".iris-square-horiz"),vert:t.picker.find(".iris-square-vert"),strip:t.picker.find(".iris-strip"),stripSlider:t.picker.find(".iris-strip .iris-slider-offset")},"hsv"===t.options.mode&&t._has("l",t.options.controls)?t.options.controls=t._defaultHSVControls:"hsl"===t.options.mode&&t._has("v",t.options.controls)&&(t.options.controls=t._defaultHSLControls),t.hue=t._color.h(),this._setTemplates(),this._ui=e(".fl-color-picker-ui"),this._iris=e(".iris-picker"),this._wrapper=e("body"),e("html").hasClass("fl-color-picker-init")||this._ui.prepend(this._hexHtml).append(this._presetsHtml),t.element=this._ui.find(".fl-color-picker-input"),t._initControls(),t.active="external",t._change(),t._addInputListeners(t.element),this._buildUI(),this._prepareColorFields(),this._pickerControls(),this._presetsControls(),e("html").addClass("fl-color-picker-init")},_prepareColorFields:function(){e(".fl-color-picker-value").each(function(){var t=e(this),l=t.parent().find(".fl-color-picker-color");t.val()&&l.css({backgroundColor:"#"+t.val().toString()})})},_setTemplates:function(){this._presetsHtml='<div class="fl-color-picker-presets"><div class="fl-color-picker-presets-toggle"><div class="fl-color-picker-presets-open-label fl-color-picker-active">'+this.options.labels.colorPresets+' <span class="fl-color-picker-icon-arrow-up"></span></div><div class="fl-color-picker-presets-close-label">'+this.options.labels.colorPicker+' <span class="fl-color-picker-icon-arrow-down"></span></div></div><ul class="fl-color-picker-presets-list"></ul></div>',this._hexHtml='<input type="text" class="fl-color-picker-input" maxlength="7" placeholder="'+this.options.labels.placeholder+'"><div class="fl-color-picker-preset-add"></div>',this._presetsTpl='<li class="fl-color-picker-preset"><span class="fl-color-picker-preset-color"></span> <span class="fl-color-picker-preset-label"></span> <span class="fl-color-picker-preset-remove fl-color-picker-icon-remove"></span></li>',this._noPresetsTpl='<li class="fl-color-picker-no-preset"><span class="fl-color-picker-preset-label">'+this.options.labels.noPresets+"</span></li>"},_has:function(t,l){var i=!1;return e.each(l,function(e,l){return t===l?(i=!0,!1):void 0}),i},_buildUI:function(){var t=this;t._presetsList=this._ui.find(".fl-color-picker-presets-list"),t._presetsList.html(""),this.options.presets.length>0?e.each(this.options.presets,function(e,l){
|
5 |
-
t._addPresetView(l)}):t._presetsList.append(this._noPresetsTpl)},_addPresetView:function(t){var l=this._presetsList.find(".fl-color-picker-no-preset");l.length>0&&l.remove();var i=e(this._presetsTpl),o=Color(t);i.attr("data-color",t).find(".fl-color-picker-preset-color").css({backgroundColor:o.toString()}).end().find(".fl-color-picker-preset-label").html(o.toString()),this._presetsList.append(i)},_addPresetFeedback:function(){this._ui.append('<div class="fl-color-picker-added"><div class="fl-color-picker-added-text"><div class="fl-color-picker-icon-check"></div> "'+this.options.labels.presetAdded.replace("%s",this._color.toString())+'"</div></div>'),this._ui.find(".fl-color-picker-added").hide().fadeIn(200).delay(2e3).fadeOut(200,function(){e(this).remove()})},_pickerControls:function(){var t=this;this._wrapper.on("click",".fl-color-picker-color",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),t._ui.position({my:"left top",at:"left bottom",of:l,collision:"flipfit",using:function(e,l){t._togglePicker(e)}})}).on("click",".fl-color-picker-clear",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),l.prev(".fl-color-picker-color").css({backgroundColor:"transparent"}).addClass("fl-color-picker-empty"),t._setColor(""),t.element.val(""),t._currentElement.val("").trigger("change")}),e(document).on("click",function(t){0===e(t.target).closest(".fl-color-picker-ui").length&&e(".fl-color-picker-ui.fl-color-picker-active").removeClass("fl-color-picker-active")})},_presetsControls:function(){var t=this,l=t._ui.find(".fl-color-picker-preset-add"),i=t._ui.find(".fl-color-picker-presets"),o=i.find(".fl-color-picker-presets-open-label"),s=i.find(".fl-color-picker-presets-close-label"),r=i.find(".fl-color-picker-presets-list");l.off("click").on("click",function(){t._addPreset(t.element.val())}),r.css({height:t.element.innerHeight()+t._iris.innerHeight()+14+"px"}).hide(),i.off("click").on("click",".fl-color-picker-presets-toggle",function(){o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset",function(l){var i=new Color(e(this).data("color").toString());t._setColor(i),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:i.toString()}).removeClass("fl-color-picker-empty"),o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset-remove",function(l){l.stopPropagation(),t._removePreset(e(this).parent().data("color"))})},_removePreset:function(t){if(confirm(this.options.labels.removePresetConfirm)){var l=t.toString(),i=a.indexOf(l);i>-1&&(a.splice(i,1),this.options.presets=a,this._presetsList.find('.fl-color-picker-preset[data-color="'+l+'"]').slideUp(function(){e(this).remove()})),a.length<1&&this._presetsList.append(this._noPresetsTpl),e(this).trigger("presetRemoved",{presets:a})}},_addPreset:function(t){var l=t.toString().replace(/^#/,"");""===l?alert(this.options.labels.noneColorSelected):a.indexOf(l)>-1?alert(this.options.labels.alreadySaved.replace("%s","#"+l)):(this._addPresetView(l),this._addPresetFeedback(),a.push(l),this.options.presets=a,e(this).trigger("presetAdded",{presets:a}))},_togglePicker:function(e){var t=this;this._ui.hasClass("fl-color-picker-active")?(this._ui.removeClass("fl-color-picker-active"),e&&setTimeout(function(){t._ui.css(e),t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200)):(e&&t._ui.css(e),setTimeout(function(){t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200))},_paint:function(){var e=this;e._paintDimension("right","strip"),e._paintDimension("top","vert"),e._paintDimension("left","horiz")},_paintDimension:function(e,t){var l,i=this,o=i._color,s=i.options.mode,r=i._getHSpaceColor(),n=i.controls[t],a=i.options.controls;if(t!==i.active&&("square"!==i.active||"strip"===t))switch(a[t]){case"h":if("hsv"===s){switch(r=o.clone(),t){case"horiz":r[a.vert](100);break;case"vert":r[a.horiz](100);break;case"strip":r.setHSpace("hsl")}l=r.toHsl()}else l="strip"===t?{s:r.s,l:r.l}:{s:100,l:r.l};n.raninbowGradient(e,l);break;case"s":"hsv"===s?"vert"===t?l=[o.clone().a(0).s(0).toCSS("rgba"),o.clone().a(1).s(0).toCSS("rgba")]:"strip"===t?l=[o.clone().s(100).toCSS("hsl"),o.clone().s(0).toCSS("hsl")]:"horiz"===t&&(l=["#fff","hsl("+r.h+",100%,50%)"]):l="vert"===t&&"h"===i.options.controls.horiz?["hsla(0, 0%, "+r.l+"%, 0)","hsla(0, 0%, "+r.l+"%, 1)"]:["hsl("+r.h+",0%,50%)","hsl("+r.h+",100%,50%)"],n.gradient(e,l);break;case"l":l="strip"===t?["hsl("+r.h+",100%,100%)","hsl("+r.h+", "+r.s+"%,50%)","hsl("+r.h+",100%,0%)"]:["#fff","rgba(255,255,255,0) 50%","rgba(0,0,0,0) 50%","rgba(0,0,0,1)"],n.gradient(e,l);break;case"v":l="strip"===t?[o.clone().v(100).toCSS(),o.clone().v(0).toCSS()]:["rgba(0,0,0,0)","#000"],n.gradient(e,l)}},_getHSpaceColor:function(){return"hsv"===this.options.mode?this._color.toHsv():this._color.toHsl()},_addInputListeners:function(e){var t=this,l=100,i=function(l){var i=new Color(e.val()),o=e.val().replace(/^#/,"");if(e.removeClass("iris-error"),i.error)""!==o&&e.addClass("iris-error");else if(i.toString()!==t._color.toString())if("keyup"===l.type){if(o.match(/^[0-9a-fA-F]{3}$/))return;t._setColor(o),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:Color(o).toString()}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change")}else if("paste"===l.type)return o=l.originalEvent.clipboardData.getData("text").replace(/^#/,""),hex=Color(o).toString(),t._setColor(o),e.val(hex),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:hex}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change"),!1};e.on("change",i).on("keyup",t._debounce(i,l))},_initControls:function(){var t=this,l=t.controls,i=l.square,o=t.options.controls,s=t._scale[o.strip];l.stripSlider.slider({orientation:"horizontal",max:s,slide:function(e,l){t.active="strip","h"===o.strip&&(l.value=s-l.value),t._color[o.strip](l.value),t._change.apply(t,arguments)}}),l.squareDrag.draggable({containment:l.square.find(".iris-square-inner"),zIndex:1e3,cursor:"move",drag:function(e,l){t._squareDrag(e,l)},start:function(){i.addClass("iris-dragging"),e(this).addClass("ui-state-focus")},stop:function(){i.removeClass("iris-dragging"),e(this).removeClass("ui-state-focus")}}).on("mousedown mouseup",function(l){var i="ui-state-focus";l.preventDefault(),"mousedown"===l.type?(t.picker.find("."+i).removeClass(i).blur(),e(this).addClass(i).focus()):e(this).removeClass(i)}).on("keydown",function(e){var i=l.square,o=l.squareDrag,s=o.position(),r=2;switch(e.altKey&&(r*=10),e.keyCode){case 37:s.left-=r;break;case 38:s.top-=r;break;case 39:s.left+=r;break;case 40:s.top+=r;break;default:return!0}s.left=Math.max(0,Math.min(s.left,i.width())),s.top=Math.max(0,Math.min(s.top,i.height())),o.css(s),t._squareDrag(e,{position:s}),e.preventDefault()}),i.mousedown(function(l){var i,o;1===l.which&&e(l.target).is("div")&&(i=t.controls.square.offset(),o={top:l.pageY-i.top,left:l.pageX-i.left},l.preventDefault(),t._squareDrag(l,{position:o}),l.target=t.controls.squareDrag.get(0),t.controls.squareDrag.css(o).trigger(l))})},_squareDrag:function(e,t){var l=this,i=l.options.controls,o=l._squareDimensions(),s=Math.round((o.h-t.position.top)/o.h*l._scale[i.vert]),r=l._scale[i.horiz]-Math.round((o.w-t.position.left)/o.w*l._scale[i.horiz]);l._color[i.horiz](r)[i.vert](s),l.active="square",l._change.apply(l,arguments)},_setColor:function(e){var t,l,i=this,o=i.options.color;i.options.color=e,e=""+e,t=e.replace(/^#/,""),l=new Color(e).setHSpace(i.options.mode),l.error?i.options.color=o:(i._color=l,i.options.color=i._color.toString(),i.active="external",i._change())},_squareDimensions:function(e){var l,i,o=this.controls.square;return e!==t&&o.data("dimensions")?o.data("dimensions"):(i=this.controls.squareDrag,l={w:o.width(),h:o.height()},o.data("dimensions",l),l)},_isNonHueControl:function(e,t){return"square"===e&&"h"===this.options.controls.strip?!0:"external"===t||"h"===t&&"strip"===e?!1:!0},_change:function(){var t=this,l=t.controls,i=t._getHSpaceColor(),o=["square","strip"],s=t.options.controls,r=s[t.active]||"external",n=t.hue;"strip"===t.active?o=[]:"external"!==t.active&&o.pop(),e.each(o,function(e,o){var r,n,a;if(o!==t.active)switch(o){case"strip":r="h"===s.strip?t._scale[s.strip]-i[s.strip]:i[s.strip],l.stripSlider.slider("value",r);break;case"square":n=t._squareDimensions(),a={left:i[s.horiz]/t._scale[s.horiz]*n.w,top:n.h-i[s.vert]/t._scale[s.vert]*n.h},t.controls.squareDrag.css(a)}}),i.h!==n&&t._isNonHueControl(t.active,r)&&t._color.h(n),t.hue=t._color.h(),t.options.color=t._color.toString(),t.element.is(":input")&&!t._color.error&&(t.element.removeClass("iris-error"),t.element.val()!==t._color.toString()&&(t.element.val(t._color.toString()),this._currentElement&&(this._currentElement.val(t._color.toString().replace(/^#/,"")).parent().find(".fl-color-picker-color").css({backgroundColor:t._color.toString()}).removeClass("fl-color-picker-empty"),this._currentElement.trigger("change")))),t._paint(),t._inited=!0,t.active=!1},_debounce:function(e,t,l){var i,o;return function(){var s,r,n=this,a=arguments;return s=function(){i=null,l||(o=e.apply(n,a))},r=l&&!i,clearTimeout(i),i=setTimeout(s,t),r&&(o=e.apply(n,a)),o}}}}(jQuery),function(e,t){var l=function(e,t){return this instanceof l?this._init(e,t):new l(e,t)};l.fn=l.prototype={_color:0,_alpha:1,error:!1,_hsl:{h:0,s:0,l:0},_hsv:{h:0,s:0,v:0},_hSpace:"hsl",_init:function(e){var l="noop";switch(typeof e){case"object":return e.a!==t&&this.a(e.a),l=e.r!==t?"fromRgb":e.l!==t?"fromHsl":e.v!==t?"fromHsv":l,this[l](e);case"string":return this.fromCSS(e);case"number":return this.fromInt(parseInt(e,10))}return this},_error:function(){return this.error=!0,this},clone:function(){for(var e=new l(this.toInt()),t=["_alpha","_hSpace","_hsl","_hsv","error"],i=t.length-1;i>=0;i--)e[t[i]]=this[t[i]];return e},setHSpace:function(e){return this._hSpace="hsv"===e?e:"hsl",this},noop:function(){return this},fromCSS:function(e){var t,l=/^(rgb|hs(l|v))a?\(/;if(this.error=!1,e=e.replace(/^\s+/,"").replace(/\s+$/,"").replace(/;$/,""),e.match(l)&&e.match(/\)$/)){if(t=e.replace(/(\s|%)/g,"").replace(l,"").replace(/,?\);?$/,"").split(","),t.length<3)return this._error();if(4===t.length&&(this.a(parseFloat(t.pop())),this.error))return this;for(var i=t.length-1;i>=0;i--)if(t[i]=parseInt(t[i],10),isNaN(t[i]))return this._error();return e.match(/^rgb/)?this.fromRgb({r:t[0],g:t[1],b:t[2]}):e.match(/^hsv/)?this.fromHsv({h:t[0],s:t[1],v:t[2]}):this.fromHsl({h:t[0],s:t[1],l:t[2]})}return this.fromHex(e)},fromRgb:function(e,l){return"object"!=typeof e||e.r===t||e.g===t||e.b===t?this._error():(this.error=!1,this.fromInt(parseInt((e.r<<16)+(e.g<<8)+e.b,10),l))},fromHex:function(e){return e=e.replace(/^#/,"").replace(/^0x/,""),3===e.length&&(e=e[0]+e[0]+e[1]+e[1]+e[2]+e[2]),this.error=!/^[0-9A-F]{6}$/i.test(e),this.fromInt(parseInt(e,16))},fromHsl:function(e){var l,i,o,s,r,n,a,d;return"object"!=typeof e||e.h===t||e.s===t||e.l===t?this._error():(this._hsl=e,this._hSpace="hsl",n=e.h/360,a=e.s/100,d=e.l/100,0===a?l=i=o=d:(s=.5>d?d*(1+a):d+a-d*a,r=2*d-s,l=this.hue2rgb(r,s,n+1/3),i=this.hue2rgb(r,s,n),o=this.hue2rgb(r,s,n-1/3)),this.fromRgb({r:255*l,g:255*i,b:255*o},!0))},fromHsv:function(e){var l,i,o,s,r,n,a,d,u,c,h;if("object"!=typeof e||e.h===t||e.s===t||e.v===t)return this._error();switch(this._hsv=e,this._hSpace="hsv",l=e.h/360,i=e.s/100,o=e.v/100,a=Math.floor(6*l),d=6*l-a,u=o*(1-i),c=o*(1-d*i),h=o*(1-(1-d)*i),a%6){case 0:s=o,r=h,n=u;break;case 1:s=c,r=o,n=u;break;case 2:s=u,r=o,n=h;break;case 3:s=u,r=c,n=o;break;case 4:s=h,r=u,n=o;break;case 5:s=o,r=u,n=c}return this.fromRgb({r:255*s,g:255*r,b:255*n},!0)},fromInt:function(e,l){return this._color=parseInt(e,10),isNaN(this._color)&&(this._color=0),this._color>16777215?this._color=16777215:this._color<0&&(this._color=0),l===t&&(this._hsv.h=this._hsv.s=this._hsl.h=this._hsl.s=0),this},hue2rgb:function(e,t,l){return 0>l&&(l+=1),l>1&&(l-=1),1/6>l?e+6*(t-e)*l:.5>l?t:2/3>l?e+(t-e)*(2/3-l)*6:e},toString:function(){var e=parseInt(this._color,10).toString(16);if(this.error)return"";if(e.length<6)for(var t=6-e.length-1;t>=0;t--)e="0"+e;return"#"+e},toCSS:function(e,t){switch(e=e||"hex",t=parseFloat(t||this._alpha),e){case"rgb":case"rgba":var l=this.toRgb();return 1>t?"rgba( "+l.r+", "+l.g+", "+l.b+", "+t+" )":"rgb( "+l.r+", "+l.g+", "+l.b+" )";case"hsl":case"hsla":var i=this.toHsl();return 1>t?"hsla( "+i.h+", "+i.s+"%, "+i.l+"%, "+t+" )":"hsl( "+i.h+", "+i.s+"%, "+i.l+"% )";default:return this.toString()}},toRgb:function(){return{r:255&this._color>>16,g:255&this._color>>8,b:255&this._color}},toHsl:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=(r+n)/2;if(r===n)e=t=0;else{var d=r-n;switch(t=a>.5?d/(2-r-n):d/(r+n),r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsl.h!==e&&(e=this._hsl.h),t=Math.round(100*t),0===t&&this._hsl.s&&(t=this._hsl.s),{h:e,s:t,l:Math.round(100*a)}},toHsv:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=r,d=r-n;if(t=0===r?0:d/r,r===n)e=t=0;else{switch(r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsv.h!==e&&(e=this._hsv.h),t=Math.round(100*t),0===t&&this._hsv.s&&(t=this._hsv.s),{h:e,s:t,v:Math.round(100*a)}},toInt:function(){return this._color},toIEOctoHex:function(){var e=this.toString(),t=parseInt(255*this._alpha,10).toString(16);return 1===t.length&&(t="0"+t),"#"+t+e.replace(/^#/,"")},toLuminosity:function(){var e=this.toRgb();return.2126*Math.pow(e.r/255,2.2)+.7152*Math.pow(e.g/255,2.2)+.0722*Math.pow(e.b/255,2.2)},getDistanceLuminosityFrom:function(e){if(!(e instanceof l))throw"getDistanceLuminosityFrom requires a Color object";var t=this.toLuminosity(),i=e.toLuminosity();return t>i?(t+.05)/(i+.05):(i+.05)/(t+.05)},getMaxContrastColor:function(){var e=this.toLuminosity(),t=e>=.5?"000000":"ffffff";return new l(t)},getReadableContrastingColor:function(e,i){if(!(e instanceof l))return this;var o=i===t?5:i,s=e.getDistanceLuminosityFrom(this),r=e.getMaxContrastColor(),n=r.getDistanceLuminosityFrom(e);if(o>=n)return r;if(s>=o)return this;for(var a=0===r.toInt()?-1:1;o>s&&(this.l(a,!0),s=this.getDistanceLuminosityFrom(e),0!==this._color&&16777215!==this._color););return this},a:function(e){if(e===t)return this._alpha;var l=parseFloat(e);return isNaN(l)?this._error():(this._alpha=l,this)},darken:function(e){return e=e||5,this.l(-e,!0)},lighten:function(e){return e=e||5,this.l(e,!0)},saturate:function(e){return e=e||15,this.s(e,!0)},desaturate:function(e){return e=e||15,this.s(-e,!0)},toGrayscale:function(){return this.setHSpace("hsl").s(0)},getComplement:function(){return this.h(180,!0)},getSplitComplement:function(e){e=e||1;var t=180+30*e;return this.h(t,!0)},getAnalog:function(e){e=e||1;var t=30*e;return this.h(t,!0)},getTetrad:function(e){e=e||1;var t=60*e;return this.h(t,!0)},getTriad:function(e){e=e||1;var t=120*e;return this.h(t,!0)},_partial:function(e){var l=i[e];return function(i,o){var s=this._spaceFunc("to",l.space);return i===t?s[e]:(o===!0&&(i=s[e]+i),l.mod&&(i%=l.mod),l.range&&(i=i<l.range[0]?l.range[0]:i>l.range[1]?l.range[1]:i),s[e]=i,this._spaceFunc("from",l.space,s))}},_spaceFunc:function(e,t,l){var i=t||this._hSpace,o=e+i.charAt(0).toUpperCase()+i.substr(1);return this[o](l)}};var i={h:{mod:360},s:{range:[0,100]},l:{space:"hsl",range:[0,100]},v:{space:"hsv",range:[0,100]},r:{space:"rgb",range:[0,255]},g:{space:"rgb",range:[0,255]},b:{space:"rgb",range:[0,255]}};for(var o in i)i.hasOwnProperty(o)&&(l.fn[o]=l.fn._partial(o));"object"==typeof exports?module.exports=l:e.Color=l}(this),function(e){FLIconSelector={_content:null,_lightbox:null,_rendered:!1,_filterText:"",open:function(e){FLIconSelector._rendered||FLIconSelector._render(),null===FLIconSelector._content?(FLIconSelector._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),FLBuilder.ajax({action:"render_icon_selector"},FLIconSelector._getContentComplete)):FLIconSelector._lightbox.open(),FLIconSelector._lightbox.on("icon-selected",function(t,l){FLIconSelector._lightbox.off("icon-selected"),FLIconSelector._lightbox.close(),e(l)})},_render:function(){FLIconSelector._lightbox=new FLLightbox({className:"fl-icon-selector"}),FLIconSelector._rendered=!0},_getContentComplete:function(t){var l=JSON.parse(t);FLIconSelector._content=l.html,FLIconSelector._lightbox.setContent(l.html),e(".fl-icons-filter-select").on("change",FLIconSelector._filter),e(".fl-icons-filter-text").on("keyup",FLIconSelector._filter),e(".fl-icons-list i").on("click",FLIconSelector._select),e(".fl-icon-selector-cancel").on("click",e.proxy(FLIconSelector._lightbox.close,FLIconSelector._lightbox))},_filter:function(){var t=e(".fl-icons-filter-select").val(),l=e(".fl-icons-filter-text").val();"all"==t?e(".fl-icons-section").show():(e(".fl-icons-section").hide(),e(".fl-"+t).show()),FLIconSelector._filterText=l,""!==l?e(".fl-icons-list i").each(FLIconSelector._filterIcon):e(".fl-icons-list i").show()},_filterIcon:function(){var t=e(this);-1==t.attr("class").indexOf(FLIconSelector._filterText)?t.hide():t.show()},_select:function(){var t=e(this).attr("class");FLIconSelector._lightbox.trigger("icon-selected",t)}}}(jQuery),function(e){FLLightbox=function(e){this._init(e),this._render(),this._bind()},FLLightbox.closeParent=function(t){var l=e(t).closest(".fl-lightbox-wrap").attr("data-instance-id");FLLightbox._instances[l].close()},FLLightbox._instances={},FLLightbox.prototype={_id:null,_node:null,_visible:!1,_resizeTimer:null,_draggable:!1,_defaults:{className:"",destroyOnClose:!1},open:function(e){this._node.show(),this._visible=!0,"undefined"!=typeof e?this.setContent(e):this._resize(),this.trigger("open")},close:function(){this._node.hide(),this._visible=!1,this.trigger("close"),this._defaults.destroyOnClose&&this.destroy()},setContent:function(e){this._node.find(".fl-lightbox-content").html(e),this._resize()},empty:function(){this._node.find(".fl-lightbox-content").empty()},on:function(e,t){this._node.on(e,t)},off:function(e){this._node.off(e)},trigger:function(e,t){this._node.trigger(e,t)},draggable:function(e){var t=this._node.find(".fl-lightbox-mask"),l=this._node.find(".fl-lightbox");e="undefined"==typeof e?!1:e,this._draggable&&l.draggable("destroy"),e?(this._unbind(),this._draggable=!0,t.hide(),l.draggable({cursor:"move",handle:e.handle||""})):(t.show(),this._bind(),this._draggable=!1),this._resize()},destroy:function(){e(window).off("resize.fl-lightbox-"+this._id),this._node.empty(),this._node.remove(),FLLightbox._instances[this._id]="undefined";try{delete FLLightbox._instances[this._id]}catch(t){}},_init:function(t){var l=0,i=null;for(i in FLLightbox._instances)l++;this._defaults=e.extend({},this._defaults,t),this._id=(new Date).getTime()+l,FLLightbox._instances[this._id]=this},_render:function(){this._node=e('<div class="fl-lightbox-wrap" data-instance-id="'+this._id+'"><div class="fl-lightbox-mask"></div><div class="fl-lightbox"><div class="fl-lightbox-content-wrap"><div class="fl-lightbox-content"></div></div></div></div>'),this._node.addClass(this._defaults.className),e("body").append(this._node)},_bind:function(){e(window).on("resize.fl-lightbox-"+this._id,e.proxy(this._delayedResize,this))},_unbind:function(){e(window).off("resize.fl-lightbox-"+this._id)},_delayedResize:function(){clearTimeout(this._resizeTimer),this._resizeTimer=setTimeout(e.proxy(this._resize,this),250)},_resize:function(){if(this._visible){var t=this._node.find(".fl-lightbox"),l=t.height(),i=t.width(),o=e(window),s=o.height(),r=o.width(),n="0px",a=(r-i)/2-30+"px";t.css({margin:"0px",top:"auto",left:"auto"}),s-80>l&&(n=(s-l)/2-40+"px"),this._draggable?(t.css("top",n),t.css("left",FLBuilderConfig.isRtl?"-"+a:a)):(t.css("margin-top",n),t.css("margin-left","auto"),t.css("margin-right","auto"))}},_onKeypress:function(e){27==e.which&&this._visible&&this.close()}}}(jQuery),function(e){FLStyleSheet=function(){},FLStyleSheet.prototype={_sheet:null,_sheetElement:null,updateRule:function(e,t,l){this._createSheet();for(var i=this._sheet.cssRules?this._sheet.cssRules:this._sheet.rules,o=null,s=0;s<i.length;s++)i[s].selectorText.toLowerCase()==e.toLowerCase()&&(o=i[s]);if(o)if("object"==typeof t)for(s in t)o.style[this._toCamelCase(s)]=t[s];else o.style[this._toCamelCase(t)]=l;else this.addRule(e,t,l)},addRule:function(e,t,l){this._createSheet();var i="",o="";if("object"==typeof t)for(o in t)i+=o+":"+t[o]+";";else i=t+":"+l+";";this._sheet.insertRule?this._sheet.insertRule(e+" { "+i+" }",this._sheet.cssRules.length):this._sheet.addRule(e,i)},remove:function(){this._sheetElement&&(this._sheetElement.remove(),this._sheetElement=null),this._sheet&&(this._sheet=null)},_createSheet:function(){this._sheet||(this._sheetElement=e('<style type="text/css"></style>'),e("body").append(this._sheetElement),this._sheet=this._sheetElement[0].sheet)},_toCamelCase:function(e){return e.toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()})}}}(jQuery);
|
1 |
!function(e){FLBuilderAJAXLayout=function(t,l){this._data=e.extend({},this._defaults,"string"==typeof t?JSON.parse(t):t),this._callback=l,this._post=e("#fl-post-id").val(),this._head=e("head").eq(0),this._body=e("body").eq(0),this._data.css&&(this._loader=e('<img src="'+this._data.css+'" />'),this._oldCss=e('link[href*="/cache/'+this._post+'"]'),this._newCss=e('<link rel="stylesheet" id="fl-builder-layout-'+this._post+'-css" href="'+this._data.css+'" />')),this._data.partial?(this._data.js&&(this._oldJs=e("#fl-builder-partial-refresh-js"),this._newJs=e('<script type="text/javascript" id="fl-builder-partial-refresh-js">'+this._data.js+"</script>")),this._data.nodeId&&(this._data.oldNodeId?(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.oldNodeId+'"]'),this._content=e(".fl-node-"+this._data.oldNodeId)):(this._oldScriptsStyles=e('.fl-builder-node-scripts-styles[data-node="'+this._data.nodeId+'"]'),this._content=e(".fl-node-"+this._data.nodeId)))):(this._oldJs=e('script[src*="/cache/'+this._post+'"]'),this._newJs=e('<script src="'+this._data.js+'"></script>'),this._oldScriptsStyles=e(".fl-builder-layout-scripts-styles"),this._content=e(FLBuilder._contentClass)),this._init()},FLBuilderAJAXLayout.prototype={_defaults:{partial:!1,nodeId:null,nodeType:null,nodeParent:null,nodePosition:null,oldNodeId:null,html:null,scriptsStyles:null,css:null,js:null},_data:null,_callback:function(){},_post:null,_head:null,_body:null,_loader:null,_oldCss:null,_newCss:null,_oldJs:null,_newJs:null,_oldScriptsStyles:null,_content:null,_init:function(){this._body.height(this._body.height()),this._loader?(this._loader.on("error",e.proxy(this._loadNewCSSComplete,this)),this._body.append(this._loader)):this._finish()},_loadNewCSSComplete:function(){this._loader.remove(),this._oldCss.length>0?this._oldCss.after(this._newCss):this._head.append(this._newCss),setTimeout(e.proxy(this._finish,this),250)},_finish:function(){this._removeOldContentAndAssets(),this._cleanNewHTML(),this._cleanNewAssets(),this._addNewHTML(),this._addNewScriptsStyles(),this._addNewJS(),e(FLBuilder._contentClass).trigger("fl-builder.layout-rendered"),FLBuilder.hideAjaxLoader(),"undefined"!=typeof this._callback&&this._callback()},_removeOldContentAndAssets:function(){this._content&&this._content.empty(),this._oldCss&&this._oldCss.remove(),this._oldJs&&this._oldJs.remove(),this._oldScriptsStyles&&this._oldScriptsStyles.remove()},_cleanNewHTML:function(){if(this._data.scriptsStyles){var t=e("<div>"+this._data.html+"</div>"),l="fl-row",i=this._data.scriptsStyles,o="";this._data.partial&&(l="column-group"==this._data.nodeType?"fl-col-group":"column"==this._data.nodeType?"fl-col":"fl-"+this._data.nodeType),t.find("> *").each(function(){e(this).hasClass(l)||(o=e(this).remove(),i+=o[0].outerHTML)}),""!==i&&(i=this._data.partial?'<div class="fl-builder-node-scripts-styles" data-node="'+this._data.nodeId+'">'+i+"<div>":'<div class="fl-builder-node-scripts-styles">'+i+"<div>"),this._data.html=t.html(),this._data.scriptsStyles=i}},_addNewHTML:function(){var e;this._data.partial?this._data.nodeParent?(e=this._data.nodeParent.hasClass("fl-builder-content")?this._data.nodeParent.find(".fl-row"):this._data.nodeParent.hasClass("fl-row-content")?this._data.nodeParent.find(".fl-col-group"):this._data.nodeParent.find(".fl-module"),0===e.length||e.length==this._data.nodePosition?this._data.nodeParent.append(this._data.html):e.eq(this._data.nodePosition).before(this._data.html)):(this._content.after(this._data.html),this._content.remove()):this._content.append(this._data.html)},_cleanNewAssets:function(){var t=this;this._data.html=this._removeDuplicateAssets(this._data.html),this._data.scriptsStyles&&""!==this._data.scriptsStyles&&(this._data.scriptsStyles=this._removeDuplicateAssets(this._data.scriptsStyles)),this._data.partial?e(".fl-builder-node-scripts-styles").each(function(){t._data.html.indexOf("fl-node-"+e(this).data("node"))>-1&&e(this).remove()}):(e("#fl-builder-partial-refresh-js").remove(),e(".fl-builder-node-scripts-styles").remove())},_removeDuplicateAssets:function(t){var l=e("<div>"+t+"</div>"),i="",o=null,s="",r=null,n=window.location,a=n.protocol+"//"+n.hostname+(n.port?":"+n.port:"");return l.find("script").each(function(){i=e(this).attr("src"),"undefined"!=typeof i&&(i=i.replace(a,""),o=e('script[src*="'+i+'"]'),o.length>0&&e(this).remove())}),l.find("link").each(function(){s=e(this).attr("href"),"undefined"!=typeof s&&(s=s.replace(a,""),r=e('link[href*="'+s+'"]'),r.length>0&&e(this).remove())}),l.html()},_addNewScriptsStyles:function(){this._data.scriptsStyles&&""!==this._data.scriptsStyles&&this._body.append(this._data.scriptsStyles)},_addNewJS:function(){setTimeout(e.proxy(function(){this._newJs&&this._head.append(this._newJs)},this),50)},_complete:function(){FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._initSortables(),FLBuilder._resizeLayout(),FLBuilder._initMediaElements(),FLBuilderLayout.init(),this._body.height("auto")}}}(jQuery),function(e){FLBuilderPreview=function(t){this.type=t.type,"undefined"!=t.state&&t.state?this.state=t.state:this._saveState(),"undefined"!=t.layout&&t.layout?FLBuilder._renderLayout(t.layout,e.proxy(this._init,this)):this._init()},FLBuilderPreview._fontsList={},FLBuilderPreview.prototype={type:"",nodeId:null,classes:{},elements:{},state:null,_savedSettings:null,_styleSheet:null,_timeout:null,_lastClassName:null,_xhr:null,_init:function(){switch(this.nodeId=e(".fl-builder-settings").data("node"),this._saveSettings(),this._initElementsAndClasses(),this._initDefaultFieldPreviews(),this.type){case"row":this._initRow();break;case"col":this._initColumn();break;case"module":this._initModule()}},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings");this._savedSettings=FLBuilder._getSettings(t)},_settingsHaveChanged:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=FLBuilder._getSettings(t);return JSON.stringify(this._savedSettings)!=JSON.stringify(l)},_initElementsAndClasses:function(){var t;t="row"==this.type?".fl-row-content-wrap":".fl-"+this.type+"-content",e.extend(this.classes,{settings:".fl-builder-"+this.type+"-settings",settingsHeader:".fl-builder-"+this.type+"-settings .fl-lightbox-header",node:FLBuilder._contentClass+" .fl-node-"+this.nodeId,content:FLBuilder._contentClass+" .fl-node-"+this.nodeId+" "+t}),e.extend(this.elements,{settings:e(this.classes.settings),settingsHeader:e(this.classes.settingsHeader),node:e(this.classes.node),content:e(this.classes.content)})},updateCSSRule:function(e,t,l){this._styleSheet||(this._styleSheet=new FLStyleSheet),this._styleSheet.updateRule(e,t,l)},delay:function(e,t){this._cancelDelay(),this._timeout=setTimeout(t,e)},_cancelDelay:function(){null!==this._timeout&&clearTimeout(this._timeout)},hexToRgb:function(e){var t=parseInt(e,16),l=t>>16&255,i=t>>8&255,o=255&t;return[l,i,o]},parseFloat:function(e){return isNaN(parseFloat(e))?0:parseFloat(e)},_saveState:function(){var t=e("#fl-post-id").val(),l=e('link[href*="/cache/'+t+'"]').attr("href"),i=e('script[src*="/cache/'+t+'"]').attr("src"),o=e(FLBuilder._contentClass).html();this.state={css:l,js:i,html:o}},preview:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);this._cancelPreview(),this._xhr=FLBuilder.ajax({action:"render_layout",node_id:l,node_preview:i},e.proxy(this._renderPreview,this))},delayPreview:function(t){var l="undefined"==typeof t?[]:e(t.target).closest("tr").find("th"),i=e(".fl-builder-widget-settings .fl-builder-settings-title"),o=e(".fl-builder-settings .fl-lightbox-header"),s=FLBuilderLayoutConfig.paths.pluginUrl+"img/ajax-loader-small.gif",r=e('<img class="fl-builder-preview-loader" src="'+s+'" />');e(".fl-builder-preview-loader").remove(),l.length>0?l.append(r):i.length>0?i.append(r):o.length>0&&o.append(r),this.delay(1e3,e.proxy(this.preview,this))},_cancelPreview:function(){this._xhr&&(this._xhr.abort(),this._xhr=null)},_renderPreview:function(t){this._xhr=null,FLBuilder._renderLayout(t,e.proxy(this._renderPreviewComplete,this))},_renderPreviewComplete:function(){this._initElementsAndClasses(),e(".fl-builder-preview-loader").remove(),e(FLBuilder._contentClass).trigger("fl-builder.preview-rendered")},revert:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&this._styleSheet.remove(),this._settingsHaveChanged()&&FLBuilder._renderLayout(this.state)},clear:function(){this._cancelDelay(),this._cancelPreview(),this._styleSheet&&(this._styleSheet.remove(),this._styleSheet=null)},_initNodeTextColor:function(){e.extend(this.elements,{textColor:e(this.classes.settings+" input[name=text_color]"),linkColor:e(this.classes.settings+" input[name=link_color]"),hoverColor:e(this.classes.settings+" input[name=hover_color]"),headingColor:e(this.classes.settings+" input[name=heading_color]")}),this.elements.textColor.on("change",e.proxy(this._textColorChange,this)),this.elements.linkColor.on("change",e.proxy(this._textColorChange,this)),this.elements.hoverColor.on("change",e.proxy(this._textColorChange,this)),this.elements.headingColor.on("change",e.proxy(this._textColorChange,this))},_textColorChange:function(t){var l=this.elements.textColor.val(),i=this.elements.linkColor.val(),o=this.elements.hoverColor.val(),s=this.elements.headingColor.val();i=""===i?l:i,o=""===o?l:o,s=""===s?l:s,this.delay(100,e.proxy(function(){""===l?this.updateCSSRule(this.classes.node,"color","inherit"):this.updateCSSRule(this.classes.node,"color","#"+l),""===i?this.updateCSSRule(this.classes.node+" a","color","inherit"):this.updateCSSRule(this.classes.node+" a","color","#"+i),""===o?this.updateCSSRule(this.classes.node+" a:hover","color","inherit"):this.updateCSSRule(this.classes.node+" a:hover","color","#"+o),""===s?(this.updateCSSRule(this.classes.node+" h1","color","inherit"),this.updateCSSRule(this.classes.node+" h2","color","inherit"),this.updateCSSRule(this.classes.node+" h3","color","inherit"),this.updateCSSRule(this.classes.node+" h4","color","inherit"),this.updateCSSRule(this.classes.node+" h5","color","inherit"),this.updateCSSRule(this.classes.node+" h6","color","inherit"),this.updateCSSRule(this.classes.node+" h1 a","color","inherit"),this.updateCSSRule(this.classes.node+" h2 a","color","inherit"),this.updateCSSRule(this.classes.node+" h3 a","color","inherit"),this.updateCSSRule(this.classes.node+" h4 a","color","inherit"),this.updateCSSRule(this.classes.node+" h5 a","color","inherit"),this.updateCSSRule(this.classes.node+" h6 a","color","inherit")):(this.updateCSSRule(this.classes.node+" h1","color","#"+s),this.updateCSSRule(this.classes.node+" h2","color","#"+s),this.updateCSSRule(this.classes.node+" h3","color","#"+s),this.updateCSSRule(this.classes.node+" h4","color","#"+s),this.updateCSSRule(this.classes.node+" h5","color","#"+s),this.updateCSSRule(this.classes.node+" h6","color","#"+s),this.updateCSSRule(this.classes.node+" h1 a","color","#"+s),this.updateCSSRule(this.classes.node+" h2 a","color","#"+s),this.updateCSSRule(this.classes.node+" h3 a","color","#"+s),this.updateCSSRule(this.classes.node+" h4 a","color","#"+s),this.updateCSSRule(this.classes.node+" h5 a","color","#"+s),this.updateCSSRule(this.classes.node+" h6 a","color","#"+s))},this))},_initNodeBg:function(){e.extend(this.elements,{bgType:e(this.classes.settings+" select[name=bg_type]"),bgColor:e(this.classes.settings+" input[name=bg_color]"),bgColorPicker:e(this.classes.settings+" .fl-picker-bg_color"),bgOpacity:e(this.classes.settings+" input[name=bg_opacity]"),bgImageSrc:e(this.classes.settings+" select[name=bg_image_src]"),bgRepeat:e(this.classes.settings+" select[name=bg_repeat]"),bgPosition:e(this.classes.settings+" select[name=bg_position]"),bgAttachment:e(this.classes.settings+" select[name=bg_attachment]"),bgSize:e(this.classes.settings+" select[name=bg_size]"),bgVideo:e(this.classes.settings+" input[name=bg_video]"),bgVideoFallbackSrc:e(this.classes.settings+" select[name=bg_video_fallback_src]"),bgSlideshowSource:e(this.classes.settings+" select[name=ss_source]"),bgSlideshowPhotos:e(this.classes.settings+" input[name=ss_photos]"),bgSlideshowFeedUrl:e(this.classes.settings+" input[name=ss_feed_url]"),bgSlideshowSpeed:e(this.classes.settings+" input[name=ss_speed]"),bgSlideshowTrans:e(this.classes.settings+" select[name=ss_transition]"),bgSlideshowTransSpeed:e(this.classes.settings+" input[name=ss_transitionDuration]"),bgParallaxImageSrc:e(this.classes.settings+" select[name=bg_parallax_image_src]"),bgOverlayColor:e(this.classes.settings+" input[name=bg_overlay_color]"),bgOverlayOpacity:e(this.classes.settings+" input[name=bg_overlay_opacity]")}),this.elements.bgType.on("change",e.proxy(this._bgTypeChange,this)),this.elements.bgColor.on("change",e.proxy(this._bgColorChange,this)),this.elements.bgOpacity.on("keyup",e.proxy(this._bgOpacityChange,this)),this.elements.bgImageSrc.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgRepeat.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgPosition.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgAttachment.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSize.on("change",e.proxy(this._bgPhotoChange,this)),this.elements.bgSlideshowSource.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowPhotos.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowFeedUrl.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTrans.on("change",e.proxy(this._bgSlideshowChange,this)),this.elements.bgSlideshowTransSpeed.on("keyup",e.proxy(this._bgSlideshowChange,this)),this.elements.bgParallaxImageSrc.on("change",e.proxy(this._bgParallaxChange,this)),this.elements.bgOverlayColor.on("change",e.proxy(this._bgOverlayChange,this)),this.elements.bgOverlayOpacity.on("keyup",e.proxy(this._bgOverlayChange,this))},_bgTypeChange:function(e){var t=this.elements.bgType.val();this.elements.node.removeClass("fl-row-bg-video"),this.elements.node.removeClass("fl-row-bg-slideshow"),this.elements.node.removeClass("fl-row-bg-parallax"),this.elements.node.find(".fl-bg-video").remove(),this.elements.node.find(".fl-bg-slideshow").remove(),this.elements.content.css("background-image",""),this.updateCSSRule(this.classes.content,{"background-color":"transparent","background-image":"none"}),"none"==t?this._bgOverlayClear():"color"==t?(this.elements.bgColor.trigger("change"),this._bgOverlayClear()):"photo"==t?(this.elements.bgColor.trigger("change"),this.elements.bgImageSrc.trigger("change")):"video"==t?(this.elements.bgColor.trigger("change"),""!=this.elements.bgVideo.val()&&this.preview()):"slideshow"==t?(this.elements.bgColor.trigger("change"),this._bgSlideshowChange()):"parallax"==t&&(this.elements.bgColor.trigger("change"),this.elements.bgParallaxImageSrc.trigger("change"))},_bgColorChange:function(t){var l,i,o;""===this.elements.bgColor.val()||isNaN(this.elements.bgOpacity.val())?this.updateCSSRule(this.classes.content,"background-color","transparent"):(l=this.hexToRgb(this.elements.bgColor.val()),i=this.parseFloat(this.elements.bgOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"background-color",o)},this)))},_bgOpacityChange:function(e){this.elements.bgColor.trigger("change")},_bgPhotoChange:function(e){this.elements.bgImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgImageSrc.val()+")","background-repeat":this.elements.bgRepeat.val(),"background-position":this.elements.bgPosition.val(),"background-attachment":this.elements.bgAttachment.val(),"background-size":this.elements.bgSize.val()})},_bgSlideshowChange:function(t){var l=this.elements,i=l.bgSlideshowSource.val(),o=l.bgSlideshowPhotos.val(),s=l.bgSlideshowFeedUrl.val(),r=l.bgSlideshowSpeed.val(),n=l.bgSlideshowTransSpeed.val();("wordpress"!=i||""!==o)&&("smugmug"!=i||""!==s)&&(isNaN(parseInt(r))||isNaN(parseInt(n))||this.delay(500,e.proxy(this.preview,this)))},_bgParallaxChange:function(e){this.elements.bgParallaxImageSrc.val()&&this.updateCSSRule(this.classes.content,{"background-image":"url("+this.elements.bgParallaxImageSrc.val()+")","background-repeat":"no-repeat","background-position":"center center","background-attachment":"fixed","background-size":"cover"})},_bgOverlayChange:function(t){var l,i,o;""===this.elements.bgOverlayColor.val()||isNaN(this.elements.bgOverlayOpacity.val())?(this.elements.node.removeClass("fl-row-bg-overlay"),this.elements.node.removeClass("fl-col-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color","transparent")):(l=this.hexToRgb(this.elements.bgOverlayColor.val()),i=this.parseFloat(this.elements.bgOverlayOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.elements.node.hasClass("fl-col")?this.elements.node.addClass("fl-col-bg-overlay"):this.elements.node.addClass("fl-row-bg-overlay"),this.updateCSSRule(this.classes.content+":after","background-color",o)},this)))},_bgOverlayClear:function(e){this.elements.bgOverlayColor.prev(".fl-color-picker-clear").trigger("click")},_initNodeBorder:function(){e.extend(this.elements,{borderType:e(this.classes.settings+" select[name=border_type]"),borderColor:e(this.classes.settings+" input[name=border_color]"),borderColorPicker:e(this.classes.settings+" .fl-picker-border_color"),borderOpacity:e(this.classes.settings+" input[name=border_opacity]"),borderTopWidth:e(this.classes.settings+" input[name=border_top]"),borderBottomWidth:e(this.classes.settings+" input[name=border_bottom]"),borderLeftWidth:e(this.classes.settings+" input[name=border_left]"),borderRightWidth:e(this.classes.settings+" input[name=border_right]")}),this.elements.borderType.on("change",e.proxy(this._borderTypeChange,this)),this.elements.borderColor.on("change",e.proxy(this._borderColorChange,this)),this.elements.borderOpacity.on("keyup",e.proxy(this._borderOpacityChange,this)),this.elements.borderTopWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderBottomWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderLeftWidth.on("keyup",e.proxy(this._borderWidthChange,this)),this.elements.borderRightWidth.on("keyup",e.proxy(this._borderWidthChange,this))},_borderTypeChange:function(e){var t=this.elements.borderType.val();this.updateCSSRule(this.classes.content,{"border-style":""===t?"none":t}),this.elements.borderColor.trigger("change"),this.elements.borderTopWidth.trigger("keyup")},_borderColorChange:function(t){var l,i,o;""===this.elements.borderColor.val()||isNaN(this.elements.borderOpacity.val())?this.updateCSSRule(this.classes.content,"border-color","transparent"):(l=this.hexToRgb(this.elements.borderColor.val()),i=parseInt(this.elements.borderOpacity.val())/100,o="rgba("+l.join()+", "+i+")",this.delay(100,e.proxy(function(){this.updateCSSRule(this.classes.content,"border-color",o)},this)))},_borderOpacityChange:function(e){this.elements.borderColor.trigger("change")},_getBorderWidths:function(e){var t=this.elements.borderTopWidth.val(),l=this.elements.borderBottomWidth.val(),i=this.elements.borderLeftWidth.val(),o=this.elements.borderRightWidth.val();return""===t&&(t=this.elements.borderTopWidth.attr("placeholder")),""===l&&(l=this.elements.borderBottomWidth.attr("placeholder")),""===i&&(i=this.elements.borderLeftWidth.attr("placeholder")),""===o&&(o=this.elements.borderRightWidth.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_borderWidthChange:function(e){var t=this._getBorderWidths();this.elements.borderColor.trigger("change"),this.updateCSSRule(this.classes.content,{"border-top-width":t.top+"px","border-bottom-width":t.bottom+"px","border-left-width":t.left+"px","border-right-width":t.right+"px"}),this._positionAbsoluteBgs()},_initNodeClassName:function(){e.extend(this.elements,{className:e(this.classes.settings+" input[name=class]")}),this.elements.className.on("keyup",e.proxy(this._classNameChange,this)),this._lastClassName=this.elements.className.val()},_classNameChange:function(e){var t=this.elements.className.val();null!==this._lastClassName&&this.elements.node.removeClass(this._lastClassName),this.elements.node.addClass(t),this._lastClassName=t},_initMargins:function(){e.extend(this.elements,{marginTop:e(this.classes.settings+" input[name=margin_top]"),marginBottom:e(this.classes.settings+" input[name=margin_bottom]"),marginLeft:e(this.classes.settings+" input[name=margin_left]"),marginRight:e(this.classes.settings+" input[name=margin_right]")}),this.elements.marginTop.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginBottom.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginLeft.on("keyup",e.proxy(this._marginChange,this)),this.elements.marginRight.on("keyup",e.proxy(this._marginChange,this))},_getMargins:function(e){var t=this.elements.marginTop.val(),l=this.elements.marginBottom.val(),i=this.elements.marginLeft.val(),o=this.elements.marginRight.val();return""===t&&(t=this.elements.marginTop.attr("placeholder")),""===l&&(l=this.elements.marginBottom.attr("placeholder")),""===i&&(i=this.elements.marginLeft.attr("placeholder")),""===o&&(o=this.elements.marginRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_marginChange:function(e){var t=this._getMargins();this.updateCSSRule(this.classes.content,{"margin-top":t.top+"px","margin-bottom":t.bottom+"px","margin-left":t.left+"px","margin-right":t.right+"px"}),this._positionAbsoluteBgs()},_initPadding:function(){e.extend(this.elements,{paddingTop:e(this.classes.settings+" input[name=padding_top]"),paddingBottom:e(this.classes.settings+" input[name=padding_bottom]"),paddingLeft:e(this.classes.settings+" input[name=padding_left]"),paddingRight:e(this.classes.settings+" input[name=padding_right]")}),this.elements.paddingTop.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingBottom.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingLeft.on("keyup",e.proxy(this._paddingChange,this)),this.elements.paddingRight.on("keyup",e.proxy(this._paddingChange,this))},_getPadding:function(e){var t=this.elements.paddingTop.val(),l=this.elements.paddingBottom.val(),i=this.elements.paddingLeft.val(),o=this.elements.paddingRight.val();return""===t&&(t=this.elements.paddingTop.attr("placeholder")),""===l&&(l=this.elements.paddingBottom.attr("placeholder")),""===i&&(i=this.elements.paddingLeft.attr("placeholder")),""===o&&(o=this.elements.paddingRight.attr("placeholder")),{top:this.parseFloat(t),bottom:this.parseFloat(l),left:this.parseFloat(i),right:this.parseFloat(o)}},_paddingChange:function(e){var t=this._getPadding();this.updateCSSRule(this.classes.content,{"padding-top":t.top+"px","padding-bottom":t.bottom+"px","padding-left":t.left+"px","padding-right":t.right+"px"}),this._positionAbsoluteBgs()},_positionAbsoluteBgs:function(){var e=this.elements.node.find(".fl-bg-slideshow"),t=this.elements.node.find(".fl-bg-video"),l=null,i=null;(e.length>0||t.length>0)&&(l=this._getMargins(),i=this._getBorderWidths(),e.length>0&&(this.updateCSSRule(this.classes.node+" .fl-bg-slideshow",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}),FLBuilder._resizeLayout()),t.length>0&&this.updateCSSRule(this.classes.node+" .fl-bg-video",{top:l.top+i.top+"px",bottom:l.bottom+i.bottom+"px",left:l.left+i.left+"px",right:l.right+i.right+"px"}))},_initRow:function(){e.extend(this.elements,{width:e(this.classes.settings+" select[name=width]"),height:e(this.classes.settings+" select[name=full_height]"),contentWidth:e(this.classes.settings+" select[name=content_width]")}),this.elements.width.on("change",e.proxy(this._rowWidthChange,this)),this.elements.height.on("change",e.proxy(this._rowHeightChange,this)),this.elements.contentWidth.on("change",e.proxy(this._rowContentWidthChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_rowWidthChange:function(e){var t=this.elements.node;"full"==this.elements.width.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_rowHeightChange:function(e){var t=this.elements.node;"full"==this.elements.height.val()?t.addClass("fl-row-full-height"):t.removeClass("fl-row-full-height")},_rowContentWidthChange:function(e){var t=this.elements.content.find(".fl-row-content");"full"==this.elements.contentWidth.val()?(t.removeClass("fl-row-fixed-width"),t.addClass("fl-row-full-width")):(t.removeClass("fl-row-full-width"),t.addClass("fl-row-fixed-width"))},_initColumn:function(){e.extend(this.elements,{size:e(this.classes.settings+" input[name=size]"),columnHeight:e(this.classes.settings+" select[name=equal_height]")}),this.elements.size.on("keyup",e.proxy(this._colSizeChange,this)),this.elements.columnHeight.on("change",e.proxy(this._colHeightChange,this)),this._initNodeTextColor(),this._initNodeBg(),this._initNodeBorder(),this._initNodeClassName(),this._initMargins(),this._initPadding()},_colSizeChange:function(){var t=10,l=100-t,i=parseFloat(this.elements.size.val()),o=this.elements.node.prev(".fl-col"),s=this.elements.node.next(".fl-col"),r=0===s.length?o:s,n=this.elements.node.siblings(".fl-col"),a=0;0===n.length||isNaN(i)||(n.each(function(){e(this).data("node")!=r.data("node")&&(l-=parseFloat(e(this)[0].style.width),a+=parseFloat(e(this)[0].style.width))}),t>i&&(i=t),i>l&&(i=l),r.css("width",100-a-i+"%"),this.elements.node.css("width",i+"%"))},_colHeightChange:function(){var e=this.elements.node.parent(".fl-col-group");"yes"==this.elements.columnHeight.val()?e.addClass("fl-col-group-equal-height"):e.removeClass("fl-col-group-equal-height")},_initModule:function(){this._initNodeClassName(),this._initMargins()},_initDefaultFieldPreviews:function(){for(var e=this.elements.settings.find(".fl-field"),t=null,l=null,i=0;i<e.length;i++)t=e.eq(i),l=t.data("preview"),"refresh"==l.type&&this._initFieldRefreshPreview(t),"text"==l.type&&this._initFieldTextPreview(t),"css"==l.type&&this._initFieldCSSPreview(t),"widget"==l.type&&this._initFieldWidgetPreview(t),"font"==l.type&&this._initFieldFontPreview(t)},_initFieldRefreshPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this.delayPreview,this);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"select":t.find("select").on("change",o);break;case"color":t.find(".fl-color-picker-value").on("change",o);break;case"photo":t.find("select").on("change",o);break;case"multiple-photos":t.find("input").on("change",o);break;case"photo-sizes":t.find("select").on("change",o);break;case"video":t.find("input").on("change",o);break;case"multiple-audios":t.find("input").on("change",o);break;case"icon":t.find("input").on("change",o);break;case"form":t.delegate("input","change",o);break;case"editor":this._addTextEditorCallback(t,i);break;case"code":t.find("textarea").on("change",o);break;case"post-type":t.find("select").on("change",o);break;case"suggest":t.find(".as-values").on("change",o)}},_initFieldTextPreview:function(t){var l=t.data("type"),i=t.data("preview"),o=e.proxy(this._previewText,this,i);switch(l){case"text":t.find("input[type=text]").on("keyup",o);break;case"textarea":t.find("textarea").on("keyup",o);break;case"code":t.find("textarea").on("change",o);break;case"editor":this._addTextEditorCallback(t,i)}},_previewText:function(t,l){var i=this.elements.node.find(t.selector),o=e("<div>"+e(l.target).val()+"</div>");i.length>0&&(o.find("script").remove(),i.html(o.html()))},_previewTextEditor:function(t,l,i){var o=this.elements.node.find(t.selector),s="undefined"!=typeof tinyMCE?tinyMCE.get(l):null,r=e("#"+l),n="";o.length>0&&(n=e(s&&"none"==r.css("display")?"<div>"+s.getContent()+"</div>":"undefined"==typeof switchEditors||"undefined"==typeof switchEditors.wpautop?"<div>"+r.val()+"</div>":"<div>"+switchEditors.wpautop(r.val())+"</div>"),n.find("script").remove(),o.html(n.html()))},_addTextEditorCallback:function(t,l){var i=t.find("textarea.wp-editor-area").attr("id"),o=null;if("refresh"==l.type)o=e.proxy(this.delayPreview,this);else{if("text"!=l.type)return;o=e.proxy(this._previewTextEditor,this,l,i)}e("#"+i).on("keyup",o),"undefined"!=typeof tinyMCE&&(editor=tinyMCE.get(i),editor.on("change",o),editor.on("keyup",o))},_initFieldFontPreview:function(t){var l=t.data("type"),i=t.data("preview");i.id=t.attr("id");var o=e.proxy(this._previewFont,this,i);"font"==l&&t.find(".fl-font-field").on("change","select",o)},_previewFont:function(t,l){var i=e(l.delegateTarget),o=i.find(".fl-font-field-font"),s=e(o).find(":selected"),r=s.parent().attr("label"),n=i.find(".fl-font-field-weight"),a=t.id+"-"+this.nodeId,d=this._getPreviewSelector(this.classes.node,t.selector);"Google"==r&&this._buildFontStylesheet(a,o.val(),n.val()),"Default"==o.val()?(this.updateCSSRule(d,"font-family",""),this.updateCSSRule(d,"font-weight","")):(this.updateCSSRule(d,"font-family",o.val()),this.updateCSSRule(d,"font-weight",n.val()))},_buildFontStylesheet:function(t,l,i){var o="//fonts.googleapis.com/css?family=",s="",r={},n={};r[l]=[i],FLBuilderPreview._fontsList[t]=r,Object.keys(FLBuilderPreview._fontsList).forEach(function(e){var t=FLBuilderPreview._fontsList[e];Object.keys(t).forEach(function(e){var l=t[e];n[e]=n[e]||[],l=l.filter(function(t){return n[e].indexOf(t)<0}),n[e]=n[e].concat(l)})}),e.each(n,function(e,t){s+=e+":"+t.join()+"|"}),s=o+s.slice(0,-1).replace(" ","+"),e("#fl-builder-google-fonts-preview").length<1?e("<link>").attr("id","fl-builder-google-fonts-preview").attr("type","text/css").attr("rel","stylesheet").attr("href",s).appendTo("head"):e("#fl-builder-google-fonts-preview").attr("href",s)},_initFieldCSSPreview:function(e){var t=e.data("preview"),l=null;if("undefined"!=typeof t.rules)for(l in t.rules)this._initFieldCSSPreviewCallback(e,t.rules[l]);else this._initFieldCSSPreviewCallback(e,t)},_initFieldCSSPreviewCallback:function(t,l){switch(t.data("type")){case"text":t.find("input[type=text]").on("keyup",e.proxy(this._previewCSS,this,l));break;case"select":t.find("select").on("change",e.proxy(this._previewCSS,this,l));break;case"color":t.find(".fl-color-picker-value").on("change",e.proxy(this._previewColor,this,l))}},_previewCSS:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=t.property,s="undefined"==typeof t.unit?"":t.unit,r=e(l.target).val();"%"==s?r=parseInt(r)/100:r+=s,this.updateCSSRule(i,o,r)},_previewColor:function(t,l){var i=this._getPreviewSelector(this.classes.node,t.selector),o=e(l.target).val(),s=""===o?"inherit":"#"+o;this.updateCSSRule(i,t.property,s)},_initFieldWidgetPreview:function(t){var l=e.proxy(this.delayPreview,this);t.find("input").on("keyup",l),t.find("input[type=checkbox]").on("click",l),t.find("textarea").on("keyup",l),t.find("select").on("change",l)},_getPreviewSelector:function(e,t){for(var l="",i=t.split(","),o=0;o<i.length;o++)l+=e+" "+i[o],o!=i.length-1&&(l+=", ");return l}}}(jQuery),function(e){var t={init:function(){var t=e("body");t.delegate(".fl-builder-service-select","change",this._serviceChange),t.delegate(".fl-builder-service-connect-button","click",this._connectClicked),t.delegate(".fl-builder-service-account-select","change",this._accountChange),t.delegate(".fl-builder-service-account-delete","click",this._accountDeleteClicked),t.delegate(".fl-builder-campaign-monitor-client-select","change",this._campaignMonitorClientChange),t.delegate(".fl-builder-mailchimp-list-select","change",this._mailChimpListChange)},_startSettingsLoading:function(t){var l=e(".fl-builder-settings"),i=t.closest(".fl-builder-service-settings"),o=e(".fl-builder-service-error");
|
2 |
l.append('<div class="fl-builder-loading"></div>'),i.addClass("fl-builder-service-settings-loading"),o.remove()},_finishSettingsLoading:function(){var t=e(".fl-builder-settings"),l=e(".fl-builder-service-settings-loading");t.find(".fl-builder-loading").remove(),l.removeClass("fl-builder-service-settings-loading")},_serviceChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this),o=i.closest("tr"),s=i.val();o.siblings("tr.fl-builder-service-account-row").remove(),o.siblings("tr.fl-builder-service-connect-row").remove(),o.siblings("tr.fl-builder-service-field-row").remove(),e(".fl-builder-service-error").remove(),""!==s&&(t._startSettingsLoading(i),FLBuilder.ajax({action:"render_service_settings",node_id:l,service:s},t._serviceChangeComplete))},_serviceChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row");s.after(i.html),t._addAccountDelete(o),t._finishSettingsLoading()},_connectClicked:function(){for(var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-connect-row"),r=i.find(".fl-builder-service-connect-input"),n=null,a=null,d=0,u={action:"connect_service",node_id:l,service:o.val(),fields:{}};d<r.length;d++)n=r.eq(d),a=n.attr("name"),u.fields[a]=n.val();s.hide(),t._startSettingsLoading(o),FLBuilder.ajax(u,t._connectComplete)},_connectComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-select-row"),r=o.find(".fl-builder-service-select"),n=o.find(".fl-builder-service-account-row"),a=o.find(".fl-builder-service-account-select"),d=o.find(".fl-builder-service-connect-row");i.error?(d.show(),0===a.length?r.after('<div class="fl-builder-service-error">'+i.error+"</div>"):a.after('<div class="fl-builder-service-error">'+i.error+"</div>")):(d.remove(),n.remove(),s.after(i.html)),t._addAccountDelete(o),t._finishSettingsLoading()},_accountChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-connect-row"),n=i.find("tr.fl-builder-service-field-row"),a=e(".fl-builder-service-error"),d=s.val(),u=null;r.remove(),n.remove(),a.remove(),"add_new_account"==d?u={action:"render_service_settings",node_id:l,service:o.val(),add_new:!0}:""!==d&&(u={action:"render_service_fields",node_id:l,service:o.val(),account:d}),u&&(t._startSettingsLoading(o),FLBuilder.ajax(u,t._accountChangeComplete)),t._addAccountDelete(i)},_accountChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-account-row");s.after(i.html),t._finishSettingsLoading()},_addAccountDelete:function(e){var t=e.find(".fl-builder-service-account-select");t.length>0&&(e.find(".fl-builder-service-account-delete").remove(),""!==t.val()&&"add_new_account"!=t.val()&&t.after('<a href="javascript:void(0);" class="fl-builder-service-account-delete">'+FLBuilderStrings.deleteAccount+"</a>"))},_accountDeleteClicked:function(){var l=e(this).closest(".fl-builder-service-settings"),i=l.find(".fl-builder-service-select"),o=l.find(".fl-builder-service-account-select");confirm(FLBuilderStrings.deleteAccountWarning)&&(FLBuilder.ajax({action:"delete_service_account",service:i.val(),account:o.val()},t._accountDeleteComplete),t._startSettingsLoading(o))},_accountDeleteComplete:function(){var l=e(".fl-builder-service-settings-loading"),i=l.find(".fl-builder-service-select");t._finishSettingsLoading(),i.trigger("change")},_campaignMonitorClientChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=e(this),n=i.find(".fl-builder-service-list-select"),a=r.val();0!==n.length&&n.closest("tr").remove(),""!==a&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),client:a},t._campaignMonitorClientChangeComplete))},_campaignMonitorClientChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-campaign-monitor-client-select");s.closest("tr").after(i.html),t._finishSettingsLoading()},_mailChimpListChange:function(){var l=e(".fl-builder-settings").data("node"),i=e(this).closest(".fl-builder-service-settings"),o=i.find(".fl-builder-service-select"),s=i.find(".fl-builder-service-account-select"),r=i.find(".fl-builder-service-list-select");e(".fl-builder-mailchimp-group-select").closest("tr").remove(),""!==r.val()&&(t._startSettingsLoading(o),FLBuilder.ajax({action:"render_service_fields",node_id:l,service:o.val(),account:s.val(),list_id:r.val()},t._mailChimpListChangeComplete))},_mailChimpListChangeComplete:function(l){var i=JSON.parse(l),o=e(".fl-builder-service-settings-loading"),s=o.find(".fl-builder-service-list-select");s.closest("tr").after(i.html),t._finishSettingsLoading()}};e(function(){t.init()})}(jQuery),function(e){FLBuilderTour={_tour:null,start:function(){FLBuilderTour._tour?FLBuilderTour._tour.restart():(FLBuilderTour._tour=new Tour(FLBuilderTour._config()),FLBuilderTour._tour.init()),FLBuilderTour._tour.start()},_config:function(){var t={storage:!1,onStart:FLBuilderTour._onStart,onPrev:FLBuilderTour._onPrev,onNext:FLBuilderTour._onNext,onEnd:FLBuilderTour._onEnd,template:'<div class="popover" role="tooltip"> <i class="fa fa-times" data-role="end"></i> <div class="arrow"></div> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="next">'+FLBuilderStrings.tourNext+"</button> </div> </div>",steps:[{animation:!1,element:".fl-builder-bar",placement:"bottom",title:FLBuilderStrings.tourTemplatesTitle,content:FLBuilderStrings.tourTemplates,onShown:function(){0===e(".fl-template-selector").length?(e(".popover[class*=tour-]").css("visibility","hidden"),FLBuilder._showTemplateSelector()):FLBuilderTour._templateSelectorLoaded()}},{animation:!1,element:"#fl-builder-blocks-rows .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddRowsTitle,content:FLBuilderStrings.tourAddRows,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e(".fl-template-selector .fl-builder-settings-cancel").trigger("click"),e("#fl-builder-blocks-rows .fl-builder-blocks-section-title").trigger("click")}},{animation:!1,element:"#fl-builder-blocks-basic .fl-builder-blocks-section-title",placement:"left",title:FLBuilderStrings.tourAddContentTitle,content:FLBuilderStrings.tourAddContent,onShow:function(){FLBuilderTour._dimSection("body"),FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._showPanel(),e("#fl-builder-blocks-basic .fl-builder-blocks-section-title").trigger("click"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-row:first-of-type",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-row:first-of-type .fl-module-overlay .fl-block-overlay-actions",placement:"top",title:FLBuilderStrings.tourEditContentTitle,content:FLBuilderStrings.tourEditContent2,onShow:function(){FLBuilderTour._dimSection(".fl-builder-bar"),FLBuilder._closePanel(),e(".fl-row").eq(0).trigger("mouseenter"),e(".fl-module").eq(0).trigger("mouseenter")}},{animation:!1,element:".fl-builder-add-content-button",placement:"bottom",title:FLBuilderStrings.tourAddContentButtonTitle,content:FLBuilderStrings.tourAddContentButton,onShow:function(){FLBuilderTour._dimSection("body"),e(".fl-row").eq(0).trigger("mouseleave"),e(".fl-module").eq(0).trigger("mouseleave")}},{animation:!1,element:".fl-builder-templates-button",placement:"bottom",title:FLBuilderStrings.tourTemplatesButtonTitle,content:FLBuilderStrings.tourTemplatesButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-tools-button",placement:"bottom",title:FLBuilderStrings.tourToolsButtonTitle,content:FLBuilderStrings.tourToolsButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,element:".fl-builder-done-button",placement:"bottom",title:FLBuilderStrings.tourDoneButtonTitle,content:FLBuilderStrings.tourDoneButton,onShow:function(){FLBuilderTour._dimSection("body")}},{animation:!1,orphan:!0,backdrop:!0,title:FLBuilderStrings.tourFinishedTitle,content:FLBuilderStrings.tourFinished,template:'<div class="popover" role="tooltip"> <div class="arrow"></div> <i class="fa fa-times" data-role="end"></i> <h3 class="popover-title"></h3> <div class="popover-content"></div> <div class="popover-navigation clearfix"> <button class="fl-builder-button fl-builder-button-primary fl-builder-tour-next" data-role="end">'+FLBuilderStrings.tourEnd+"</button> </div> </div>"}]};return FLBuilderConfig.lite?t.steps.shift():"disabled"==FLBuilderConfig.enabledTemplates?t.steps.shift():"fl-builder-template"==FLBuilderConfig.postType&&t.steps.shift(),t},_onStart:function(){var t=e("body");t.append('<div class="fl-builder-tour-mask"></div>'),t.on("fl-builder.template-selector-loaded",FLBuilderTour._templateSelectorLoaded),0===e(".fl-row").length&&"module"!=FLBuilderConfig.userTemplateType&&(e(".fl-builder-content").append('<div class="fl-builder-tour-demo-content fl-row fl-row-fixed-width fl-row-bg-none"> <div class="fl-row-content-wrap"> <div class="fl-row-content fl-row-fixed-width fl-node-content"> <div class="fl-col-group"> <div class="fl-col" style="width:100%"> <div class="fl-col-content fl-node-content"> <div class="fl-module fl-module-rich-text" data-type="rich-text" data-name="Text Editor"> <div class="fl-module-content fl-node-content"> <div class="fl-rich-text"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pellentesque ut lorem non cursus. Sed mauris nunc, porttitor iaculis lorem a, sollicitudin lacinia sapien. Proin euismod orci lacus, et sollicitudin leo posuere ac. In hac habitasse platea dictumst. Maecenas elit magna, consequat in turpis suscipit, ultrices rhoncus arcu. Phasellus finibus sapien nec elit tempus venenatis. Maecenas tincidunt sapien non libero maximus, in aliquam felis tincidunt. Mauris mollis ultricies facilisis. Duis condimentum dignissim tortor sit amet facilisis. Aenean gravida lacus eu risus molestie egestas. Donec ut dolor dictum, fringilla metus malesuada, viverra nunc. Maecenas ut purus ac justo aliquet lacinia. Cras vestibulum elementum tincidunt. Maecenas mattis tortor neque, consectetur dignissim neque tempor nec.</p></div> </div> </div> </div> </div> </div> </div> </div> </div>'),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols())},_onPrev:function(){e(".fl-builder-tour-dimmed").remove()},_onNext:function(){e(".fl-builder-tour-dimmed").remove()},_onEnd:function(){e("body").off("fl-builder.template-selector-loaded"),e(".fl-builder-tour-mask").remove(),e(".fl-builder-tour-dimmed").remove(),e(".fl-builder-tour-demo-content").remove(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showPanel(),FLBuilder._initTemplateSelector()},_dimSection:function(t){e(t).find(".fl-builder-tour-dimmed").remove(),e(t).append('<div class="fl-builder-tour-dimmed"></div>')},_templateSelectorLoaded:function(){var t=e(".fl-builder-settings-lightbox .fl-lightbox-header"),l=t.height(),i=t.offset().top+75;e(".popover[class*=tour-]").css({top:i+l+"px",visibility:"visible"})}}}(jQuery),function(e){FLBuilder={preview:null,_actionsLightbox:null,_addModuleAfterRowRender:null,_colResizeData:null,_colResizing:!1,_contentClass:!1,_dragEnabled:!1,_dragging:!1,_exitUrl:null,_layout:null,_layoutSettingsCSSCache:null,_layoutSettingsCSSTimeout:null,_lightbox:null,_lightboxScrollbarTimeout:null,_loadedModuleAssets:[],_moduleHelpers:{},_multiplePhotoSelector:null,_newColGroupParent:null,_newColGroupPosition:0,_newModuleParent:null,_newModulePosition:0,_newRowPosition:0,_selectedTemplateId:null,_selectedTemplateType:null,_singlePhotoSelector:null,_singleVideoSelector:null,_multipleAudiosSelector:null,_silentUpdate:!1,_silentUpdateCallbackData:null,_init:function(){FLBuilder._initJQueryReadyFix(),FLBuilder._initGlobalErrorHandling(),FLBuilder._initPostLock(),FLBuilder._initClassNames(),FLBuilder._initMediaUploader(),FLBuilder._initOverflowFix(),FLBuilder._initScrollbars(),FLBuilder._initLightboxes(),FLBuilder._initSortables(),FLBuilder._initCoreTemplateSettings(),FLBuilder._bindEvents(),FLBuilder._bindOverlayEvents(),FLBuilder._setupEmptyLayout(),FLBuilder._highlightEmptyCols(),FLBuilder._showTourOrTemplates()},_initJQueryReadyFix:function(){FLBuilderConfig.debug||(jQuery.fn.oldReady=jQuery.fn.ready,jQuery.fn.ready=function(e){return jQuery.fn.oldReady(function(){try{"function"==typeof e&&e()}catch(t){FLBuilder.logError(t)}})})},_initGlobalErrorHandling:function(){FLBuilderConfig.debug||(window.onerror=function(e,t,l,i,o){return FLBuilder.logGlobalError(e,t,l,i,o),!0})},_initPostLock:function(){"undefined"!=typeof wp.heartbeat&&(wp.heartbeat.interval(30),wp.heartbeat.enqueue("fl_builder_post_lock",{post_id:e("#fl-post-id").val()}))},_initClassNames:function(){e("html").addClass("fl-builder-edit"),e("body").addClass("fl-builder"),FLBuilderConfig.simpleUi&&e("body").addClass("fl-builder-simple"),FLBuilder._contentClass=".fl-builder-content-"+FLBuilderConfig.postId},_initMediaUploader:function(){wp.media.model.settings.post.id=e("#fl-post-id").val()},_initOverflowFix:function(){e(FLBuilder._contentClass).parents().css("overflow","visible")},_initScrollbars:function(){e(".fl-nanoscroller").nanoScroller({alwaysVisible:!0,preventPageScrolling:!0,paneClass:"fl-nanoscroller-pane",sliderClass:"fl-nanoscroller-slider",contentClass:"fl-nanoscroller-content"})},_initLightboxes:function(){FLBuilder._lightbox=new FLLightbox({className:"fl-builder-lightbox fl-builder-settings-lightbox"}),FLBuilder._lightbox.on("close",FLBuilder._lightboxClosed),FLBuilder._actionsLightbox=new FLLightbox({className:"fl-builder-actions-lightbox"})},_initSortables:function(){var t={appendTo:"body",cursor:"move",cursorAt:{left:25,top:20},distance:1,helper:FLBuilder._blockDragHelper,start:FLBuilder._blockDragStart,sort:FLBuilder._blockDragSort,placeholder:"fl-builder-drop-zone",tolerance:"intersect"},l="",i="";l="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content",i="row"==FLBuilderConfig.userTemplateType?FLBuilder._contentClass+" .fl-row-content, "+FLBuilder._contentClass+" .fl-col-content":FLBuilder._contentClass+", "+FLBuilder._contentClass+" .fl-row:not(.fl-node-global) .fl-row-content, "+FLBuilder._contentClass+" .fl-col:not(.fl-node-global) .fl-col-content",e(".fl-builder-rows").sortable(e.extend({},t,{connectWith:l,items:".fl-builder-block-row",stop:FLBuilder._rowDragStop})),e(".fl-builder-row-templates").sortable(e.extend({},t,{connectWith:FLBuilder._contentClass,items:".fl-builder-block-row-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-rows").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:FLBuilder._contentClass,items:".fl-builder-block-saved-row",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-modules, .fl-builder-widgets").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module",stop:FLBuilder._moduleDragStop})),e(".fl-builder-module-templates").sortable(e.extend({},t,{connectWith:i,items:".fl-builder-block-module-template",stop:FLBuilder._nodeTemplateDragStop})),e(".fl-builder-saved-modules").sortable(e.extend({},t,{cancel:".fl-builder-node-template-actions, .fl-builder-node-template-edit, .fl-builder-node-template-delete",connectWith:i,items:".fl-builder-block-saved-module",stop:FLBuilder._nodeTemplateDragStop})),e(FLBuilder._contentClass).sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-row",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-row-content").sortable(e.extend({},t,{handle:".fl-row-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._rowDragHelper,items:".fl-col-group",stop:FLBuilder._rowDragStop})),e(FLBuilder._contentClass+" .fl-col-content").sortable(e.extend({},t,{connectWith:i,handle:".fl-module-overlay .fl-block-overlay-actions .fl-block-move",helper:FLBuilder._moduleDragHelper,items:".fl-module",stop:FLBuilder._moduleDragStop}))},_bindEvents:function(){e("a").on("click",FLBuilder._preventDefault),e(".fl-page-nav .nav a").on("click",FLBuilder._headerLinkClicked),e(document).on("heartbeat-tick",FLBuilder._initPostLock),e(window).on("beforeunload",FLBuilder._warnBeforeUnload),e("body").delegate(".fl-builder-has-submenu","click",FLBuilder._submenuParentClicked),e("body").delegate(".fl-builder-has-submenu a","click",FLBuilder._submenuChildClicked),e("body").delegate(".fl-builder-submenu","mouseenter",FLBuilder._submenuMouseenter),e("body").delegate(".fl-builder-submenu","mouseleave",FLBuilder._submenuMouseleave),e(".fl-builder-tools-button").on("click",FLBuilder._toolsClicked),e(".fl-builder-done-button").on("click",FLBuilder._doneClicked),e(".fl-builder-add-content-button").on("click",FLBuilder._showPanel),e(".fl-builder-templates-button").on("click",FLBuilder._changeTemplateClicked),e(".fl-builder-buy-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-upgrade-button").on("click",FLBuilder._upgradeClicked),e(".fl-builder-help-button").on("click",FLBuilder._helpButtonClicked),e(".fl-builder-panel-actions .fl-builder-panel-close").on("click",FLBuilder._closePanel),e(".fl-builder-blocks-section-title").on("click",FLBuilder._blockSectionTitleClicked),e("body").delegate(".fl-builder-node-template-actions","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-delete","mousedown",FLBuilder._stopPropagation),e("body").delegate(".fl-builder-node-template-edit","click",FLBuilder._editNodeTemplateClicked),e("body").delegate(".fl-builder-node-template-delete","click",FLBuilder._deleteNodeTemplateClicked),e("body").delegate(".fl-builder-block","mousedown",FLBuilder._blockDragInit),e("body").on("mouseup",FLBuilder._blockDragCancel),e("body").delegate(".fl-builder-actions .fl-builder-cancel-button","click",FLBuilder._cancelButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-publish-button","click",FLBuilder._publishButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-draft-button","click",FLBuilder._draftButtonClicked),e("body").delegate(".fl-builder-save-actions .fl-builder-discard-button","click",FLBuilder._discardButtonClicked),e("body").delegate(".fl-builder-save-user-template-button","click",FLBuilder._saveUserTemplateClicked),e("body").delegate(".fl-builder-duplicate-layout-button","click",FLBuilder._duplicateLayoutClicked),e("body").delegate(".fl-builder-layout-settings-button","click",FLBuilder._layoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-save","click",FLBuilder._saveLayoutSettingsClicked),e("body").delegate(".fl-builder-layout-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-builder-global-settings-button","click",FLBuilder._globalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-save","click",FLBuilder._saveGlobalSettingsClicked),e("body").delegate(".fl-builder-global-settings .fl-builder-settings-cancel","click",FLBuilder._cancelLayoutSettingsClicked),e("body").delegate(".fl-template-category-select","change",FLBuilder._templateCategoryChanged),e("body").delegate(".fl-template-preview","click",FLBuilder._templateClicked),e("body").delegate(".fl-user-template","click",FLBuilder._userTemplateClicked),e("body").delegate(".fl-user-template-edit","click",FLBuilder._editUserTemplateClicked),e("body").delegate(".fl-user-template-delete","click",FLBuilder._deleteUserTemplateClicked),e("body").delegate(".fl-builder-template-replace-button","click",FLBuilder._templateReplaceClicked),e("body").delegate(".fl-builder-template-append-button","click",FLBuilder._templateAppendClicked),e("body").delegate(".fl-builder-template-actions .fl-builder-cancel-button","click",FLBuilder._templateCancelClicked),e("body").delegate(".fl-builder-user-template-settings .fl-builder-settings-save","click",FLBuilder._saveUserTemplateSettings),e("body").delegate(".fl-builder-help-tour-button","click",FLBuilder._startHelpTour),e("body").delegate(".fl-builder-help-video-button","click",FLBuilder._watchVideoClicked),e("body").delegate(".fl-builder-knowledge-base-button","click",FLBuilder._viewKnowledgeBaseClicked),e("body").delegate(".fl-builder-forums-button","click",FLBuilder._visitForumsClicked),e("body").delegate(".fl-builder-no-tour-button","click",FLBuilder._noTourButtonClicked),e("body").delegate(".fl-builder-yes-tour-button","click",FLBuilder._yesTourButtonClicked),e("body").delegate(".fl-builder-alert-close","click",FLBuilder._alertClose),e("body").delegate(".fl-row-overlay .fl-block-remove","click",FLBuilder._deleteRowClicked),e("body").delegate(".fl-row-overlay .fl-block-copy","click",FLBuilder._rowCopyClicked),e("body").delegate(".fl-row-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-row-overlay .fl-block-settings","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-row-overlay","click",FLBuilder._rowSettingsClicked),e("body").delegate(".fl-builder-row-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-builder-col-settings .fl-builder-settings-save","click",FLBuilder._saveSettings),e("body").delegate(".fl-col-overlay .fl-block-remove","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-edit","click",FLBuilder._colSettingsClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-delete","click",FLBuilder._deleteColClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-before","click",FLBuilder._insertColBeforeClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-insert-after","click",FLBuilder._insertColAfterClicked),e("body").delegate(".fl-block-col-submenu .fl-block-col-reset","click",FLBuilder._resetColumnWidths),e("body").delegate(".fl-module-overlay .fl-block-remove","click",FLBuilder._deleteModuleClicked),e("body").delegate(".fl-module-overlay .fl-block-copy","click",FLBuilder._moduleCopyClicked),e("body").delegate(".fl-module-overlay .fl-block-move","mousedown",FLBuilder._blockDragInit),e("body").delegate(".fl-module-overlay .fl-block-settings","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-module-overlay","click",FLBuilder._moduleSettingsClicked),e("body").delegate(".fl-builder-module-settings .fl-builder-settings-save","click",FLBuilder._saveModuleClicked),e("body").delegate(".fl-builder-settings-save-as","click",FLBuilder._showNodeTemplateSettings),e("body").delegate(".fl-builder-node-template-settings .fl-builder-settings-save","click",FLBuilder._saveNodeTemplate),e("body").delegate(".fl-builder-settings-tabs a","click",FLBuilder._settingsTabClicked),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),e("body").delegate(".fl-help-tooltip-icon","mouseover",FLBuilder._showHelpTooltip),e("body").delegate(".fl-help-tooltip-icon","mouseout",FLBuilder._hideHelpTooltip),e("body").delegate(".fl-builder-field-add","click",FLBuilder._addFieldClicked),e("body").delegate(".fl-builder-field-copy","click",FLBuilder._copyFieldClicked),e("body").delegate(".fl-builder-field-delete","click",FLBuilder._deleteFieldClicked),e("body").delegate(".fl-builder-settings-fields select","change",FLBuilder._settingsSelectChanged),e("body").delegate(".fl-photo-field .fl-photo-select","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-edit","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-replace","click",FLBuilder._selectSinglePhoto),e("body").delegate(".fl-photo-field .fl-photo-remove","click",FLBuilder._singlePhotoRemoved),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-select","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-edit","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-multiple-photos-field .fl-multiple-photos-add","click",FLBuilder._selectMultiplePhotos),e("body").delegate(".fl-video-field .fl-video-select","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-video-field .fl-video-replace","click",FLBuilder._selectSingleVideo),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-select","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-edit","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-multiple-audios-field .fl-multiple-audios-add","click",FLBuilder._selectMultipleAudios),e("body").delegate(".fl-icon-field .fl-icon-select","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-replace","click",FLBuilder._selectIcon),e("body").delegate(".fl-icon-field .fl-icon-remove","click",FLBuilder._removeIcon),e("body").delegate(".fl-form-field .fl-form-field-edit","click",FLBuilder._formFieldClicked),e("body").delegate(".fl-form-field-settings .fl-builder-settings-save","click",FLBuilder._saveFormFieldClicked),e("body").delegate(".fl-layout-field-option","click",FLBuilder._layoutFieldClicked),e("body").delegate(".fl-link-field-select","click",FLBuilder._linkFieldSelectClicked),e("body").delegate(".fl-link-field-search-cancel","click",FLBuilder._linkFieldSelectCancelClicked),e("body").delegate(".fl-loop-builder select[name=post_type]","change",FLBuilder._loopBuilderPostTypeChange),e("body").delegate(".fl-select-add-value","change",FLBuilder._textFieldAddValueSelectChange)},_bindOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.delegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.delegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.delegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.delegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.delegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.delegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_destroyOverlayEvents:function(){var t=e(FLBuilder._contentClass);t.undelegate(".fl-row","mouseenter",FLBuilder._rowMouseenter),t.undelegate(".fl-row","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-row-overlay","mouseleave",FLBuilder._rowMouseleave),t.undelegate(".fl-col","mouseenter",FLBuilder._colMouseenter),t.undelegate(".fl-col","mouseleave",FLBuilder._colMouseleave),t.undelegate(".fl-module","mouseenter",FLBuilder._moduleMouseenter),t.undelegate(".fl-module","mouseleave",FLBuilder._moduleMouseleave)},_preventDefault:function(e){e.preventDefault()},_stopPropagation:function(e){e.stopPropagation()},_headerLinkClicked:function(t){var l=e(this),i=l.attr("href");t.preventDefault(),FLBuilderConfig.isUserTemplate||(FLBuilder._exitUrl=i.indexOf("?")>-1?i:i+"?fl_builder",FLBuilder._doneClicked())},_warnBeforeUnload:function(){var t=e(".fl-builder-row-settings").length>0,l=e(".fl-builder-col-settings").length>0,i=e(".fl-builder-module-settings").length>0;return t||l||i?FLBuilderStrings.unloadWarning:void 0},_initTipTips:function(){e(".fl-tip").tipTip()},_hideTipTips:function(){e("#tiptip_holder").stop().remove()},_submenuParentClicked:function(t){var l=e(this),i=l.find(".fl-builder-submenu");l.hasClass("fl-builder-submenu-open")?(l.removeClass("fl-builder-submenu-open"),l.removeClass("fl-builder-submenu-right")):(l.offset().left+i.width()>e(window).width()&&l.addClass("fl-builder-submenu-right"),l.addClass("fl-builder-submenu-open")),FLBuilder._hideTipTips(),t.preventDefault(),t.stopPropagation()},_submenuChildClicked:function(t){e(this).closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},_submenuMouseenter:function(t){var l=e(this),i=l.data("timeout");"undefined"!=typeof i&&clearTimeout(i)},_submenuMouseleave:function(t){var l=e(this),i=setTimeout(function(){l.closest(".fl-builder-submenu-open").removeClass("fl-builder-submenu-open")},500);l.data("timeout",i)},_toolsClicked:function(){var e={},t=FLBuilderConfig.lite,l=FLBuilderConfig.enabledTemplates;t||FLBuilderConfig.isUserTemplate||"enabled"!=l&&"user"!=l||(e["save-user-template"]=FLBuilderStrings.saveTemplate,"undefined"!=typeof FLBuilderTemplateSettings&&(e["save-template"]=FLBuilderStrings.saveCoreTemplate)),FLBuilderConfig.isUserTemplate?"undefined"!=typeof window.opener&&window.opener||(e["duplicate-layout"]=FLBuilderStrings.duplicateLayout):e["duplicate-layout"]=FLBuilderStrings.duplicateLayout,e["layout-settings"]=FLBuilderStrings.editLayoutSettings,e["global-settings"]=FLBuilderStrings.editGlobalSettings,FLBuilder._showActionsLightbox({className:"fl-builder-tools-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_doneClicked:function(){FLBuilder._showActionsLightbox({className:"fl-builder-save-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{publish:FLBuilderStrings.publish,draft:FLBuilderStrings.draft,discard:FLBuilderStrings.discard}})},_upgradeClicked:function(){window.open(FLBuilderConfig.upgradeUrl)},_helpButtonClicked:function(){var e={};FLBuilderConfig.help.tour&&(e["help-tour"]=FLBuilderStrings.takeHelpTour),FLBuilderConfig.help.video&&(e["help-video"]=FLBuilderStrings.watchHelpVideo),FLBuilderConfig.help.knowledge_base&&(e["knowledge-base"]=FLBuilderStrings.viewKnowledgeBase),FLBuilderConfig.help.forums&&(e.forums=FLBuilderStrings.visitForums),FLBuilder._showActionsLightbox({className:"fl-builder-help-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:e})},_closePanel:function(){e(".fl-builder-panel").stop(!0,!0).animate({right:"-350px"},500,function(){e(this).hide()}),e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeIn()},_showPanel:function(){e(".fl-builder-bar .fl-builder-add-content-button").stop(!0,!0).fadeOut(),e(".fl-builder-panel").stop(!0,!0).show().animate({right:"0"},500)},_blockSectionTitleClicked:function(){var t=e(this),l=t.parent();l.hasClass("fl-active")?l.removeClass("fl-active"):(e(".fl-builder-blocks-section").removeClass("fl-active"),l.addClass("fl-active")),FLBuilder._initScrollbars()},_publishButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_draftButtonClicked:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_draft"},FLBuilder._exit),FLBuilder._actionsLightbox.close()},_discardButtonClicked:function(){var e=confirm(FLBuilderStrings.discardMessage);e&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"clear_draft_layout"},FLBuilder._exit),FLBuilder._actionsLightbox.close())},_cancelButtonClicked:function(){FLBuilder._exitUrl=null,FLBuilder._actionsLightbox.close()},_exit:function(){var e=window.location.href;FLBuilderConfig.isUserTemplate&&"undefined"!=typeof window.opener&&window.opener?("undefined"!=typeof window.opener.FLBuilder&&window.opener.FLBuilder._updateLayout(),
|
3 |
window.close()):(e=FLBuilder._exitUrl?FLBuilder._exitUrl:e.replace("?fl_builder","").replace("&fl_builder",""),window.location.href=e)},_duplicateLayoutClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"duplicate_post"},FLBuilder._duplicateLayoutComplete)},_duplicateLayoutComplete:function(t){var l=e("#fl-admin-url").val();window.location.href=l+"post.php?post="+t+"&action=edit"},_layoutSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder._closePanel(),FLBuilder.ajax({action:"render_layout_settings"},FLBuilder._layoutSettingsLoaded)},_layoutSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS()},_layoutSettingsInitCSS:function(){var t=e(".fl-builder-settings #fl-field-css textarea:not(.ace_text-input)");t.on("change",FLBuilder._layoutSettingsCSSChanged),FLBuilder._layoutSettingsCSSCache=t.val()},_layoutSettingsCSSChanged:function(){FLBuilder._layoutSettingsCSSTimeout&&clearTimeout(FLBuilder._layoutSettingsCSSTimeout),FLBuilder._layoutSettingsCSSTimeout=setTimeout(e.proxy(FLBuilder._layoutSettingsCSSDoChange,this),600)},_layoutSettingsCSSDoChange:function(){var t=e(".fl-builder-settings"),l=e(this),i=l.parents("#fl-field-css");i.find(".ace_error").length>0||(t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(l.val()):e("#fl-builder-global-css").html(l.val()),FLBuilder._layoutSettingsCSSTimeout=null)},_saveLayoutSettingsClicked:function(){for(var t=e(this).closest(".fl-builder-settings"),l=t.serializeArray(),i={},o=0;o<l.length;o++)i[l[o].name]=l[o].value;FLBuilder.showAjaxLoader(),FLBuilder._lightbox.close(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_layout_settings",settings:i},FLBuilder._updateLayout)},_cancelLayoutSettingsClicked:function(){var t=e(".fl-builder-settings");t.hasClass("fl-builder-layout-settings")?e("#fl-builder-layout-css").html(FLBuilder._layoutSettingsCSSCache):e("#fl-builder-global-css").html(FLBuilder._layoutSettingsCSSCache),FLBuilder._layoutSettingsCSSCache=null},_globalSettingsClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_global_settings"},FLBuilder._globalSettingsLoaded)},_globalSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._layoutSettingsInitCSS(),FLBuilder._initSettingsValidation({module_margins:{required:!0,number:!0},row_margins:{required:!0,number:!0},row_padding:{required:!0,number:!0},row_width:{required:!0,number:!0},responsive_breakpoint:{required:!0,number:!0}})},_saveGlobalSettingsClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=t.serializeArray(),o={},s=0;if(l){for(;s<i.length;s++)o[i[s].name]=i[s].value;FLBuilder.showAjaxLoader(),FLBuilder._layoutSettingsCSSCache=null,FLBuilder.ajax({action:"save_global_settings",settings:o},FLBuilder._updateLayout),FLBuilder._lightbox.close()}},_initTemplateSelector:function(){var t=e(FLBuilder._contentClass).find(".fl-row");0===t.length&&FLBuilder._showTemplateSelector()},_changeTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showTemplateSelector()},_showTemplateSelector:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||"disabled"!=FLBuilderConfig.enabledTemplates&&(FLBuilderConfig.lite||(FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_template_selector"},FLBuilder._templateSelectorLoaded)))},_templateSelectorLoaded:function(t){var l=JSON.parse(t),i=null,o=null;FLBuilder._setLightboxContent(l.html),i=e(".fl-template-category-select"),o=e(".fl-user-template"),("user"==FLBuilderConfig.enabledTemplates||o.length>0)&&(i.val("fl-builder-settings-tab-yours"),e(".fl-builder-settings-tab").removeClass("fl-active"),e("#fl-builder-settings-tab-yours").addClass("fl-active")),0===o.length&&e(".fl-user-templates-message").show(),e("body").trigger("fl-builder.template-selector-loaded")},_templateCategoryChanged:function(){e(".fl-template-selector .fl-builder-settings-tab").hide(),e("#"+e(this).val()).show()},_templateClicked:function(){var t=e(this),l=t.closest(".fl-template-preview").attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?0===l?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate(0,!1,"core")):(FLBuilder._selectedTemplateId=l,FLBuilder._selectedTemplateType="core",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(l,!1,"core")},_showTemplateActions:function(){FLBuilder._showActionsLightbox({className:"fl-builder-template-actions",title:FLBuilderStrings.actionsLightboxTitle,buttons:{"template-replace":FLBuilderStrings.templateReplace,"template-append":FLBuilderStrings.templateAppend}})},_templateReplaceClicked:function(){confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!1,FLBuilder._selectedTemplateType))},_templateAppendClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._applyTemplate(FLBuilder._selectedTemplateId,!0,FLBuilder._selectedTemplateType)},_templateCancelClicked:function(){FLBuilder._lightbox._node.show()},_applyTemplate:function(e,t,l){t="undefined"!=typeof t&&t?"1":"0",l="undefined"==typeof l?"core":l,FLBuilder._lightbox.close(),FLBuilder.showAjaxLoader(),"core"==l?FLBuilder.ajax({action:"apply_template",template_id:e,append:t},FLBuilder._updateLayout):FLBuilder.ajax({action:"apply_user_template",template_id:e,append:t},FLBuilder._updateLayout)},_saveUserTemplateClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._showLightbox(!1),FLBuilder.ajax({action:"render_user_template_settings"},FLBuilder._userTemplateSettingsLoaded)},_userTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveUserTemplateSettings:function(){var t=e(this).closest(".fl-builder-settings"),l=t.validate().form(),i=FLBuilder._getSettings(t);l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_user_template",settings:i},FLBuilder._saveUserTemplateSettingsComplete),FLBuilder._lightbox.close())},_saveUserTemplateSettingsComplete:function(){FLBuilder.alert(FLBuilderStrings.templateSaved)},_userTemplateClicked:function(){var t=e(this).attr("data-id");e(FLBuilder._contentClass).children(".fl-row").length>0?"blank"==t?confirm(FLBuilderStrings.changeTemplateMessage)&&(FLBuilder._lightbox._node.hide(),FLBuilder._applyTemplate("blank",!1,"user")):(FLBuilder._selectedTemplateId=t,FLBuilder._selectedTemplateType="user",FLBuilder._showTemplateActions(),FLBuilder._lightbox._node.hide()):FLBuilder._applyTemplate(t,!1,"user")},_editUserTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteUserTemplateClicked:function(t){var l=e(this).closest(".fl-user-template"),i=l.attr("data-id"),o=e(".fl-user-template[data-id="+i+"]"),s=null;confirm(FLBuilderStrings.deleteTemplate)&&(FLBuilder.ajax({action:"delete_user_template",template_id:i}),o.fadeOut(function(){l=e(this),s=l.closest(".fl-user-template-category"),l.remove(),0===s.find(".fl-user-template").length&&s.remove(),1===e(".fl-user-template").length&&(e(".fl-user-templates").hide(),e(".fl-user-templates-message").show())})),t.stopPropagation()},_initCoreTemplateSettings:function(){"undefined"!=typeof FLBuilderTemplateSettings&&FLBuilderTemplateSettings.init()},_watchVideoClicked:function(){var e=wp.template("fl-video-lightbox");FLBuilder._actionsLightbox.close(),FLBuilder._lightbox.open(e({video:FLBuilderConfig.help.video_embed}))},_viewKnowledgeBaseClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.knowledge_base_url)},_visitForumsClicked:function(){FLBuilder._actionsLightbox.close(),window.open(FLBuilderConfig.help.forums_url)},_showTourOrTemplates:function(){FLBuilderConfig.simpleUi||FLBuilderConfig.isUserTemplate||(FLBuilderConfig.help.tour&&FLBuilderConfig.newUser?FLBuilder._showTourLightbox():FLBuilder._initTemplateSelector())},_showTourLightbox:function(){var e=wp.template("fl-tour-lightbox");FLBuilder._actionsLightbox.open(e())},_noTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilder._initTemplateSelector()},_yesTourButtonClicked:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_startHelpTour:function(){FLBuilder._actionsLightbox.close(),FLBuilderTour.start()},_setupEmptyLayout:function(){var t=e(FLBuilder._contentClass);FLBuilderConfig.isUserTemplate&&"module"==FLBuilderConfig.userTemplateType||(t.removeClass("fl-builder-empty"),t.find(".fl-builder-empty-message").remove(),0===t.children(".fl-row").length&&(t.addClass("fl-builder-empty"),t.append('<span class="fl-builder-empty-message">'+FLBuilderStrings.emptyMessage+"</span>"),FLBuilder._initSortables()))},_updateLayout:function(){FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"render_layout"},FLBuilder._renderLayout)},_renderLayout:function(e,t){FLBuilder._layout=new FLBuilderAJAXLayout(e,t)},_renderLayoutComplete:function(){FLBuilder._layout&&(FLBuilder._layout._complete(),FLBuilder._layout=null)},_resizeLayout:function(){e(window).trigger("resize"),"undefined"!=typeof YUI&&YUI().use("node-event-simulate",function(e){e.one(window).simulate("resize")})},_initMediaElements:function(){var t={};"undefined"!=typeof e.fn.mediaelementplayer&&("undefined"!=typeof _wpmejsSettings&&(t.pluginPath=_wpmejsSettings.pluginPath),e(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").mediaelementplayer(t))},_blockDragHelper:function(e,t){var l=t.clone();return t.clone().insertAfter(t),l.addClass("fl-builder-block-drag-helper"),l},_blockDragInit:function(t){var l=e(t.target),i=null,o=0,s="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)";FLBuilder._dragEnabled=!0,l.closest(".fl-module").length>0?i=l.closest(".fl-module"):l.closest(".fl-row").length>0?i=l.closest(".fl-row"):l.hasClass("fl-builder-block-row")||l.hasClass("fl-builder-block-saved-row")?e(".fl-row").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}):(l.hasClass("fl-builder-block-module")||l.hasClass("fl-builder-block-saved-module"))&&e(".fl-module").each(function(){null===i&&e(this).offset().top-e(window).scrollTop()>0&&(i=e(this))}),null!==i?o=i.offset().top-e(window).scrollTop():i=l,e(".fl-builder-empty-message").hide(),e(FLBuilder._contentClass+" .fl-row"+s).addClass("fl-row-highlight"),(i.hasClass("fl-module")||i.hasClass("fl-builder-block-module")||i.hasClass("fl-builder-block-saved-module"))&&e(FLBuilder._contentClass+" .fl-col"+s).addClass("fl-col-highlight"),FLBuilder._disableGlobalRows(),FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents(),FLBuilder._removeAllOverlays(),o>0&&scrollTo(0,i.offset().top-o)},_blockDragStart:function(t,l){FLBuilder._dragging=!0,e(FLBuilder._contentClass).sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-row-content").sortable("refreshPositions"),e(FLBuilder._contentClass+" .fl-col-content").sortable("refreshPositions")},_blockDragSort:function(e,t){if("undefined"!=typeof t.placeholder){var l=t.placeholder.parent(),i=FLBuilderStrings.insert;l.hasClass("fl-col-content")?i=t.item.hasClass("fl-builder-block-module")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-module")||t.item.hasClass("fl-builder-block-module-template")?t.item.find(".fl-builder-block-title").text():t.item.attr("data-name"):l.hasClass("fl-row-content")?i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():FLBuilderStrings.newColumn:l.hasClass("fl-builder-content")&&(i=t.item.hasClass("fl-builder-block-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-builder-block-saved-row")?t.item.find(".fl-builder-block-title").text():t.item.hasClass("fl-row")?FLBuilderStrings.row:FLBuilderStrings.newRow),t.placeholder.html(i),t.item.hasClass("fl-node-global")||t.item.hasClass("fl-builder-block-global")?t.placeholder.addClass("fl-builder-drop-zone-global"):t.placeholder.removeClass("fl-builder-drop-zone-global")}},_blockDragStop:function(t,l){var i=l.item.parent(),o=i.offset().top-e(window).scrollTop();i.hasClass("fl-builder-blocks-section-content")&&FLBuilder._showPanel(),FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show(),scrollTo(0,i.offset().top-o)},_blockDragCancel:function(){FLBuilder._dragEnabled&&!FLBuilder._dragging&&(FLBuilder._dragEnabled=!1,FLBuilder._dragging=!1,FLBuilder._bindOverlayEvents(),FLBuilder._highlightEmptyCols(),FLBuilder._enableGlobalRows(),e(".fl-builder-empty-message").show())},_removeAllOverlays:function(){FLBuilder._removeRowOverlays(),FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._hideTipTips()},_appendOverlay:function(e,t){var l=0,i=null,o=e.hasClass("fl-row"),s=o?e.find("> .fl-row-content-wrap"):e.find("> .fl-node-content"),r={top:parseInt(s.css("margin-top"),10),bottom:parseInt(s.css("margin-bottom"),10)};e.append(t),e.addClass("fl-block-overlay-active"),FLBuilder._initTipTips(),i=e.find("> .fl-block-overlay"),r.top<0&&(l=parseInt(i.css("top"),10),l=isNaN(l)?0:l,i.css("top",r.top+l+"px")),r.bottom<0&&(l=parseInt(i.css("bottom"),10),l=isNaN(l)?0:l,i.css("bottom",r.bottom+l+"px")),o&&i.offset().top<43&&i.addClass("fl-row-overlay-header-bottom")},_highlightEmptyCols:function(){var t="row"==FLBuilderConfig.userTemplateType?"":":not(.fl-node-global)",l=e(FLBuilder._contentClass+" .fl-row"+t),i=e(FLBuilder._contentClass+" .fl-col"+t);l.removeClass("fl-row-highlight"),i.removeClass("fl-col-highlight"),i.each(function(){var t=e(this);0===t.find(".fl-module").length&&t.addClass("fl-col-highlight")})},_removeRowOverlays:function(){e(".fl-row").removeClass("fl-block-overlay-active"),e(".fl-row-overlay").remove(),e(".fl-module").removeClass("fl-module-adjust-height")},_disableGlobalRows:function(){if("row"!=FLBuilderConfig.userTemplateType){var t=e(".fl-row.fl-node-global");t.addClass("fl-node-disabled"),t.append('<div class="fl-node-disabled-overlay"></div>')}},_enableGlobalRows:function(){"row"!=FLBuilderConfig.userTemplateType&&(e(".fl-node-disabled").removeClass("fl-node-disabled"),e(".fl-node-disabled-overlay").remove())},_rowMouseenter:function(){var t=e(this),l=wp.template("fl-row-overlay");t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,l({global:t.hasClass("fl-node-global"),node:t.attr("data-node")})),t.find(".fl-module").each(function(){e(this).outerHeight(!0)<20&&e(this).addClass("fl-module-adjust-height")}))},_rowMouseleave:function(t){var l=e(t.toElement)||e(t.relatedTarget),i=l.hasClass("fl-row-overlay"),o=l.closest(".fl-row-overlay").length>0,s=l.is("#tiptip_holder"),r=l.closest("#tiptip_holder").length>0;i||o||s||r||FLBuilder._removeRowOverlays()},_rowDragHelper:function(){return e('<div class="fl-builder-block-drag-helper" style="width: 190px; height: 45px;">'+FLBuilderStrings.row+"</div>")},_rowDragStop:function(t,l){var i=l.item,o=i.parent();return FLBuilder._blockDragStop(t,l),o.hasClass("fl-builder-rows")?void i.remove():void(i.hasClass("fl-builder-block")?(o.hasClass("fl-row-content")?FLBuilder._addColGroup(i.closest(".fl-row").attr("data-node"),i.attr("data-cols"),o.children(".fl-col-group, .fl-builder-block").index(i)):FLBuilder._addRow(i.attr("data-cols"),o.children(".fl-row, .fl-builder-block").index(i)),i.remove(),FLBuilder._showPanel(),e(".fl-builder-modules").siblings(".fl-builder-blocks-section-title").eq(0).trigger("click")):FLBuilder._reorderRow(i.attr("data-node"),o.children(".fl-row").index(i)))},_reorderRow:function(e,t){FLBuilder.ajax({action:"reorder_node",node_id:e,position:t,silent:!0})},_addRow:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._newRowPosition=t,FLBuilder.ajax({action:"render_new_row",cols:e,position:t},FLBuilder._addRowComplete)},_addRowComplete:function(t){var l=JSON.parse(t),i=e(FLBuilder._contentClass),o=e(l.html).data("node");l.nodeParent=i,l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+o+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_deleteRowClicked:function(t){var l=e(this).closest(".fl-row-overlay").attr("data-node"),i=e(".fl-row[data-node="+l+"]"),o=null;i.find(".fl-module").length?(o=confirm(FLBuilderStrings.deleteRowMessage),o&&FLBuilder._deleteRow(i)):FLBuilder._deleteRow(i),FLBuilder._removeAllOverlays(),t.stopPropagation()},_deleteRow:function(e){FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),FLBuilder._setupEmptyLayout(),FLBuilder._removeRowOverlays()},_rowCopyClicked:function(t){var l=e(this).closest(".fl-row"),i=l.attr("data-node");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newRowPosition=l.index(".fl-row")+1,FLBuilder.ajax({action:"copy_row",node_id:i},FLBuilder._rowCopyComplete),t.stopPropagation()},_rowCopyComplete:function(t){var l=JSON.parse(t);l.nodeParent=e(FLBuilder._contentClass),l.nodePosition=FLBuilder._newRowPosition,FLBuilder._renderLayout(l)},_rowSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-row-overlay").attr("data-node"),o=l.closest(".fl-block-overlay-global").length>0;o&&"row"!=FLBuilderConfig.userTemplateType?FLBuilderConfig.userCanEditGlobalTemplates&&window.open(e('.fl-row[data-node="'+i+'"]').attr("data-template-url")):l.hasClass("fl-block-settings")&&(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_row_settings",node_id:i},FLBuilder._rowSettingsLoaded)),t.stopPropagation()},_rowSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._setSettingsFormContent(t.settings),FLBuilder.preview=new FLBuilderPreview({type:"row",state:t.state})},_colMouseenter:function(){var t=e(this),l=t.hasClass("fl-node-global"),i=t.parents(".fl-node-global").length>0,o=t.parents(".fl-col-group").find(".fl-col").length,s=0===t.index(),r=o===t.index()+1,n=wp.template("fl-col-overlay");FLBuilderConfig.simpleUi||l&&i&&"row"!=FLBuilderConfig.userTemplateType||t.find(".fl-module").length>0||(t.hasClass("fl-block-overlay-active")||(FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),FLBuilder._appendOverlay(t,n({global:l,numCols:o,first:s,last:r})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_colMouseleave:function(t){var l=e(this),i=e(t.toElement)||e(t.relatedTarget),o=l.find(".fl-module").length>0,s=i.is("#tiptip_holder"),r=i.closest("#tiptip_holder").length>0;o||s||r||FLBuilder._removeColOverlays()},_removeColOverlays:function(){var t=e(".fl-col");t.removeClass("fl-block-overlay-active"),t.find(".fl-col-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_colSettingsClicked:function(t){var l=e(this).closest(".fl-col").attr("data-node");FLBuilder._colResizing||(FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_column_settings",node_id:l},FLBuilder._colSettingsLoaded),t.stopPropagation())},_colSettingsLoaded:function(t){var l=JSON.parse(t),i=null,o=null,s=null;FLBuilder._setSettingsFormContent(l.settings),i=e(".fl-builder-col-settings"),o=i.data("node"),s=e('.fl-col[data-node="'+o+'"]'),0===s.siblings(".fl-col").length&&e(i).find("#fl-builder-settings-section-general").css("display","none"),FLBuilder.preview=new FLBuilderPreview({type:"col",state:l.state})},_deleteColClicked:function(t){var l=e(this),i=l.closest(".fl-col"),o=l.closest(".fl-module"),s=!0;o.length>0&&(s=confirm(FLBuilderStrings.deleteColumnMessage)),s&&(FLBuilder._deleteCol(i),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteCol:function(e){var t=e.closest(".fl-row"),l=e.closest(".fl-col-group"),i=0;e.remove(),rowCols=t.find(".fl-col"),groupCols=l.find(".fl-col"),0===rowCols.length&&"row"!=FLBuilderConfig.userTemplateType?FLBuilder._deleteRow(t):(0===groupCols.length?l.remove():(i=6===groupCols.length?16.65:7===groupCols.length?14.28:Math.round(100/groupCols.length*100)/100,groupCols.css("width",i+"%")),FLBuilder.ajax({action:"delete_col",node_id:e.attr("data-node"),new_width:i,silent:!0}))},_insertColBeforeClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"before"),t.stopPropagation()},_insertColAfterClicked:function(t){FLBuilder._insertCol(e(this).closest(".fl-col"),"after"),t.stopPropagation()},_insertCol:function(e,t){FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder.ajax({action:"render_new_column",node_id:e.attr("data-node"),insert:t},FLBuilder._renderLayout)},_addColGroup:function(t,l,i){FLBuilder.showAjaxLoader(),FLBuilder._newColGroupParent=e(".fl-node-"+t+" .fl-row-content"),FLBuilder._newColGroupPosition=i,FLBuilder.ajax({action:"render_new_column_group",cols:l,node_id:t,position:i},FLBuilder._addColGroupComplete)},_addColGroupComplete:function(t){var l=JSON.parse(t),i=e(l.html).find(".fl-col").data("node");l.nodeParent=FLBuilder._newColGroupParent,l.nodePosition=FLBuilder._newColGroupPosition,FLBuilder._renderLayout(l,function(){null!==FLBuilder._addModuleAfterRowRender&&(FLBuilder._addModuleAfterRowRender.hasClass("fl-module")&&(e(".fl-node-"+i+" .fl-col-content").append(FLBuilder._addModuleAfterRowRender),FLBuilder._reorderModule(FLBuilder._addModuleAfterRowRender)),FLBuilder._addModuleAfterRowRender=null)})},_initColDragResizing:function(){e(".fl-block-col-resize").draggable({axis:"x",start:FLBuilder._colDragResizeStart,drag:FLBuilder._colDragResize,stop:FLBuilder._colDragResizeStop})},_colDragResizeStart:function(t,l){var i=e(l.helper),o="",s=i.closest(".fl-col-group"),r=s.find(".fl-col"),n=i.closest(".fl-col"),a=null,d=100,u=0;for(i.hasClass("fl-block-col-resize-e")?(o="e",a=n.next(".fl-col")):(o="w",a=n.prev(".fl-col"));u<r.length;u++)r.eq(u).data("node")!=n.data("node")&&r.eq(u).data("node")!=a.data("node")&&(d-=parseFloat(r.eq(u)[0].style.width));FLBuilder._colResizeData={handle:i,feedbackLeft:i.find(".fl-block-col-resize-feedback-left"),feedbackRight:i.find(".fl-block-col-resize-feedback-right"),direction:o,groupWidth:s.outerWidth(),col:n,colWidth:parseFloat(n[0].style.width)/100,sibling:a,offset:l.position.left,availWidth:d},FLBuilder._colResizing=!0,FLBuilder._closePanel(),FLBuilder._destroyOverlayEvents()},_colDragResize:function(e,t){var l=FLBuilder._colResizeData,i=(l.offset-t.position.left)/l.groupWidth,o="e"==l.direction?100*(l.colWidth-i):100*(l.colWidth+i),s=Math.round(100*o)/100,r=l.availWidth-o,n=Math.round(100*r)/100,a=10,d=Math.round(100*(l.availWidth-10))/100;10>s?(s=a,n=d):10>n&&(s=d,n=a),"e"==l.direction?(l.feedbackLeft.html(s.toFixed(1)+"%").show(),l.feedbackRight.html(n.toFixed(1)+"%").show()):(l.feedbackLeft.html(n.toFixed(1)+"%").show(),l.feedbackRight.html(s.toFixed(1)+"%").show()),l.col.css("width",s+"%"),l.sibling.css("width",n+"%")},_colDragResizeStop:function(e,t){var l=FLBuilder._colResizeData;FLBuilder._colResizeData.feedbackLeft.hide(),FLBuilder._colResizeData.feedbackRight.hide(),FLBuilder.ajax({action:"resize_cols",col_id:l.col.data("node"),col_width:parseFloat(l.col[0].style.width),sibling_id:l.sibling.data("node"),sibling_width:parseFloat(l.sibling[0].style.width),silent:!0}),FLBuilder._colResizeData=null,FLBuilder._bindOverlayEvents(),setTimeout(function(){FLBuilder._colResizing=!1},50)},_resetColumnWidths:function(t){var l=e(this).closest(".fl-col-group"),i=l.find(".fl-col"),o=0;o=6===i.length?16.65:7===i.length?14.28:Math.round(100/i.length*100)/100,i.css("width",o+"%"),FLBuilder.ajax({action:"reset_col_widths",group_id:l.data("node"),silent:!0}),t.stopPropagation()},_moduleMouseenter:function(){var t=e(this),l=t.attr("data-name"),i=t.hasClass("fl-node-global"),o=t.parents(".fl-node-global").length>0,s=t.parents(".fl-col-group").find(".fl-col").length,r=t.parents(".fl-col"),n=0===r.index(),a=s===r.index()+1,d=wp.template("fl-module-overlay");FLBuilder._removeColOverlays(),FLBuilder._removeModuleOverlays(),i&&o&&"row"!=FLBuilderConfig.userTemplateType||(t.hasClass("fl-block-overlay-active")||(FLBuilder._appendOverlay(t,d({global:i,moduleName:l,numCols:s,parentFirst:n,parentLast:a})),FLBuilder._initColDragResizing()),e("body").addClass("fl-block-overlay-muted"))},_moduleMouseleave:function(t){var l=(e(this),e(t.toElement)||e(t.relatedTarget)),i=l.is("#tiptip_holder"),o=l.closest("#tiptip_holder").length>0;i||o||FLBuilder._removeModuleOverlays()},_removeModuleOverlays:function(){var t=e(".fl-module");t.removeClass("fl-block-overlay-active"),t.find(".fl-module-overlay").remove(),e("body").removeClass("fl-block-overlay-muted")},_moduleDragHelper:function(t,l){return e('<div class="fl-builder-block-drag-helper">'+l.attr("data-name")+"</div>")},_moduleDragStop:function(e,t){var l=t.item,i=l.parent(),o=0,s=0;return FLBuilder._blockDragStop(e,t),i.hasClass("fl-builder-modules")||i.hasClass("fl-builder-widgets")?void l.remove():(l.hasClass("fl-builder-block")?(i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-builder-block").index(l),s=0):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-builder-block").index(l),s=l.closest(".fl-row").attr("data-node")):(o=i.children(".fl-module, .fl-builder-block").index(l),s=l.closest(".fl-col").attr("data-node")),FLBuilder._addModule(i,s,l.attr("data-type"),o,l.attr("data-widget")),t.item.remove()):i.hasClass("fl-builder-content")?(o=i.children(".fl-row, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addRow("1-col",o),l.remove()):i.hasClass("fl-row-content")?(o=i.children(".fl-col-group, .fl-module").index(l),FLBuilder._addModuleAfterRowRender=l,FLBuilder._addColGroup(l.closest(".fl-row").attr("data-node"),"1-col",o),l.remove()):FLBuilder._reorderModule(l),void FLBuilder._resizeLayout())},_reorderModule:function(e){var t=e.closest(".fl-col").attr("data-node"),l=e.attr("data-parent"),i=e.attr("data-node"),o=e.index();t==l?FLBuilder.ajax({action:"reorder_node",node_id:i,position:o,silent:!0}):(e.attr("data-parent",t),FLBuilder.ajax({action:"move_node",new_parent:t,node_id:i,position:o,silent:!0}))},_deleteModuleClicked:function(t){var l=e(this).closest(".fl-module"),i=confirm(FLBuilderStrings.deleteModuleMessage);i&&(FLBuilder._deleteModule(l),FLBuilder._removeAllOverlays()),t.stopPropagation()},_deleteModule:function(e){var t=e.closest(".fl-row");FLBuilder.ajax({action:"delete_node",node_id:e.attr("data-node"),silent:!0}),e.empty(),e.remove(),t.removeClass("fl-block-overlay-muted"),FLBuilder._highlightEmptyCols(),FLBuilder._removeAllOverlays()},_moduleCopyClicked:function(t){var l=e(this).closest(".fl-module");FLBuilder.showAjaxLoader(),FLBuilder._removeAllOverlays(),FLBuilder._newModuleParent=l.parent(),FLBuilder._newModulePosition=l.index()+1,FLBuilder.ajax({action:"copy_module",node_id:l.attr("data-node")},FLBuilder._moduleCopyComplete),t.stopPropagation()},_moduleCopyComplete:function(e){var t=JSON.parse(e);t.nodeParent=FLBuilder._newModuleParent,t.nodePosition=FLBuilder._newModulePosition,FLBuilder._renderLayout(t)},_moduleSettingsClicked:function(t){var l=e(this),i=l.closest(".fl-module").attr("data-node"),o=l.closest(".fl-col").attr("data-node"),s=l.closest(".fl-module").attr("data-type"),r=l.closest(".fl-block-overlay-global").length>0;t.stopPropagation(),FLBuilder._colResizing||(!r||FLBuilderConfig.userCanEditGlobalTemplates)&&FLBuilder._showModuleSettings(i,o,s)},_showModuleSettings:function(e,t,l){FLBuilder._closePanel(),FLBuilder._showLightbox(),FLBuilder.ajax({action:"render_module_settings",node_id:e,type:l,parent_id:t},FLBuilder._moduleSettingsLoaded)},_moduleSettingsLoaded:function(t){var l=JSON.parse(t),i=e("<div>"+l.settings+"</div>"),o=i.find("link.fl-builder-settings-css"),s=i.find("script.fl-builder-settings-js"),r=i.find(".fl-builder-settings"),n=r.attr("data-type"),a=null,d=null,u=null;e.inArray(n,FLBuilder._loadedModuleAssets)>-1?(o.remove(),s.remove()):(e("head").append(o),e("head").append(s),FLBuilder._loadedModuleAssets.push(n)),FLBuilder._setSettingsFormContent(i),"undefined"!=typeof l.layout&&(a=l.layout,a.nodeParent=FLBuilder._newModuleParent,a.nodePosition=FLBuilder._newModulePosition),"undefined"!=typeof l.state&&(d=l.state),FLBuilder.preview=new FLBuilderPreview({type:"module",layout:a,state:d}),u=FLBuilder._moduleHelpers[n],"undefined"!=typeof u&&(FLBuilder._initSettingsValidation(u.rules),u.init())},_saveModuleClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=t.attr("data-type"),i=(t.attr("data-node"),FLBuilder._moduleHelpers[l]),o=!0;"undefined"!=typeof i&&(t.find("label.error").remove(),t.validate().hideErrors(),o=t.validate().form(),o&&(o=i.submit())),o?(FLBuilder._saveSettings(),FLBuilder._lightbox.close()):FLBuilder._toggleSettingsTabErrors()},_addModule:function(e,t,l,i,o){FLBuilder.showAjaxLoader(),FLBuilder._newModuleParent=e,FLBuilder._newModulePosition=i,FLBuilder.ajax({action:"render_new_module",parent_id:t,type:l,position:i,node_preview:1,widget:"undefined"==typeof o?"":o},FLBuilder._addModuleComplete)},_addModuleComplete:function(t){FLBuilder._showLightbox(),FLBuilder._moduleSettingsLoaded(t),e(".fl-builder-module-settings").data("new-module","1")},registerModuleHelper:function(t,l){var i={rules:{},init:function(){},submit:function(){return!0},preview:function(){}};FLBuilder._moduleHelpers[t]=e.extend({},i,l)},_registerModuleHelper:function(e,t){FLBuilder.registerModuleHelper(e,t)},_showNodeTemplateSettings:function(t){var l=e(".fl-builder-settings-lightbox .fl-builder-settings");FLBuilder._saveSettings(),FLBuilder.ajax({action:"render_node_template_settings",node_id:l.attr("data-node")},FLBuilder._nodeTemplateSettingsLoaded)},_nodeTemplateSettingsLoaded:function(e){var t=JSON.parse(e);FLBuilder._showLightbox(!1),FLBuilder._setSettingsFormContent(t.html),FLBuilder._initSettingsValidation({name:{required:!0}})},_saveNodeTemplate:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.validate().form();l&&(FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_node_template",node_id:t.attr("data-node"),settings:FLBuilder._getSettings(t)},FLBuilder._saveNodeTemplateComplete),FLBuilder._lightbox.close())},_saveNodeTemplateComplete:function(t){var l=JSON.parse(t),i=e(".fl-builder-saved-"+l.type+"s"),o=i.find(".fl-builder-block"),s=null,r="",n=l.name.toLowerCase(),a=0,d=wp.template("fl-node-template-block");if("row"==l.type?FLBuilder.alert(FLBuilderStrings.rowTemplateSaved):"module"==l.type&&FLBuilder.alert(FLBuilderStrings.moduleTemplateSaved),l.layout&&FLBuilder._renderLayout(l.layout),0===o.length)i.append(d(l));else for(;a<o.length;a++){if(s=o.eq(a),r=s.text().toLowerCase().trim(),0===a&&r>n){i.prepend(d(l));break}if(r>n){s.before(d(l));break}if(o.length-1===a){i.append(d(l));break}}i.find(".fl-builder-block-no-node-templates").remove()},_nodeTemplateDragStop:function(e,t){var l=t.item,i=l.parent(),o=null,s=0,r="",n=null;FLBuilder._blockDragStop(e,t),l.hasClass("fl-builder-block-saved-row")||l.hasClass("fl-builder-block-row-template")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=null,r="render_new_row",n=FLBuilder._addRowComplete,FLBuilder._newRowPosition=s):(l.hasClass("fl-builder-block-saved-module")||l.hasClass("fl-builder-block-module-template"))&&(r="render_new_module",n=FLBuilder._addModuleComplete,i.hasClass("fl-builder-content")?(s=i.children(".fl-row, .fl-builder-block").index(l),o=0):i.hasClass("fl-row-content")?(s=i.children(".fl-col-group, .fl-builder-block").index(l),o=l.closest(".fl-row").attr("data-node")):(s=i.children(".fl-module, .fl-builder-block").index(l),o=l.closest(".fl-col").attr("data-node")),FLBuilder._newModuleParent=i,FLBuilder._newModulePosition=s),
|
4 |
+
FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:r,template_id:l.attr("data-id"),parent_id:o,position:s},n),l.remove()},_editNodeTemplateClicked:function(t){t.preventDefault(),t.stopPropagation(),window.open(e(this).attr("href"))},_deleteNodeTemplateClicked:function(t){var l=e(t.target),i=l.closest(".fl-builder-blocks-section"),o=i.find(".fl-builder-blocks-section-content"),s=o.find(".fl-builder-block"),r=l.closest(".fl-builder-block"),n=r.hasClass("fl-builder-block-global"),a=n?FLBuilder._updateLayout:void 0,d=n?FLBuilderStrings.deleteGlobalTemplate:FLBuilderStrings.deleteTemplate;confirm(d)&&(r.remove(),1===s.length&&(r.hasClass("fl-builder-block-saved-row")?o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedRows+"</span>"):o.append('<span class="fl-builder-block-no-node-templates">'+FLBuilderStrings.noSavedModules+"</span>")),FLBuilder.ajax({action:"delete_node_template",template_id:r.attr("data-id"),silent:r.hasClass("fl-builder-block-global")?!1:!0},a))},_initSettingsForms:function(){FLBuilder._initColorPickers(),FLBuilder._initSelectFields(),FLBuilder._initMultipleFields(),FLBuilder._initAutoSuggestFields(),FLBuilder._initLinkFields(),FLBuilder._initFontFields()},_setSettingsFormContent:function(e){FLBuilder._setLightboxContent(e),FLBuilder._initSettingsForms()},_settingsTabClicked:function(t){var l=e(this),i=l.closest(".fl-builder-settings"),o=l.attr("href").split("#").pop();i.find(".fl-builder-settings-tab").removeClass("fl-active"),i.find("#"+o).addClass("fl-active"),i.find(".fl-builder-settings-tabs .fl-active").removeClass("fl-active"),e(this).addClass("fl-active"),t.preventDefault()},_settingsCancelClicked:function(t){var l=e(".fl-builder-module-settings"),i=null,o=null,s=null,r=null;l.length>0&&"undefined"!=typeof l.data("new-module")?(i=e(FLBuilder.preview.state.html),o=e(".fl-node-"+l.data("node")),s=o.closest(".fl-col"),r=i.find(".fl-node-"+s.data("node")),r.length>0?FLBuilder._deleteModule(o):FLBuilder._deleteCol(s)):FLBuilder.preview&&FLBuilder.preview.revert(),FLBuilder.preview=null,FLLightbox.closeParent(this)},_initSettingsValidation:function(t,l){var i=e(".fl-builder-settings").last();i.validate({ignore:[],rules:t,messages:l,errorPlacement:FLBuilder._settingsErrorPlacement})},_settingsErrorPlacement:function(e,t){e.appendTo(t.parent())},_toggleSettingsTabErrors:function(){for(var t=e(".fl-builder-settings:visible"),l=t.find(".fl-builder-settings-tab"),i=null,o=null,s=0;s<l.length;s++)i=l.eq(s),o=i.find("label.error"),tabLink=t.find(".fl-builder-settings-tabs a[href*="+i.attr("id")+"]"),tabLink.find(".fl-error-icon").remove(),tabLink.removeClass("error"),o.length>0&&(tabLink.append('<span class="fl-error-icon"></span>'),tabLink.addClass("error"))},_getSettings:function(t){FLBuilder._updateEditorFields();var l=t.serializeArray(),i=0,o=0,s="",r="",n="",a=[],d=[],u={};for(i=0;i<l.length;i++)if(s=l[i].value.replace(/\r/gm,""),!(l[i].name.indexOf("flrich")>-1))if(l[i].name.indexOf("[")>-1){for(r=l[i].name.replace(/\[(.*)\]/,""),n=l[i].name.replace(r,""),a=[],d=n.match(/\[[^\]]*\]/g),o=0;o<d.length;o++)"[]"!=d[o]&&a.push(d[o].replace(/\[|\]/g,""));n.match(/\[\]\[[^\]]*\]\[[^\]]+\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]={}),"undefined"==typeof u[r][a[0]][a[1]]&&(u[r][a[0]][a[1]]={}),u[r][a[0]][a[1]]=s):n.match(/\[\]\[[^\]]*\]\[\]/)?("undefined"==typeof u[r]&&(u[r]={}),"undefined"==typeof u[r][a[0]]&&(u[r][a[0]]=[]),u[r][a[0]].push(s)):n.match(/\[\]\[[^\]]*\]/)?("undefined"==typeof u[r]&&(u[r]={}),u[r][a[0]]=s):n.match(/\[\]/)&&("undefined"==typeof u[r]&&(u[r]=[]),u[r].push(s))}else u[l[i].name]=s;for(n in u)if("undefined"!=typeof u["as_values_"+n]){u[n]=e.grep(u["as_values_"+n].split(","),function(e){return""!==e}).join(",");try{delete u["as_values_"+n]}catch(c){}}return u},_saveSettings:function(){var t=e(".fl-builder-settings-lightbox .fl-builder-settings"),l=t.attr("data-node"),i=FLBuilder._getSettings(t);FLBuilder.showAjaxLoader(),FLBuilder.ajax({action:"save_settings",node_id:l,settings:i},FLBuilder._saveSettingsComplete),FLBuilder._lightbox.close()},_saveSettingsComplete:function(e){FLBuilder._renderLayout(e,function(){FLBuilder.preview&&(FLBuilder.preview.clear(),FLBuilder.preview=null)})},_showHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeIn()},_hideHelpTooltip:function(){e(this).siblings(".fl-help-tooltip-text").fadeOut()},_initAutoSuggestFields:function(){e(".fl-suggest-field").each(FLBuilder._initAutoSuggestField)},_initAutoSuggestField:function(){var t=e(this);t.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:t.data("action"),fl_as_action_data:t.data("action-data"),_wpnonce:FLBuilderConfig.ajaxNonce}),{asHtmlID:t.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,preFill:t.data("value"),queryParam:"fl_as_query",afterSelectionAdd:FLBuilder._updateAutoSuggestField,afterSelectionRemove:FLBuilder._updateAutoSuggestField,selectionLimit:t.data("limit")})},_updateAutoSuggestField:function(t,l,i){e(this).siblings(".as-values").val(i.join(",")).trigger("change")},_initMultipleFields:function(){for(var t=e(".fl-builder-field-multiples"),l=null,i=null,o=0,s=FLBuilderConfig.isRtl?{left:10}:{right:10};o<t.length;o++)l=t.eq(o),i=l.find(".fl-builder-field-multiple"),1===i.length?i.eq(0).find(".fl-builder-field-actions").addClass("fl-builder-field-actions-single"):i.find(".fl-builder-field-actions").removeClass("fl-builder-field-actions-single");e(".fl-builder-field-multiples").sortable({items:".fl-builder-field-multiple",cursor:"move",cursorAt:s,distance:5,opacity:.5,helper:FLBuilder._fieldDragHelper,placeholder:"fl-builder-field-dd-zone",stop:FLBuilder._fieldDragStop,tolerance:"pointer"})},_addFieldClicked:function(){var t=e(this),l=t.attr("data-field"),i=t.closest("tr").siblings("tr[data-field="+l+"]").last(),o=i.clone(),s=parseInt(i.find("label span.fl-builder-field-index").html(),10)+1;o.find("th label span.fl-builder-field-index").html(s),o.find(".fl-form-field-preview-text").html(""),o.find("input, textarea, select").val(""),i.after(o),FLBuilder._initMultipleFields()},_copyFieldClicked:function(){var t=e(this),l=t.closest("tr"),i=l.clone(),o=parseInt(l.find("label span.fl-builder-field-index").html(),10)+1;i.find("th label span.fl-builder-field-index").html(o),l.after(i),FLBuilder._renumberFields(l.parent()),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview()},_deleteFieldClicked:function(){var t=e(this).closest("tr"),l=t.parent(),i=confirm(FLBuilderStrings.deleteFieldMessage);i&&(t.remove(),FLBuilder._renumberFields(l),FLBuilder._initMultipleFields(),FLBuilder.preview.delayPreview())},_renumberFields:function(e){for(var t=e.find(".fl-builder-field-multiple"),l=0;l<t.length;l++)t.eq(l).find("th label span.fl-builder-field-index").html(l+1)},_fieldDragHelper:function(){return e('<div class="fl-builder-field-dd-helper"></div>')},_fieldDragStop:function(e,t){FLBuilder._renumberFields(t.item.parent()),FLBuilder.preview.delayPreview()},_initSelectFields:function(){e(".fl-builder-settings:visible").find(".fl-builder-settings-fields select").trigger("change")},_settingsSelectChanged:function(){var t=e(this),l=t.attr("data-toggle"),i=t.attr("data-hide"),o=t.attr("data-trigger"),s=t.val(),r=0;if("undefined"!=typeof l){l=JSON.parse(l);for(r in l)FLBuilder._settingsSelectToggle(l[r].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(l[r].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[r].tabs,"hide","a[href*=fl-builder-settings-tab-","]");"undefined"!=typeof l[s]&&(FLBuilder._settingsSelectToggle(l[s].fields,"show","#fl-field-"),FLBuilder._settingsSelectToggle(l[s].sections,"show","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(l[s].tabs,"show","a[href*=fl-builder-settings-tab-","]"))}if("undefined"!=typeof i&&(i=JSON.parse(i),"undefined"!=typeof i[s]&&(FLBuilder._settingsSelectToggle(i[s].fields,"hide","#fl-field-"),FLBuilder._settingsSelectToggle(i[s].sections,"hide","#fl-builder-settings-section-"),FLBuilder._settingsSelectToggle(i[s].tabs,"hide","a[href*=fl-builder-settings-tab-","]"))),"undefined"!=typeof o&&(o=JSON.parse(o),"undefined"!=typeof o[s]&&"undefined"!=typeof o[s].fields))for(r=0;r<o[s].fields.length;r++)e("#fl-field-"+o[s].fields[r]).find("select").trigger("change")},_settingsSelectToggle:function(t,l,i,o){var s=0;if(o="undefined"==typeof o?"":o,"undefined"!=typeof t)for(;s<t.length;s++)e(i+t[s]+o)[l]()},_initColorPickers:function(){var t=FLBuilderConfig.colorPresets?FLBuilderConfig.colorPresets:[];FLBuilder.colorPicker=new FLBuilderColorPicker({elements:".fl-color-picker .fl-color-picker-value",presets:t,labels:{colorPresets:FLBuilderStrings.colorPresets,colorPicker:FLBuilderStrings.colorPicker,placeholder:FLBuilderStrings.placeholder,removePresetConfirm:FLBuilderStrings.removePresetConfirm,noneColorSelected:FLBuilderStrings.noneColorSelected,alreadySaved:FLBuilderStrings.alreadySaved,noPresets:FLBuilderStrings.noPresets,presetAdded:FLBuilderStrings.presetAdded}}),e(FLBuilder.colorPicker).on("presetRemoved presetAdded",function(e,t){FLBuilder.ajax({action:"save_color_presets",presets:t.presets})})},_selectSinglePhoto:function(){null===FLBuilder._singlePhotoSelector&&(FLBuilder._singlePhotoSelector=wp.media({title:FLBuilderStrings.selectPhoto,button:{text:FLBuilderStrings.selectPhoto},library:{type:"image"},multiple:!1})),FLBuilder._singlePhotoSelector.once("open",e.proxy(FLBuilder._singlePhotoOpened,this)),FLBuilder._singlePhotoSelector.once("select",e.proxy(FLBuilder._singlePhotoSelected,this)),FLBuilder._singlePhotoSelector.open()},_singlePhotoOpened:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=i.val(),s=null;e(this).hasClass("fl-photo-replace")?(t.reset(),l.addClass("fl-photo-empty"),i.val("")):""!==o?(s=wp.media.attachment(o),s.fetch(),t.add(s?[s]:[])):t.reset()},_singlePhotoSelected:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-photo-preview img"),s=l.find("select");i.val(t.id),o.attr("src",FLBuilder._getPhotoSrc(t)),l.removeClass("fl-photo-empty"),l.find("label.error").remove(),s.show(),s.html(FLBuilder._getPhotoSizeOptions(t)),s.trigger("change")},_singlePhotoRemoved:function(){var t=FLBuilder._singlePhotoSelector.state().get("selection"),l=e(this).closest(".fl-photo-field"),i=l.find("input[type=hidden]"),o=l.find("select");t.reset(),l.addClass("fl-photo-empty"),i.val(""),o.html(""),o.trigger("change")},_getPhotoSrc:function(e){return"undefined"==typeof e.sizes?e.url:"undefined"!=typeof e.sizes.thumbnail?e.sizes.thumbnail.url:e.sizes.full.url},_getPhotoSizeOptions:function(e){var t="",l=null,i=null,o="",s={full:FLBuilderStrings.fullSize,large:FLBuilderStrings.large,medium:FLBuilderStrings.medium,thumbnail:FLBuilderStrings.thumbnail};if("undefined"==typeof e.sizes)t+='<option value="'+e.url+'">'+FLBuilderStrings.fullSize+"</option>";else for(l in e.sizes)o="undefined"!=typeof s[l]?s[l]+" - ":"undefined"!=typeof FLBuilderConfig.customImageSizeTitles[l]?FLBuilderConfig.customImageSizeTitles[l]+" - ":"",i="full"==l?' selected="selected"':"",t+='<option value="'+e.sizes[l].url+'"'+i+">"+o+e.sizes[l].width+" x "+e.sizes[l].height+"</option>";return t},_selectMultiplePhotos:function(){var t=e(this).closest(".fl-multiple-photos-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""===i?'[gallery ids="-1"]':'[gallery ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("gallery",o).shortcode,r=wp.media.gallery.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.gallery.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.gallery=n.gallery,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multiplePhotoSelector&&FLBuilder._multiplePhotoSelector.dispose(),FLBuilder._multiplePhotoSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-photos-edit")?"gallery-edit":"gallery-library",title:wp.media.view.l10n.editGalleryTitle,editing:!0,multiple:!0,selection:a}).open(),e(FLBuilder._multiplePhotoSelector.views.view.el).addClass("fl-multiple-photos-lightbox"),FLBuilder._multiplePhotoSelector.once("update",e.proxy(FLBuilder._multiplePhotosSelected,this))},_multiplePhotosSelected:function(t){for(var l=e(this).closest(".fl-multiple-photos-field"),i=l.find("input[type=hidden]"),o=l.find(".fl-multiple-photos-count"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?o.html("1 "+FLBuilderStrings.photoSelected):o.html(s.length+" "+FLBuilderStrings.photosSelected),l.removeClass("fl-multiple-photos-empty"),l.find("label.error").remove(),i.val(JSON.stringify(s)).trigger("change")},_selectSingleVideo:function(){null===FLBuilder._singleVideoSelector&&(FLBuilder._singleVideoSelector=wp.media({title:FLBuilderStrings.selectVideo,button:{text:FLBuilderStrings.selectVideo},library:{type:"video"},multiple:!1})),FLBuilder._singleVideoSelector.once("select",e.proxy(FLBuilder._singleVideoSelected,this)),FLBuilder._singleVideoSelector.open()},_singleVideoSelected:function(){var t=FLBuilder._singleVideoSelector.state().get("selection").first().toJSON(),l=e(this).closest(".fl-video-field"),i=l.find(".fl-video-preview-img img"),o=l.find(".fl-video-preview-filename"),s=l.find("input[type=hidden]");i.attr("src",t.icon),o.html(t.filename),l.removeClass("fl-video-empty"),l.find("label.error").remove(),s.val(t.id).trigger("change")},_selectMultipleAudios:function(){var t=e(this).closest(".fl-multiple-audios-field"),l=t.find("input[type=hidden]"),i=l.val(),o=""==i?'[playlist ids="-1"]':'[playlist ids="'+JSON.parse(i).join()+'"]',s=wp.shortcode.next("playlist",o).shortcode,r=wp.media.playlist.defaults.id,n=null,a=null;_.isUndefined(s.get("id"))&&!_.isUndefined(r)&&s.set("id",r),n=wp.media.playlist.attachments(s),a=new wp.media.model.Selection(n.models,{props:n.props.toJSON(),multiple:!0}),a.playlist=n.playlist,a.more().done(function(){a.props.set({query:!1}),a.unmirror(),a.props.unset("orderby")}),FLBuilder._multipleAudiosSelector&&FLBuilder._multipleAudiosSelector.dispose(),FLBuilder._multipleAudiosSelector=wp.media({frame:"post",state:e(this).hasClass("fl-multiple-audios-edit")?"playlist-edit":"playlist-library",title:wp.media.view.l10n.editPlaylistTitle,editing:!0,multiple:!0,selection:a}).open(),FLBuilder._multipleAudiosSelector.content.get("view").sidebar.unset("playlist"),FLBuilder._multipleAudiosSelector.on("content:render:browse",function(e){e&&e.sidebar.on("ready",function(){e.sidebar.unset("playlist")})}),FLBuilder._multipleAudiosSelector.once("update",e.proxy(FLBuilder._multipleAudiosSelected,this))},_multipleAudiosSelected:function(t){for(var l=e(this).closest(".fl-multiple-audios-field"),i=l.find(".fl-multiple-audios-count"),o=l.find("input[type=hidden]"),s=[],r=0;r<t.models.length;r++)s.push(t.models[r].id);1==s.length?i.html("1 "+FLBuilderStrings.audioSelected):i.html(s.length+" "+FLBuilderStrings.audiosSelected),o.val(JSON.stringify(s)).trigger("change"),l.removeClass("fl-multiple-audios-empty"),l.find("label.error").remove()},_selectIcon:function(){var e=this;FLIconSelector.open(function(t){FLBuilder._iconSelected.apply(e,[t])})},_iconSelected:function(t){var l=e(this).closest(".fl-icon-field"),i=l.find("input[type=hidden]"),o=l.find("i"),s=o.attr("data-icon");i.val(t).trigger("change"),o.removeClass(s),o.addClass(t),o.attr("data-icon",t),l.removeClass("fl-icon-empty"),l.find("label.error").remove()},_removeIcon:function(){var t=e(this).closest(".fl-icon-field"),l=t.find("input[type=hidden]"),i=t.find("i");l.val("").trigger("change"),i.removeClass(),i.attr("data-icon",""),t.addClass("fl-icon-empty")},_formFieldClicked:function(){var t=e(this),l=t.closest(".fl-lightbox-wrap").attr("data-instance-id"),i=FLLightbox._instances[l],o=i._node.find(".fl-lightbox").css("left"),s=i._node.find(".fl-lightbox").css("top"),r=t.closest(".fl-builder-settings"),n=t.attr("data-type"),a=t.siblings("input").val(),d=FLBuilder._moduleHelpers[n],u=new FLLightbox({className:"fl-builder-lightbox fl-form-field-settings",destroyOnClose:!0});t.closest(".fl-builder-lightbox").hide(),t.attr("id","fl-"+u._id),u.open('<div class="fl-builder-lightbox-loading"></div>'),u.draggable({handle:".fl-lightbox-header"}),e("body").undelegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked),u._node.find(".fl-lightbox").css({left:o,top:Number(parseInt(s)+233)+"px"}),FLBuilder.ajax({action:"render_settings_form",node_id:r.attr("data-node"),node_settings:FLBuilder._getSettings(r),type:n,settings:a.replace(/'/g,"'")},function(e){var t=JSON.parse(e);u.setContent(t.html),u._node.find("form.fl-builder-settings").attr("data-type",n),u._node.find(".fl-builder-settings-cancel").on("click",FLBuilder._closeFormFieldLightbox),FLBuilder._initSettingsForms(),"undefined"!=typeof d&&(FLBuilder._initSettingsValidation(d.rules),d.init()),u._node.find(".fl-lightbox").css({left:o,top:s})})},_closeFormFieldLightbox:function(){var t=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),l=FLLightbox._instances[t],i=e(".fl-builder-settings-lightbox"),o=i.find("form"),s=l._node.find(".fl-lightbox").css("left"),r=l._node.find(".fl-lightbox").css("top"),n=0,a=e(window),d=a.height();l._node.find(".fl-lightbox-content").html('<div class="fl-builder-lightbox-loading"></div>'),n=l._node.find(".fl-lightbox").height(),d-80>n?l._node.find(".fl-lightbox").css("top",(d-n)/2-40+"px"):l._node.find(".fl-lightbox").css("top","0px"),l.on("close",function(){i.show(),i.find("label.error").remove(),o.validate().hideErrors(),FLBuilder._toggleSettingsTabErrors(),i.find(".fl-lightbox").css({left:s,top:r})}),setTimeout(function(){l.close(),e("body").delegate(".fl-builder-settings-cancel","click",FLBuilder._settingsCancelClicked)},500)},_saveFormFieldClicked:function(){var t=e(this).closest(".fl-builder-settings"),l=e(this).closest(".fl-lightbox-wrap").attr("data-instance-id"),i=t.attr("data-type"),o=FLBuilder._getSettings(t),s=FLBuilder._moduleHelpers[i],r=e(".fl-builder-settings #fl-"+l),n=r.parent().attr("data-preview-text"),a=o[n],d=e('select[name="'+n+'"]'),u=document.createElement("div"),c=!0;return d.length>0&&(a=d.find('option[value="'+o[n]+'"]').text()),"undefined"!=typeof s&&(t.find("label.error").remove(),t.validate().hideErrors(),c=t.validate().form(),c&&(c=s.submit())),c?("undefined"!=typeof n&&(a.indexOf("fa fa-")>-1?a='<i class="'+a+'"></i>':a.length>35&&(u.innerHTML=a,a=(u.textContent||u.innerText||"").replace(/^(.{35}[^\s]*).*/,"$1")+"..."),r.siblings(".fl-form-field-preview-text").html(a)),r.siblings("input").val(JSON.stringify(o)).trigger("change"),FLBuilder._closeFormFieldLightbox.apply(this),!0):(FLBuilder._toggleSettingsTabErrors(),!1)},_layoutFieldClicked:function(){var t=e(this);t.siblings().removeClass("fl-layout-field-option-selected"),t.addClass("fl-layout-field-option-selected"),t.siblings("input").val(t.attr("data-value"))},_initLinkFields:function(){e(".fl-link-field").each(FLBuilder._initLinkField)},_initLinkField:function(){var t=e(this),l=t.find(".fl-link-field-search-input");l.autoSuggest(FLBuilder._ajaxUrl({fl_action:"fl_builder_autosuggest",fl_as_action:"fl_as_links",_wpnonce:FLBuilderConfig.ajaxNonce}),{asHtmlID:l.attr("name"),selectedItemProp:"name",searchObjProps:"name",minChars:3,keyDelay:1e3,fadeOut:!1,usePlaceholder:!0,emptyText:FLBuilderStrings.noResultsFound,showResultListWhenNoMatch:!0,queryParam:"fl_as_query",selectionLimit:1,afterSelectionAdd:FLBuilder._updateLinkField})},_updateLinkField:function(e,t,l){var i=e.closest(".fl-link-field"),o=i.find(".fl-link-field-search"),s=i.find(".fl-link-field-search-input"),r=i.find(".fl-link-field-input");r.val(t.value).trigger("keyup"),s.autoSuggest("remove",t.value),o.hide()},_linkFieldSelectClicked:function(){e(this).parent().find(".fl-link-field-search").show()},_linkFieldSelectCancelClicked:function(){e(this).parent().hide()},_initFontFields:function(){e(".fl-font-field").each(FLBuilder._initFontField)},_initFontField:function(){var t=e(this),l=t.find(".fl-font-field-font");l.on("change",function(){FLBuilder._getFontWeights(l)})},_getFontWeights:function(t){var l=t.next(".fl-font-field-weight"),i=t.val(),o={"default":"Default",regular:"Regular",100:"Thin 100",200:"Extra-Light 200",300:"Light 300",400:"Normal 400",500:"Medium 500",600:"Semi-Bold 600",700:"Bold 700",800:"Extra-Bold 800",900:"Ultra-Bold 900"},s={};l.html(""),s="undefined"!=typeof FLBuilderFontFamilies.system[i]?FLBuilderFontFamilies.system[i].weights:"undefined"!=typeof FLBuilderFontFamilies.google[i]?FLBuilderFontFamilies.google[i]:FLBuilderFontFamilies["default"][i],e.each(s,function(e,t){l.append('<option value="'+t+'">'+o[t]+"</option>")})},initEditorField:function(e){var t=tinyMCEPreInit.mceInit.flhiddeneditor;t.elements=e,tinyMCEPreInit.mceInit[e]=t},_updateEditorFields:function(){var t=e(".fl-builder-settings textarea.wp-editor-area");t.each(FLBuilder._updateEditorField)},_updateEditorField:function(){var t=e(this),l=t.closest(".wp-editor-wrap"),i=t.attr("id"),o=t.closest(".fl-editor-field").attr("id"),s="undefined"==typeof tinyMCE?!1:tinyMCE.get(i),r=t.siblings('textarea[name="'+o+'"]');0===r.length&&(r=e('<textarea name="'+o+'"></textarea>').hide(),t.after(r)),s&&l.hasClass("tmce-active")?r.val(s.getContent()):"undefined"!=typeof switchEditors?r.val(switchEditors.wpautop(t.val())):r.val(t.val())},_loopBuilderPostTypeChange:function(){var t=e(this).val();e(".fl-loop-builder-filter").hide(),e(".fl-loop-builder-"+t+"-filter").show()},_textFieldAddValueSelectChange:function(){var t=e(this),l=e('input[name="'+t.data("target")+'"]'),i=l.val(),o=t.val();-1==i.indexOf(o)&&l.attr("value",i.trim()+" "+o.trim()),t.val("")},ajax:function(t,l){var i;if(FLBuilder._silentUpdate)return FLBuilder.showAjaxLoader(),void(FLBuilder._silentUpdateCallbackData=[t,l]);t.silent===!0&&(FLBuilder._silentUpdate=!0);for(i in t)"undefined"==typeof t[i]&&(t[i]=null);return t._wpnonce=FLBuilderConfig.ajaxNonce,t.post_id=e("#fl-post-id").val(),t.fl_builder=1,t.fl_action=t.action,t={fl_builder_data:t},e.post(FLBuilder._ajaxUrl(),t,function(e){FLBuilder._ajaxComplete(),"undefined"!=typeof l&&l.call(this,e)})},_ajaxComplete:function(){var e,t;FLBuilder._silentUpdate=!1,null!==FLBuilder._silentUpdateCallbackData?(FLBuilder.showAjaxLoader(),e=FLBuilder._silentUpdateCallbackData[0],t=FLBuilder._silentUpdateCallbackData[1],FLBuilder._silentUpdateCallbackData=null,FLBuilder.ajax(e,t)):FLBuilder.hideAjaxLoader()},_ajaxUrl:function(e){var t=window.location.href.split("#").shift(),l=null;if("undefined"!=typeof e)for(l in e)t+=t.indexOf("?")>-1?"&":"?",t+=l+"="+e[l];return t},showAjaxLoader:function(){0===e(".fl-builder-lightbox-loading").length&&e(".fl-builder-loading").show()},hideAjaxLoader:function(){e(".fl-builder-loading").hide()},_showLightbox:function(e){e="undefined"==typeof e?!0:e,FLBuilder._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),e?FLBuilder._lightbox.draggable({handle:".fl-lightbox-header"}):FLBuilder._lightbox.draggable(!1),FLBuilder._removeAllOverlays(),FLBuilder._initLightboxScrollbars()},_setLightboxContent:function(e){FLBuilder._lightbox.setContent(e)},_initLightboxScrollbars:function(){FLBuilder._initScrollbars(),FLBuilder._lightboxScrollbarTimeout=setTimeout(FLBuilder._initLightboxScrollbars,500)},_lightboxClosed:function(){FLBuilder._lightbox.empty(),clearTimeout(FLBuilder._lightboxScrollbarTimeout)},_showActionsLightbox:function(e){var t=wp.template("fl-actions-lightbox");FLBuilder._actionsLightbox.open(t(e))},alert:function(e){var t=new FLLightbox({className:"fl-builder-lightbox fl-builder-alert-lightbox",destroyOnClose:!0}),l=wp.template("fl-alert-lightbox");t.open(l({message:e}))},_alertClose:function(){FLLightbox.closeParent(this)},log:function(e){"undefined"!=typeof window.console&&"undefined"!=typeof window.console.log&&console.log(e)},logError:function(e){var t=null;"undefined"!=typeof e&&("undefined"!=typeof e.stack?t=e.stack:"undefined"!=typeof e.message&&(t=e.message),t&&(FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(t),FLBuilder.log("************************************************************************")))},logGlobalError:function(e,t,l,i,o){FLBuilder.log("************************************************************************"),FLBuilder.log(FLBuilderStrings.errorMessage),FLBuilder.log(FLBuilderStrings.globalErrorMessage.replace("{message}",e).replace("{line}",l).replace("{file}",t)),"undefined"!=typeof o&&"undefined"!=typeof o.stack&&(FLBuilder.log(o.stack),FLBuilder.log("************************************************************************"))}},e(function(){FLBuilder._init()})}(jQuery);var FLBuilderColorPicker;!function(e,t){function l(){var t,l,i="backgroundImage";h?f="filter":(t=e('<div id="iris-gradtest" />'),l="linear-gradient(top,#fff,#000)",e.each(p,function(e,o){return t.css(i,o+l),t.css(i).match("gradient")?(f=e,!1):void 0}),f===!1&&(t.css("background","-webkit-gradient(linear,0% 0%,0% 100%,from(#fff),to(#000))"),t.css(this.bgImageString).match("gradient")&&(f="webkit")),t.remove())}function i(t,l){return t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),"webkit"===f?s(t,l):p[f]+"linear-gradient("+t+", "+l.join(", ")+")"}function o(t,l){var i,o,s,n,a,d,u,c,h;t="top"===t?"top":"left",l=e.isArray(l)?l:Array.prototype.slice.call(arguments,1),i="top"===t?0:1,o=e(this),s=l.length-1,n="filter",a=1===i?"left":"top",d=1===i?"right":"bottom",u=1===i?"height":"width",c='<div class="iris-ie-gradient-shim" style="position:absolute;'+u+":100%;"+a+":%start%;"+d+":%end%;"+n+':%filter%;" data-color:"%color%"></div>',h="","static"===o.css("position")&&o.css({position:"relative"}),l=r(l),e.each(l,function(e,t){var o,r,n;return e===s?!1:(o=l[e+1],void(t.stop!==o.stop&&(r=100-parseFloat(o.stop)+"%",t.octoHex=new Color(t.color).toIEOctoHex(),o.octoHex=new Color(o.color).toIEOctoHex(),n="progid:DXImageTransform.Microsoft.Gradient(GradientType="+i+", StartColorStr='"+t.octoHex+"', EndColorStr='"+o.octoHex+"')",h+=c.replace("%start%",t.stop).replace("%end%",r).replace("%filter%",n))))}),o.find(".iris-ie-gradient-shim").remove(),e(h).prependTo(o)}function s(t,l){var i=[];return t="top"===t?"0% 0%,0% 100%,":"0% 100%,100% 100%,",l=r(l),e.each(l,function(e,t){i.push("color-stop("+parseFloat(t.stop)/100+", "+t.color+")")}),"-webkit-gradient(linear,"+t+i.join(",")+")"}function r(t){var l=[],i=[],o=[],s=t.length-1;return e.each(t,function(e,t){var o=t,s=!1,r=t.match(/1?[0-9]{1,2}%$/);r&&(o=t.replace(/\s?1?[0-9]{1,2}%$/,""),s=r.shift()),l.push(o),i.push(s)}),i[0]===!1&&(i[0]="0%"),i[s]===!1&&(i[s]="100%"),i=n(i),e.each(i,function(e){o[e]={color:l[e],stop:i[e]}}),o}function n(t){var l,i,o,s,r=0,a=t.length-1,d=0,u=!1;if(t.length<=2||e.inArray(!1,t)<0)return t;for(;d<t.length-1;)u||t[d]!==!1?u&&t[d]!==!1&&(a=d,d=t.length):(r=d-1,u=!0),d++;for(i=a-r,s=parseInt(t[r].replace("%"),10),l=(parseFloat(t[a].replace("%"))-s)/i,d=r+1,o=1;a>d;)t[d]=s+o*l+"%",o++,d++;return n(t)}var a=[],d=navigator.userAgent.toLowerCase(),u="Microsoft Internet Explorer"===navigator.appName,c=u?parseFloat(d.match(/msie ([0-9]{1,}[\.0-9]{0,})/)[1]):0,h=u&&10>c,f=!1,p=["-moz-","-webkit-","-o-","-ms-"];e.fn.gradient=function(){var t=arguments;return this.each(function(){h?o.apply(this,t):e(this).css("backgroundImage",i.apply(this,t))})},e.fn.raninbowGradient=function(t,l){var i,o,s,r;for(t=t||"top",i=e.extend({},{s:100,l:50},l),o="hsl(%h%,"+i.s+"%,"+i.l+"%)",s=0,r=[];360>=s;)r.push(o.replace("%h%",s)),s+=30;return this.each(function(){e(this).gradient(t,r)})},FLBuilderColorPicker=function(t){this._html='<div class="fl-color-picker-ui"><div class="iris-picker"><div class="iris-picker-inner"><div class="iris-square"><a class="iris-square-value" href="#"><span class="iris-square-handle ui-slider-handle"></span></a><div class="iris-square-inner iris-square-horiz"></div><div class="iris-square-inner iris-square-vert"></div></div><div class="iris-slider iris-strip"><div class="iris-slider-offset"></div></div></div></div></div>';var l={elements:null,color:"",mode:"hsl",controls:{horiz:"s",vert:"l",strip:"h"},target:!1,width:200,presets:[],labels:{colorPresets:"Color Presets",colorPicker:"Color Picker",placeholder:"Paste color here...",removePresetConfirm:"Are you sure?",noneColorSelected:"None color selected.",alreadySaved:"%s is already a saved preset.",noPresets:"Add a color preset first.",presetAdded:"%s added to presets!"}};this.options=e.extend({},l,t),(h===!1||h===!0&&c>7)&&this._init()},FLBuilderColorPicker.prototype={_html:"",_color:"",_currentElement:"",_inited:!1,_defaultHSLControls:{horiz:"s",vert:"l",strip:"h"},_defaultHSVControls:{horiz:"h",vert:"v",strip:"s"},_scale:{h:360,s:100,l:100,v:100},_init:function(){var t=this;e(t.options.elements);this._color=new Color("#000000").setHSpace(t.options.mode),a=this.options.presets,f===!1&&l(),e("html").hasClass("fl-color-picker-init")?t.picker=e(".fl-color-picker-ui"):t.picker=e(this._html).appendTo("body"),u?9===c?t.picker.addClass("iris-ie-9"):8>=c&&t.picker.addClass("iris-ie-lt9"):d.indexOf("compatible")<0&&d.indexOf("khtml")<0&&d.match(/mozilla/)&&t.picker.addClass("iris-mozilla"),t.controls={square:t.picker.find(".iris-square"),squareDrag:t.picker.find(".iris-square-value"),horiz:t.picker.find(".iris-square-horiz"),vert:t.picker.find(".iris-square-vert"),strip:t.picker.find(".iris-strip"),stripSlider:t.picker.find(".iris-strip .iris-slider-offset")},"hsv"===t.options.mode&&t._has("l",t.options.controls)?t.options.controls=t._defaultHSVControls:"hsl"===t.options.mode&&t._has("v",t.options.controls)&&(t.options.controls=t._defaultHSLControls),t.hue=t._color.h(),this._setTemplates(),this._ui=e(".fl-color-picker-ui"),this._iris=e(".iris-picker"),this._wrapper=e("body"),e("html").hasClass("fl-color-picker-init")||this._ui.prepend(this._hexHtml).append(this._presetsHtml),t.element=this._ui.find(".fl-color-picker-input"),t._initControls(),t.active="external",t._change(),t._addInputListeners(t.element),this._buildUI(),this._prepareColorFields(),this._pickerControls(),this._presetsControls(),e("html").addClass("fl-color-picker-init")},_prepareColorFields:function(){e(".fl-color-picker-value").each(function(){var t=e(this),l=t.parent().find(".fl-color-picker-color");t.val()&&l.css({backgroundColor:"#"+t.val().toString()})})},_setTemplates:function(){this._presetsHtml='<div class="fl-color-picker-presets"><div class="fl-color-picker-presets-toggle"><div class="fl-color-picker-presets-open-label fl-color-picker-active">'+this.options.labels.colorPresets+' <span class="fl-color-picker-icon-arrow-up"></span></div><div class="fl-color-picker-presets-close-label">'+this.options.labels.colorPicker+' <span class="fl-color-picker-icon-arrow-down"></span></div></div><ul class="fl-color-picker-presets-list"></ul></div>',this._hexHtml='<input type="text" class="fl-color-picker-input" maxlength="7" placeholder="'+this.options.labels.placeholder+'"><div class="fl-color-picker-preset-add"></div>',this._presetsTpl='<li class="fl-color-picker-preset"><span class="fl-color-picker-preset-color"></span> <span class="fl-color-picker-preset-label"></span> <span class="fl-color-picker-preset-remove fl-color-picker-icon-remove"></span></li>',this._noPresetsTpl='<li class="fl-color-picker-no-preset"><span class="fl-color-picker-preset-label">'+this.options.labels.noPresets+"</span></li>"},_has:function(t,l){var i=!1;return e.each(l,function(e,l){return t===l?(i=!0,!1):void 0}),i},_buildUI:function(){var t=this;t._presetsList=this._ui.find(".fl-color-picker-presets-list"),
|
5 |
+
t._presetsList.html(""),this.options.presets.length>0?e.each(this.options.presets,function(e,l){t._addPresetView(l)}):t._presetsList.append(this._noPresetsTpl)},_addPresetView:function(t){var l=this._presetsList.find(".fl-color-picker-no-preset");l.length>0&&l.remove();var i=e(this._presetsTpl),o=Color(t);i.attr("data-color",t).find(".fl-color-picker-preset-color").css({backgroundColor:o.toString()}).end().find(".fl-color-picker-preset-label").html(o.toString()),this._presetsList.append(i)},_addPresetFeedback:function(){this._ui.append('<div class="fl-color-picker-added"><div class="fl-color-picker-added-text"><div class="fl-color-picker-icon-check"></div> "'+this.options.labels.presetAdded.replace("%s",this._color.toString())+'"</div></div>'),this._ui.find(".fl-color-picker-added").hide().fadeIn(200).delay(2e3).fadeOut(200,function(){e(this).remove()})},_pickerControls:function(){var t=this;this._wrapper.on("click",".fl-color-picker-color",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),t._ui.position({my:"left top",at:"left bottom",of:l,collision:"flipfit",using:function(e,l){t._togglePicker(e)}})}).on("click",".fl-color-picker-clear",function(){var l=e(this);t._currentElement=l.parent().find(".fl-color-picker-value"),l.prev(".fl-color-picker-color").css({backgroundColor:"transparent"}).addClass("fl-color-picker-empty"),t._setColor(""),t.element.val(""),t._currentElement.val("").trigger("change")}),e(document).on("click",function(t){0===e(t.target).closest(".fl-color-picker-ui").length&&e(".fl-color-picker-ui.fl-color-picker-active").removeClass("fl-color-picker-active")})},_presetsControls:function(){var t=this,l=t._ui.find(".fl-color-picker-preset-add"),i=t._ui.find(".fl-color-picker-presets"),o=i.find(".fl-color-picker-presets-open-label"),s=i.find(".fl-color-picker-presets-close-label"),r=i.find(".fl-color-picker-presets-list");l.off("click").on("click",function(){t._addPreset(t.element.val())}),r.css({height:t.element.innerHeight()+t._iris.innerHeight()+14+"px"}).hide(),i.off("click").on("click",".fl-color-picker-presets-toggle",function(){o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset",function(l){var i=new Color(e(this).data("color").toString());t._setColor(i),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:i.toString()}).removeClass("fl-color-picker-empty"),o.toggleClass("fl-color-picker-active"),s.toggleClass("fl-color-picker-active"),r.slideToggle(500)}).on("click",".fl-color-picker-preset-remove",function(l){l.stopPropagation(),t._removePreset(e(this).parent().data("color"))})},_removePreset:function(t){if(confirm(this.options.labels.removePresetConfirm)){var l=t.toString(),i=a.indexOf(l);i>-1&&(a.splice(i,1),this.options.presets=a,this._presetsList.find('.fl-color-picker-preset[data-color="'+l+'"]').slideUp(function(){e(this).remove()})),a.length<1&&this._presetsList.append(this._noPresetsTpl),e(this).trigger("presetRemoved",{presets:a})}},_addPreset:function(t){var l=t.toString().replace(/^#/,"");""===l?alert(this.options.labels.noneColorSelected):a.indexOf(l)>-1?alert(this.options.labels.alreadySaved.replace("%s","#"+l)):(this._addPresetView(l),this._addPresetFeedback(),a.push(l),this.options.presets=a,e(this).trigger("presetAdded",{presets:a}))},_togglePicker:function(e){var t=this;this._ui.hasClass("fl-color-picker-active")?(this._ui.removeClass("fl-color-picker-active"),e&&setTimeout(function(){t._ui.css(e),t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200)):(e&&t._ui.css(e),setTimeout(function(){t._ui.addClass("fl-color-picker-active"),t._setColor(t._currentElement.val())},200))},_paint:function(){var e=this;e._paintDimension("right","strip"),e._paintDimension("top","vert"),e._paintDimension("left","horiz")},_paintDimension:function(e,t){var l,i=this,o=i._color,s=i.options.mode,r=i._getHSpaceColor(),n=i.controls[t],a=i.options.controls;if(t!==i.active&&("square"!==i.active||"strip"===t))switch(a[t]){case"h":if("hsv"===s){switch(r=o.clone(),t){case"horiz":r[a.vert](100);break;case"vert":r[a.horiz](100);break;case"strip":r.setHSpace("hsl")}l=r.toHsl()}else l="strip"===t?{s:r.s,l:r.l}:{s:100,l:r.l};n.raninbowGradient(e,l);break;case"s":"hsv"===s?"vert"===t?l=[o.clone().a(0).s(0).toCSS("rgba"),o.clone().a(1).s(0).toCSS("rgba")]:"strip"===t?l=[o.clone().s(100).toCSS("hsl"),o.clone().s(0).toCSS("hsl")]:"horiz"===t&&(l=["#fff","hsl("+r.h+",100%,50%)"]):l="vert"===t&&"h"===i.options.controls.horiz?["hsla(0, 0%, "+r.l+"%, 0)","hsla(0, 0%, "+r.l+"%, 1)"]:["hsl("+r.h+",0%,50%)","hsl("+r.h+",100%,50%)"],n.gradient(e,l);break;case"l":l="strip"===t?["hsl("+r.h+",100%,100%)","hsl("+r.h+", "+r.s+"%,50%)","hsl("+r.h+",100%,0%)"]:["#fff","rgba(255,255,255,0) 50%","rgba(0,0,0,0) 50%","rgba(0,0,0,1)"],n.gradient(e,l);break;case"v":l="strip"===t?[o.clone().v(100).toCSS(),o.clone().v(0).toCSS()]:["rgba(0,0,0,0)","#000"],n.gradient(e,l)}},_getHSpaceColor:function(){return"hsv"===this.options.mode?this._color.toHsv():this._color.toHsl()},_addInputListeners:function(e){var t=this,l=100,i=function(l){var i=new Color(e.val()),o=e.val().replace(/^#/,"");if(e.removeClass("iris-error"),i.error)""!==o&&e.addClass("iris-error");else if(i.toString()!==t._color.toString())if("keyup"===l.type){if(o.match(/^[0-9a-fA-F]{3}$/))return;t._setColor(o),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:Color(o).toString()}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change")}else if("paste"===l.type)return o=l.originalEvent.clipboardData.getData("text").replace(/^#/,""),hex=Color(o).toString(),t._setColor(o),e.val(hex),t._currentElement.parent().find(".fl-color-picker-color").css({backgroundColor:hex}).removeClass("fl-color-picker-empty"),t._currentElement.val(o).trigger("change"),!1};e.on("change",i).on("keyup",t._debounce(i,l))},_initControls:function(){var t=this,l=t.controls,i=l.square,o=t.options.controls,s=t._scale[o.strip];l.stripSlider.slider({orientation:"horizontal",max:s,slide:function(e,l){t.active="strip","h"===o.strip&&(l.value=s-l.value),t._color[o.strip](l.value),t._change.apply(t,arguments)}}),l.squareDrag.draggable({containment:l.square.find(".iris-square-inner"),zIndex:1e3,cursor:"move",drag:function(e,l){t._squareDrag(e,l)},start:function(){i.addClass("iris-dragging"),e(this).addClass("ui-state-focus")},stop:function(){i.removeClass("iris-dragging"),e(this).removeClass("ui-state-focus")}}).on("mousedown mouseup",function(l){var i="ui-state-focus";l.preventDefault(),"mousedown"===l.type?(t.picker.find("."+i).removeClass(i).blur(),e(this).addClass(i).focus()):e(this).removeClass(i)}).on("keydown",function(e){var i=l.square,o=l.squareDrag,s=o.position(),r=2;switch(e.altKey&&(r*=10),e.keyCode){case 37:s.left-=r;break;case 38:s.top-=r;break;case 39:s.left+=r;break;case 40:s.top+=r;break;default:return!0}s.left=Math.max(0,Math.min(s.left,i.width())),s.top=Math.max(0,Math.min(s.top,i.height())),o.css(s),t._squareDrag(e,{position:s}),e.preventDefault()}),i.mousedown(function(l){var i,o;1===l.which&&e(l.target).is("div")&&(i=t.controls.square.offset(),o={top:l.pageY-i.top,left:l.pageX-i.left},l.preventDefault(),t._squareDrag(l,{position:o}),l.target=t.controls.squareDrag.get(0),t.controls.squareDrag.css(o).trigger(l))})},_squareDrag:function(e,t){var l=this,i=l.options.controls,o=l._squareDimensions(),s=Math.round((o.h-t.position.top)/o.h*l._scale[i.vert]),r=l._scale[i.horiz]-Math.round((o.w-t.position.left)/o.w*l._scale[i.horiz]);l._color[i.horiz](r)[i.vert](s),l.active="square",l._change.apply(l,arguments)},_setColor:function(e){var t,l,i=this,o=i.options.color;i.options.color=e,e=""+e,t=e.replace(/^#/,""),l=new Color(e).setHSpace(i.options.mode),l.error?i.options.color=o:(i._color=l,i.options.color=i._color.toString(),i.active="external",i._change())},_squareDimensions:function(e){var l,i,o=this.controls.square;return e!==t&&o.data("dimensions")?o.data("dimensions"):(i=this.controls.squareDrag,l={w:o.width(),h:o.height()},o.data("dimensions",l),l)},_isNonHueControl:function(e,t){return"square"===e&&"h"===this.options.controls.strip?!0:"external"===t||"h"===t&&"strip"===e?!1:!0},_change:function(){var t=this,l=t.controls,i=t._getHSpaceColor(),o=["square","strip"],s=t.options.controls,r=s[t.active]||"external",n=t.hue;"strip"===t.active?o=[]:"external"!==t.active&&o.pop(),e.each(o,function(e,o){var r,n,a;if(o!==t.active)switch(o){case"strip":r="h"===s.strip?t._scale[s.strip]-i[s.strip]:i[s.strip],l.stripSlider.slider("value",r);break;case"square":n=t._squareDimensions(),a={left:i[s.horiz]/t._scale[s.horiz]*n.w,top:n.h-i[s.vert]/t._scale[s.vert]*n.h},t.controls.squareDrag.css(a)}}),i.h!==n&&t._isNonHueControl(t.active,r)&&t._color.h(n),t.hue=t._color.h(),t.options.color=t._color.toString(),t.element.is(":input")&&!t._color.error&&(t.element.removeClass("iris-error"),t.element.val()!==t._color.toString()&&(t.element.val(t._color.toString()),this._currentElement&&(this._currentElement.val(t._color.toString().replace(/^#/,"")).parent().find(".fl-color-picker-color").css({backgroundColor:t._color.toString()}).removeClass("fl-color-picker-empty"),this._currentElement.trigger("change")))),t._paint(),t._inited=!0,t.active=!1},_debounce:function(e,t,l){var i,o;return function(){var s,r,n=this,a=arguments;return s=function(){i=null,l||(o=e.apply(n,a))},r=l&&!i,clearTimeout(i),i=setTimeout(s,t),r&&(o=e.apply(n,a)),o}}}}(jQuery),function(e,t){var l=function(e,t){return this instanceof l?this._init(e,t):new l(e,t)};l.fn=l.prototype={_color:0,_alpha:1,error:!1,_hsl:{h:0,s:0,l:0},_hsv:{h:0,s:0,v:0},_hSpace:"hsl",_init:function(e){var l="noop";switch(typeof e){case"object":return e.a!==t&&this.a(e.a),l=e.r!==t?"fromRgb":e.l!==t?"fromHsl":e.v!==t?"fromHsv":l,this[l](e);case"string":return this.fromCSS(e);case"number":return this.fromInt(parseInt(e,10))}return this},_error:function(){return this.error=!0,this},clone:function(){for(var e=new l(this.toInt()),t=["_alpha","_hSpace","_hsl","_hsv","error"],i=t.length-1;i>=0;i--)e[t[i]]=this[t[i]];return e},setHSpace:function(e){return this._hSpace="hsv"===e?e:"hsl",this},noop:function(){return this},fromCSS:function(e){var t,l=/^(rgb|hs(l|v))a?\(/;if(this.error=!1,e=e.replace(/^\s+/,"").replace(/\s+$/,"").replace(/;$/,""),e.match(l)&&e.match(/\)$/)){if(t=e.replace(/(\s|%)/g,"").replace(l,"").replace(/,?\);?$/,"").split(","),t.length<3)return this._error();if(4===t.length&&(this.a(parseFloat(t.pop())),this.error))return this;for(var i=t.length-1;i>=0;i--)if(t[i]=parseInt(t[i],10),isNaN(t[i]))return this._error();return e.match(/^rgb/)?this.fromRgb({r:t[0],g:t[1],b:t[2]}):e.match(/^hsv/)?this.fromHsv({h:t[0],s:t[1],v:t[2]}):this.fromHsl({h:t[0],s:t[1],l:t[2]})}return this.fromHex(e)},fromRgb:function(e,l){return"object"!=typeof e||e.r===t||e.g===t||e.b===t?this._error():(this.error=!1,this.fromInt(parseInt((e.r<<16)+(e.g<<8)+e.b,10),l))},fromHex:function(e){return e=e.replace(/^#/,"").replace(/^0x/,""),3===e.length&&(e=e[0]+e[0]+e[1]+e[1]+e[2]+e[2]),this.error=!/^[0-9A-F]{6}$/i.test(e),this.fromInt(parseInt(e,16))},fromHsl:function(e){var l,i,o,s,r,n,a,d;return"object"!=typeof e||e.h===t||e.s===t||e.l===t?this._error():(this._hsl=e,this._hSpace="hsl",n=e.h/360,a=e.s/100,d=e.l/100,0===a?l=i=o=d:(s=.5>d?d*(1+a):d+a-d*a,r=2*d-s,l=this.hue2rgb(r,s,n+1/3),i=this.hue2rgb(r,s,n),o=this.hue2rgb(r,s,n-1/3)),this.fromRgb({r:255*l,g:255*i,b:255*o},!0))},fromHsv:function(e){var l,i,o,s,r,n,a,d,u,c,h;if("object"!=typeof e||e.h===t||e.s===t||e.v===t)return this._error();switch(this._hsv=e,this._hSpace="hsv",l=e.h/360,i=e.s/100,o=e.v/100,a=Math.floor(6*l),d=6*l-a,u=o*(1-i),c=o*(1-d*i),h=o*(1-(1-d)*i),a%6){case 0:s=o,r=h,n=u;break;case 1:s=c,r=o,n=u;break;case 2:s=u,r=o,n=h;break;case 3:s=u,r=c,n=o;break;case 4:s=h,r=u,n=o;break;case 5:s=o,r=u,n=c}return this.fromRgb({r:255*s,g:255*r,b:255*n},!0)},fromInt:function(e,l){return this._color=parseInt(e,10),isNaN(this._color)&&(this._color=0),this._color>16777215?this._color=16777215:this._color<0&&(this._color=0),l===t&&(this._hsv.h=this._hsv.s=this._hsl.h=this._hsl.s=0),this},hue2rgb:function(e,t,l){return 0>l&&(l+=1),l>1&&(l-=1),1/6>l?e+6*(t-e)*l:.5>l?t:2/3>l?e+(t-e)*(2/3-l)*6:e},toString:function(){var e=parseInt(this._color,10).toString(16);if(this.error)return"";if(e.length<6)for(var t=6-e.length-1;t>=0;t--)e="0"+e;return"#"+e},toCSS:function(e,t){switch(e=e||"hex",t=parseFloat(t||this._alpha),e){case"rgb":case"rgba":var l=this.toRgb();return 1>t?"rgba( "+l.r+", "+l.g+", "+l.b+", "+t+" )":"rgb( "+l.r+", "+l.g+", "+l.b+" )";case"hsl":case"hsla":var i=this.toHsl();return 1>t?"hsla( "+i.h+", "+i.s+"%, "+i.l+"%, "+t+" )":"hsl( "+i.h+", "+i.s+"%, "+i.l+"% )";default:return this.toString()}},toRgb:function(){return{r:255&this._color>>16,g:255&this._color>>8,b:255&this._color}},toHsl:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=(r+n)/2;if(r===n)e=t=0;else{var d=r-n;switch(t=a>.5?d/(2-r-n):d/(r+n),r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsl.h!==e&&(e=this._hsl.h),t=Math.round(100*t),0===t&&this._hsl.s&&(t=this._hsl.s),{h:e,s:t,l:Math.round(100*a)}},toHsv:function(){var e,t,l=this.toRgb(),i=l.r/255,o=l.g/255,s=l.b/255,r=Math.max(i,o,s),n=Math.min(i,o,s),a=r,d=r-n;if(t=0===r?0:d/r,r===n)e=t=0;else{switch(r){case i:e=(o-s)/d+(s>o?6:0);break;case o:e=(s-i)/d+2;break;case s:e=(i-o)/d+4}e/=6}return e=Math.round(360*e),0===e&&this._hsv.h!==e&&(e=this._hsv.h),t=Math.round(100*t),0===t&&this._hsv.s&&(t=this._hsv.s),{h:e,s:t,v:Math.round(100*a)}},toInt:function(){return this._color},toIEOctoHex:function(){var e=this.toString(),t=parseInt(255*this._alpha,10).toString(16);return 1===t.length&&(t="0"+t),"#"+t+e.replace(/^#/,"")},toLuminosity:function(){var e=this.toRgb();return.2126*Math.pow(e.r/255,2.2)+.7152*Math.pow(e.g/255,2.2)+.0722*Math.pow(e.b/255,2.2)},getDistanceLuminosityFrom:function(e){if(!(e instanceof l))throw"getDistanceLuminosityFrom requires a Color object";var t=this.toLuminosity(),i=e.toLuminosity();return t>i?(t+.05)/(i+.05):(i+.05)/(t+.05)},getMaxContrastColor:function(){var e=this.toLuminosity(),t=e>=.5?"000000":"ffffff";return new l(t)},getReadableContrastingColor:function(e,i){if(!(e instanceof l))return this;var o=i===t?5:i,s=e.getDistanceLuminosityFrom(this),r=e.getMaxContrastColor(),n=r.getDistanceLuminosityFrom(e);if(o>=n)return r;if(s>=o)return this;for(var a=0===r.toInt()?-1:1;o>s&&(this.l(a,!0),s=this.getDistanceLuminosityFrom(e),0!==this._color&&16777215!==this._color););return this},a:function(e){if(e===t)return this._alpha;var l=parseFloat(e);return isNaN(l)?this._error():(this._alpha=l,this)},darken:function(e){return e=e||5,this.l(-e,!0)},lighten:function(e){return e=e||5,this.l(e,!0)},saturate:function(e){return e=e||15,this.s(e,!0)},desaturate:function(e){return e=e||15,this.s(-e,!0)},toGrayscale:function(){return this.setHSpace("hsl").s(0)},getComplement:function(){return this.h(180,!0)},getSplitComplement:function(e){e=e||1;var t=180+30*e;return this.h(t,!0)},getAnalog:function(e){e=e||1;var t=30*e;return this.h(t,!0)},getTetrad:function(e){e=e||1;var t=60*e;return this.h(t,!0)},getTriad:function(e){e=e||1;var t=120*e;return this.h(t,!0)},_partial:function(e){var l=i[e];return function(i,o){var s=this._spaceFunc("to",l.space);return i===t?s[e]:(o===!0&&(i=s[e]+i),l.mod&&(i%=l.mod),l.range&&(i=i<l.range[0]?l.range[0]:i>l.range[1]?l.range[1]:i),s[e]=i,this._spaceFunc("from",l.space,s))}},_spaceFunc:function(e,t,l){var i=t||this._hSpace,o=e+i.charAt(0).toUpperCase()+i.substr(1);return this[o](l)}};var i={h:{mod:360},s:{range:[0,100]},l:{space:"hsl",range:[0,100]},v:{space:"hsv",range:[0,100]},r:{space:"rgb",range:[0,255]},g:{space:"rgb",range:[0,255]},b:{space:"rgb",range:[0,255]}};for(var o in i)i.hasOwnProperty(o)&&(l.fn[o]=l.fn._partial(o));"object"==typeof exports?module.exports=l:e.Color=l}(this),function(e){FLIconSelector={_content:null,_lightbox:null,_rendered:!1,_filterText:"",open:function(e){FLIconSelector._rendered||FLIconSelector._render(),null===FLIconSelector._content?(FLIconSelector._lightbox.open('<div class="fl-builder-lightbox-loading"></div>'),FLBuilder.ajax({action:"render_icon_selector"},FLIconSelector._getContentComplete)):FLIconSelector._lightbox.open(),FLIconSelector._lightbox.on("icon-selected",function(t,l){FLIconSelector._lightbox.off("icon-selected"),FLIconSelector._lightbox.close(),e(l)})},_render:function(){FLIconSelector._lightbox=new FLLightbox({className:"fl-icon-selector"}),FLIconSelector._rendered=!0},_getContentComplete:function(t){var l=JSON.parse(t);FLIconSelector._content=l.html,FLIconSelector._lightbox.setContent(l.html),e(".fl-icons-filter-select").on("change",FLIconSelector._filter),e(".fl-icons-filter-text").on("keyup",FLIconSelector._filter),e(".fl-icons-list i").on("click",FLIconSelector._select),e(".fl-icon-selector-cancel").on("click",e.proxy(FLIconSelector._lightbox.close,FLIconSelector._lightbox))},_filter:function(){var t=e(".fl-icons-filter-select").val(),l=e(".fl-icons-filter-text").val();"all"==t?e(".fl-icons-section").show():(e(".fl-icons-section").hide(),e(".fl-"+t).show()),FLIconSelector._filterText=l,""!==l?e(".fl-icons-list i").each(FLIconSelector._filterIcon):e(".fl-icons-list i").show()},_filterIcon:function(){var t=e(this);-1==t.attr("class").indexOf(FLIconSelector._filterText)?t.hide():t.show()},_select:function(){var t=e(this).attr("class");FLIconSelector._lightbox.trigger("icon-selected",t)}}}(jQuery),function(e){FLLightbox=function(e){this._init(e),this._render(),this._bind()},FLLightbox.closeParent=function(t){var l=e(t).closest(".fl-lightbox-wrap").attr("data-instance-id");FLLightbox._instances[l].close()},FLLightbox._instances={},FLLightbox.prototype={_id:null,_node:null,_visible:!1,_resizeTimer:null,_draggable:!1,_defaults:{className:"",destroyOnClose:!1},open:function(e){this._node.show(),this._visible=!0,"undefined"!=typeof e?this.setContent(e):this._resize(),this.trigger("open")},close:function(){this._node.hide(),this._visible=!1,this.trigger("close"),this._defaults.destroyOnClose&&this.destroy()},setContent:function(e){this._node.find(".fl-lightbox-content").html(e),this._resize()},empty:function(){this._node.find(".fl-lightbox-content").empty()},on:function(e,t){this._node.on(e,t)},off:function(e){this._node.off(e)},trigger:function(e,t){this._node.trigger(e,t)},draggable:function(e){var t=this._node.find(".fl-lightbox-mask"),l=this._node.find(".fl-lightbox");e="undefined"==typeof e?!1:e,this._draggable&&l.draggable("destroy"),e?(this._unbind(),this._draggable=!0,t.hide(),l.draggable({cursor:"move",handle:e.handle||""})):(t.show(),this._bind(),this._draggable=!1),this._resize()},destroy:function(){e(window).off("resize.fl-lightbox-"+this._id),this._node.empty(),this._node.remove(),FLLightbox._instances[this._id]="undefined";try{delete FLLightbox._instances[this._id]}catch(t){}},_init:function(t){var l=0,i=null;for(i in FLLightbox._instances)l++;this._defaults=e.extend({},this._defaults,t),this._id=(new Date).getTime()+l,FLLightbox._instances[this._id]=this},_render:function(){this._node=e('<div class="fl-lightbox-wrap" data-instance-id="'+this._id+'"><div class="fl-lightbox-mask"></div><div class="fl-lightbox"><div class="fl-lightbox-content-wrap"><div class="fl-lightbox-content"></div></div></div></div>'),this._node.addClass(this._defaults.className),e("body").append(this._node)},_bind:function(){e(window).on("resize.fl-lightbox-"+this._id,e.proxy(this._delayedResize,this))},_unbind:function(){e(window).off("resize.fl-lightbox-"+this._id)},_delayedResize:function(){clearTimeout(this._resizeTimer),this._resizeTimer=setTimeout(e.proxy(this._resize,this),250)},_resize:function(){if(this._visible){var t=this._node.find(".fl-lightbox"),l=t.height(),i=t.width(),o=e(window),s=o.height(),r=o.width(),n="0px",a=(r-i)/2-30+"px";t.css({margin:"0px",top:"auto",left:"auto"}),s-80>l&&(n=(s-l)/2-40+"px"),this._draggable?(t.css("top",n),t.css("left",FLBuilderConfig.isRtl?"-"+a:a)):(t.css("margin-top",n),t.css("margin-left","auto"),t.css("margin-right","auto"))}},_onKeypress:function(e){27==e.which&&this._visible&&this.close()}}}(jQuery),function(e){FLStyleSheet=function(){},FLStyleSheet.prototype={_sheet:null,_sheetElement:null,updateRule:function(e,t,l){this._createSheet();for(var i=this._sheet.cssRules?this._sheet.cssRules:this._sheet.rules,o=null,s=0;s<i.length;s++)i[s].selectorText.toLowerCase()==e.toLowerCase()&&(o=i[s]);if(o)if("object"==typeof t)for(s in t)o.style[this._toCamelCase(s)]=t[s];else o.style[this._toCamelCase(t)]=l;else this.addRule(e,t,l)},addRule:function(e,t,l){this._createSheet();var i="",o="";if("object"==typeof t)for(o in t)i+=o+":"+t[o]+";";else i=t+":"+l+";";this._sheet.insertRule?this._sheet.insertRule(e+" { "+i+" }",this._sheet.cssRules.length):this._sheet.addRule(e,i)},remove:function(){this._sheetElement&&(this._sheetElement.remove(),this._sheetElement=null),this._sheet&&(this._sheet=null)},_createSheet:function(){this._sheet||(this._sheetElement=e('<style type="text/css"></style>'),e("body").append(this._sheetElement),this._sheet=this._sheetElement[0].sheet)},_toCamelCase:function(e){return e.toLowerCase().replace(/-(.)/g,function(e,t){return t.toUpperCase()})}}}(jQuery);
|
languages/it_IT.mo
CHANGED
Binary file
|
languages/it_IT.po
CHANGED
@@ -1,277 +1,274 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Beaver Builder Plugin (Agency Version) v1.7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2016-01-
|
7 |
"Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Generator:
|
|
|
|
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
16 |
-
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-
|
19 |
-
"Language: it_IT\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
21 |
|
22 |
-
# @ fl-builder
|
23 |
#: classes/class-fl-builder-admin-settings.php:116
|
24 |
#, php-format
|
|
|
25 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
26 |
msgid "%s Settings"
|
27 |
msgstr "Impostazioni %s"
|
28 |
|
29 |
-
# @ fl-builder
|
30 |
#: classes/class-fl-builder-admin-settings.php:133
|
|
|
31 |
msgid "Settings updated!"
|
32 |
msgstr "Impostazioni aggiornate!"
|
33 |
|
34 |
-
# @ fl-builder
|
35 |
#: classes/class-fl-builder-admin-settings.php:147
|
|
|
36 |
msgid "License"
|
37 |
msgstr "Licenza"
|
38 |
|
39 |
-
# @ fl-builder
|
40 |
#: classes/class-fl-builder-admin-settings.php:151
|
41 |
#: includes/admin-settings-upgrade.php:3
|
|
|
42 |
msgid "Upgrade"
|
43 |
msgstr "Aggiornamento"
|
44 |
|
45 |
-
# @ fl-builder
|
46 |
#: classes/class-fl-builder-admin-settings.php:155
|
47 |
#: includes/global-settings.php:90
|
|
|
48 |
msgid "Modules"
|
49 |
msgstr "Moduli"
|
50 |
|
51 |
-
# @ fl-builder
|
52 |
#: classes/class-fl-builder-admin-settings.php:159
|
53 |
#: classes/class-fl-builder.php:663
|
|
|
54 |
msgid "Templates"
|
55 |
msgstr "Modelli"
|
56 |
|
57 |
-
# @ fl-builder
|
58 |
#: classes/class-fl-builder-admin-settings.php:163
|
59 |
#: includes/admin-settings-post-types.php:3
|
|
|
60 |
msgid "Post Types"
|
61 |
msgstr "Tipi di post"
|
62 |
|
63 |
-
# @ fl-builder
|
64 |
#: classes/class-fl-builder-admin-settings.php:167
|
65 |
#: modules/icon-group/icon-group.php:28
|
66 |
#: modules/post-carousel/post-carousel.php:289
|
67 |
#: modules/post-grid/post-grid.php:266
|
|
|
68 |
msgid "Icons"
|
69 |
msgstr "Icone"
|
70 |
|
71 |
-
# @ fl-builder
|
72 |
#: classes/class-fl-builder-admin-settings.php:171
|
|
|
73 |
msgid "Editing"
|
74 |
msgstr "Modifica"
|
75 |
|
76 |
-
# @ fl-builder
|
77 |
#: classes/class-fl-builder-admin-settings.php:175
|
|
|
78 |
msgid "Branding"
|
79 |
msgstr "Branding"
|
80 |
|
81 |
-
# @ fl-builder
|
82 |
#: classes/class-fl-builder-admin-settings.php:179
|
|
|
83 |
msgid "Help Button"
|
84 |
msgstr "Pulsante Aiuto"
|
85 |
|
86 |
-
# @ fl-builder
|
87 |
#: classes/class-fl-builder-admin-settings.php:183
|
88 |
#: includes/admin-settings-cache.php:3
|
|
|
89 |
msgid "Cache"
|
90 |
msgstr "Cache"
|
91 |
|
92 |
-
# @ fl-builder
|
93 |
#: classes/class-fl-builder-admin-settings.php:187
|
94 |
#: includes/admin-settings-uninstall.php:3
|
95 |
#: includes/admin-settings-uninstall.php:15
|
|
|
96 |
msgid "Uninstall"
|
97 |
msgstr "Disinstalla"
|
98 |
|
99 |
-
# @ fl-builder
|
100 |
#: classes/class-fl-builder-admin-settings.php:439
|
|
|
101 |
msgid "Error! You must have at least one icon set enabled."
|
102 |
msgstr "Errore! Devi avere almeno un set di icone abilitato."
|
103 |
|
104 |
-
# @ fl-builder
|
105 |
#: classes/class-fl-builder-admin-settings.php:481
|
|
|
106 |
msgid "Error! Could not unzip file."
|
107 |
msgstr "Errore! Non è stato possibile decomprimere il file."
|
108 |
|
109 |
-
# @ fl-builder
|
110 |
#: classes/class-fl-builder-admin-settings.php:515
|
|
|
111 |
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
112 |
msgstr "Errore! Per favore carica un set di icone da Iconmoon o Fontello."
|
113 |
|
114 |
-
# @ fl-builder
|
115 |
#: classes/class-fl-builder-admin-settings.php:632
|
|
|
116 |
msgid "Error! Please enter an iframe for the video embed code."
|
117 |
msgstr "Errore! Per favore inserisci un iframe per il codice video embed."
|
118 |
|
119 |
-
# @ fl-builder
|
120 |
#: classes/class-fl-builder-admin-settings.php:650
|
|
|
121 |
msgid "Error! You must have at least one feature of the help button enabled."
|
122 |
msgstr "Errore! Devi avere almeno una funzione del bottone aiuto abilitata."
|
123 |
|
124 |
-
# @ fl-builder
|
125 |
#: classes/class-fl-builder-admin.php:45
|
126 |
#, php-format
|
127 |
-
|
128 |
-
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
129 |
-
"
|
130 |
-
"of this plugin."
|
131 |
-
msgstr ""
|
132 |
-
"Questa versione del plugin <strong>Page Builder</strong> non è compatibile "
|
133 |
-
"con WordPress Multisite. <a%s>Si prega di aggiornare</a> alla versione "
|
134 |
-
"Multisite di questo plugin."
|
135 |
|
136 |
-
# @ fl-builder
|
137 |
#: classes/class-fl-builder-admin.php:55
|
138 |
-
|
139 |
-
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
140 |
-
"
|
141 |
-
msgstr ""
|
142 |
-
"Il plugin <strong>Page Builder</strong> richiede WordPress versione 3.5 o "
|
143 |
-
"superiore. Si prega di aggiornare WordPress prima di attivare il plugin."
|
144 |
|
145 |
-
# @ fl-builder
|
146 |
#: classes/class-fl-builder-admin.php:112
|
147 |
#, php-format
|
|
|
148 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
149 |
-
msgstr ""
|
150 |
-
"Page Builder attivato! <a%s>Clicca qui</a> per attivare gli aggiornamenti "
|
151 |
-
"remoti."
|
152 |
|
153 |
-
# @ fl-builder
|
154 |
#: classes/class-fl-builder-admin.php:238
|
|
|
155 |
msgctxt "Plugin action link label."
|
156 |
msgid "Upgrade"
|
157 |
msgstr "Aggiorna"
|
158 |
|
159 |
-
# @ fl-builder
|
160 |
#: classes/class-fl-builder-admin.php:253
|
161 |
#: classes/class-fl-builder-model.php:4405
|
|
|
162 |
msgid "Page Builder"
|
163 |
msgstr "Page Builder"
|
164 |
|
165 |
-
# @ fl-builder
|
166 |
#: classes/class-fl-builder-model.php:1838
|
167 |
#, php-format
|
|
|
168 |
msgctxt "%s stands for the module filename"
|
169 |
-
msgid ""
|
170 |
-
"
|
171 |
-
"module filenames to ensure compatibility with Beaver Builder."
|
172 |
-
msgstr ""
|
173 |
-
"Esiste già un modulo con il nome file %s.php! Per favore usa un namespace "
|
174 |
-
"nel nome file del tuo modulo per assicurare la compatibilità con Beaver "
|
175 |
-
"Builder."
|
176 |
|
177 |
-
# @ fl-builder
|
178 |
#: classes/class-fl-builder-model.php:1896
|
179 |
-
#: classes/class-fl-builder-model.php:1960
|
180 |
-
#: modules/
|
181 |
-
#: modules/
|
182 |
-
#: modules/
|
|
|
|
|
|
|
|
|
183 |
#: modules/video/video.php:21
|
|
|
184 |
msgid "Basic Modules"
|
185 |
msgstr "Moduli base"
|
186 |
|
187 |
-
# @ fl-builder
|
188 |
#: classes/class-fl-builder-model.php:1897
|
189 |
-
#: classes/class-fl-builder-model.php:1961
|
190 |
-
#: modules/
|
|
|
|
|
191 |
#: modules/content-slider/content-slider.php:16
|
192 |
-
#: modules/countdown/countdown.php:16
|
193 |
-
#: modules/
|
194 |
-
#: modules/
|
195 |
-
#: modules/
|
|
|
|
|
|
|
|
|
196 |
#: modules/post-carousel/post-carousel.php:16
|
197 |
-
#: modules/post-grid/post-grid.php:16
|
198 |
-
#: modules/
|
|
|
|
|
199 |
#: modules/slideshow/slideshow.php:16
|
200 |
#: modules/social-buttons/social-buttons.php:16
|
201 |
-
#: modules/subscribe-form/subscribe-form.php:20
|
|
|
202 |
#: modules/testimonials/testimonials.php:16
|
203 |
#: modules/woocommerce/woocommerce.php:18
|
|
|
204 |
msgid "Advanced Modules"
|
205 |
msgstr "Moduli avanzati"
|
206 |
|
207 |
-
# @ fl-builder
|
208 |
#: classes/class-fl-builder-model.php:1898
|
209 |
#: classes/class-fl-builder-model.php:1962
|
|
|
210 |
msgid "Other Modules"
|
211 |
msgstr "Altri moduli"
|
212 |
|
213 |
-
# @ fl-builder
|
214 |
#: classes/class-fl-builder-model.php:1899
|
215 |
#: classes/class-fl-builder-model.php:1963
|
216 |
-
#: includes/admin-settings-modules.php:32
|
|
|
217 |
#: modules/widget/widget.php:16
|
|
|
218 |
msgid "WordPress Widgets"
|
219 |
msgstr "Widget di WordPress"
|
220 |
|
221 |
-
# @ fl-builder
|
222 |
#: classes/class-fl-builder-model.php:2679
|
223 |
#, php-format
|
|
|
224 |
msgctxt "%s stands for post/page title."
|
225 |
msgid "Copy of %s"
|
226 |
msgstr "Copia di %s"
|
227 |
|
228 |
-
# @ fl-builder
|
229 |
#: classes/class-fl-builder-model.php:3287
|
|
|
230 |
msgctxt "Default user template category."
|
231 |
msgid "Uncategorized"
|
232 |
msgstr "Senza categoria"
|
233 |
|
234 |
-
# @ fl-builder
|
235 |
#: classes/class-fl-builder-model.php:4333
|
|
|
236 |
msgid "Home Pages"
|
237 |
msgstr "Pagine home"
|
238 |
|
239 |
-
# @ fl-builder
|
240 |
#: classes/class-fl-builder-model.php:4334
|
|
|
241 |
msgid "Content Pages"
|
242 |
msgstr "Pagine di contenuto"
|
243 |
|
244 |
-
# @ fl-builder
|
245 |
-
#: classes/class-fl-builder-photo.php:95
|
246 |
#: classes/class-fl-builder-photo.php:100
|
|
|
|
|
247 |
msgctxt "Image size."
|
248 |
msgid "Full Size"
|
249 |
msgstr "Piena larghezza"
|
250 |
|
251 |
-
|
252 |
-
|
253 |
msgctxt "Image size."
|
254 |
msgid "Large"
|
255 |
msgstr "Grande"
|
256 |
|
257 |
-
|
258 |
-
|
259 |
msgctxt "Image size."
|
260 |
msgid "Medium"
|
261 |
msgstr "Media"
|
262 |
|
263 |
-
|
264 |
-
|
265 |
msgctxt "Image size."
|
266 |
msgid "Thumbnail"
|
267 |
msgstr "Miniatura"
|
268 |
|
269 |
-
# @ fl-builder
|
270 |
#: classes/class-fl-builder-service-activecampaign.php:69
|
|
|
271 |
msgid "Error: You must provide an API URL."
|
272 |
msgstr "Errore: devi fornire una API URL."
|
273 |
|
274 |
-
# @ fl-builder
|
275 |
#: classes/class-fl-builder-service-activecampaign.php:73
|
276 |
#: classes/class-fl-builder-service-campaign-monitor.php:55
|
277 |
#: classes/class-fl-builder-service-campayn.php:106
|
@@ -284,29 +281,25 @@ msgstr "Errore: devi fornire una API URL."
|
|
284 |
#: classes/class-fl-builder-service-mailchimp.php:67
|
285 |
#: classes/class-fl-builder-service-mailrelay.php:82
|
286 |
#: classes/class-fl-builder-service-sendy.php:72
|
|
|
287 |
msgid "Error: You must provide an API key."
|
288 |
msgstr "Errore: devi fornire una chiave API."
|
289 |
|
290 |
-
# @ fl-builder
|
291 |
#: classes/class-fl-builder-service-activecampaign.php:81
|
|
|
292 |
msgid "Error: Please check your API URL and API key."
|
293 |
msgstr "Errore: si prega di verificare la API URL e la chiave API."
|
294 |
|
295 |
-
# @ fl-builder
|
296 |
#: classes/class-fl-builder-service-activecampaign.php:108
|
|
|
297 |
msgid "API URL"
|
298 |
msgstr "API URL"
|
299 |
|
300 |
-
# @ fl-builder
|
301 |
#: classes/class-fl-builder-service-activecampaign.php:109
|
302 |
-
|
303 |
-
"Your API url can be found in your ActiveCampaign account under My Settings > "
|
304 |
-
"API."
|
305 |
-
msgstr ""
|
306 |
-
"Puoi trovare la tua API URL nell'account di ActiveCampaign sotto My Settings "
|
307 |
-
"> API."
|
308 |
|
309 |
-
# @ fl-builder
|
310 |
#: classes/class-fl-builder-service-activecampaign.php:119
|
311 |
#: classes/class-fl-builder-service-campaign-monitor.php:88
|
312 |
#: classes/class-fl-builder-service-campayn.php:149
|
@@ -319,19 +312,15 @@ msgstr ""
|
|
319 |
#: classes/class-fl-builder-service-mailchimp.php:100
|
320 |
#: classes/class-fl-builder-service-mailrelay.php:130
|
321 |
#: classes/class-fl-builder-service-sendy.php:126
|
|
|
322 |
msgid "API Key"
|
323 |
msgstr "Chiave API"
|
324 |
|
325 |
-
# @ fl-builder
|
326 |
#: classes/class-fl-builder-service-activecampaign.php:120
|
327 |
-
|
328 |
-
"Your API key can be found in your ActiveCampaign account under My Settings > "
|
329 |
-
"API."
|
330 |
-
msgstr ""
|
331 |
-
"Puoi trovare la tua chiave API nell'account di ActiveCampaign sotto My "
|
332 |
-
"Settings > API."
|
333 |
|
334 |
-
# @ fl-builder
|
335 |
#: classes/class-fl-builder-service-activecampaign.php:169
|
336 |
#: classes/class-fl-builder-service-aweber.php:182
|
337 |
#: classes/class-fl-builder-service-campaign-monitor.php:148
|
@@ -347,12 +336,13 @@ msgstr ""
|
|
347 |
#: classes/class-fl-builder-service-mailpoet.php:92
|
348 |
#: classes/class-fl-builder-service-mailrelay.php:187
|
349 |
#: classes/class-fl-builder-service-sendinblue.php:161
|
350 |
-
#: classes/class-fl-builder-services.php:309
|
|
|
351 |
#: modules/woocommerce/woocommerce.php:61
|
|
|
352 |
msgid "Choose..."
|
353 |
msgstr "Scegli..."
|
354 |
|
355 |
-
# @ fl-builder
|
356 |
#: classes/class-fl-builder-service-activecampaign.php:181
|
357 |
#: classes/class-fl-builder-service-aweber.php:192
|
358 |
#: classes/class-fl-builder-service-campaign-monitor.php:209
|
@@ -365,3845 +355,3825 @@ msgstr "Scegli..."
|
|
365 |
#: classes/class-fl-builder-service-mailchimp.php:187
|
366 |
#: classes/class-fl-builder-service-mailpoet.php:102
|
367 |
#: classes/class-fl-builder-service-sendinblue.php:171
|
|
|
368 |
msgctxt "An email list from a third party provider."
|
369 |
msgid "List"
|
370 |
msgstr "Lista"
|
371 |
|
372 |
-
# @ fl-builder
|
373 |
#: classes/class-fl-builder-service-activecampaign.php:208
|
374 |
-
|
375 |
-
"There was an error subscribing to ActiveCampaign. The account is no longer "
|
376 |
-
"
|
377 |
-
msgstr ""
|
378 |
-
"Si è verificato un errore nell'iscrizione ad ActiveCampaign. L'account non è "
|
379 |
-
"più connesso. "
|
380 |
|
381 |
-
# @ fl-builder
|
382 |
#: classes/class-fl-builder-service-activecampaign.php:239
|
|
|
383 |
msgid "Error: Invalid API data."
|
384 |
msgstr "Errore: dati API non validi."
|
385 |
|
386 |
-
# @ fl-builder
|
387 |
#: classes/class-fl-builder-service-aweber.php:72
|
|
|
388 |
msgid "Error: You must provide an Authorization Code."
|
389 |
msgstr "Errore: devi fornire un codice di autorizzazione."
|
390 |
|
391 |
-
# @ fl-builder
|
392 |
#: classes/class-fl-builder-service-aweber.php:76
|
|
|
393 |
msgid "Error: Please enter a valid Authorization Code."
|
394 |
msgstr "Errore: si prega di inserire un codice di autorizzazione valido."
|
395 |
|
396 |
-
# @ fl-builder
|
397 |
#: classes/class-fl-builder-service-aweber.php:127
|
|
|
398 |
msgid "Authorization Code"
|
399 |
msgstr "Codice di autorizzazione"
|
400 |
|
401 |
-
# @ fl-builder
|
402 |
#: classes/class-fl-builder-service-aweber.php:128
|
403 |
#, php-format
|
404 |
-
|
405 |
-
"Please register this website with AWeber to get your Authorization Code. <a"
|
406 |
-
"%s>
|
407 |
-
msgstr ""
|
408 |
-
"Si prega di registrare questo sito su AWeber per ottenere il tuo codice di "
|
409 |
-
"autorizzazione. <a%s>Registra ora</a>"
|
410 |
|
411 |
-
# @ fl-builder
|
412 |
#: classes/class-fl-builder-service-aweber.php:219
|
413 |
-
|
414 |
-
"There was an error subscribing to AWeber. The account is no longer connected."
|
415 |
-
msgstr ""
|
416 |
-
"Si è verificato un errore nell'iscrizione ad Aweber. L'account non è più "
|
417 |
-
"connesso. "
|
418 |
|
419 |
-
# @ fl-builder
|
420 |
#: classes/class-fl-builder-service-aweber.php:242
|
|
|
421 |
msgid "There was an error connecting to AWeber. Please try again."
|
422 |
-
msgstr ""
|
423 |
-
"Si è verificato un errore nella connessione ad AWeber. Si prega di riprovare."
|
424 |
|
425 |
-
# @ fl-builder
|
426 |
#: classes/class-fl-builder-service-aweber.php:247
|
427 |
#, php-format
|
|
|
428 |
msgid "There was an error subscribing to AWeber. %s"
|
429 |
msgstr "Si è verificato un'errore nell'iscrizione ad AWeber. %s"
|
430 |
|
431 |
-
# @ fl-builder
|
432 |
#: classes/class-fl-builder-service-campaign-monitor.php:67
|
433 |
#: classes/class-fl-builder-service-campaign-monitor.php:129
|
434 |
#: classes/class-fl-builder-service-convertkit.php:131
|
435 |
#: classes/class-fl-builder-service-getresponse.php:76
|
436 |
#: classes/class-fl-builder-service-getresponse.php:132
|
437 |
#: classes/class-fl-builder-service-hatchbuck.php:63
|
|
|
438 |
msgid "Error: Please check your API key."
|
439 |
msgstr "Errore: si prega di verificare la chiave API."
|
440 |
|
441 |
-
# @ fl-builder
|
442 |
#: classes/class-fl-builder-service-campaign-monitor.php:89
|
443 |
-
|
444 |
-
"Your API key can be found in your Campaign Monitor account under Account "
|
445 |
-
"
|
446 |
-
msgstr ""
|
447 |
-
"Puoi trovare la tua chiave API nell'account Campaign Monitor sotto "
|
448 |
-
"Impostazioni Account > Chiave API."
|
449 |
|
450 |
-
# @ fl-builder
|
451 |
#: classes/class-fl-builder-service-campaign-monitor.php:158
|
|
|
452 |
msgctxt "A client account in Campaign Monitor."
|
453 |
msgid "Client"
|
454 |
msgstr "Client"
|
455 |
|
456 |
-
# @ fl-builder
|
457 |
#: classes/class-fl-builder-service-campaign-monitor.php:236
|
458 |
-
|
459 |
-
"There was an error subscribing to Campaign Monitor. The account is no longer "
|
460 |
-
"
|
461 |
-
msgstr ""
|
462 |
-
"Si è verificato un errore nell'iscrizione a Campaign Monitor. L'account non "
|
463 |
-
"è più connesso."
|
464 |
|
465 |
-
# @ fl-builder
|
466 |
#: classes/class-fl-builder-service-campaign-monitor.php:253
|
|
|
467 |
msgid "There was an error subscribing to Campaign Monitor."
|
468 |
msgstr "Si è verificato un'errore nell'iscrizione a Campaign Monitor."
|
469 |
|
470 |
-
# @ fl-builder
|
471 |
#: classes/class-fl-builder-service-constant-contact.php:52
|
|
|
472 |
msgid "Error: You must provide an access token."
|
473 |
msgstr "Errore: devi fornire un token di accesso."
|
474 |
|
475 |
-
# @ fl-builder
|
476 |
#: classes/class-fl-builder-service-constant-contact.php:61
|
477 |
#: classes/class-fl-builder-service-constant-contact.php:134
|
478 |
#, php-format
|
|
|
479 |
msgid "Error: Could not connect to Constant Contact. %s"
|
480 |
msgstr "Errore: impossibile connettersi a Constant Contact. %s "
|
481 |
|
482 |
-
# @ fl-builder
|
483 |
#: classes/class-fl-builder-service-constant-contact.php:89
|
|
|
484 |
msgid "Your Constant Contact API key."
|
485 |
msgstr "La tua chiave API Constant Contact."
|
486 |
|
487 |
-
# @ fl-builder
|
488 |
#: classes/class-fl-builder-service-constant-contact.php:99
|
|
|
489 |
msgid "Access Token"
|
490 |
msgstr "Token di accesso"
|
491 |
|
492 |
-
# @ fl-builder
|
493 |
#: classes/class-fl-builder-service-constant-contact.php:100
|
|
|
494 |
msgid "Your Constant Contact access token."
|
495 |
msgstr "Il tuo token di accesso a Constant Contact"
|
496 |
|
497 |
-
# @ fl-builder
|
498 |
#: classes/class-fl-builder-service-constant-contact.php:101
|
499 |
#, php-format
|
500 |
-
|
501 |
-
"You must register a <a%s>Developer Account</a> with Constant Contact to "
|
502 |
-
"
|
503 |
-
"for complete instructions."
|
504 |
-
msgstr ""
|
505 |
-
"Devi registrare un <a%s>Account sviluppatore</a> su Constant Contact per "
|
506 |
-
"ottenere una chiave API e un token di accesso, Si prega di consultare <a"
|
507 |
-
"%s>Prendere una chiave API</a> per istruzioni complete."
|
508 |
|
509 |
-
# @ fl-builder
|
510 |
#: classes/class-fl-builder-service-constant-contact.php:193
|
511 |
-
|
512 |
-
"There was an error subscribing to Constant Contact. The account is no longer "
|
513 |
-
"
|
514 |
-
msgstr ""
|
515 |
-
"Si è verificato un errore nell'iscrizione a Constant Contact. L'account non "
|
516 |
-
"è più connesso."
|
517 |
|
518 |
-
# @ fl-builder
|
519 |
#: classes/class-fl-builder-service-constant-contact.php:245
|
520 |
#: classes/class-fl-builder-service-constant-contact.php:279
|
521 |
#, php-format
|
|
|
522 |
msgid "There was an error subscribing to Constant Contact. %s"
|
523 |
msgstr "Si è verificato un errore nell'iscrizione a Constant Contact. %s"
|
524 |
|
525 |
-
# @ fl-builder
|
526 |
#: classes/class-fl-builder-service-email-address.php:39
|
527 |
#: classes/class-fl-builder-service-madmimi.php:69
|
|
|
528 |
msgid "Error: You must provide an email address."
|
529 |
msgstr "Errore: devi fornire un indirizzo email."
|
530 |
|
531 |
-
# @ fl-builder
|
532 |
#: classes/class-fl-builder-service-email-address.php:63
|
533 |
#: classes/class-fl-builder-service-madmimi.php:110
|
534 |
#: modules/subscribe-form/includes/frontend.php:11
|
|
|
535 |
msgid "Email Address"
|
536 |
msgstr "Indirizzo email"
|
537 |
|
538 |
-
# @ fl-builder
|
539 |
#: classes/class-fl-builder-service-email-address.php:110
|
|
|
540 |
msgid "There was an error subscribing. The account is no longer connected."
|
541 |
-
msgstr ""
|
542 |
-
"Si è verificato un errore nell'iscrizione. L'account non è più connesso. "
|
543 |
|
544 |
-
# @ fl-builder
|
545 |
#: classes/class-fl-builder-service-email-address.php:114
|
|
|
546 |
msgid "Subscribe Form Signup"
|
547 |
msgstr "Modulo di iscrizione"
|
548 |
|
549 |
-
# @ fl-builder
|
550 |
#: classes/class-fl-builder-service-email-address.php:115
|
551 |
#: modules/contact-form/includes/frontend.php:21
|
|
|
552 |
msgid "Email"
|
553 |
msgstr "Email"
|
554 |
|
555 |
-
# @ fl-builder
|
556 |
#: classes/class-fl-builder-service-email-address.php:118
|
|
|
557 |
msgid "Name"
|
558 |
msgstr "Nome"
|
559 |
|
560 |
-
# @ fl-builder
|
561 |
#: classes/class-fl-builder-service-email-address.php:124
|
562 |
#: modules/subscribe-form/subscribe-form.php:84
|
|
|
563 |
msgid "There was an error subscribing. Please try again."
|
564 |
msgstr "Si è verificato un errore nell'iscrizione. Riprova, per favore."
|
565 |
|
566 |
-
# @ fl-builder
|
567 |
#: classes/class-fl-builder-service-getresponse.php:101
|
568 |
-
|
569 |
-
"Your API key can be found in your GetResponse account under My Account > "
|
570 |
-
"GetResponse API."
|
571 |
-
msgstr ""
|
572 |
-
"Puoi trovare la tua chiave API nel tuo account su GetResponse sotto Il mio "
|
573 |
-
"account > GetResponse API."
|
574 |
|
575 |
-
# @ fl-builder
|
576 |
#: classes/class-fl-builder-service-getresponse.php:191
|
577 |
-
|
578 |
-
"There was an error subscribing to GetResponse. The account is no longer "
|
579 |
-
"
|
580 |
-
msgstr ""
|
581 |
-
"Si è verificato un errore nell'iscrizione a GetResponse. L'account non è più "
|
582 |
-
"connesso."
|
583 |
|
584 |
-
# @ fl-builder
|
585 |
#: classes/class-fl-builder-service-getresponse.php:202
|
586 |
#, php-format
|
|
|
587 |
msgid "There was an error subscribing to GetResponse. %s"
|
588 |
msgstr "Si è verificato un errore nell'iscrizione a GetResponse. %s"
|
589 |
|
590 |
-
# @ fl-builder
|
591 |
#: classes/class-fl-builder-service-hatchbuck.php:88
|
592 |
-
|
593 |
-
"Your API key can be found in your Hatchbuck account under Account Settings > "
|
594 |
-
"Web API."
|
595 |
-
msgstr ""
|
596 |
-
"La tua chiave API può essere trovata nel tuo account Hatchbuck in Account "
|
597 |
-
"Settings > Web API."
|
598 |
|
599 |
-
# @ fl-builder
|
600 |
#: classes/class-fl-builder-service-hatchbuck.php:134
|
|
|
601 |
msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
|
602 |
msgid "Tag"
|
603 |
msgstr "Tag"
|
604 |
|
605 |
-
# @ fl-builder
|
606 |
#: classes/class-fl-builder-service-hatchbuck.php:161
|
607 |
-
|
608 |
-
"There was an error subscribing to Hatchbuck. The account is no longer "
|
609 |
-
"
|
610 |
-
msgstr ""
|
611 |
-
"Si è verificato un errore nell'iscrizione a Hatchbuck. L'account non è più "
|
612 |
-
"connesso."
|
613 |
|
614 |
-
# @ fl-builder
|
615 |
#: classes/class-fl-builder-service-hatchbuck.php:190
|
|
|
616 |
msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
|
617 |
-
msgstr ""
|
618 |
-
"Si è verificato un errore nell'iscrizione a Hatchbuck. La chiave API non è "
|
619 |
-
"valida."
|
620 |
|
621 |
-
# @ fl-builder
|
622 |
#: classes/class-fl-builder-service-hatchbuck.php:200
|
623 |
#: classes/class-fl-builder-service-hatchbuck.php:232
|
|
|
624 |
msgid "There was an error subscribing to Hatchbuck."
|
625 |
msgstr "Si è verificato un'errore nell'iscrizione a Hatchbuck."
|
626 |
|
627 |
-
# @ fl-builder
|
628 |
#: classes/class-fl-builder-service-icontact.php:75
|
|
|
629 |
msgid "Error: You must provide a username."
|
630 |
msgstr "Errore: devi fornire un nome utente."
|
631 |
|
632 |
-
# @ fl-builder
|
633 |
#: classes/class-fl-builder-service-icontact.php:79
|
|
|
634 |
msgid "Error: You must provide a app ID."
|
635 |
msgstr "Errore: devi fornire un ID applicazione."
|
636 |
|
637 |
-
# @ fl-builder
|
638 |
#: classes/class-fl-builder-service-icontact.php:83
|
|
|
639 |
msgid "Error: You must provide a app password."
|
640 |
msgstr "Errore: devi fornire una password applicazione."
|
641 |
|
642 |
-
# @ fl-builder
|
643 |
#: classes/class-fl-builder-service-icontact.php:104
|
644 |
#: classes/class-fl-builder-service-icontact.php:188
|
645 |
#, php-format
|
|
|
646 |
msgid "Error: Could not connect to iContact. %s"
|
647 |
msgstr "Errore: non è possibile connettersi ad iContact. %s"
|
648 |
|
649 |
-
# @ fl-builder
|
650 |
#: classes/class-fl-builder-service-icontact.php:125
|
|
|
651 |
msgid "Username"
|
652 |
msgstr "Nome utente"
|
653 |
|
654 |
-
# @ fl-builder
|
655 |
#: classes/class-fl-builder-service-icontact.php:126
|
|
|
656 |
msgid "Your iContact username."
|
657 |
msgstr "Il tuo nome utente iContact."
|
658 |
|
659 |
-
# @ fl-builder
|
660 |
#: classes/class-fl-builder-service-icontact.php:136
|
661 |
#: classes/class-fl-builder-service-infusionsoft.php:118
|
|
|
662 |
msgid "App ID"
|
663 |
msgstr "ID applicazione"
|
664 |
|
665 |
-
# @ fl-builder
|
666 |
#: classes/class-fl-builder-service-icontact.php:137
|
|
|
667 |
msgid "Your iContact app ID."
|
668 |
msgstr "Il tuo ID applicazione iContact."
|
669 |
|
670 |
-
# @ fl-builder
|
671 |
#: classes/class-fl-builder-service-icontact.php:147
|
|
|
672 |
msgid "App Password"
|
673 |
msgstr "Password applicazione"
|
674 |
|
675 |
-
# @ fl-builder
|
676 |
#: classes/class-fl-builder-service-icontact.php:148
|
|
|
677 |
msgid "Your iContact app password."
|
678 |
msgstr "La tua password applicazione iContact."
|
679 |
|
680 |
-
# @ fl-builder
|
681 |
#: classes/class-fl-builder-service-icontact.php:149
|
682 |
#, php-format
|
683 |
-
|
684 |
-
"You must <a%s>create an app</a> in iContact to obtain an app ID and "
|
685 |
-
"password.
|
686 |
-
msgstr ""
|
687 |
-
"Devi <a%s>creare un'applicazione</a> in iContact per ottenere un ID "
|
688 |
-
"applicazione e password. Si prega di consultare <a%s>la documentazione di "
|
689 |
-
"iContact</a> per le istruzioni complete."
|
690 |
|
691 |
-
# @ fl-builder
|
692 |
#: classes/class-fl-builder-service-icontact.php:244
|
693 |
-
|
694 |
-
"There was an error subscribing to iContact. The account is no longer "
|
695 |
-
"
|
696 |
-
msgstr ""
|
697 |
-
"Si è verificato un errore nell'iscrizione ad iContact. L'account non è più "
|
698 |
-
"connesso."
|
699 |
|
700 |
-
# @ fl-builder
|
701 |
#: classes/class-fl-builder-service-icontact.php:280
|
702 |
#, php-format
|
|
|
703 |
msgid "There was an error subscribing to iContact. %s"
|
704 |
msgstr "Si è verificato un errore nell'iscrizione a iContact. %s"
|
705 |
|
706 |
-
# @ fl-builder
|
707 |
#: classes/class-fl-builder-service-infusionsoft.php:49
|
708 |
#, php-format
|
|
|
709 |
msgid "There was an error connecting to Infusionsoft. %s"
|
710 |
msgstr "Si è verificato un errore nella connessione a Infusionsoft. %s"
|
711 |
|
712 |
-
# @ fl-builder
|
713 |
#: classes/class-fl-builder-service-infusionsoft.php:83
|
|
|
714 |
msgid "Error: You must provide an app ID."
|
715 |
msgstr "Errore: devi fornire una app ID."
|
716 |
|
717 |
-
# @ fl-builder
|
718 |
#: classes/class-fl-builder-service-infusionsoft.php:119
|
719 |
-
|
720 |
-
"Your App ID can be found in the URL for your account. For example, if the "
|
721 |
-
"URL
|
722 |
-
"<strong>myaccount</strong>."
|
723 |
-
msgstr ""
|
724 |
-
"Il tuo App ID si può trovare nella URL del tuo account. Per esempio, se la "
|
725 |
-
"URL del tuo account è myaccount.infusionsoft.com, la tua App ID sarà "
|
726 |
-
"<strong>myaccount</strong>."
|
727 |
|
728 |
-
# @ fl-builder
|
729 |
#: classes/class-fl-builder-service-infusionsoft.php:130
|
730 |
-
|
731 |
-
"Your API key can be found in your Infusionsoft account under Admin > "
|
732 |
-
"Settings > Application > API > Encrypted Key."
|
733 |
-
msgstr ""
|
734 |
-
"Puoi trovare la tua chiave API nel tuo account Infusionsoft sotto Admin > "
|
735 |
-
"Settings > Application > API > Encrypted Key."
|
736 |
|
737 |
-
# @ fl-builder
|
738 |
#: classes/class-fl-builder-service-infusionsoft.php:242
|
739 |
-
|
740 |
-
"There was an error subscribing to Infusionsoft. The account is no longer "
|
741 |
-
"
|
742 |
-
msgstr ""
|
743 |
-
"Si è verificato un errore nell'iscrizione a Infusionsoft. L'account non è "
|
744 |
-
"più connesso."
|
745 |
|
746 |
-
# @ fl-builder
|
747 |
#: classes/class-fl-builder-service-infusionsoft.php:291
|
748 |
#, php-format
|
|
|
749 |
msgid "There was an error subscribing to Infusionsoft. %s"
|
750 |
msgstr "Si è verificato un errore nell'iscrizione a Infusionsoft. %s"
|
751 |
|
752 |
-
# @ fl-builder
|
753 |
#: classes/class-fl-builder-service-madmimi.php:83
|
|
|
754 |
msgid "Unable to connect to Mad Mimi. Please check your credentials."
|
755 |
-
msgstr ""
|
756 |
-
"Impossibile connettersi a Mad Mimi. Si prega di verificare le credenziali."
|
757 |
|
758 |
-
# @ fl-builder
|
759 |
#: classes/class-fl-builder-service-madmimi.php:111
|
|
|
760 |
msgid "The email address associated with your Mad Mimi account."
|
761 |
msgstr "L'indirizzo email associato al tuo account Mad Mimi."
|
762 |
|
763 |
-
# @ fl-builder
|
764 |
#: classes/class-fl-builder-service-madmimi.php:122
|
765 |
-
|
766 |
-
"Your API key can be found in your Mad Mimi account under Account > Settings "
|
767 |
-
"& Billing > API."
|
768 |
-
msgstr ""
|
769 |
-
"Puoi trovare la tua chiave API nell'account Mad Mimi sotto Account > "
|
770 |
-
"Settings & Billing > API."
|
771 |
|
772 |
-
# @ fl-builder
|
773 |
#: classes/class-fl-builder-service-madmimi.php:156
|
774 |
-
|
775 |
-
"There was a problem retrieving your lists. Please check your API credentials."
|
776 |
-
msgstr ""
|
777 |
-
"Si è verificato un problema nell'ottenere le tue liste. Si prega di "
|
778 |
-
"verificare le credenziali API."
|
779 |
|
780 |
-
# @ fl-builder
|
781 |
#: classes/class-fl-builder-service-madmimi.php:215
|
782 |
#: classes/class-fl-builder-service-madmimi.php:242
|
783 |
-
|
784 |
-
"There was an error subscribing to Mad Mimi. The account is no longer "
|
785 |
-
"
|
786 |
-
msgstr ""
|
787 |
-
"Si è verificato un'errore nell'iscrizione a Mad Mimi. L'account non è più "
|
788 |
-
"connesso."
|
789 |
|
790 |
-
# @ fl-builder
|
791 |
#: classes/class-fl-builder-service-mailchimp.php:101
|
792 |
-
|
793 |
-
"Your API key can be found in your MailChimp account under Account > Extras > "
|
794 |
-
"API Keys."
|
795 |
-
msgstr ""
|
796 |
-
"Puoi trovare la tua chiave API nel tuo account MailChimp sotto Account > "
|
797 |
-
"Extras > API Keys."
|
798 |
|
799 |
-
# @ fl-builder
|
800 |
#: classes/class-fl-builder-service-mailchimp.php:215
|
|
|
801 |
msgid "No Group"
|
802 |
msgstr "Nessun gruppo"
|
803 |
|
804 |
-
# @ fl-builder
|
805 |
#: classes/class-fl-builder-service-mailchimp.php:227
|
|
|
806 |
msgctxt "MailChimp list group."
|
807 |
msgid "Groups"
|
808 |
msgstr "Gruppi"
|
809 |
|
810 |
-
# @ fl-builder
|
811 |
#: classes/class-fl-builder-service-mailchimp.php:255
|
812 |
-
|
813 |
-
"There was an error subscribing to MailChimp. The account is no longer "
|
814 |
-
"
|
815 |
-
msgstr ""
|
816 |
-
"Si è verificato un errore nell'iscrizione a MailChimp. L'account non è più "
|
817 |
-
"connesso."
|
818 |
|
819 |
-
# @ fl-builder
|
820 |
#: classes/class-fl-builder-service-mailchimp.php:352
|
821 |
#, php-format
|
|
|
822 |
msgid "There was an error subscribing to MailChimp. %s"
|
823 |
msgstr "Si è verificato un errore nell'iscrizione a MailChimp. %s"
|
824 |
|
825 |
-
# @ fl-builder
|
826 |
#: classes/class-fl-builder-service-mailpoet.php:73
|
|
|
827 |
msgid "There was an error retrieveing your lists."
|
828 |
msgstr "Si è verificato un'errore nell'ottenere le tue liste."
|
829 |
|
830 |
-
# @ fl-builder
|
831 |
#: classes/class-fl-builder-service-mailpoet.php:129
|
|
|
832 |
msgid "There was an error subscribing. MailPoet is not installed."
|
833 |
msgstr "Si è verificato un'errore nell'iscrizione. MailPoet non è installato."
|
834 |
|
835 |
-
# @ fl-builder
|
836 |
#: classes/class-fl-builder-service-sendinblue.php:67
|
|
|
837 |
msgid "Error: You must provide an Access Key."
|
838 |
msgstr "Errore: devi fornire una chiave di accesso."
|
839 |
|
840 |
-
# @ fl-builder
|
841 |
-
# @ default
|
842 |
#: classes/class-fl-builder-service-sendinblue.php:76
|
843 |
#: classes/class-fl-builder-service-sendinblue.php:136
|
|
|
844 |
msgid "There was an error connecting to SendinBlue. Please try again."
|
845 |
-
msgstr ""
|
846 |
-
"Si è verificato un errore nella connessione a SendinBlue. Si prega di "
|
847 |
-
"riprovare."
|
848 |
|
849 |
-
# @ fl-builder
|
850 |
#: classes/class-fl-builder-service-sendinblue.php:79
|
851 |
#: classes/class-fl-builder-service-sendinblue.php:139
|
852 |
#, php-format
|
|
|
853 |
msgid "Error: Could not connect to SendinBlue. %s"
|
854 |
msgstr "Errore: Impossibile connettersi a SendinBlue. %s"
|
855 |
|
856 |
-
# @ fl-builder
|
857 |
#: classes/class-fl-builder-service-sendinblue.php:103
|
|
|
858 |
msgid "Access Key"
|
859 |
msgstr "Chiave di accesso"
|
860 |
|
861 |
-
# @ fl-builder
|
862 |
#: classes/class-fl-builder-service-sendinblue.php:104
|
863 |
-
|
864 |
-
"Your Access Key can be found in your SendinBlue account under API & "
|
865 |
-
"Integration > Manager Your Keys > Version 2.0 > Access Key."
|
866 |
-
msgstr ""
|
867 |
-
"Puoi trovare la tua chiave API nel tuo account SendinBlue sotto API & "
|
868 |
-
"Integration > Manager Your Keys > Version 2.0 > Access Key."
|
869 |
|
870 |
-
# @ fl-builder
|
871 |
#: classes/class-fl-builder-service-sendinblue.php:198
|
872 |
-
|
873 |
-
"There was an error subscribing to SendinBlue. The account is no longer "
|
874 |
-
"
|
875 |
-
msgstr ""
|
876 |
-
"Si è verificato un errore nell'iscrizione a SendinBlue. L'account non è più "
|
877 |
-
"connesso."
|
878 |
|
879 |
-
# @ fl-builder
|
880 |
#: classes/class-fl-builder-service-sendinblue.php:220
|
|
|
881 |
msgid "There was an error subscribing to SendinBlue. Please try again."
|
882 |
-
msgstr ""
|
883 |
-
"Si è verificato un errore nell'iscrizione a SendinBlue. Si prega di "
|
884 |
-
"riprovare."
|
885 |
|
886 |
-
# @ fl-builder
|
887 |
#: classes/class-fl-builder-service-sendinblue.php:223
|
888 |
#, php-format
|
|
|
889 |
msgid "Error: Could not subscribe to SendinBlue. %s"
|
890 |
msgstr "Errore: Impossibile sottoscrivere SendinBlue . %s"
|
891 |
|
892 |
-
# @ fl-builder
|
893 |
#: classes/class-fl-builder-services.php:183
|
|
|
894 |
msgctxt "Third party service such as MailChimp."
|
895 |
msgid "Error: Missing service type."
|
896 |
msgstr "Errore: tipo di servizio mancante."
|
897 |
|
898 |
-
# @ fl-builder
|
899 |
#: classes/class-fl-builder-services.php:186
|
|
|
900 |
msgctxt "Connection data such as an API key."
|
901 |
msgid "Error: Missing service data."
|
902 |
msgstr "Errore: dati di servizio mancanti."
|
903 |
|
904 |
-
# @ fl-builder
|
905 |
#: classes/class-fl-builder-services.php:189
|
|
|
906 |
msgctxt "Account name for a third party service such as MailChimp."
|
907 |
msgid "Error: Missing account name."
|
908 |
msgstr "Errore: nome account mancante."
|
909 |
|
910 |
-
# @ fl-builder
|
911 |
#: classes/class-fl-builder-services.php:198
|
|
|
912 |
msgctxt "Account name for a third party service such as MailChimp."
|
913 |
msgid "Error: An account with that name already exists."
|
914 |
msgstr "Errore: esiste già un account con quel nome."
|
915 |
|
916 |
-
# @ fl-builder
|
917 |
#: classes/class-fl-builder-services.php:274
|
|
|
918 |
msgid "Account Name"
|
919 |
msgstr "Nome account"
|
920 |
|
921 |
-
# @ fl-builder
|
922 |
#: classes/class-fl-builder-services.php:275
|
923 |
-
|
924 |
-
"Used to identify this connection within the accounts list and can be "
|
925 |
-
"
|
926 |
-
msgstr ""
|
927 |
-
"Usato per identificare questo collegamento nella lista degli account e può "
|
928 |
-
"essere ciò che preferisci."
|
929 |
|
930 |
-
# @ fl-builder
|
931 |
#: classes/class-fl-builder-services.php:288
|
|
|
932 |
msgid "Connect"
|
933 |
msgstr "Connetti"
|
934 |
|
935 |
-
# @ fl-builder
|
936 |
#: classes/class-fl-builder-services.php:316
|
|
|
937 |
msgid "Add Account..."
|
938 |
msgstr "Aggiungi account..."
|
939 |
|
940 |
-
# @ fl-builder
|
941 |
#: classes/class-fl-builder-services.php:323
|
|
|
942 |
msgid "Account"
|
943 |
msgstr "Account"
|
944 |
|
945 |
-
# @ fl-builder
|
946 |
#: classes/class-fl-builder-templates-override.php:49
|
|
|
947 |
msgid "Error! Please enter a number for the site ID."
|
948 |
msgstr "Errore! Si prega di inserire un numero di ID del sito."
|
949 |
|
950 |
-
# @ fl-builder
|
951 |
#: classes/class-fl-builder-templates-override.php:53
|
|
|
952 |
msgid "Error! A site with that ID doesn't exist."
|
953 |
msgstr "Errore! Non esiste un sito con quell'ID."
|
954 |
|
955 |
-
# @ fl-builder
|
956 |
#: classes/class-fl-builder.php:612
|
957 |
#, php-format
|
|
|
958 |
msgid "Template: %s"
|
959 |
msgstr "Modello: %s"
|
960 |
|
961 |
-
# @ fl-builder
|
962 |
#: classes/class-fl-builder.php:647
|
|
|
963 |
msgid "Upgrade!"
|
964 |
msgstr "Aggiorna!"
|
965 |
|
966 |
-
# @ fl-builder
|
967 |
#: classes/class-fl-builder.php:651
|
|
|
968 |
msgid "Buy Now!"
|
969 |
msgstr "Acquista ora!"
|
970 |
|
971 |
-
|
972 |
-
#:
|
973 |
#: includes/ui-js-templates.php:163
|
|
|
974 |
msgid "Done"
|
975 |
msgstr "Fatto"
|
976 |
|
977 |
-
# @ fl-builder
|
978 |
#: classes/class-fl-builder.php:659
|
|
|
979 |
msgid "Tools"
|
980 |
msgstr "Strumenti"
|
981 |
|
982 |
-
|
983 |
-
#:
|
|
|
984 |
msgid "Add Content"
|
985 |
msgstr "Aggiungi contenuto"
|
986 |
|
987 |
-
# @ fl-builder
|
988 |
#: classes/class-fl-builder.php:1041
|
989 |
#, php-format
|
|
|
990 |
msgctxt "Field name to add."
|
991 |
msgid "Add %s"
|
992 |
msgstr "Aggiungi %s"
|
993 |
|
994 |
-
|
995 |
-
#: classes/class-fl-builder.php:
|
|
|
996 |
msgctxt "Custom post type label."
|
997 |
msgid "Templates"
|
998 |
msgstr "Modelli"
|
999 |
|
1000 |
-
|
1001 |
-
#: classes/class-fl-builder.php:
|
|
|
1002 |
msgctxt "Custom post type label."
|
1003 |
msgid "Template"
|
1004 |
msgstr "Modello"
|
1005 |
|
1006 |
-
# @ fl-builder
|
1007 |
#: classes/class-fl-builder.php:1153
|
|
|
1008 |
msgctxt "Custom post type label."
|
1009 |
msgid "Add New"
|
1010 |
msgstr "Aggiungi nuovo"
|
1011 |
|
1012 |
-
# @ fl-builder
|
1013 |
#: classes/class-fl-builder.php:1154
|
|
|
1014 |
msgctxt "Custom post type label."
|
1015 |
msgid "Add New Template"
|
1016 |
msgstr "Aggiungi nuovo modello"
|
1017 |
|
1018 |
-
# @ fl-builder
|
1019 |
#: classes/class-fl-builder.php:1155
|
|
|
1020 |
msgctxt "Custom post type label."
|
1021 |
msgid "New Template"
|
1022 |
msgstr "Nuovo modello"
|
1023 |
|
1024 |
-
# @ fl-builder
|
1025 |
#: classes/class-fl-builder.php:1156
|
|
|
1026 |
msgctxt "Custom post type label."
|
1027 |
msgid "Edit Template"
|
1028 |
msgstr "Modifica modello"
|
1029 |
|
1030 |
-
# @ fl-builder
|
1031 |
#: classes/class-fl-builder.php:1157
|
|
|
1032 |
msgctxt "Custom post type label."
|
1033 |
msgid "View Template"
|
1034 |
msgstr "Visualizza modello"
|
1035 |
|
1036 |
-
# @ fl-builder
|
1037 |
#: classes/class-fl-builder.php:1158
|
|
|
1038 |
msgctxt "Custom post type label."
|
1039 |
msgid "All Templates"
|
1040 |
msgstr "Tutti i modelli"
|
1041 |
|
1042 |
-
# @ fl-builder
|
1043 |
#: classes/class-fl-builder.php:1159
|
|
|
1044 |
msgctxt "Custom post type label."
|
1045 |
msgid "Search Templates"
|
1046 |
msgstr "Cerca modelli"
|
1047 |
|
1048 |
-
# @ fl-builder
|
1049 |
#: classes/class-fl-builder.php:1160
|
|
|
1050 |
msgctxt "Custom post type label."
|
1051 |
msgid "Parent Templates:"
|
1052 |
msgstr "Modelli genitore:"
|
1053 |
|
1054 |
-
# @ fl-builder
|
1055 |
#: classes/class-fl-builder.php:1161
|
|
|
1056 |
msgctxt "Custom post type label."
|
1057 |
msgid "No templates found."
|
1058 |
msgstr "Nessun modello trovato."
|
1059 |
|
1060 |
-
# @ fl-builder
|
1061 |
#: classes/class-fl-builder.php:1162
|
|
|
1062 |
msgctxt "Custom post type label."
|
1063 |
msgid "No templates found in Trash."
|
1064 |
msgstr "Nessun modello trovato nel cestino."
|
1065 |
|
1066 |
-
# @ fl-builder
|
1067 |
#: classes/class-fl-builder.php:1186
|
|
|
1068 |
msgctxt "Custom taxonomy label."
|
1069 |
msgid "Categories"
|
1070 |
msgstr "Categorie"
|
1071 |
|
1072 |
-
# @ fl-builder
|
1073 |
#: classes/class-fl-builder.php:1195
|
|
|
1074 |
msgctxt "Custom taxonomy label."
|
1075 |
msgid "Type"
|
1076 |
msgstr "Tipo"
|
1077 |
|
1078 |
-
|
1079 |
-
#: classes/class-fl-builder.php:
|
1080 |
-
#: classes/class-fl-builder.php:1704
|
|
|
1081 |
#: includes/ui-panel-node-templates.php:18
|
1082 |
#: includes/ui-panel-node-templates.php:49
|
|
|
1083 |
msgctxt "Indicator for global node templates."
|
1084 |
msgid "Global"
|
1085 |
msgstr "Globale"
|
1086 |
|
1087 |
-
# @ fl-builder
|
1088 |
#: classes/class-fl-builder.php:1703
|
1089 |
#, php-format
|
|
|
1090 |
msgctxt "%s stands for module name."
|
1091 |
msgid "%s Settings"
|
1092 |
msgstr "Impostazioni %s"
|
1093 |
|
1094 |
-
|
1095 |
-
#:
|
|
|
1096 |
msgid "Text Editor"
|
1097 |
msgstr "Editor di testo"
|
1098 |
|
1099 |
-
# @ fl-builder
|
1100 |
#: includes/admin-posts.php:8
|
1101 |
#, php-format
|
|
|
1102 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
1103 |
msgid "Launch %s"
|
1104 |
msgstr "Lancia %s"
|
1105 |
|
1106 |
-
# @ fl-builder
|
1107 |
#: includes/admin-settings-branding.php:37
|
|
|
1108 |
msgid "Save Branding"
|
1109 |
msgstr "Salva Branding"
|
1110 |
|
1111 |
-
# @ fl-builder
|
1112 |
#: includes/admin-settings-cache.php:9
|
1113 |
-
|
1114 |
-
"A CSS and JavaScript file is dynamically generated and cached each time you "
|
1115 |
-
"
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
msgstr ""
|
1120 |
-
"Ogni volta che crei un layout vengono generati dinamicamente un file CSS e "
|
1121 |
-
"Javascript. Qualche volta la cache deve essere rigenerata quando migri il "
|
1122 |
-
"tuo sito ad un'altro server o aggiorni all'ultima versione. Se stai avendo "
|
1123 |
-
"qualche problema, si prega di provare a svuotare la cache cliccando il "
|
1124 |
-
"bottone di sotto."
|
1125 |
-
|
1126 |
-
# @ fl-builder
|
1127 |
-
#: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
|
1128 |
#: includes/admin-settings-uninstall.php:7
|
1129 |
#: includes/admin-settings-uninstall.php:10
|
1130 |
#: includes/updater/includes/form.php:31
|
|
|
1131 |
msgid "NOTE:"
|
1132 |
msgstr "NOTA:"
|
1133 |
|
1134 |
-
# @ fl-builder
|
1135 |
#: includes/admin-settings-cache.php:12
|
1136 |
#: includes/admin-settings-uninstall.php:10
|
1137 |
#: includes/updater/includes/form.php:31
|
|
|
1138 |
msgid "This applies to all sites on the network."
|
1139 |
msgstr "Questo vale per tutti i siti della rete."
|
1140 |
|
1141 |
-
# @ fl-builder
|
1142 |
#: includes/admin-settings-cache.php:14
|
1143 |
-
|
1144 |
-
"This only applies to this site. Please visit the Network Admin Settings to "
|
1145 |
-
"
|
1146 |
-
msgstr ""
|
1147 |
-
"Ciò si applica solo a questo sito. Si prega di visitare le impostazioni "
|
1148 |
-
"amministrative di rete per svuotare la cache di tutti i siti della rete."
|
1149 |
|
1150 |
-
# @ fl-builder
|
1151 |
#: includes/admin-settings-cache.php:19
|
|
|
1152 |
msgid "Clear Cache"
|
1153 |
msgstr "Svuota cache"
|
1154 |
|
1155 |
-
# @ fl-builder
|
1156 |
#: includes/admin-settings-editing.php:3
|
|
|
1157 |
msgid "Editing Settings"
|
1158 |
msgstr "Impostazioni di modifica"
|
1159 |
|
1160 |
-
|
1161 |
-
#: includes/admin-settings-
|
1162 |
#: includes/admin-settings-modules.php:10
|
1163 |
#: includes/admin-settings-post-types.php:10
|
1164 |
#: includes/admin-settings-templates.php:16
|
|
|
1165 |
msgid "Override network settings?"
|
1166 |
msgstr "Eseguire l'override delle impostazioni di rete?"
|
1167 |
|
1168 |
-
# @ fl-builder
|
1169 |
#: includes/admin-settings-editing.php:16
|
|
|
1170 |
msgid "Editing Capability"
|
1171 |
msgstr "Capacità di modifica"
|
1172 |
|
1173 |
-
# @ fl-builder
|
1174 |
#: includes/admin-settings-editing.php:17
|
1175 |
#, php-format
|
1176 |
-
|
1177 |
-
"Set the <a%s>capability</a> required for users to access advanced builder "
|
1178 |
-
"
|
1179 |
-
msgstr ""
|
1180 |
-
"Imposta la <a%s>capacità</a> necessaria degli utenti per accedere al builder "
|
1181 |
-
"avanzato e aggiungere, eliminare o spostare i moduli."
|
1182 |
|
1183 |
-
# @ fl-builder
|
1184 |
#: includes/admin-settings-editing.php:21
|
|
|
1185 |
msgid "Global Templates Editing Capability"
|
1186 |
msgstr "Capacità di modifica modelli globali"
|
1187 |
|
1188 |
-
# @ fl-builder
|
1189 |
#: includes/admin-settings-editing.php:22
|
1190 |
#, php-format
|
|
|
1191 |
msgid "Set the <a%s>capability</a> required for users to global templates."
|
1192 |
-
msgstr ""
|
1193 |
-
"Imposta la <a%s>capacità</a> richiesta agli utenti per i modelli blobali"
|
1194 |
|
1195 |
-
# @ fl-builder
|
1196 |
#: includes/admin-settings-editing.php:28
|
|
|
1197 |
msgid "Save Editing Settings"
|
1198 |
msgstr "Salva le impostazioni di modifica"
|
1199 |
|
1200 |
-
# @ fl-builder
|
1201 |
#: includes/admin-settings-help-button.php:8
|
|
|
1202 |
msgid "Help Button Settings"
|
1203 |
msgstr "Impostazioni pulsante di aiuto"
|
1204 |
|
1205 |
-
# @ fl-builder
|
1206 |
#: includes/admin-settings-help-button.php:17
|
|
|
1207 |
msgid "Enable Help Button"
|
1208 |
msgstr "Abilita pulsante di aiuto"
|
1209 |
|
1210 |
-
# @ fl-builder
|
1211 |
#: includes/admin-settings-help-button.php:23
|
|
|
1212 |
msgid "Help Tour"
|
1213 |
msgstr "Visita guidata"
|
1214 |
|
1215 |
-
# @ fl-builder
|
1216 |
#: includes/admin-settings-help-button.php:27
|
|
|
1217 |
msgid "Enable Help Tour"
|
1218 |
msgstr "Abilita visita guidata"
|
1219 |
|
1220 |
-
# @ fl-builder
|
1221 |
#: includes/admin-settings-help-button.php:31
|
|
|
1222 |
msgid "Help Video"
|
1223 |
msgstr "Video di aiuto"
|
1224 |
|
1225 |
-
# @ fl-builder
|
1226 |
#: includes/admin-settings-help-button.php:35
|
|
|
1227 |
msgid "Enable Help Video"
|
1228 |
msgstr "Abilita "
|
1229 |
|
1230 |
-
# @ fl-builder
|
1231 |
#: includes/admin-settings-help-button.php:39
|
|
|
1232 |
msgid "Help Video Embed Code"
|
1233 |
msgstr "Codice di embed del video di aiuto"
|
1234 |
|
1235 |
-
# @ fl-builder
|
1236 |
#: includes/admin-settings-help-button.php:45
|
|
|
1237 |
msgid "Knowledge Base"
|
1238 |
msgstr "Documentazione"
|
1239 |
|
1240 |
-
# @ fl-builder
|
1241 |
#: includes/admin-settings-help-button.php:49
|
|
|
1242 |
msgid "Enable Knowledge Base"
|
1243 |
msgstr "Abilita documentazione"
|
1244 |
|
1245 |
-
# @ fl-builder
|
1246 |
#: includes/admin-settings-help-button.php:53
|
|
|
1247 |
msgid "Knowledge Base URL"
|
1248 |
msgstr "URL documentazione"
|
1249 |
|
1250 |
-
# @ fl-builder
|
1251 |
#: includes/admin-settings-help-button.php:59
|
|
|
1252 |
msgid "Forums"
|
1253 |
msgstr "Forum"
|
1254 |
|
1255 |
-
# @ fl-builder
|
1256 |
#: includes/admin-settings-help-button.php:63
|
|
|
1257 |
msgid "Enable Forums"
|
1258 |
msgstr "Abilita forum"
|
1259 |
|
1260 |
-
# @ fl-builder
|
1261 |
#: includes/admin-settings-help-button.php:67
|
|
|
1262 |
msgid "Forums URL"
|
1263 |
msgstr "URL forum"
|
1264 |
|
1265 |
-
# @ fl-builder
|
1266 |
#: includes/admin-settings-help-button.php:77
|
|
|
1267 |
msgid "Save Help Button Settings"
|
1268 |
msgstr "Salva impostazioni pulsante di aiuto"
|
1269 |
|
1270 |
-
# @ fl-builder
|
1271 |
#: includes/admin-settings-icons.php:3
|
|
|
1272 |
msgid "Icon Settings"
|
1273 |
msgstr "Impostazioni icona"
|
1274 |
|
1275 |
-
# @ fl-builder
|
1276 |
#: includes/admin-settings-icons.php:13
|
|
|
1277 |
msgid "Icons for the main site must be managed in the network admin."
|
1278 |
-
msgstr ""
|
1279 |
-
"Le icone per il sito principale devono essere gestite nell'amministrazione "
|
1280 |
-
"di rete."
|
1281 |
|
1282 |
-
# @ fl-builder
|
1283 |
#: includes/admin-settings-icons.php:33
|
1284 |
#, php-format
|
1285 |
-
|
1286 |
-
"Enable or disable icon sets using the options below or upload a custom icon "
|
1287 |
-
"set
|
1288 |
-
msgstr ""
|
1289 |
-
"Abilita o disabilita set di icone usando le opzioni qui sotto o carica un "
|
1290 |
-
"set di icone personalizzato da <a%s>Icomoon</a> o <a%s>Fontello</a>."
|
1291 |
|
1292 |
-
# @ fl-builder
|
1293 |
#: includes/admin-settings-icons.php:48
|
|
|
1294 |
msgctxt "Plugin setup page: Delete icon set."
|
1295 |
msgid "Delete"
|
1296 |
msgstr "Elimina"
|
1297 |
|
1298 |
-
# @ fl-builder
|
1299 |
#: includes/admin-settings-icons.php:59
|
|
|
1300 |
msgid "Upload Icon Set"
|
1301 |
msgstr "Carica set di icone"
|
1302 |
|
1303 |
-
# @ fl-builder
|
1304 |
#: includes/admin-settings-icons.php:60
|
|
|
1305 |
msgid "Save Icon Settings"
|
1306 |
msgstr "Salva impostazioni icona"
|
1307 |
|
1308 |
-
# @ fl-builder
|
1309 |
#: includes/admin-settings-js-config.php:4
|
|
|
1310 |
msgid "Select File"
|
1311 |
msgstr "Seleziona file"
|
1312 |
|
1313 |
-
# @ fl-builder
|
1314 |
#: includes/admin-settings-js-config.php:5
|
1315 |
-
|
1316 |
-
"Please type \"uninstall\" in the box below to confirm that you really want "
|
1317 |
-
"
|
1318 |
-
msgstr ""
|
1319 |
-
"Si prega di digitare \"uninstall\" nella casella qui sotto per confermare "
|
1320 |
-
"che si desidera davvero disinstallare il page builder e tutti i relativi "
|
1321 |
-
"dati."
|
1322 |
|
1323 |
-
# @ fl-builder
|
1324 |
#: includes/admin-settings-modules.php:3
|
|
|
1325 |
msgid "Enabled Modules"
|
1326 |
msgstr "Moduli abilitati"
|
1327 |
|
1328 |
-
# @ fl-builder
|
1329 |
#: includes/admin-settings-modules.php:16
|
|
|
1330 |
msgid "Check or uncheck modules below to enable or disable them."
|
1331 |
-
msgstr ""
|
1332 |
-
"Selezionare o deselezionare i moduli sottostanti per abilitarli o "
|
1333 |
-
"disabilitarli."
|
1334 |
|
1335 |
-
# @ fl-builder
|
1336 |
#: includes/admin-settings-modules.php:26
|
|
|
1337 |
msgctxt "Plugin setup page: Modules."
|
1338 |
msgid "All"
|
1339 |
msgstr "Tutti"
|
1340 |
|
1341 |
-
# @ fl-builder
|
1342 |
#: includes/admin-settings-modules.php:64
|
|
|
1343 |
msgid "Save Module Settings"
|
1344 |
msgstr "Salvare le impostazioni del modulo"
|
1345 |
|
1346 |
-
# @ fl-builder
|
1347 |
#: includes/admin-settings-post-types.php:18
|
1348 |
-
|
1349 |
-
"Enter a comma separated list of the post types you would like the builder to "
|
1350 |
-
"
|
1351 |
-
msgstr ""
|
1352 |
-
"Inserisci una lista separata da virgole dei tipi di post su cui desideri "
|
1353 |
-
"attivare il builder."
|
1354 |
|
1355 |
-
# @ fl-builder
|
1356 |
#: includes/admin-settings-post-types.php:19
|
1357 |
#: includes/admin-settings-post-types.php:39
|
|
|
1358 |
msgid "NOTE: Not all custom post types may be supported."
|
1359 |
-
msgstr ""
|
1360 |
-
"Nota: Non tutti i tipi di post personalizzati potrebbero essere supportati."
|
1361 |
|
1362 |
-
# @ fl-builder
|
1363 |
#: includes/admin-settings-post-types.php:34
|
|
|
1364 |
msgid "Example: page, post, product"
|
1365 |
msgstr "Esempio: pagina, articolo, prodotto"
|
1366 |
|
1367 |
-
# @ fl-builder
|
1368 |
#: includes/admin-settings-post-types.php:38
|
|
|
1369 |
msgid "Select the post types you would like the builder to work with."
|
1370 |
msgstr "Seleziona i tipi di post su cui vuoi abilitare il builder."
|
1371 |
|
1372 |
-
# @ fl-builder
|
1373 |
#: includes/admin-settings-post-types.php:71
|
|
|
1374 |
msgid "Save Post Types"
|
1375 |
msgstr "Salva tipi di Post"
|
1376 |
|
1377 |
-
# @ fl-builder
|
1378 |
#: includes/admin-settings-templates-override.php:1
|
1379 |
#: includes/admin-settings-templates-override.php:12
|
|
|
1380 |
msgid "Override Core Templates"
|
1381 |
msgstr "Override modelli core"
|
1382 |
|
1383 |
-
# @ fl-builder
|
1384 |
#: includes/admin-settings-templates-override.php:3
|
1385 |
-
|
1386 |
-
"Enter the ID of a site on the network whose templates should override core "
|
1387 |
-
"
|
1388 |
-
"core templates."
|
1389 |
-
msgstr ""
|
1390 |
-
"Inserisci l'ID di un sito nella rete i cui templates dovrebbero prevalere "
|
1391 |
-
"sui modelli core del builder. Lascia questo campo in bianco se non vuoi "
|
1392 |
-
"prevalere sui modelli core."
|
1393 |
|
1394 |
-
# @ fl-builder
|
1395 |
#: includes/admin-settings-templates-override.php:8
|
1396 |
-
|
1397 |
-
"Use this setting to override core builder templates with your templates."
|
1398 |
-
msgstr ""
|
1399 |
-
"Usa questa impostazione per prevalere sui modelli core del builder con i "
|
1400 |
-
"tuoi modelli. "
|
1401 |
|
1402 |
-
# @ fl-builder
|
1403 |
#: includes/admin-settings-templates-override.php:17
|
1404 |
-
|
1405 |
-
"You may also choose to show your row and module templates as sections within "
|
1406 |
-
"
|
1407 |
-
"category that you have defined."
|
1408 |
-
msgstr ""
|
1409 |
-
"Puoi anche scegliere di mostrare i tuoi modelli di riga e modulo come "
|
1410 |
-
"sezioni nel pannello del builder. Sarà creata una nuova sezione per ogni "
|
1411 |
-
"riga o categoria di modulo che hai definito."
|
1412 |
|
1413 |
-
# @ fl-builder
|
1414 |
#: includes/admin-settings-templates-override.php:21
|
|
|
1415 |
msgid "Show Row Templates?"
|
1416 |
msgstr "Visualizza i modelli di riga?"
|
1417 |
|
1418 |
-
# @ fl-builder
|
1419 |
#: includes/admin-settings-templates-override.php:27
|
|
|
1420 |
msgid "Show Module Templates?"
|
1421 |
msgstr "Visualizza i modelli dei moduli?"
|
1422 |
|
1423 |
-
# @ fl-builder
|
1424 |
#: includes/admin-settings-templates.php:9
|
|
|
1425 |
msgid "Template Settings"
|
1426 |
msgstr "Impostazioni dei modelli"
|
1427 |
|
1428 |
-
# @ fl-builder
|
1429 |
#: includes/admin-settings-templates.php:22
|
|
|
1430 |
msgid "Enable Templates"
|
1431 |
msgstr "Abilita modelli"
|
1432 |
|
1433 |
-
# @ fl-builder
|
1434 |
#: includes/admin-settings-templates.php:23
|
1435 |
-
|
1436 |
-
"Use this setting to enable or disable templates in the builder interface."
|
1437 |
-
msgstr ""
|
1438 |
-
"Usa questa impostazione per abilitare o disabilitare modelli "
|
1439 |
-
"nell'interfaccia del builder."
|
1440 |
|
1441 |
-
# @ fl-builder
|
1442 |
#: includes/admin-settings-templates.php:25
|
|
|
1443 |
msgid "Enable All Templates"
|
1444 |
msgstr "Abilita tutti i modelli"
|
1445 |
|
1446 |
-
# @ fl-builder
|
1447 |
#: includes/admin-settings-templates.php:26
|
|
|
1448 |
msgid "Enable Core Templates Only"
|
1449 |
msgstr "Abilita solo i modelli Core"
|
1450 |
|
1451 |
-
# @ fl-builder
|
1452 |
#: includes/admin-settings-templates.php:27
|
|
|
1453 |
msgid "Enable User Templates Only"
|
1454 |
msgstr "Abilita solo i modelli utente"
|
1455 |
|
1456 |
-
# @ fl-builder
|
1457 |
#: includes/admin-settings-templates.php:28
|
|
|
1458 |
msgid "Disable All Templates"
|
1459 |
msgstr "Disabilita tutti i modelli"
|
1460 |
|
1461 |
-
# @ fl-builder
|
1462 |
#: includes/admin-settings-templates.php:31
|
1463 |
#: includes/admin-settings-templates.php:36
|
|
|
1464 |
msgid "Enable Templates Admin"
|
1465 |
msgstr "Abilita amministrazione modelli"
|
1466 |
|
1467 |
-
# @ fl-builder
|
1468 |
#: includes/admin-settings-templates.php:32
|
|
|
1469 |
msgid "Use this setting to edit builder templates in the WordPress admin."
|
1470 |
-
msgstr ""
|
1471 |
-
"Usa questa impostazione per modificare i modelli del builder "
|
1472 |
-
"nell'amministrazione di Wordpress."
|
1473 |
|
1474 |
-
# @ fl-builder
|
1475 |
#: includes/admin-settings-templates.php:50
|
|
|
1476 |
msgid "Save Template Settings"
|
1477 |
msgstr "Salva le impostazioni dei modelli"
|
1478 |
|
1479 |
-
# @ fl-builder
|
1480 |
#: includes/admin-settings-uninstall.php:5
|
1481 |
-
|
1482 |
-
"Clicking the button below will uninstall the page builder plugin and delete "
|
1483 |
-
"
|
1484 |
-
"builder from the plugins page instead if you do not wish to delete the data."
|
1485 |
-
msgstr ""
|
1486 |
-
"Clicca sul pulsante qui sotto per disinstallare il page builder plugin e "
|
1487 |
-
"rimuovere tutti i dati ad esso associati. È possibile disinstallare o "
|
1488 |
-
"disattivare il page builder dalla pagina dei plugin se invece non si "
|
1489 |
-
"desidera eliminare i dati."
|
1490 |
|
1491 |
-
# @ fl-builder
|
1492 |
#: includes/admin-settings-uninstall.php:7
|
1493 |
-
|
1494 |
-
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
1495 |
-
"<code>_fl_builder_draft</code>
|
1496 |
-
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
1497 |
-
"its data using those meta values."
|
1498 |
-
msgstr ""
|
1499 |
-
"Il builder non elimina il post meta <code>_fl_builder_data</code> , "
|
1500 |
-
"<code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> nel caso "
|
1501 |
-
"in cui si desidera reinstallarlo successivamente. Se lo fai, il builder "
|
1502 |
-
"ricostruirà tutti i suoi dati utilizzando quei valori meta."
|
1503 |
|
1504 |
-
# @ fl-builder
|
1505 |
#: includes/admin-settings-upgrade.php:5
|
1506 |
-
|
1507 |
-
"You are currently running the lite version of the Beaver Builder plugin. "
|
1508 |
-
"
|
1509 |
-
"templates, support and more!"
|
1510 |
-
msgstr ""
|
1511 |
-
"Stai usando la versione lite del plugin Beaver Builder. Aggiorna oggi per "
|
1512 |
-
"accedere a funzioni premium come moduli avanzati, modelli, supporto e altro!"
|
1513 |
|
1514 |
-
# @ fl-builder
|
1515 |
#: includes/admin-settings-upgrade.php:7
|
|
|
1516 |
msgid "Upgrade Now"
|
1517 |
msgstr "Aggiorna ora"
|
1518 |
|
1519 |
-
# @ fl-builder
|
1520 |
#: includes/admin-settings-upgrade.php:9
|
|
|
1521 |
msgid "Learn More"
|
1522 |
msgstr "Ulteriori informazioni"
|
1523 |
|
1524 |
-
|
1525 |
-
#: modules/
|
1526 |
-
#: modules/post-grid/post-grid.php:125
|
|
|
|
|
1527 |
msgid "Image"
|
1528 |
msgstr "Immagine"
|
1529 |
|
1530 |
-
|
1531 |
-
#: includes/
|
1532 |
-
#: modules/callout/callout.php:355
|
|
|
1533 |
#: modules/content-slider/content-slider.php:499
|
1534 |
-
#: modules/post-grid/post-grid.php:139
|
|
|
1535 |
#: modules/post-slider/post-slider.php:645
|
|
|
1536 |
msgid "Position"
|
1537 |
msgstr "Posizione"
|
1538 |
|
1539 |
-
|
1540 |
-
#: includes/
|
1541 |
-
#: includes/global-settings.php:110
|
1542 |
-
#: includes/
|
1543 |
-
#:
|
1544 |
-
#:
|
1545 |
-
#: modules/
|
1546 |
-
#: modules/audio/audio.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1547 |
#: modules/content-slider/content-slider.php:236
|
1548 |
#: modules/content-slider/content-slider.php:250
|
1549 |
#: modules/content-slider/content-slider.php:284
|
1550 |
#: modules/content-slider/content-slider.php:293
|
1551 |
#: modules/content-slider/content-slider.php:564
|
1552 |
-
#: modules/countdown/countdown.php:334
|
1553 |
-
#: modules/icon
|
1554 |
-
#: modules/
|
|
|
|
|
|
|
1555 |
#: modules/post-carousel/post-carousel.php:156
|
1556 |
#: modules/post-carousel/post-carousel.php:183
|
1557 |
#: modules/post-carousel/post-carousel.php:192
|
1558 |
#: modules/post-carousel/post-carousel.php:233
|
1559 |
#: modules/post-carousel/post-carousel.php:297
|
1560 |
-
#: modules/post-grid/post-grid.php:78
|
|
|
1561 |
#: modules/post-slider/post-slider.php:357
|
1562 |
#: modules/post-slider/post-slider.php:382
|
1563 |
#: modules/post-slider/post-slider.php:409
|
1564 |
#: modules/post-slider/post-slider.php:418
|
1565 |
-
#: modules/post-slider/post-slider.php:739
|
1566 |
-
#: modules/slideshow/slideshow.php:
|
1567 |
-
#: modules/slideshow/slideshow.php:
|
1568 |
-
#: modules/slideshow/slideshow.php:
|
1569 |
-
#: modules/slideshow/slideshow.php:
|
1570 |
-
#: modules/slideshow/slideshow.php:
|
1571 |
-
#: modules/slideshow/slideshow.php:
|
1572 |
-
#: modules/slideshow/slideshow.php:
|
1573 |
-
#: modules/slideshow/slideshow.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1574 |
#: modules/slideshow/slideshow.php:651
|
1575 |
#: modules/social-buttons/social-buttons.php:112
|
1576 |
#: modules/social-buttons/social-buttons.php:121
|
1577 |
#: modules/social-buttons/social-buttons.php:130
|
1578 |
#: modules/testimonials/testimonials.php:86
|
1579 |
#: modules/testimonials/testimonials.php:125
|
1580 |
-
#: modules/testimonials/testimonials.php:155
|
|
|
1581 |
#: modules/video/video.php:138
|
|
|
1582 |
msgid "No"
|
1583 |
msgstr "No"
|
1584 |
|
1585 |
-
|
1586 |
-
#: includes/
|
1587 |
-
#: includes/global-settings.php:111
|
1588 |
-
#: includes/
|
1589 |
-
#:
|
1590 |
-
#:
|
1591 |
-
#: modules/
|
1592 |
-
#: modules/audio/audio.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1593 |
#: modules/content-slider/content-slider.php:237
|
1594 |
#: modules/content-slider/content-slider.php:251
|
1595 |
#: modules/content-slider/content-slider.php:285
|
1596 |
#: modules/content-slider/content-slider.php:294
|
1597 |
#: modules/content-slider/content-slider.php:565
|
1598 |
-
#: modules/countdown/countdown.php:335
|
1599 |
-
#: modules/icon
|
1600 |
-
#: modules/
|
|
|
|
|
|
|
1601 |
#: modules/post-carousel/post-carousel.php:157
|
1602 |
#: modules/post-carousel/post-carousel.php:184
|
1603 |
#: modules/post-carousel/post-carousel.php:193
|
1604 |
#: modules/post-carousel/post-carousel.php:234
|
1605 |
#: modules/post-carousel/post-carousel.php:296
|
1606 |
-
#: modules/post-grid/post-grid.php:77
|
|
|
1607 |
#: modules/post-slider/post-slider.php:358
|
1608 |
#: modules/post-slider/post-slider.php:383
|
1609 |
#: modules/post-slider/post-slider.php:410
|
1610 |
#: modules/post-slider/post-slider.php:419
|
1611 |
-
#: modules/post-slider/post-slider.php:740
|
1612 |
-
#: modules/slideshow/slideshow.php:
|
1613 |
-
#: modules/slideshow/slideshow.php:
|
1614 |
-
#: modules/slideshow/slideshow.php:
|
1615 |
-
#: modules/slideshow/slideshow.php:
|
1616 |
-
#: modules/slideshow/slideshow.php:
|
1617 |
-
#: modules/slideshow/slideshow.php:
|
1618 |
-
#: modules/slideshow/slideshow.php:
|
1619 |
-
#: modules/slideshow/slideshow.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1620 |
#: modules/slideshow/slideshow.php:652
|
1621 |
#: modules/social-buttons/social-buttons.php:111
|
1622 |
#: modules/social-buttons/social-buttons.php:120
|
1623 |
#: modules/social-buttons/social-buttons.php:129
|
1624 |
#: modules/testimonials/testimonials.php:87
|
1625 |
#: modules/testimonials/testimonials.php:126
|
1626 |
-
#: modules/testimonials/testimonials.php:156
|
|
|
1627 |
#: modules/video/video.php:139
|
|
|
1628 |
msgid "Yes"
|
1629 |
msgstr "Sì"
|
1630 |
|
1631 |
-
|
1632 |
-
#: includes/
|
|
|
1633 |
msgid "Edit"
|
1634 |
msgstr "Modifica"
|
1635 |
|
1636 |
-
# @ fl-builder
|
1637 |
#: includes/template-selector.php:71
|
|
|
1638 |
msgid "Delete"
|
1639 |
msgstr "Elimina"
|
1640 |
|
1641 |
-
|
1642 |
-
|
1643 |
msgid "Do you really want to delete this template?"
|
1644 |
msgstr "Vuoi davvero eliminare questo modello?"
|
1645 |
|
1646 |
-
|
1647 |
-
#: includes/
|
1648 |
#: includes/ui-js-templates.php:88
|
|
|
1649 |
msgid "Column Settings"
|
1650 |
msgstr "Impostazioni colonna"
|
1651 |
|
1652 |
-
|
1653 |
-
#: includes/
|
1654 |
-
#: includes/row-settings.php:9
|
1655 |
-
#: modules/
|
1656 |
-
#: modules/
|
1657 |
-
#: modules/
|
|
|
|
|
|
|
|
|
1658 |
#: modules/content-slider/content-slider.php:452
|
1659 |
#: modules/content-slider/content-slider.php:693
|
1660 |
-
#: modules/countdown/countdown.php:141
|
1661 |
-
#: modules/cta/cta.php:
|
1662 |
-
#: modules/
|
1663 |
-
#: modules/
|
|
|
|
|
|
|
|
|
1664 |
#: modules/post-carousel/post-carousel.php:403
|
1665 |
-
#: modules/post-grid/post-grid.php:246
|
|
|
1666 |
#: modules/pricing-table/pricing-table.php:72
|
1667 |
#: modules/pricing-table/pricing-table.php:265
|
1668 |
#: modules/pricing-table/pricing-table.php:352
|
1669 |
#: modules/separator/separator.php:73
|
1670 |
-
#: modules/subscribe-form/subscribe-form.php:238
|
|
|
|
|
1671 |
msgid "Style"
|
1672 |
msgstr "Stile"
|
1673 |
|
1674 |
-
# @ fl-builder
|
1675 |
#: includes/column-settings.php:14
|
|
|
1676 |
msgid "Column Width"
|
1677 |
msgstr "Larghezza colonna"
|
1678 |
|
1679 |
-
|
1680 |
-
#:
|
1681 |
-
#: modules/callout/callout.php:227
|
|
|
1682 |
#: modules/callout/callout.php:496
|
1683 |
#: modules/content-slider/content-slider.php:409
|
1684 |
-
#: modules/content-slider/content-slider.php:643
|
1685 |
-
#: modules/cta/cta.php:
|
|
|
|
|
1686 |
#: modules/post-slider/post-slider.php:622
|
|
|
1687 |
msgid "Text"
|
1688 |
msgstr "Testo"
|
1689 |
|
1690 |
-
|
1691 |
-
#: includes/column-settings.php:
|
1692 |
-
#: includes/column-settings.php:261
|
1693 |
-
#: includes/row-settings.php:
|
1694 |
-
#:
|
1695 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
1696 |
msgid "Color"
|
1697 |
msgstr "Colore"
|
1698 |
|
1699 |
-
|
1700 |
-
#: includes/
|
1701 |
-
#: modules/menu/menu.php:202
|
|
|
1702 |
#: modules/post-slider/post-slider.php:699
|
|
|
1703 |
msgid "Link Color"
|
1704 |
msgstr "Colore collegamento"
|
1705 |
|
1706 |
-
|
1707 |
-
#: includes/
|
1708 |
-
#: modules/menu/menu.php:220
|
|
|
1709 |
#: modules/post-slider/post-slider.php:715
|
|
|
1710 |
msgid "Link Hover Color"
|
1711 |
msgstr "Colore collegamento al passaggio del mouse"
|
1712 |
|
1713 |
-
|
1714 |
-
#: includes/
|
|
|
1715 |
msgid "Heading Color"
|
1716 |
msgstr "Colore intestazione"
|
1717 |
|
1718 |
-
|
1719 |
-
#: includes/
|
1720 |
#: modules/post-slider/post-slider.php:463
|
|
|
1721 |
msgid "Background"
|
1722 |
msgstr "Sfondo"
|
1723 |
|
1724 |
-
|
1725 |
-
#: includes/column-settings.php:
|
1726 |
-
#: includes/row-settings.php:102
|
|
|
1727 |
#: modules/callout/callout.php:476
|
1728 |
#: modules/content-slider/content-slider.php:358
|
1729 |
#: modules/content-slider/content-slider.php:405
|
1730 |
#: modules/content-slider/content-slider.php:623
|
1731 |
#: modules/content-slider/content-slider.php:765
|
1732 |
#: modules/slideshow/slideshow.php:348
|
|
|
1733 |
msgid "Type"
|
1734 |
msgstr "Tipo"
|
1735 |
|
1736 |
-
|
1737 |
-
#: includes/
|
1738 |
#: modules/content-slider/content-slider.php:365
|
|
|
1739 |
msgctxt "Background type."
|
1740 |
msgid "None"
|
1741 |
msgstr "Nessuno"
|
1742 |
|
1743 |
-
|
1744 |
-
#: includes/
|
|
|
1745 |
msgctxt "Background type."
|
1746 |
msgid "Color"
|
1747 |
msgstr "Colore"
|
1748 |
|
1749 |
-
|
1750 |
-
#: includes/
|
|
|
1751 |
msgctxt "Background type."
|
1752 |
msgid "Photo"
|
1753 |
msgstr "Foto"
|
1754 |
|
1755 |
-
|
1756 |
-
#: includes/
|
1757 |
-
#: modules/button/button.php:125
|
|
|
1758 |
#: modules/callout/callout.php:520
|
1759 |
#: modules/content-slider/content-slider.php:390
|
1760 |
-
#: modules/content-slider/content-slider.php:666
|
1761 |
-
#: modules/cta/cta.php:
|
|
|
|
|
1762 |
#: modules/icon-group/icon-group.php:65
|
1763 |
#: modules/pricing-table/pricing-table.php:236
|
1764 |
#: modules/subscribe-form/subscribe-form.php:203
|
|
|
1765 |
msgid "Background Color"
|
1766 |
msgstr "Colore di sfondo"
|
1767 |
|
1768 |
-
|
1769 |
-
#: includes/column-settings.php:
|
1770 |
-
#: includes/row-settings.php:375
|
|
|
1771 |
#: modules/separator/separator.php:45
|
|
|
1772 |
msgid "Opacity"
|
1773 |
msgstr "Opacità"
|
1774 |
|
1775 |
-
|
1776 |
-
#: includes/
|
1777 |
#: modules/content-slider/content-slider.php:386
|
|
|
1778 |
msgid "Background Photo"
|
1779 |
msgstr "Foto di sfondo"
|
1780 |
|
1781 |
-
|
1782 |
-
#: includes/
|
1783 |
-
#: includes/row-settings.php:342
|
1784 |
-
#: modules/callout/callout.php:
|
|
|
|
|
1785 |
#: modules/content-slider/content-slider.php:362
|
1786 |
#: modules/content-slider/content-slider.php:431
|
1787 |
-
#: modules/content-slider/content-slider.php:781
|
|
|
1788 |
#: modules/photo/photo.php:446
|
|
|
1789 |
msgid "Photo"
|
1790 |
msgstr "Foto"
|
1791 |
|
1792 |
-
|
1793 |
-
#: includes/
|
|
|
1794 |
msgid "Repeat"
|
1795 |
msgstr "Ripetizione"
|
1796 |
|
1797 |
-
|
1798 |
-
#: includes/
|
|
|
1799 |
msgctxt "Background repeat."
|
1800 |
msgid "None"
|
1801 |
msgstr "Nessuna"
|
1802 |
|
1803 |
-
|
1804 |
-
#: includes/
|
|
|
1805 |
msgctxt "Background repeat."
|
1806 |
msgid "Tile"
|
1807 |
msgstr "Tassello"
|
1808 |
|
1809 |
-
|
1810 |
-
#: includes/
|
|
|
1811 |
msgctxt "Background repeat."
|
1812 |
msgid "Horizontal"
|
1813 |
msgstr "Orizzontale"
|
1814 |
|
1815 |
-
|
1816 |
-
#: includes/
|
|
|
1817 |
msgctxt "Background repeat."
|
1818 |
msgid "Vertical"
|
1819 |
msgstr "Verticale"
|
1820 |
|
1821 |
-
|
1822 |
-
#: includes/
|
1823 |
-
|
1824 |
-
"Repeat applies to how the image should display in the background. Choosing "
|
1825 |
-
"
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
"nessuno mostrerà l'immagine così come caricata. Tassello ripeterà l'immagine "
|
1831 |
-
"tante volte quanto necessario per riempire lo sfondo in orizontale e "
|
1832 |
-
"verticale. Puoi anche specificare di ripetere l'immagine solo in orizontale "
|
1833 |
-
"o verticale."
|
1834 |
-
|
1835 |
-
# @ fl-builder
|
1836 |
-
#: includes/column-settings.php:155 includes/row-settings.php:171
|
1837 |
msgid "Left Top"
|
1838 |
msgstr "Sinistra Alto"
|
1839 |
|
1840 |
-
|
1841 |
-
#: includes/
|
|
|
1842 |
msgid "Left Center"
|
1843 |
msgstr "Sinistra Centro"
|
1844 |
|
1845 |
-
|
1846 |
-
#: includes/
|
|
|
1847 |
msgid "Left Bottom"
|
1848 |
msgstr "Sinistra Basso"
|
1849 |
|
1850 |
-
|
1851 |
-
#: includes/
|
|
|
1852 |
msgid "Right Top"
|
1853 |
msgstr "Destra Alto"
|
1854 |
|
1855 |
-
|
1856 |
-
#: includes/
|
|
|
1857 |
msgid "Right Center"
|
1858 |
msgstr "Destra Centro"
|
1859 |
|
1860 |
-
|
1861 |
-
#: includes/
|
|
|
1862 |
msgid "Right Bottom"
|
1863 |
msgstr "Destra Basso"
|
1864 |
|
1865 |
-
|
1866 |
-
#: includes/
|
|
|
1867 |
msgid "Center Top"
|
1868 |
msgstr "Centro Alto"
|
1869 |
|
1870 |
-
|
1871 |
-
#: includes/
|
1872 |
-
#: modules/button/button.php:228
|
1873 |
-
#: modules/
|
1874 |
-
#: modules/
|
1875 |
-
#: modules/
|
1876 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
1877 |
#: modules/pricing-table/pricing-table.php:316
|
1878 |
#: modules/social-buttons/social-buttons.php:101
|
|
|
1879 |
msgid "Center"
|
1880 |
msgstr "Centro"
|
1881 |
|
1882 |
-
|
1883 |
-
#: includes/
|
|
|
1884 |
msgid "Center Bottom"
|
1885 |
msgstr "Centro Basso"
|
1886 |
|
1887 |
-
|
1888 |
-
#: includes/
|
|
|
1889 |
msgid "Position will tell the image where it should sit in the background."
|
1890 |
msgstr "La posizione sistemerà l'immagine sullo sfondo."
|
1891 |
|
1892 |
-
|
1893 |
-
#: includes/
|
|
|
1894 |
msgid "Attachment"
|
1895 |
msgstr "Attaccatura"
|
1896 |
|
1897 |
-
|
1898 |
-
#: includes/
|
1899 |
#: modules/post-grid/post-grid.php:87
|
|
|
1900 |
msgid "Scroll"
|
1901 |
msgstr "Scorrimento"
|
1902 |
|
1903 |
-
|
1904 |
-
#: includes/
|
1905 |
-
#: includes/global-settings.php:83
|
1906 |
-
#: includes/row-settings.php:
|
|
|
|
|
|
|
1907 |
msgid "Fixed"
|
1908 |
msgstr "Fissa"
|
1909 |
|
1910 |
-
|
1911 |
-
#: includes/
|
1912 |
-
|
1913 |
-
"Attachment will specify how the image reacts when scrolling a page. When "
|
1914 |
-
"
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
"di pagina. Quando lo scorrimento è selezionato, l'immagine scorre con lo "
|
1920 |
-
"scorrimento della pagina. Questa è l'impostazione predefinita. Fisso "
|
1921 |
-
"permette all'immagine di scorrere all'interno dello sfondo se nelle "
|
1922 |
-
"impostazioni di scala è selezionato riempimento."
|
1923 |
-
|
1924 |
-
# @ fl-builder
|
1925 |
-
#: includes/column-settings.php:185 includes/row-settings.php:201
|
1926 |
msgid "Scale"
|
1927 |
msgstr "Scala"
|
1928 |
|
1929 |
-
|
1930 |
-
#: includes/
|
|
|
1931 |
msgctxt "Background scale."
|
1932 |
msgid "None"
|
1933 |
msgstr "Nessuno"
|
1934 |
|
1935 |
-
|
1936 |
-
#: includes/
|
|
|
1937 |
msgid "Fit"
|
1938 |
msgstr "Adatta"
|
1939 |
|
1940 |
-
|
1941 |
-
#: includes/
|
|
|
1942 |
msgid "Fill"
|
1943 |
msgstr "Riempi"
|
1944 |
|
1945 |
-
|
1946 |
-
#: includes/
|
1947 |
-
|
1948 |
-
"Scale applies to how the image should display in the background. You can "
|
1949 |
-
"
|
1950 |
-
msgstr ""
|
1951 |
-
"La scala si applica a come si dovrebbe visualizzare l'immagine sullo sfondo. "
|
1952 |
-
"È possibile selezionare o riempimento o adatta allo sfondo della riga."
|
1953 |
|
1954 |
-
|
1955 |
-
#: includes/
|
|
|
1956 |
msgid "Background Overlay"
|
1957 |
msgstr "Sfondo overlay"
|
1958 |
|
1959 |
-
|
1960 |
-
#: includes/
|
|
|
1961 |
msgid "Overlay Color"
|
1962 |
msgstr "Colore overlay"
|
1963 |
|
1964 |
-
|
1965 |
-
#: includes/
|
|
|
1966 |
msgid "Overlay Opacity"
|
1967 |
msgstr "Opacità overlay"
|
1968 |
|
1969 |
-
|
1970 |
-
#: includes/
|
|
|
1971 |
msgid "Border"
|
1972 |
msgstr "Bordo"
|
1973 |
|
1974 |
-
|
1975 |
-
#: includes/
|
1976 |
-
|
1977 |
-
"The type of border to use. Double borders must have a width of at least 3px "
|
1978 |
-
"
|
1979 |
-
msgstr ""
|
1980 |
-
"Il tipo di bordo da utilizzare. I bordi doppi devono avere una larghezza di "
|
1981 |
-
"almeno 3px per essere visualizzati correttamente."
|
1982 |
|
1983 |
-
|
1984 |
-
#: includes/
|
|
|
1985 |
msgctxt "Border type."
|
1986 |
msgid "None"
|
1987 |
msgstr "Nessuno"
|
1988 |
|
1989 |
-
|
1990 |
-
#: includes/
|
1991 |
#: modules/separator/separator.php:76
|
|
|
1992 |
msgctxt "Border type."
|
1993 |
msgid "Solid"
|
1994 |
msgstr "Solido"
|
1995 |
|
1996 |
-
|
1997 |
-
#: includes/
|
1998 |
#: modules/separator/separator.php:77
|
|
|
1999 |
msgctxt "Border type."
|
2000 |
msgid "Dashed"
|
2001 |
msgstr "Tratteggiato"
|
2002 |
|
2003 |
-
|
2004 |
-
#: includes/
|
2005 |
#: modules/separator/separator.php:78
|
|
|
2006 |
msgctxt "Border type."
|
2007 |
msgid "Dotted"
|
2008 |
msgstr "Punteggiato"
|
2009 |
|
2010 |
-
|
2011 |
-
#: includes/
|
2012 |
#: modules/separator/separator.php:79
|
|
|
2013 |
msgctxt "Border type."
|
2014 |
msgid "Double"
|
2015 |
msgstr "Doppio"
|
2016 |
|
2017 |
-
|
2018 |
-
#: includes/
|
|
|
2019 |
msgid "Top Width"
|
2020 |
msgstr "Larghezza superiore"
|
2021 |
|
2022 |
-
|
2023 |
-
#: includes/
|
|
|
2024 |
msgid "Bottom Width"
|
2025 |
msgstr "Larghezza inferiore"
|
2026 |
|
2027 |
-
|
2028 |
-
#: includes/
|
|
|
2029 |
msgid "Left Width"
|
2030 |
msgstr "Larghezza sinistra"
|
2031 |
|
2032 |
-
|
2033 |
-
#: includes/
|
|
|
2034 |
msgid "Right Width"
|
2035 |
msgstr "Larghezza destra"
|
2036 |
|
2037 |
-
|
2038 |
-
#: includes/
|
2039 |
-
#: includes/row-settings.php:518
|
|
|
|
|
2040 |
msgid "Advanced"
|
2041 |
msgstr "Avanzato"
|
2042 |
|
2043 |
-
|
2044 |
-
#: includes/
|
2045 |
-
#: includes/global-settings.php:94
|
|
|
2046 |
#: includes/row-settings.php:521
|
|
|
2047 |
msgid "Margins"
|
2048 |
msgstr "Margini"
|
2049 |
|
2050 |
-
|
2051 |
-
#: includes/column-settings.php:
|
2052 |
-
#: includes/module-settings.php:13
|
2053 |
-
#: includes/row-settings.php:
|
|
|
|
|
|
|
2054 |
msgid "Top"
|
2055 |
msgstr "Alto"
|
2056 |
|
2057 |
-
|
2058 |
-
#: includes/column-settings.php:
|
2059 |
-
#: includes/module-settings.php:25
|
2060 |
-
#: includes/row-settings.php:
|
|
|
|
|
2061 |
#: modules/slideshow/slideshow.php:483
|
|
|
2062 |
msgid "Bottom"
|
2063 |
msgstr "Basso"
|
2064 |
|
2065 |
-
|
2066 |
-
#: includes/column-settings.php:
|
2067 |
-
#: includes/module-settings.php:37
|
2068 |
-
#: includes/row-settings.php:
|
|
|
|
|
2069 |
#: modules/callout/callout.php:254
|
2070 |
-
#: modules/content-slider/content-slider.php:503
|
2071 |
-
#: modules/
|
2072 |
-
#: modules/
|
2073 |
-
#: modules/
|
|
|
|
|
|
|
|
|
2074 |
#: modules/post-slider/post-slider.php:630
|
2075 |
#: modules/post-slider/post-slider.php:649
|
2076 |
#: modules/pricing-table/pricing-table.php:315
|
2077 |
#: modules/social-buttons/social-buttons.php:102
|
|
|
2078 |
msgid "Left"
|
2079 |
msgstr "Sinistra"
|
2080 |
|
2081 |
-
|
2082 |
-
#: includes/column-settings.php:
|
2083 |
-
#: includes/module-settings.php:49
|
2084 |
-
#: includes/row-settings.php:
|
|
|
|
|
2085 |
#: modules/callout/callout.php:255
|
2086 |
-
#: modules/content-slider/content-slider.php:505
|
2087 |
-
#: modules/
|
2088 |
-
#: modules/
|
2089 |
-
#: modules/
|
|
|
|
|
|
|
|
|
2090 |
#: modules/post-slider/post-slider.php:631
|
2091 |
#: modules/post-slider/post-slider.php:650
|
2092 |
#: modules/pricing-table/pricing-table.php:317
|
2093 |
#: modules/social-buttons/social-buttons.php:103
|
|
|
2094 |
msgid "Right"
|
2095 |
msgstr "Destra"
|
2096 |
|
2097 |
-
|
2098 |
-
#: includes/
|
2099 |
-
#: includes/row-settings.php:574
|
|
|
2100 |
#: modules/callout/callout.php:610
|
2101 |
-
#: modules/content-slider/content-slider.php:739
|
|
|
2102 |
#: modules/pricing-table/pricing-table.php:333
|
2103 |
#: modules/subscribe-form/subscribe-form.php:284
|
|
|
2104 |
msgid "Padding"
|
2105 |
msgstr "Padding"
|
2106 |
|
2107 |
-
|
2108 |
-
#: includes/
|
2109 |
-
#: includes/module-settings.php:62
|
|
|
|
|
2110 |
msgid "Responsive Layout"
|
2111 |
msgstr "Layout reattivo"
|
2112 |
|
2113 |
-
|
2114 |
-
#: includes/
|
2115 |
-
#: includes/row-settings.php:631
|
|
|
|
|
2116 |
msgid "Display"
|
2117 |
msgstr "Visualizza"
|
2118 |
|
2119 |
-
|
2120 |
-
#: includes/
|
2121 |
#: includes/row-settings.php:633
|
|
|
2122 |
msgid "Always"
|
2123 |
msgstr "Sempre"
|
2124 |
|
2125 |
-
|
2126 |
-
#: includes/
|
2127 |
#: includes/row-settings.php:634
|
|
|
2128 |
msgid "Large Devices Only"
|
2129 |
msgstr "Solo dispositivi grandi"
|
2130 |
|
2131 |
-
|
2132 |
-
#: includes/
|
2133 |
#: includes/row-settings.php:635
|
|
|
2134 |
msgid "Large & Medium Devices Only"
|
2135 |
msgstr "Solo dispositivi grandi e medi"
|
2136 |
|
2137 |
-
|
2138 |
-
#: includes/
|
2139 |
#: includes/row-settings.php:636
|
|
|
2140 |
msgid "Medium Devices Only"
|
2141 |
msgstr "Solo dispositivi medi"
|
2142 |
|
2143 |
-
|
2144 |
-
#: includes/
|
2145 |
#: includes/row-settings.php:637
|
|
|
2146 |
msgid "Medium & Small Devices Only"
|
2147 |
msgstr "Solo dispositivi medi e piccoli"
|
2148 |
|
2149 |
-
|
2150 |
-
#: includes/
|
2151 |
#: includes/row-settings.php:638
|
|
|
2152 |
msgid "Small Devices Only"
|
2153 |
msgstr "Solo dispositivi piccoli"
|
2154 |
|
2155 |
-
# @ fl-builder
|
2156 |
#: includes/column-settings.php:453
|
|
|
2157 |
msgid "Choose whether to show or hide this column at different device sizes."
|
2158 |
-
msgstr ""
|
2159 |
-
"Scegli se visualizzare o nascondere questa colonna a diverse dimensioni dei "
|
2160 |
-
"dispositivi."
|
2161 |
|
2162 |
-
# @ fl-builder
|
2163 |
#: includes/column-settings.php:460
|
|
|
2164 |
msgid "Medium Device Width"
|
2165 |
msgstr "Larghezza dispositivi medi"
|
2166 |
|
2167 |
-
# @ fl-builder
|
2168 |
#: includes/column-settings.php:461
|
|
|
2169 |
msgid "The width of this column on medium devices such as tablets."
|
2170 |
msgstr "La larghezza della colonna su dispositivi medi come i tablet."
|
2171 |
|
2172 |
-
|
2173 |
-
#: classes/class-fl-builder-fonts.php:
|
2174 |
-
#: classes/class-fl-builder-fonts.php:97
|
2175 |
-
#: includes/column-settings.php:
|
|
|
|
|
2176 |
#: modules/callout/callout.php:285
|
2177 |
-
#: modules/content-slider/content-slider.php:475
|
2178 |
-
#: modules/
|
2179 |
-
#: modules/heading/heading.php:
|
2180 |
-
#: modules/
|
2181 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
2182 |
#: modules/post-slider/post-slider.php:602
|
|
|
2183 |
msgid "Default"
|
2184 |
msgstr "Predefinita"
|
2185 |
|
2186 |
-
|
2187 |
-
#: includes/column-settings.php:
|
2188 |
-
#: modules/button/button.php:203
|
2189 |
-
#: modules/
|
2190 |
-
#: modules/
|
2191 |
-
#: modules/
|
|
|
|
|
|
|
|
|
2192 |
#: modules/social-buttons/social-buttons.php:75
|
|
|
2193 |
msgid "Custom"
|
2194 |
msgstr "Personalizzata"
|
2195 |
|
2196 |
-
# @ fl-builder
|
2197 |
#: includes/column-settings.php:477
|
|
|
2198 |
msgid "Custom Medium Device Width"
|
2199 |
msgstr "Larghezza personalizzata dispositivi medi"
|
2200 |
|
2201 |
-
# @ fl-builder
|
2202 |
#: includes/column-settings.php:488
|
|
|
2203 |
msgid "Small Device Width"
|
2204 |
msgstr "Larghezza dispositivi piccoli"
|
2205 |
|
2206 |
-
# @ fl-builder
|
2207 |
#: includes/column-settings.php:489
|
|
|
2208 |
msgid "The width of this column on small devices such as phones."
|
2209 |
msgstr "La larghezza della colonna su dispositivi piccoli come i telefoni."
|
2210 |
|
2211 |
-
# @ fl-builder
|
2212 |
#: includes/column-settings.php:505
|
|
|
2213 |
msgid "Custom Small Device Width"
|
2214 |
msgstr "Larghezza personalizzata dispositivi piccoli"
|
2215 |
|
2216 |
-
|
2217 |
-
#: includes/
|
2218 |
#: includes/row-settings.php:648
|
|
|
2219 |
msgid "CSS Selectors"
|
2220 |
msgstr "Selettore CSS"
|
2221 |
|
2222 |
-
|
2223 |
-
#: includes/
|
2224 |
-
#: includes/module-settings.php:119
|
|
|
|
|
2225 |
msgid "ID"
|
2226 |
msgstr "ID"
|
2227 |
|
2228 |
-
# @ fl-builder
|
2229 |
#: includes/column-settings.php:522
|
2230 |
-
|
2231 |
-
"A unique ID that will be applied to this column's HTML. Must start with a "
|
2232 |
-
"
|
2233 |
-
msgstr ""
|
2234 |
-
"Un ID univoco che sarà applicato al codice HTML della colonna. Deve iniziare "
|
2235 |
-
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
2236 |
-
"Niente spazi."
|
2237 |
|
2238 |
-
# @ fl-builder
|
2239 |
#: includes/column-settings.php:529
|
|
|
2240 |
msgid "CSS Class"
|
2241 |
msgstr "Classe CSS"
|
2242 |
|
2243 |
-
# @ fl-builder
|
2244 |
#: includes/column-settings.php:530
|
2245 |
-
|
2246 |
-
"A class that will be applied to this column's HTML. Must start with a letter "
|
2247 |
-
"
|
2248 |
-
"classes with spaces."
|
2249 |
-
msgstr ""
|
2250 |
-
"Una classe che sarà applicata al codice HTML di questa colonna. Deve "
|
2251 |
-
"iniziare con una lettera e contenere solo trattini, underscore, lettere o "
|
2252 |
-
"numeri. Separa classi multiple con spazio."
|
2253 |
|
2254 |
-
# @ fl-builder
|
2255 |
#: includes/field-form.php:28
|
2256 |
#, php-format
|
|
|
2257 |
msgctxt "%s stands for form field label."
|
2258 |
msgid "Edit %s"
|
2259 |
msgstr "Modifica %s"
|
2260 |
|
2261 |
-
|
2262 |
-
#: includes/
|
|
|
2263 |
msgid "Select Icon"
|
2264 |
msgstr "Seleziona icona"
|
2265 |
|
2266 |
-
|
2267 |
-
#: includes/field-
|
|
|
2268 |
msgid "Replace"
|
2269 |
msgstr "Sostituisci"
|
2270 |
|
2271 |
-
|
2272 |
-
#: includes/field-
|
2273 |
-
#: includes/ui-js-config.php:
|
2274 |
-
#: includes/ui-js-templates.php:
|
|
|
|
|
|
|
2275 |
msgid "Remove"
|
2276 |
msgstr "Rimuovi"
|
2277 |
|
2278 |
-
# @ fl-builder
|
2279 |
#: includes/field-link.php:3
|
|
|
2280 |
msgid "Select"
|
2281 |
msgstr "Seleziona"
|
2282 |
|
2283 |
-
# @ fl-builder
|
2284 |
#: includes/field-link.php:5
|
|
|
2285 |
msgid "Enter a post title to search."
|
2286 |
msgstr "Inserisci un titolo del post per la ricerca."
|
2287 |
|
2288 |
-
# @ fl-builder
|
2289 |
#: includes/field-link.php:6
|
|
|
2290 |
msgid "Start typing..."
|
2291 |
msgstr "Inizia a digitare..."
|
2292 |
|
2293 |
-
|
2294 |
-
#: includes/
|
2295 |
-
#: includes/settings.php:71
|
2296 |
-
#: includes/
|
|
|
|
|
|
|
2297 |
msgid "Cancel"
|
2298 |
msgstr "Annulla"
|
2299 |
|
2300 |
-
# @ fl-builder
|
2301 |
#: includes/field-multiple-photos.php:20
|
2302 |
#, php-format
|
|
|
2303 |
msgid "1 Photo Selected"
|
2304 |
msgid_plural "%d Photos Selected"
|
2305 |
msgstr[0] "Una foto selezionata"
|
2306 |
msgstr[1] "%d foto selezionate"
|
2307 |
|
2308 |
-
# @ fl-builder
|
2309 |
#: includes/field-multiple-photos.php:22
|
|
|
2310 |
msgid "Create Gallery"
|
2311 |
msgstr "Crea galleria"
|
2312 |
|
2313 |
-
# @ fl-builder
|
2314 |
#: includes/field-multiple-photos.php:23
|
|
|
2315 |
msgid "Edit Gallery"
|
2316 |
msgstr "Modifica galleria"
|
2317 |
|
2318 |
-
# @ fl-builder
|
2319 |
#: includes/field-multiple-photos.php:24
|
|
|
2320 |
msgid "Add Photos"
|
2321 |
msgstr "Aggiungi foto"
|
2322 |
|
2323 |
-
|
2324 |
-
#: includes/
|
|
|
2325 |
msgid "Select Photo"
|
2326 |
msgstr "Seleziona foto"
|
2327 |
|
2328 |
-
|
2329 |
-
#: includes/
|
|
|
2330 |
msgid "Select Video"
|
2331 |
msgstr "Seleziona video"
|
2332 |
|
2333 |
-
# @ fl-builder
|
2334 |
#: includes/field-video.php:17
|
|
|
2335 |
msgid "Replace Video"
|
2336 |
msgstr "Sostituisci video"
|
2337 |
|
2338 |
-
|
2339 |
-
#: includes/
|
2340 |
-
#: includes/user-template-settings.php:7
|
2341 |
-
#: modules/
|
2342 |
-
#: modules/
|
|
|
|
|
|
|
2343 |
#: modules/content-slider/content-slider.php:217
|
2344 |
#: modules/content-slider/content-slider.php:341
|
2345 |
-
#: modules/countdown/countdown.php:81
|
2346 |
-
#: modules/
|
2347 |
-
#: modules/
|
2348 |
-
#: modules/
|
2349 |
-
#: modules/
|
2350 |
-
#: modules/
|
2351 |
-
#: modules/
|
2352 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2353 |
#: modules/social-buttons/social-buttons.php:65
|
2354 |
-
#: modules/subscribe-form/subscribe-form.php:98
|
|
|
2355 |
#: modules/testimonials/testimonials.php:31
|
2356 |
-
#: modules/testimonials/testimonials.php:201
|
2357 |
-
#: modules/
|
|
|
|
|
|
|
2358 |
msgid "General"
|
2359 |
msgstr "Generale"
|
2360 |
|
2361 |
-
# @ fl-builder
|
2362 |
#: includes/global-settings.php:11
|
|
|
2363 |
msgid "Default Page Heading"
|
2364 |
msgstr "Intestazione di pagina predefinita"
|
2365 |
|
2366 |
-
# @ fl-builder
|
2367 |
#: includes/global-settings.php:26
|
2368 |
-
|
2369 |
-
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
2370 |
-
"
|
2371 |
-
"choose no."
|
2372 |
-
msgstr ""
|
2373 |
-
"Scegliendo no, si nasconderà il titolo predefinito del tema per il tipo di "
|
2374 |
-
"post \"Pagina\". Se scegli no, sarà richiesto anche di inserire alcuni CSS "
|
2375 |
-
"base per fare in modo che questo funzioni."
|
2376 |
|
2377 |
-
# @ fl-builder
|
2378 |
#: includes/global-settings.php:30
|
|
|
2379 |
msgid "CSS Selector"
|
2380 |
msgstr "Selettore CSS"
|
2381 |
|
2382 |
-
# @ fl-builder
|
2383 |
#: includes/global-settings.php:32
|
|
|
2384 |
msgid "Enter a CSS selector for the default page heading to hide it."
|
2385 |
-
msgstr ""
|
2386 |
-
"Inserire il selettore CSS per nascondere l'intestazione predefinita della "
|
2387 |
-
"pagina."
|
2388 |
|
2389 |
-
# @ fl-builder
|
2390 |
#: includes/global-settings.php:37
|
|
|
2391 |
msgid "Rows"
|
2392 |
msgstr "Righe"
|
2393 |
|
2394 |
-
# @ fl-builder
|
2395 |
#: includes/global-settings.php:57
|
|
|
2396 |
msgid "Max Width"
|
2397 |
msgstr "Larghezza max"
|
2398 |
|
2399 |
-
# @ fl-builder
|
2400 |
#: includes/global-settings.php:62
|
2401 |
-
|
2402 |
-
"All rows will default to this width. You can override this and make a row "
|
2403 |
-
"
|
2404 |
-
msgstr ""
|
2405 |
-
"Tutte le righe avranno questa larghezza per impostazione predefinita. Potete "
|
2406 |
-
"ignorarla e creare una riga a piena larghezza nelle impostazioni di ciascuna "
|
2407 |
-
"riga."
|
2408 |
|
2409 |
-
# @ fl-builder
|
2410 |
#: includes/global-settings.php:66
|
|
|
2411 |
msgid "Default Row Width"
|
2412 |
msgstr "Larghezza predefinita riga"
|
2413 |
|
2414 |
-
|
2415 |
-
#: includes/global-settings.php:
|
2416 |
-
#: includes/row-settings.php:20
|
2417 |
-
#:
|
2418 |
-
#: modules/
|
|
|
|
|
|
|
|
|
2419 |
msgid "Full Width"
|
2420 |
msgstr "Larghezza piena"
|
2421 |
|
2422 |
-
# @ fl-builder
|
2423 |
#: includes/global-settings.php:80
|
|
|
2424 |
msgid "Default Row Content Width"
|
2425 |
msgstr "Larghezza predefinita riga di contenuto"
|
2426 |
|
2427 |
-
# @ fl-builder
|
2428 |
#: includes/global-settings.php:127
|
2429 |
-
|
2430 |
-
"When auto spacing is enabled, the builder will automatically adjust the "
|
2431 |
-
"
|
2432 |
-
"reached. Most users will want to leave this enabled."
|
2433 |
-
msgstr ""
|
2434 |
-
"Quando la spaziatura automatica è abilitata, il builder aggiusterà "
|
2435 |
-
"automaticamente i margini e il padding nel tuo layout non appena viene "
|
2436 |
-
"raggiunto il breakpoint per dispositivi piccoli. La maggior parte degli "
|
2437 |
-
"utenti vorrà lasciare questo abilitato."
|
2438 |
|
2439 |
-
# @ fl-builder
|
2440 |
#: includes/global-settings.php:131
|
|
|
2441 |
msgid "Medium Device Breakpoint"
|
2442 |
msgstr "Breakpoint dispositivi medi"
|
2443 |
|
2444 |
-
# @ fl-builder
|
2445 |
#: includes/global-settings.php:136
|
2446 |
-
|
2447 |
-
"The browser width at which the layout will adjust for medium devices such as "
|
2448 |
-
"
|
2449 |
-
msgstr ""
|
2450 |
-
"La larghezza del browser a cui il layout si adatterà per dispositivi medi "
|
2451 |
-
"come i tablet."
|
2452 |
|
2453 |
-
# @ fl-builder
|
2454 |
#: includes/global-settings.php:140
|
|
|
2455 |
msgid "Small Device Breakpoint"
|
2456 |
msgstr "Breakpoint dispositivi piccoli"
|
2457 |
|
2458 |
-
# @ fl-builder
|
2459 |
#: includes/global-settings.php:145
|
2460 |
-
|
2461 |
-
"The browser width at which the layout will adjust for small devices such as "
|
2462 |
-
"
|
2463 |
-
msgstr ""
|
2464 |
-
"La larghezza del browser a cui il layout si adatterà per dispositivi piccoli "
|
2465 |
-
"come i telefoni."
|
2466 |
|
2467 |
-
# @ fl-builder
|
2468 |
#: includes/icon-selector.php:5
|
|
|
2469 |
msgctxt "Select option for showing all icon libraries."
|
2470 |
msgid "All Libraries"
|
2471 |
msgstr "Tutte le librerie"
|
2472 |
|
2473 |
-
# @ fl-builder
|
2474 |
#: includes/loop-settings.php:20
|
|
|
2475 |
msgid "Post Type"
|
2476 |
msgstr "Tipo di post"
|
2477 |
|
2478 |
-
# @ fl-builder
|
2479 |
#: includes/loop-settings.php:26
|
|
|
2480 |
msgid "Order By"
|
2481 |
msgstr "Ordina per"
|
2482 |
|
2483 |
-
|
2484 |
-
#:
|
2485 |
#: modules/post-carousel/post-carousel.php:342
|
2486 |
-
#: modules/post-grid/post-grid.php:167
|
|
|
2487 |
#: modules/woocommerce/woocommerce.php:194
|
|
|
2488 |
msgid "Date"
|
2489 |
msgstr "Data"
|
2490 |
|
2491 |
-
# @ fl-builder
|
2492 |
#: includes/loop-settings.php:30
|
|
|
2493 |
msgid "Date Last Modified"
|
2494 |
msgstr "Data ultima modifica"
|
2495 |
|
2496 |
-
|
2497 |
-
#:
|
2498 |
#: modules/pricing-table/pricing-table.php:137
|
2499 |
#: modules/pricing-table/pricing-table.php:141
|
|
|
2500 |
msgid "Title"
|
2501 |
msgstr "Titolo"
|
2502 |
|
2503 |
-
|
2504 |
-
#:
|
2505 |
-
#: modules/post-grid/post-grid.php:158
|
|
|
|
|
2506 |
msgid "Author"
|
2507 |
msgstr "Autore"
|
2508 |
|
2509 |
-
# @ fl-builder
|
2510 |
#: includes/loop-settings.php:33
|
|
|
2511 |
msgid "Comment Count"
|
2512 |
msgstr "Conteggio commenti"
|
2513 |
|
2514 |
-
# @ fl-builder
|
2515 |
#: includes/loop-settings.php:34
|
|
|
2516 |
msgid "Menu Order"
|
2517 |
msgstr "Ordine del menu"
|
2518 |
|
2519 |
-
# @ fl-builder
|
2520 |
#: includes/loop-settings.php:35
|
|
|
2521 |
msgid "Random"
|
2522 |
msgstr "Casuale"
|
2523 |
|
2524 |
-
# @ fl-builder
|
2525 |
#: includes/loop-settings.php:42
|
|
|
2526 |
msgid "Order"
|
2527 |
msgstr "Ordine"
|
2528 |
|
2529 |
-
|
2530 |
-
#:
|
|
|
2531 |
msgid "Descending"
|
2532 |
msgstr "Decrescente"
|
2533 |
|
2534 |
-
|
2535 |
-
#:
|
|
|
2536 |
msgid "Ascending"
|
2537 |
msgstr "Ascendente"
|
2538 |
|
2539 |
-
# @ fl-builder
|
2540 |
#: includes/loop-settings.php:52
|
|
|
2541 |
msgctxt "How many posts to skip."
|
2542 |
msgid "Offset"
|
2543 |
msgstr "Offset"
|
2544 |
|
2545 |
-
# @ fl-builder
|
2546 |
#: includes/loop-settings.php:55
|
|
|
2547 |
msgid "Skip this many posts that match the specified criteria."
|
2548 |
msgstr "Salta questo numero di post che corrispondono ai criteri specificati."
|
2549 |
|
2550 |
-
# @ fl-builder
|
2551 |
#: includes/loop-settings.php:62
|
|
|
2552 |
msgid "Filter"
|
2553 |
msgstr "Filtro"
|
2554 |
|
2555 |
-
# @ fl-builder
|
2556 |
#: includes/loop-settings.php:73
|
2557 |
#, php-format
|
|
|
2558 |
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
2559 |
-
msgstr ""
|
2560 |
-
"Immettere un elenco delimitato da virgole di %s. Verranno mostrati solo "
|
2561 |
-
"questi %s."
|
2562 |
|
2563 |
-
# @ fl-builder
|
2564 |
#: includes/loop-settings.php:86
|
2565 |
#, php-format
|
2566 |
-
|
2567 |
-
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
2568 |
-
msgstr ""
|
2569 |
-
"Immettere un elenco delimitato da virgole di %s. Verranno mostrati soli gli "
|
2570 |
-
"articoli con queste %s."
|
2571 |
|
2572 |
-
# @ fl-builder
|
2573 |
#: includes/loop-settings.php:100
|
|
|
2574 |
msgid "Authors"
|
2575 |
msgstr "Autori"
|
2576 |
|
2577 |
-
# @ fl-builder
|
2578 |
#: includes/loop-settings.php:101
|
2579 |
-
|
2580 |
-
"Enter a comma separated list of authors usernames. Only posts with these "
|
2581 |
-
"
|
2582 |
-
msgstr ""
|
2583 |
-
"Immettere un elenco delimitato da virgole di nomi di autori. Verranno "
|
2584 |
-
"visualizzati solo i post di questi autori."
|
2585 |
|
2586 |
-
# @ fl-builder
|
2587 |
#: includes/module-settings.php:75
|
|
|
2588 |
msgid "Choose whether to show or hide this module at different device sizes."
|
2589 |
-
msgstr ""
|
2590 |
-
"Scegli se visualizzare o nascondere questo modulo a diverse dimensioni dei "
|
2591 |
-
"dispositivi."
|
2592 |
|
2593 |
-
# @ fl-builder
|
2594 |
#: includes/module-settings.php:83
|
|
|
2595 |
msgid "Animation"
|
2596 |
msgstr "Animazione"
|
2597 |
|
2598 |
-
# @ fl-builder
|
2599 |
#: includes/module-settings.php:89
|
|
|
2600 |
msgctxt "Animation style."
|
2601 |
msgid "None"
|
2602 |
msgstr "Nessuno"
|
2603 |
|
2604 |
-
# @ fl-builder
|
2605 |
#: includes/module-settings.php:90
|
|
|
2606 |
msgctxt "Animation style."
|
2607 |
msgid "Fade In"
|
2608 |
msgstr "Dissolvenza in entrata"
|
2609 |
|
2610 |
-
# @ fl-builder
|
2611 |
#: includes/module-settings.php:91
|
|
|
2612 |
msgctxt "Animation style."
|
2613 |
msgid "Slide Left"
|
2614 |
msgstr "Scorri sinistra"
|
2615 |
|
2616 |
-
# @ fl-builder
|
2617 |
#: includes/module-settings.php:92
|
|
|
2618 |
msgctxt "Animation style."
|
2619 |
msgid "Slide Right"
|
2620 |
msgstr "Scorri destra"
|
2621 |
|
2622 |
-
# @ fl-builder
|
2623 |
#: includes/module-settings.php:93
|
|
|
2624 |
msgctxt "Animation style."
|
2625 |
msgid "Slide Up"
|
2626 |
msgstr "Scorri alto"
|
2627 |
|
2628 |
-
# @ fl-builder
|
2629 |
#: includes/module-settings.php:94
|
|
|
2630 |
msgctxt "Animation style."
|
2631 |
msgid "Slide Down"
|
2632 |
msgstr "Scorri basso"
|
2633 |
|
2634 |
-
# @ fl-builder
|
2635 |
#: includes/module-settings.php:102
|
2636 |
#: modules/content-slider/content-slider.php:256
|
2637 |
#: modules/post-carousel/post-carousel.php:146
|
2638 |
#: modules/post-slider/post-slider.php:363
|
2639 |
#: modules/testimonials/testimonials.php:92
|
|
|
2640 |
msgid "Delay"
|
2641 |
msgstr "Ritardo"
|
2642 |
|
2643 |
-
|
2644 |
-
#: includes/
|
2645 |
-
#: includes/row-settings.php:318
|
|
|
2646 |
#: modules/content-slider/content-slider.php:277
|
2647 |
#: modules/post-carousel/post-carousel.php:149
|
2648 |
#: modules/post-carousel/post-carousel.php:165
|
2649 |
#: modules/post-slider/post-slider.php:366
|
2650 |
-
#: modules/post-slider/post-slider.php:391
|
2651 |
-
#: modules/slideshow/slideshow.php:
|
|
|
|
|
2652 |
#: modules/testimonials/testimonials.php:96
|
2653 |
#: modules/testimonials/testimonials.php:113
|
|
|
2654 |
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
2655 |
msgid "seconds"
|
2656 |
msgstr "secondi"
|
2657 |
|
2658 |
-
# @ fl-builder
|
2659 |
#: includes/module-settings.php:107
|
|
|
2660 |
msgid "The amount of time in seconds before this animation starts."
|
2661 |
msgstr "Periodo di tempo in secondi prima dell'inizio di questa animazione."
|
2662 |
|
2663 |
-
# @ fl-builder
|
2664 |
#: includes/module-settings.php:120
|
2665 |
-
|
2666 |
-
"A unique ID that will be applied to this module's HTML. Must start with a "
|
2667 |
-
"
|
2668 |
-
msgstr ""
|
2669 |
-
"Un ID univoco che sarà applicato al codice HTML del modulo. Deve iniziare "
|
2670 |
-
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
2671 |
-
"Niente spazi."
|
2672 |
|
2673 |
-
|
2674 |
-
#: includes/
|
|
|
2675 |
msgid "Class"
|
2676 |
msgstr "Classe"
|
2677 |
|
2678 |
-
# @ fl-builder
|
2679 |
#: includes/module-settings.php:128
|
2680 |
-
|
2681 |
-
"A class that will be applied to this module's HTML. Must start with a letter "
|
2682 |
-
"
|
2683 |
-
"classes with spaces."
|
2684 |
-
msgstr ""
|
2685 |
-
"Una classe che sarà applicata al codice HTML di questo modulo. Deve iniziare "
|
2686 |
-
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
2687 |
-
"Separa classi multiple con spazio."
|
2688 |
|
2689 |
-
# @ fl-builder
|
2690 |
#: includes/node-template-settings.php:4
|
2691 |
#, php-format
|
|
|
2692 |
msgctxt "%s stands for the type of node template being saved."
|
2693 |
msgid "Save %s Template"
|
2694 |
msgstr "Salva il modello %s"
|
2695 |
|
2696 |
-
# @ fl-builder
|
2697 |
#: includes/node-template-settings.php:14
|
2698 |
#: includes/user-template-settings.php:15
|
|
|
2699 |
msgctxt "Template name."
|
2700 |
msgid "Name"
|
2701 |
msgstr "Nome"
|
2702 |
|
2703 |
-
# @ fl-builder
|
2704 |
#: includes/node-template-settings.php:18
|
|
|
2705 |
msgctxt "Whether this is a global template or not."
|
2706 |
msgid "Global"
|
2707 |
msgstr "Globale"
|
2708 |
|
2709 |
-
# @ fl-builder
|
2710 |
#: includes/node-template-settings.php:19
|
2711 |
-
|
2712 |
-
"Global templates can be added to multiple pages and edited in one place."
|
2713 |
-
msgstr ""
|
2714 |
-
"I modelli globali possono essere aggiunti a più pagine e modificati in un "
|
2715 |
-
"singolo posto. "
|
2716 |
|
2717 |
-
|
2718 |
-
#: includes/
|
2719 |
#: includes/ui-js-templates.php:12
|
|
|
2720 |
msgid "Row Settings"
|
2721 |
msgstr "Impostazioni di riga"
|
2722 |
|
2723 |
-
|
2724 |
-
#:
|
2725 |
#: modules/content-slider/content-slider.php:510
|
2726 |
#: modules/pricing-table/pricing-table.php:303
|
|
|
2727 |
msgid "Width"
|
2728 |
msgstr "Larghezza"
|
2729 |
|
2730 |
-
# @ fl-builder
|
2731 |
#: includes/row-settings.php:27
|
2732 |
-
|
2733 |
-
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
2734 |
-
"
|
2735 |
-
msgstr ""
|
2736 |
-
"Le righe a larghezza piena si estendono per la larghezza di pagina da bordo "
|
2737 |
-
"a bordo. Le righe fisse non sono più ampie rispetto alla larghezza massima "
|
2738 |
-
"scelta nelle impostazioni globali."
|
2739 |
|
2740 |
-
# @ fl-builder
|
2741 |
#: includes/row-settings.php:34
|
|
|
2742 |
msgid "Content Width"
|
2743 |
msgstr "Larghezza contenuto"
|
2744 |
|
2745 |
-
# @ fl-builder
|
2746 |
#: includes/row-settings.php:40
|
2747 |
-
|
2748 |
-
"Full width content spans the width of the page from edge to edge. Fixed "
|
2749 |
-
"
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
#:
|
2757 |
-
#: modules/
|
2758 |
-
#: modules/
|
2759 |
-
#: modules/
|
2760 |
-
#: modules/post-
|
|
|
2761 |
msgid "Colors"
|
2762 |
msgstr "Colori"
|
2763 |
|
2764 |
-
|
2765 |
-
#:
|
2766 |
#: modules/callout/callout.php:535
|
2767 |
#: modules/content-slider/content-slider.php:555
|
2768 |
#: modules/content-slider/content-slider.php:677
|
2769 |
#: modules/content-slider/content-slider.php:790
|
2770 |
-
#: modules/countdown/countdown.php:182
|
2771 |
-
#: modules/cta/cta.php:
|
2772 |
-
#: modules/
|
2773 |
-
#: modules/
|
|
|
|
|
|
|
|
|
2774 |
#: modules/pricing-table/pricing-table.php:248
|
2775 |
#: modules/subscribe-form/subscribe-form.php:218
|
|
|
2776 |
msgid "Text Color"
|
2777 |
msgstr "Colore del testo"
|
2778 |
|
2779 |
-
# @ fl-builder
|
2780 |
#: includes/row-settings.php:108
|
|
|
2781 |
msgctxt "Background type."
|
2782 |
msgid "Video"
|
2783 |
msgstr "Video"
|
2784 |
|
2785 |
-
# @ fl-builder
|
2786 |
#: includes/row-settings.php:110
|
|
|
2787 |
msgctxt "Background type."
|
2788 |
msgid "Slideshow"
|
2789 |
msgstr "Slideshow"
|
2790 |
|
2791 |
-
# @ fl-builder
|
2792 |
#: includes/row-settings.php:114
|
|
|
2793 |
msgctxt "Background type."
|
2794 |
msgid "Parallax"
|
2795 |
msgstr "Parallasse"
|
2796 |
|
2797 |
-
# @ fl-builder
|
2798 |
#: includes/row-settings.php:216
|
|
|
2799 |
msgid "Background Video"
|
2800 |
msgstr "Video di sfondo"
|
2801 |
|
2802 |
-
|
2803 |
-
#: modules/
|
|
|
2804 |
msgid "Video"
|
2805 |
msgstr "Video"
|
2806 |
|
2807 |
-
# @ fl-builder
|
2808 |
#: includes/row-settings.php:236
|
|
|
2809 |
msgid "Fallback Photo"
|
2810 |
msgstr "Foto di fallback"
|
2811 |
|
2812 |
-
# @ fl-builder
|
2813 |
#: includes/row-settings.php:237
|
|
|
2814 |
msgid "A photo that will be displayed if the video fails to load."
|
2815 |
msgstr "Una foto che verrà visualizzata se non è possibile caricare il video."
|
2816 |
|
2817 |
-
# @ fl-builder
|
2818 |
#: includes/row-settings.php:245
|
|
|
2819 |
msgid "Background Slideshow"
|
2820 |
msgstr "Sfondo Slideshow"
|
2821 |
|
2822 |
-
|
2823 |
-
#:
|
2824 |
#: modules/slideshow/slideshow.php:272
|
|
|
2825 |
msgid "Source"
|
2826 |
msgstr "Sorgente"
|
2827 |
|
2828 |
-
|
2829 |
-
#:
|
2830 |
-
#: modules/gallery/gallery.php:245
|
2831 |
-
#: modules/
|
|
|
|
|
|
|
2832 |
msgid "Media Library"
|
2833 |
msgstr "Libreria multimediale"
|
2834 |
|
2835 |
-
|
2836 |
-
#:
|
2837 |
#: modules/slideshow/slideshow.php:278
|
2838 |
-
|
2839 |
-
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
2840 |
-
"
|
2841 |
-
"accessed by using the get a link function in your SmugMug gallery."
|
2842 |
-
msgstr ""
|
2843 |
-
"Estrae immagini dalla libreria multimedia di WordPress o una galleria sul "
|
2844 |
-
"tuo sito SmugMug inserendo la URL del feed RSS di SmugMug. L'URL del feed "
|
2845 |
-
"RSS è accessibile tramite un collegamento nella tua galleria SmugMug."
|
2846 |
|
2847 |
-
|
2848 |
-
#:
|
2849 |
#: modules/slideshow/slideshow.php:290
|
|
|
2850 |
msgid "Photos"
|
2851 |
msgstr "Foto"
|
2852 |
|
2853 |
-
|
2854 |
-
#:
|
2855 |
#: modules/slideshow/slideshow.php:294
|
|
|
2856 |
msgid "Feed URL"
|
2857 |
msgstr "URL del feed"
|
2858 |
|
2859 |
-
|
2860 |
-
#: includes/row-settings.php:
|
2861 |
#: modules/slideshow/slideshow.php:391
|
|
|
2862 |
msgid "Speed"
|
2863 |
msgstr "Velocità"
|
2864 |
|
2865 |
-
|
2866 |
-
#:
|
2867 |
-
#: modules/post-slider/post-slider.php:370
|
|
|
2868 |
#: modules/testimonials/testimonials.php:100
|
|
|
2869 |
msgid "Transition"
|
2870 |
msgstr "Transizione"
|
2871 |
|
2872 |
-
# @ fl-builder
|
2873 |
#: includes/row-settings.php:297
|
|
|
2874 |
msgctxt "Slideshow transition type."
|
2875 |
msgid "None"
|
2876 |
msgstr "Nessuna"
|
2877 |
|
2878 |
-
|
2879 |
-
#:
|
2880 |
#: modules/post-carousel/post-carousel.php:242
|
2881 |
-
#: modules/post-grid/post-grid.php:256
|
|
|
2882 |
#: modules/slideshow/slideshow.php:402
|
2883 |
#: modules/testimonials/testimonials.php:104
|
|
|
2884 |
msgid "Fade"
|
2885 |
msgstr "Dissolvenza"
|
2886 |
|
2887 |
-
|
2888 |
-
#:
|
|
|
2889 |
msgid "Ken Burns"
|
2890 |
msgstr "Ken Burns"
|
2891 |
|
2892 |
-
|
2893 |
-
#:
|
|
|
2894 |
msgid "Slide Horizontal"
|
2895 |
msgstr "Scorri orizontale"
|
2896 |
|
2897 |
-
|
2898 |
-
#:
|
|
|
2899 |
msgid "Slide Vertical"
|
2900 |
msgstr "Scorri verticale"
|
2901 |
|
2902 |
-
|
2903 |
-
#:
|
|
|
2904 |
msgid "Blinds"
|
2905 |
msgstr "Tendina"
|
2906 |
|
2907 |
-
|
2908 |
-
#:
|
|
|
2909 |
msgid "Bars"
|
2910 |
msgstr "Barre"
|
2911 |
|
2912 |
-
|
2913 |
-
#:
|
|
|
2914 |
msgid "Random Bars"
|
2915 |
msgstr "Barre casuali"
|
2916 |
|
2917 |
-
|
2918 |
-
#:
|
|
|
2919 |
msgid "Boxes"
|
2920 |
msgstr "Quadrati"
|
2921 |
|
2922 |
-
|
2923 |
-
#:
|
|
|
2924 |
msgid "Random Boxes"
|
2925 |
msgstr "Quadrati casuali"
|
2926 |
|
2927 |
-
|
2928 |
-
#:
|
|
|
2929 |
msgid "Boxes Grow"
|
2930 |
msgstr "Quadrati ingrandimento"
|
2931 |
|
2932 |
-
|
2933 |
-
#:
|
2934 |
#: modules/post-carousel/post-carousel.php:162
|
2935 |
-
#: modules/post-slider/post-slider.php:388
|
|
|
2936 |
#: modules/testimonials/testimonials.php:109
|
|
|
2937 |
msgid "Transition Speed"
|
2938 |
msgstr "Velocità di transizione"
|
2939 |
|
2940 |
-
|
2941 |
-
#:
|
|
|
2942 |
msgid "Randomize Photos"
|
2943 |
msgstr "Foto casuali"
|
2944 |
|
2945 |
-
# @ fl-builder
|
2946 |
#: includes/row-settings.php:338
|
|
|
2947 |
msgid "Background Parallax"
|
2948 |
msgstr "Sfondo parallasse"
|
2949 |
|
2950 |
-
# @ fl-builder
|
2951 |
#: includes/row-settings.php:352
|
|
|
2952 |
msgid "Fast"
|
2953 |
msgstr "Veloce"
|
2954 |
|
2955 |
-
# @ fl-builder
|
2956 |
#: includes/row-settings.php:353
|
|
|
2957 |
msgctxt "Speed."
|
2958 |
msgid "Medium"
|
2959 |
msgstr "Media"
|
2960 |
|
2961 |
-
# @ fl-builder
|
2962 |
#: includes/row-settings.php:354
|
|
|
2963 |
msgid "Slow"
|
2964 |
msgstr "Lenta"
|
2965 |
|
2966 |
-
# @ fl-builder
|
2967 |
#: includes/row-settings.php:640
|
|
|
2968 |
msgid "Choose whether to show or hide this row at different device sizes."
|
2969 |
-
msgstr ""
|
2970 |
-
"Scegli se mostrare o nascondere questa riga per diverse dimensioni dei "
|
2971 |
-
"dispositivi."
|
2972 |
|
2973 |
-
# @ fl-builder
|
2974 |
#: includes/row-settings.php:653
|
2975 |
-
|
2976 |
-
"A unique ID that will be applied to this row's HTML. Must start with a "
|
2977 |
-
"
|
2978 |
-
msgstr ""
|
2979 |
-
"Un ID univoco che sarà applicato al codice HTML di questa riga. Deve "
|
2980 |
-
"iniziare con una lettera e contenere solo trattini, underscore, lettere o "
|
2981 |
-
"numeri. Niente spazi."
|
2982 |
|
2983 |
-
# @ fl-builder
|
2984 |
#: includes/row-settings.php:661
|
2985 |
-
|
2986 |
-
"A class that will be applied to this row's HTML. Must start with a letter "
|
2987 |
-
"
|
2988 |
-
"classes with spaces."
|
2989 |
-
msgstr ""
|
2990 |
-
"Una classe che sarà applicata al codice HTML di questa riga. Deve iniziare "
|
2991 |
-
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
2992 |
-
"Separa classi multiple con spazio."
|
2993 |
|
2994 |
-
# @ fl-builder
|
2995 |
#: includes/service-settings.php:32
|
|
|
2996 |
msgid "Service"
|
2997 |
msgstr "Servizio"
|
2998 |
|
2999 |
-
# @ fl-builder
|
3000 |
#: includes/settings.php:67
|
|
|
3001 |
msgid "Save"
|
3002 |
msgstr "Salva"
|
3003 |
|
3004 |
-
# @ fl-builder
|
3005 |
#: includes/settings.php:69
|
|
|
3006 |
msgid "Save As..."
|
3007 |
msgstr "Salva come..."
|
3008 |
|
3009 |
-
# @ fl-builder
|
3010 |
#: includes/template-selector.php:4
|
|
|
3011 |
msgid "Layout Templates"
|
3012 |
msgstr "Modelli di layout"
|
3013 |
|
3014 |
-
# @ fl-builder
|
3015 |
#: includes/template-selector.php:17
|
|
|
3016 |
msgid "Your Templates"
|
3017 |
msgstr "I tuoi modelli"
|
3018 |
|
3019 |
-
# @ fl-builder
|
3020 |
#: includes/template-selector.php:53
|
3021 |
-
|
3022 |
-
"You haven't saved any templates yet! To do so, create a layout and save it "
|
3023 |
-
"
|
3024 |
-
msgstr ""
|
3025 |
-
"Non hai ancora salvato nessun modello! Per farlo, crea un layout e salvalo "
|
3026 |
-
"come modello in <strong>Strumenti → Salva modello</strong>."
|
3027 |
|
3028 |
-
# @ fl-builder
|
3029 |
#: includes/template-selector.php:58
|
|
|
3030 |
msgctxt "Template name."
|
3031 |
msgid "Blank"
|
3032 |
msgstr "Vuoto"
|
3033 |
|
3034 |
-
|
3035 |
-
|
3036 |
msgid "What would you like to do?"
|
3037 |
msgstr "Che cosa vorresti fare?"
|
3038 |
|
3039 |
-
|
3040 |
-
|
3041 |
msgid "Change Template"
|
3042 |
msgstr "Cambiare modello"
|
3043 |
|
3044 |
-
|
3045 |
-
|
3046 |
-
msgid ""
|
3047 |
-
"
|
3048 |
-
"really want to do this?"
|
3049 |
-
msgstr ""
|
3050 |
-
"ATTENZIONE! Cambiare il modello sostituirà il layout esistente. Vuoi davvero "
|
3051 |
-
"fare questo?"
|
3052 |
|
3053 |
-
|
3054 |
-
|
3055 |
msgid "Column"
|
3056 |
msgstr "Colonna"
|
3057 |
|
3058 |
-
|
3059 |
-
|
3060 |
-
msgid ""
|
3061 |
-
"
|
3062 |
-
msgstr ""
|
3063 |
-
"Si prega di selezionare un layout di sfondo o un layout contenuto prima di "
|
3064 |
-
"inviare."
|
3065 |
|
3066 |
-
|
3067 |
-
|
3068 |
msgid "Remove Account"
|
3069 |
msgstr "Rimuovi account"
|
3070 |
|
3071 |
-
|
3072 |
-
|
3073 |
-
msgid ""
|
3074 |
-
"
|
3075 |
-
"connected to it will be affected."
|
3076 |
-
msgstr ""
|
3077 |
-
"Sei sicuro di voler rimuovere questo account? I moduli che gli sono connessi "
|
3078 |
-
"saranno influenzati."
|
3079 |
|
3080 |
-
|
3081 |
-
|
3082 |
msgid "Do you really want to delete this item?"
|
3083 |
msgstr "Vuoi davvero eliminare questo elemento?"
|
3084 |
|
3085 |
-
# @ fl-builder
|
3086 |
-
#: includes/ui-js-config.php:42
|
3087 |
-
msgid ""
|
3088 |
-
"WARNING! You are about to delete a global template that may be linked to "
|
3089 |
-
"other pages. Do you really want to delete this template and unlink it?"
|
3090 |
-
msgstr ""
|
3091 |
-
"ATTENZIONE! Stai per eliminare un modello globale che può essere collegato "
|
3092 |
-
"ad altre pagine. Vuoi veramente eliminare questo modello e scollegarlo?"
|
3093 |
-
|
3094 |
-
# @ fl-builder
|
3095 |
#: includes/ui-js-config.php:43
|
|
|
|
|
|
|
|
|
|
|
|
|
3096 |
msgid "Discard Changes"
|
3097 |
msgstr "Scarta modifiche"
|
3098 |
|
3099 |
-
|
3100 |
-
|
3101 |
-
msgid ""
|
3102 |
-
"
|
3103 |
-
"not published will be lost."
|
3104 |
-
msgstr ""
|
3105 |
-
"Vuoi veramente scartare queste modifiche? Tutti i cambiamenti che non sono "
|
3106 |
-
"pubblicati saranno persi."
|
3107 |
|
3108 |
-
|
3109 |
-
|
3110 |
msgid "Save Draft"
|
3111 |
msgstr "Salva bozza"
|
3112 |
|
3113 |
-
|
3114 |
-
#: includes/ui-js-
|
3115 |
#: includes/ui-js-templates.php:84
|
|
|
3116 |
msgid "Duplicate"
|
3117 |
msgstr "Duplica"
|
3118 |
|
3119 |
-
|
3120 |
-
|
3121 |
msgid "Drop a row layout or module to get started!"
|
3122 |
msgstr "Trascina un layout di riga o un modulo per iniziare!"
|
3123 |
|
3124 |
-
# @ fl-builder
|
3125 |
-
#: includes/ui-js-config.php:55
|
3126 |
-
msgid ""
|
3127 |
-
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
3128 |
-
"not functioning as expected the cause is most likely this error. Please help "
|
3129 |
-
"us by disabling all plugins and testing Beaver Builder while reactivating "
|
3130 |
-
"each to determine if the issue is related to a third party plugin."
|
3131 |
-
msgstr ""
|
3132 |
-
"Beaver Builder ha intercettato il seguente errore JavaScript. Se Beaver "
|
3133 |
-
"Builder non funziona come previsto la causa è probabilmente questo errore. "
|
3134 |
-
"Vi preghiamo di aiutarci disabilitando tutti i plugin e provando Beaver "
|
3135 |
-
"Builder dopo averli riattivati uno ad uno per determinare se il problema è "
|
3136 |
-
"legato a un plugin di terze parti."
|
3137 |
-
|
3138 |
-
# @ fl-builder
|
3139 |
#: includes/ui-js-config.php:56
|
|
|
|
|
|
|
|
|
|
|
|
|
3140 |
msgid "Full Size"
|
3141 |
msgstr "Tutta larghezza"
|
3142 |
|
3143 |
-
|
3144 |
-
|
3145 |
msgid "Get Help"
|
3146 |
msgstr "Richiedi assistenza"
|
3147 |
|
3148 |
-
|
3149 |
-
|
3150 |
msgid "\"{message}\" on line {line} of {file}."
|
3151 |
msgstr "\"{message}\" nella riga {line} di {file}."
|
3152 |
|
3153 |
-
|
3154 |
-
|
3155 |
msgid "Insert"
|
3156 |
msgstr "Inserisci"
|
3157 |
|
3158 |
-
|
3159 |
-
#:
|
|
|
3160 |
msgid "Large"
|
3161 |
msgstr "Grande"
|
3162 |
|
3163 |
-
|
3164 |
-
|
3165 |
msgid "Manage Templates"
|
3166 |
msgstr "Gestione modelli"
|
3167 |
|
3168 |
-
|
3169 |
-
#:
|
|
|
3170 |
msgid "Medium"
|
3171 |
msgstr "Medio"
|
3172 |
|
3173 |
-
|
3174 |
-
|
3175 |
msgid "Module"
|
3176 |
msgstr "Modulo"
|
3177 |
|
3178 |
-
|
3179 |
-
|
3180 |
msgid "Module Template Saved!"
|
3181 |
msgstr "Modello del modulo salvato!"
|
3182 |
|
3183 |
-
|
3184 |
-
#: includes/ui-js-
|
3185 |
#: includes/ui-js-templates.php:80
|
|
|
3186 |
msgid "Move"
|
3187 |
msgstr "Sposta"
|
3188 |
|
3189 |
-
|
3190 |
-
|
3191 |
msgid "New Column"
|
3192 |
msgstr "Nuova colonna"
|
3193 |
|
3194 |
-
|
3195 |
-
|
3196 |
msgid "New Row"
|
3197 |
msgstr "Nuova riga"
|
3198 |
|
3199 |
-
|
3200 |
-
|
3201 |
msgid "No results found."
|
3202 |
msgstr "Nessun risultato trovato."
|
3203 |
|
3204 |
-
|
3205 |
-
#: includes/ui-
|
|
|
3206 |
msgid "No saved rows found."
|
3207 |
msgstr "Nessuna riga salvata trovata."
|
3208 |
|
3209 |
-
|
3210 |
-
#: includes/ui-
|
|
|
3211 |
msgid "No saved modules found."
|
3212 |
msgstr "Nessun modulo salvato trovato."
|
3213 |
|
3214 |
-
|
3215 |
-
#: includes/ui-js-
|
|
|
3216 |
msgid "OK"
|
3217 |
msgstr "OK"
|
3218 |
|
3219 |
-
|
3220 |
-
#:
|
|
|
3221 |
msgid "Photo Page"
|
3222 |
msgstr "Pagina di foto"
|
3223 |
|
3224 |
-
|
3225 |
-
|
3226 |
msgid "Photo Selected"
|
3227 |
msgstr "Foto selezionata"
|
3228 |
|
3229 |
-
|
3230 |
-
|
3231 |
msgid "Photos Selected"
|
3232 |
msgstr "Foto selezionate"
|
3233 |
|
3234 |
-
|
3235 |
-
#: includes/ui-js-config.php:78
|
3236 |
#: modules/subscribe-form/includes/frontend.php:15
|
|
|
3237 |
msgid "Please Wait..."
|
3238 |
msgstr "Si prega di attendere..."
|
3239 |
|
3240 |
-
|
3241 |
-
|
3242 |
msgid "Publish Changes"
|
3243 |
msgstr "Pubblica le modifiche"
|
3244 |
|
3245 |
-
|
3246 |
-
#: includes/ui-js-
|
|
|
3247 |
msgid "Row"
|
3248 |
msgstr "Riga"
|
3249 |
|
3250 |
-
|
3251 |
-
|
3252 |
msgid "Row Template Saved!"
|
3253 |
msgstr "Modello di riga salvato!"
|
3254 |
|
3255 |
-
|
3256 |
-
|
3257 |
msgid "Save Core Template"
|
3258 |
msgstr "Salva il modello Core"
|
3259 |
|
3260 |
-
|
3261 |
-
#: includes/
|
|
|
3262 |
msgid "Save Template"
|
3263 |
msgstr "Salva modello"
|
3264 |
|
3265 |
-
|
3266 |
-
|
3267 |
msgid "Select Photos"
|
3268 |
msgstr "Seleziona foto"
|
3269 |
|
3270 |
-
|
3271 |
-
|
3272 |
msgid "Please select an account before saving."
|
3273 |
msgstr "Si prega di selezionare un'account prima di salvare."
|
3274 |
|
3275 |
-
|
3276 |
-
|
3277 |
msgid "Please connect an account before saving."
|
3278 |
msgstr "Si prega di connettere un account prima di salvare."
|
3279 |
|
3280 |
-
|
3281 |
-
|
3282 |
msgid "Please select a list before saving."
|
3283 |
msgstr "Si prega di selezionare una lista prima di salvare."
|
3284 |
|
3285 |
-
|
3286 |
-
|
3287 |
msgid "Take a Tour"
|
3288 |
msgstr "Inizia visita guidata"
|
3289 |
|
3290 |
-
|
3291 |
-
|
3292 |
msgid "Append New Layout"
|
3293 |
msgstr "Aggiungi nuovo Layout"
|
3294 |
|
3295 |
-
|
3296 |
-
|
3297 |
msgid "Replace Existing Layout"
|
3298 |
msgstr "Sostituisci Layout esistente"
|
3299 |
|
3300 |
-
|
3301 |
-
|
3302 |
msgid "Template Saved!"
|
3303 |
msgstr "Modello salvato!"
|
3304 |
|
3305 |
-
|
3306 |
-
#:
|
|
|
3307 |
msgid "Thumbnail"
|
3308 |
msgstr "Miniatura"
|
3309 |
|
3310 |
-
|
3311 |
-
|
3312 |
msgid "Next"
|
3313 |
msgstr "Avanti"
|
3314 |
|
3315 |
-
|
3316 |
-
#:
|
|
|
3317 |
msgid "Get Started"
|
3318 |
msgstr "Inizia"
|
3319 |
|
3320 |
-
|
3321 |
-
|
3322 |
msgid "Choose a Template"
|
3323 |
msgstr "Scegli un modello"
|
3324 |
|
3325 |
-
# @ fl-builder
|
3326 |
-
#: includes/ui-js-config.php:103
|
3327 |
-
msgid ""
|
3328 |
-
"Get started by choosing a layout template to customize, or build a page from "
|
3329 |
-
"scratch by selecting the blank layout template."
|
3330 |
-
msgstr ""
|
3331 |
-
"Inizia scegliendo un modello di layout da personalizzare, o costruisci una "
|
3332 |
-
"pagina da zero selezionando il modello di layout vuoto."
|
3333 |
-
|
3334 |
-
# @ fl-builder
|
3335 |
#: includes/ui-js-config.php:104
|
|
|
|
|
|
|
|
|
|
|
|
|
3336 |
msgid "Add Rows"
|
3337 |
msgstr "Aggiungi righe"
|
3338 |
|
3339 |
-
|
3340 |
-
|
3341 |
-
msgid ""
|
3342 |
-
"
|
3343 |
-
"and dropping row layouts onto the page."
|
3344 |
-
msgstr ""
|
3345 |
-
"Aggiungi righe multi-colonna, aggiusta gli spazi, aggiungi sfondi e altro "
|
3346 |
-
"trascinando e rilasciando layout di riga nella pagina."
|
3347 |
|
3348 |
-
# @ fl-builder
|
3349 |
-
#: includes/ui-js-config.php:107
|
3350 |
-
msgid ""
|
3351 |
-
"Add new content by dragging and dropping modules or widgets into your row "
|
3352 |
-
"layouts or to create a new row layout."
|
3353 |
-
msgstr ""
|
3354 |
-
"Aggiungi nuovo contenuto trascinando e rilasciando moduli o widget nei tuoi "
|
3355 |
-
"layout di riga o crea un nuovo layout di riga."
|
3356 |
-
|
3357 |
-
# @ fl-builder
|
3358 |
#: includes/ui-js-config.php:108
|
3359 |
-
|
3360 |
-
|
|
|
3361 |
|
3362 |
-
# @ fl-builder
|
3363 |
#: includes/ui-js-config.php:109
|
3364 |
-
|
3365 |
-
"
|
3366 |
-
msgstr ""
|
3367 |
-
"Muovi il mouse su righe, colonne o moduli per modificare e interagire con "
|
3368 |
-
"esse."
|
3369 |
|
3370 |
-
# @ fl-builder
|
3371 |
#: includes/ui-js-config.php:110
|
3372 |
-
|
3373 |
-
"
|
3374 |
-
"
|
3375 |
-
msgstr ""
|
3376 |
-
"Usa i bottoni di azione per compiere azioni come muovere, modificare, "
|
3377 |
-
"duplicare, o cancellare righe, colonne e moduli."
|
3378 |
|
3379 |
-
# @ fl-builder
|
3380 |
#: includes/ui-js-config.php:111
|
3381 |
-
|
3382 |
-
|
|
|
3383 |
|
3384 |
-
# @ fl-builder
|
3385 |
#: includes/ui-js-config.php:112
|
3386 |
-
|
3387 |
-
"
|
3388 |
-
"
|
3389 |
-
msgstr ""
|
3390 |
-
"Usa il pulsante Aggiungi contenuto per aprire il pannello contenuti e "
|
3391 |
-
"aggiungere nuove righe di layout, moduli o widgets."
|
3392 |
|
3393 |
-
# @ fl-builder
|
3394 |
#: includes/ui-js-config.php:113
|
3395 |
-
|
3396 |
-
|
|
|
3397 |
|
3398 |
-
# @ fl-builder
|
3399 |
#: includes/ui-js-config.php:114
|
3400 |
-
|
3401 |
-
"
|
3402 |
-
"
|
3403 |
-
"page content."
|
3404 |
-
msgstr ""
|
3405 |
-
"Usa il pulsante Modelli per scegliere un nuovo modello o appenderne uno al "
|
3406 |
-
"tuo layout. Appendi inserirà il nuovo modello alla fine del contenuto di "
|
3407 |
-
"pagina esistente."
|
3408 |
|
3409 |
-
# @ fl-builder
|
3410 |
#: includes/ui-js-config.php:115
|
|
|
|
|
|
|
|
|
|
|
|
|
3411 |
msgid "Helpful Tools"
|
3412 |
msgstr "Strumenti utili"
|
3413 |
|
3414 |
-
|
3415 |
-
|
3416 |
msgid "Publish Your Changes"
|
3417 |
msgstr "Pubblica le modifiche"
|
3418 |
|
3419 |
-
# @ fl-builder
|
3420 |
-
#: includes/ui-js-config.php:118
|
3421 |
-
msgid ""
|
3422 |
-
"Once you're finished, click the Done button to publish your changes, save a "
|
3423 |
-
"draft or revert back to the last published state."
|
3424 |
-
msgstr ""
|
3425 |
-
"Quando hai finito, clicca sul pulsante Fatto per pubblicare le tue "
|
3426 |
-
"modifiche, salvare una bozza o ritornare all'ultima versione pubblicata."
|
3427 |
-
|
3428 |
-
# @ fl-builder
|
3429 |
#: includes/ui-js-config.php:119
|
3430 |
-
|
3431 |
-
|
|
|
3432 |
|
3433 |
-
# @ fl-builder
|
3434 |
#: includes/ui-js-config.php:120
|
3435 |
-
|
3436 |
-
"
|
3437 |
-
"
|
3438 |
-
"help menu. Happy building!"
|
3439 |
-
msgstr ""
|
3440 |
-
"Ora che conosci le basi, sei pronto per iniziare a costruire! Se in "
|
3441 |
-
"qualsiasi momento hai bisogno di aiuto, clicca l'icona aiuto nell'angolo in "
|
3442 |
-
"alto a destra per accedere al menu di aiuto. Buona costruzione!"
|
3443 |
|
3444 |
-
# @ fl-builder
|
3445 |
#: includes/ui-js-config.php:121
|
3446 |
-
|
3447 |
-
"
|
3448 |
-
"
|
3449 |
-
msgstr ""
|
3450 |
-
"Le impostazioni che stai modificando attualmente non verranno salvate se "
|
3451 |
-
"navighi via da questa pagina."
|
3452 |
|
3453 |
-
# @ fl-builder
|
3454 |
#: includes/ui-js-config.php:122
|
|
|
|
|
|
|
|
|
|
|
|
|
3455 |
msgid "View the Knowledge Base"
|
3456 |
msgstr "Leggi la documentazione"
|
3457 |
|
3458 |
-
|
3459 |
-
|
3460 |
msgid "Visit the Forums"
|
3461 |
msgstr "Visita i forum"
|
3462 |
|
3463 |
-
|
3464 |
-
|
3465 |
msgid "Watch the Video"
|
3466 |
msgstr "Visualizza il video"
|
3467 |
|
3468 |
-
|
3469 |
-
#: includes/ui-js-templates.php:
|
|
|
3470 |
msgid "Locked"
|
3471 |
msgstr "Bloccato"
|
3472 |
|
3473 |
-
# @ fl-builder
|
3474 |
#: includes/ui-js-templates.php:82
|
|
|
3475 |
msgid "Settings"
|
3476 |
msgstr "Impostazioni"
|
3477 |
|
3478 |
-
|
3479 |
-
#: includes/ui-js-
|
3480 |
-
|
3481 |
-
"Welcome! It looks like this might be your first time using the builder. "
|
3482 |
-
"
|
3483 |
-
msgstr ""
|
3484 |
-
"Benvenuto! Sembra che questa potrebbe essere la prima volta che utilizzi il "
|
3485 |
-
"builder. Vuoi fare un giro?"
|
3486 |
|
3487 |
-
# @ fl-builder
|
3488 |
#: includes/ui-js-templates.php:151
|
|
|
3489 |
msgid "No Thanks"
|
3490 |
msgstr "No grazie"
|
3491 |
|
3492 |
-
|
3493 |
-
#: includes/ui-js-
|
|
|
3494 |
msgid "Yes Please!"
|
3495 |
msgstr "Si grazie!"
|
3496 |
|
3497 |
-
# @ fl-builder
|
3498 |
#: includes/ui-js-templates.php:159
|
|
|
3499 |
msgid "Getting Started Video"
|
3500 |
msgstr "Video per iniziare"
|
3501 |
|
3502 |
-
# @ fl-builder
|
3503 |
#: includes/ui-panel-node-templates.php:6
|
|
|
3504 |
msgid "Saved Rows"
|
3505 |
msgstr "Righe salvate"
|
3506 |
|
3507 |
-
# @ fl-builder
|
3508 |
#: includes/ui-panel-node-templates.php:37
|
|
|
3509 |
msgid "Saved Modules"
|
3510 |
msgstr "Moduli salvati"
|
3511 |
|
3512 |
-
# @ fl-builder
|
3513 |
#: includes/ui-panel.php:11
|
|
|
3514 |
msgid "Row Layouts"
|
3515 |
msgstr "Layout di riga"
|
3516 |
|
3517 |
-
# @ fl-builder
|
3518 |
#: includes/ui-panel.php:15
|
|
|
3519 |
msgid "1 Column"
|
3520 |
msgstr "1 colonna"
|
3521 |
|
3522 |
-
# @ fl-builder
|
3523 |
#: includes/ui-panel.php:16
|
|
|
3524 |
msgid "2 Columns"
|
3525 |
msgstr "2 colonne"
|
3526 |
|
3527 |
-
# @ fl-builder
|
3528 |
#: includes/ui-panel.php:17
|
|
|
3529 |
msgid "3 Columns"
|
3530 |
msgstr "3 colonne"
|
3531 |
|
3532 |
-
# @ fl-builder
|
3533 |
#: includes/ui-panel.php:18
|
|
|
3534 |
msgid "4 Columns"
|
3535 |
msgstr "4 colonne"
|
3536 |
|
3537 |
-
# @ fl-builder
|
3538 |
#: includes/ui-panel.php:19
|
|
|
3539 |
msgid "5 Columns"
|
3540 |
msgstr "5 colonne"
|
3541 |
|
3542 |
-
# @ fl-builder
|
3543 |
#: includes/ui-panel.php:20
|
|
|
3544 |
msgid "6 Columns"
|
3545 |
msgstr "6 colonne"
|
3546 |
|
3547 |
-
# @ fl-builder
|
3548 |
#: includes/ui-panel.php:21
|
|
|
3549 |
msgid "Left Sidebar"
|
3550 |
msgstr "Barra laterale sinistra"
|
3551 |
|
3552 |
-
# @ fl-builder
|
3553 |
#: includes/ui-panel.php:22
|
|
|
3554 |
msgid "Right Sidebar"
|
3555 |
msgstr "Barra laterale destra"
|
3556 |
|
3557 |
-
# @ fl-builder
|
3558 |
#: includes/ui-panel.php:23
|
|
|
3559 |
msgid "Left & Right Sidebar"
|
3560 |
msgstr "Barra laterale sinistra e destra"
|
3561 |
|
3562 |
-
# @ fl-builder
|
3563 |
#: includes/updater/classes/class-fl-updater.php:294
|
|
|
3564 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
3565 |
msgstr "<strong>AGGIORNAMENTO NON DISPONIBILE!</strong>"
|
3566 |
|
3567 |
-
# @ fl-builder
|
3568 |
#: includes/updater/classes/class-fl-updater.php:296
|
|
|
3569 |
msgid "Please subscribe to enable automatic updates for this plugin."
|
3570 |
-
msgstr ""
|
3571 |
-
"Si prega di abbonarsi per abilitare gli aggiornamenti automatici per questo "
|
3572 |
-
"plugin."
|
3573 |
|
3574 |
-
# @ fl-builder
|
3575 |
#: includes/updater/classes/class-fl-updater.php:300
|
3576 |
#: includes/updater/includes/form.php:6
|
|
|
3577 |
msgid "Subscribe Now"
|
3578 |
msgstr "Abbonati ora"
|
3579 |
|
3580 |
-
# @ fl-builder
|
3581 |
#: includes/updater/includes/form.php:5
|
3582 |
-
|
3583 |
-
"UPDATES UNAVAILABLE! Please subscribe or enter your license key below to "
|
3584 |
-
"
|
3585 |
-
msgstr ""
|
3586 |
-
"AGGIORNAMENTI NON DISPONIBILI! Si prega di iscriversi o inserire di seguito "
|
3587 |
-
"il codice di licenza per abilitare gli aggiornamenti automatici."
|
3588 |
|
3589 |
-
# @ fl-builder
|
3590 |
#: includes/updater/includes/form.php:11
|
|
|
3591 |
msgid "Updates & Support Subscription"
|
3592 |
msgstr "Abbonamento supporto e aggiornamenti"
|
3593 |
|
3594 |
-
# @ fl-builder
|
3595 |
#: includes/updater/includes/form.php:14
|
|
|
3596 |
msgid "Active!"
|
3597 |
msgstr "Attivo!"
|
3598 |
|
3599 |
-
# @ fl-builder
|
3600 |
#: includes/updater/includes/form.php:16
|
|
|
3601 |
msgid "Not Active!"
|
3602 |
msgstr "Non attivo!"
|
3603 |
|
3604 |
-
# @ fl-builder
|
3605 |
#: includes/updater/includes/form.php:27
|
3606 |
#, php-format
|
|
|
3607 |
msgid "Enter your <a%s>license key</a> to enable remote updates and support."
|
3608 |
-
msgstr ""
|
3609 |
-
"Inserisci la tua <a%s>chiave di licenza</a> per abilitare gli aggiornamenti "
|
3610 |
-
"remoti e ottenere supporto."
|
3611 |
|
3612 |
-
# @ fl-builder
|
3613 |
#: includes/updater/includes/form.php:39
|
|
|
3614 |
msgid "Save Subscription Settings"
|
3615 |
msgstr "Salva le impostazioni di abbonamento"
|
3616 |
|
3617 |
-
# @ fl-builder
|
3618 |
#: includes/user-template-settings.php:8
|
3619 |
-
|
3620 |
-
"Save the current layout as a template that can be reused under "
|
3621 |
-
"<strong>
|
3622 |
-
msgstr ""
|
3623 |
-
"Salva il layout attuale come modello che può essere riutilizzato in "
|
3624 |
-
"<strong>Modelli → I tuoi modelli</strong>."
|
3625 |
|
3626 |
-
|
3627 |
-
#: modules/
|
|
|
3628 |
msgid "Accordion"
|
3629 |
msgstr "Accordion"
|
3630 |
|
3631 |
-
# @ fl-builder
|
3632 |
#: modules/accordion/accordion.php:15
|
|
|
3633 |
msgid "Display a collapsible accordion of items."
|
3634 |
msgstr "Visualizza una lista comprimibile di elementi."
|
3635 |
|
3636 |
-
|
3637 |
-
#: modules/
|
|
|
3638 |
msgid "Items"
|
3639 |
msgstr "Elementi"
|
3640 |
|
3641 |
-
|
3642 |
-
#: modules/
|
|
|
3643 |
msgid "Item"
|
3644 |
msgstr "Elemento"
|
3645 |
|
3646 |
-
|
3647 |
-
#: modules/
|
|
|
3648 |
msgid "Border Color"
|
3649 |
msgstr "Colore bordo"
|
3650 |
|
3651 |
-
# @ fl-builder
|
3652 |
#: modules/accordion/accordion.php:63
|
|
|
3653 |
msgid "Label Size"
|
3654 |
msgstr "Dimensione etichetta"
|
3655 |
|
3656 |
-
# @ fl-builder
|
3657 |
#: modules/accordion/accordion.php:66
|
|
|
3658 |
msgctxt "Label size."
|
3659 |
msgid "Small"
|
3660 |
msgstr "Piccola"
|
3661 |
|
3662 |
-
# @ fl-builder
|
3663 |
#: modules/accordion/accordion.php:67
|
|
|
3664 |
msgctxt "Label size."
|
3665 |
msgid "Medium"
|
3666 |
msgstr "Media"
|
3667 |
|
3668 |
-
# @ fl-builder
|
3669 |
#: modules/accordion/accordion.php:68
|
|
|
3670 |
msgctxt "Label size."
|
3671 |
msgid "Large"
|
3672 |
msgstr "Grande"
|
3673 |
|
3674 |
-
# @ fl-builder
|
3675 |
#: modules/accordion/accordion.php:76
|
|
|
3676 |
msgid "Item Spacing"
|
3677 |
msgstr "Spaziatura elemento"
|
3678 |
|
3679 |
-
# @ fl-builder
|
3680 |
#: modules/accordion/accordion.php:87
|
|
|
3681 |
msgid "Collapse Inactive"
|
3682 |
msgstr "Chiudi inattivo"
|
3683 |
|
3684 |
-
# @ fl-builder
|
3685 |
#: modules/accordion/accordion.php:93
|
3686 |
-
|
3687 |
-
"Choosing yes will keep only one item open at a time. Choosing no will allow "
|
3688 |
-
"
|
3689 |
-
msgstr ""
|
3690 |
-
"Scegliendo Sì manterrà soltanto un elemento aperto alla volta. Scegliendo No "
|
3691 |
-
"permetterà a più elementi di essere aperti contemporaneamente."
|
3692 |
|
3693 |
-
|
3694 |
-
#: modules/
|
|
|
3695 |
msgid "Add Item"
|
3696 |
msgstr "Aggiungi elemento"
|
3697 |
|
3698 |
-
|
3699 |
-
#: modules/
|
|
|
3700 |
msgid "Label"
|
3701 |
msgstr "Etichetta"
|
3702 |
|
3703 |
-
# @ fl-builder
|
3704 |
#: modules/accordion/accordion.php:123
|
3705 |
#: modules/post-carousel/post-carousel.php:373
|
3706 |
#: modules/post-carousel/post-carousel.php:377
|
3707 |
#: modules/post-carousel/post-carousel.php:449
|
3708 |
-
#: modules/post-grid/post-grid.php:207
|
3709 |
-
#: modules/post-grid/post-grid.php:
|
|
|
|
|
3710 |
#: modules/post-slider/post-slider.php:552
|
3711 |
-
#: modules/post-slider/post-slider.php:759
|
|
|
|
|
3712 |
msgid "Content"
|
3713 |
msgstr "Contenuto"
|
3714 |
|
3715 |
-
|
3716 |
-
#: modules/
|
3717 |
-
#: modules/content-slider/content-slider.php:628
|
|
|
3718 |
#: modules/pricing-table/pricing-table.php:189
|
3719 |
#: modules/subscribe-form/subscribe-form.php:172
|
|
|
3720 |
msgid "Button"
|
3721 |
msgstr "Pulsante"
|
3722 |
|
3723 |
-
# @ fl-builder
|
3724 |
#: modules/button/button.php:15
|
|
|
3725 |
msgid "A simple call to action button."
|
3726 |
msgstr "Un semplice pulsante Call to action."
|
3727 |
|
3728 |
-
|
3729 |
-
#: modules/
|
|
|
3730 |
msgid "Click Here"
|
3731 |
msgstr "Clicca qui"
|
3732 |
|
3733 |
-
|
3734 |
-
#: modules/
|
3735 |
-
#: modules/callout/callout.php:367
|
3736 |
-
#: modules/
|
3737 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
3738 |
msgid "Icon"
|
3739 |
msgstr "Icona"
|
3740 |
|
3741 |
-
|
3742 |
-
#: modules/
|
3743 |
#: modules/subscribe-form/subscribe-form.php:189
|
|
|
3744 |
msgid "Icon Position"
|
3745 |
msgstr "Posizione icona"
|
3746 |
|
3747 |
-
|
3748 |
-
#: modules/
|
3749 |
-
#: modules/content-slider/content-slider.php:655
|
|
|
3750 |
#: modules/pricing-table/pricing-table.php:225
|
3751 |
#: modules/subscribe-form/subscribe-form.php:192
|
|
|
3752 |
msgid "Before Text"
|
3753 |
msgstr "Prima del testo"
|
3754 |
|
3755 |
-
|
3756 |
-
#: modules/
|
3757 |
-
#: modules/content-slider/content-slider.php:656
|
|
|
3758 |
#: modules/pricing-table/pricing-table.php:226
|
3759 |
#: modules/subscribe-form/subscribe-form.php:193
|
|
|
3760 |
msgid "After Text"
|
3761 |
msgstr "Dopo il testo"
|
3762 |
|
3763 |
-
|
3764 |
-
#: modules/audio/audio.php:
|
3765 |
-
#: modules/button/button.php:91
|
3766 |
-
#: modules/
|
|
|
|
|
3767 |
#: modules/content-slider/content-slider.php:600
|
3768 |
#: modules/content-slider/content-slider.php:604
|
3769 |
-
#: modules/content-slider/content-slider.php:627
|
3770 |
-
#: modules/
|
3771 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
3772 |
#: modules/slideshow/slideshow.php:352
|
|
|
3773 |
msgid "Link"
|
3774 |
msgstr "Collegamento"
|
3775 |
|
3776 |
-
# @ fl-builder
|
3777 |
#: modules/button/button.php:96
|
|
|
3778 |
msgid "http://www.example.com"
|
3779 |
msgstr "http://www.example.com"
|
3780 |
|
3781 |
-
|
3782 |
-
#: modules/
|
3783 |
-
#: modules/content-slider/content-slider.php:609
|
3784 |
-
#: modules/
|
3785 |
-
#: modules/
|
|
|
|
|
|
|
|
|
3786 |
msgid "Link Target"
|
3787 |
msgstr "Destinazione del collegamento"
|
3788 |
|
3789 |
-
|
3790 |
-
#: modules/
|
3791 |
-
#: modules/content-slider/content-slider.php:612
|
3792 |
-
#: modules/
|
3793 |
-
#: modules/
|
|
|
|
|
|
|
|
|
3794 |
msgid "Same Window"
|
3795 |
msgstr "Stessa finestra"
|
3796 |
|
3797 |
-
|
3798 |
-
#: modules/
|
3799 |
-
#: modules/content-slider/content-slider.php:613
|
3800 |
-
#: modules/
|
3801 |
-
#: modules/
|
|
|
|
|
|
|
|
|
3802 |
msgid "New Window"
|
3803 |
msgstr "Nuova finestra"
|
3804 |
|
3805 |
-
|
3806 |
-
#: modules/
|
3807 |
#: modules/callout/callout.php:526
|
3808 |
-
#: modules/content-slider/content-slider.php:672
|
3809 |
-
#: modules/
|
|
|
|
|
3810 |
#: modules/pricing-table/pricing-table.php:242
|
3811 |
#: modules/subscribe-form/subscribe-form.php:209
|
|
|
3812 |
msgid "Background Hover Color"
|
3813 |
msgstr "Colore di sfondo al passaggio del mouse"
|
3814 |
|
3815 |
-
|
3816 |
-
#: modules/
|
3817 |
-
#: modules/content-slider/content-slider.php:683
|
|
|
3818 |
#: modules/pricing-table/pricing-table.php:254
|
3819 |
#: modules/subscribe-form/subscribe-form.php:224
|
|
|
3820 |
msgid "Text Hover Color"
|
3821 |
msgstr "Colore del testo al passaggio del mouse"
|
3822 |
|
3823 |
-
|
3824 |
-
#: modules/
|
3825 |
-
#: modules/content-slider/content-slider.php:696
|
|
|
3826 |
#: modules/pricing-table/pricing-table.php:268
|
3827 |
#: modules/subscribe-form/subscribe-form.php:241
|
|
|
3828 |
msgid "Flat"
|
3829 |
msgstr "Solido"
|
3830 |
|
3831 |
-
|
3832 |
-
#: modules/
|
3833 |
#: modules/callout/callout.php:559
|
3834 |
-
#: modules/content-slider/content-slider.php:697
|
3835 |
-
#: modules/
|
|
|
|
|
3836 |
#: modules/pricing-table/pricing-table.php:269
|
3837 |
#: modules/subscribe-form/subscribe-form.php:242
|
|
|
3838 |
msgid "Gradient"
|
3839 |
msgstr "Gradiente"
|
3840 |
|
3841 |
-
|
3842 |
-
#: modules/
|
3843 |
-
#: modules/content-slider/content-slider.php:698
|
|
|
3844 |
#: modules/pricing-table/pricing-table.php:270
|
3845 |
#: modules/subscribe-form/subscribe-form.php:243
|
|
|
3846 |
msgid "Transparent"
|
3847 |
msgstr "Trasparente"
|
3848 |
|
3849 |
-
|
3850 |
-
#: modules/
|
3851 |
-
#: modules/content-slider/content-slider.php:708
|
|
|
3852 |
#: modules/pricing-table/pricing-table.php:98
|
3853 |
#: modules/pricing-table/pricing-table.php:280
|
3854 |
#: modules/subscribe-form/subscribe-form.php:253
|
|
|
3855 |
msgid "Border Size"
|
3856 |
msgstr "Dimensione bordo"
|
3857 |
|
3858 |
-
|
3859 |
-
#: modules/
|
3860 |
-
#: modules/content-slider/content-slider.php:717
|
3861 |
-
#: modules/cta/cta.php:
|
|
|
|
|
3862 |
#: modules/subscribe-form/subscribe-form.php:262
|
|
|
3863 |
msgid "Background Opacity"
|
3864 |
msgstr "Opacità sfondo"
|
3865 |
|
3866 |
-
|
3867 |
-
#: modules/
|
3868 |
-
#: modules/cta/cta.php:106
|
3869 |
-
#: modules/
|
|
|
|
|
3870 |
#: modules/subscribe-form/subscribe-form.php:106
|
|
|
3871 |
msgid "Structure"
|
3872 |
msgstr "Struttura"
|
3873 |
|
3874 |
-
|
3875 |
-
#: modules/
|
3876 |
#: modules/pricing-table/pricing-table.php:306
|
|
|
3877 |
msgctxt "Width."
|
3878 |
msgid "Auto"
|
3879 |
msgstr "Automatica"
|
3880 |
|
3881 |
-
# @ fl-builder
|
3882 |
#: modules/button/button.php:217
|
|
|
3883 |
msgid "Custom Width"
|
3884 |
msgstr "Larghezza personalizzata"
|
3885 |
|
3886 |
-
|
3887 |
-
#: modules/
|
3888 |
-
#: modules/heading/heading.php:87
|
3889 |
-
#: modules/
|
3890 |
-
#: modules/
|
|
|
|
|
|
|
3891 |
#: modules/social-buttons/social-buttons.php:98
|
|
|
3892 |
msgid "Alignment"
|
3893 |
msgstr "Allineamento"
|
3894 |
|
3895 |
-
|
3896 |
-
#: modules/
|
3897 |
-
#: modules/content-slider/content-slider.php:731
|
3898 |
-
#: modules/
|
|
|
|
|
3899 |
#: modules/pricing-table/pricing-table.php:325
|
3900 |
#: modules/subscribe-form/subscribe-form.php:276
|
|
|
3901 |
msgid "Font Size"
|
3902 |
msgstr "Dimensione carattere"
|
3903 |
|
3904 |
-
|
3905 |
-
#: modules/
|
3906 |
-
#: modules/cta/cta.php:364
|
|
|
3907 |
#: modules/subscribe-form/subscribe-form.php:292
|
|
|
3908 |
msgid "Round Corners"
|
3909 |
msgstr "Angoli arrotondati"
|
3910 |
|
3911 |
-
# @ fl-builder
|
3912 |
#: modules/callout/callout.php:14
|
|
|
3913 |
msgid "Callout"
|
3914 |
msgstr "Callout"
|
3915 |
|
3916 |
-
# @ fl-builder
|
3917 |
#: modules/callout/callout.php:15
|
|
|
3918 |
msgid "A heading and snippet of text with an optional link, icon and image."
|
3919 |
-
msgstr ""
|
3920 |
-
"Un titolo e un frammento di testo con collegamento, icona e immagine "
|
3921 |
-
"facoltativi."
|
3922 |
|
3923 |
-
# @ fl-builder
|
3924 |
#: modules/callout/callout.php:218
|
3925 |
#: modules/content-slider/content-slider.php:440
|
3926 |
-
#: modules/content-slider/content-slider.php:455
|
3927 |
-
#: modules/
|
|
|
|
|
3928 |
#: modules/post-slider/post-slider.php:582
|
3929 |
#: modules/testimonials/testimonials.php:57
|
3930 |
#: modules/testimonials/testimonials.php:62
|
|
|
3931 |
msgid "Heading"
|
3932 |
msgstr "Titolo"
|
3933 |
|
3934 |
-
# @ fl-builder
|
3935 |
#: modules/callout/callout.php:250
|
|
|
3936 |
msgid "Overall Alignment"
|
3937 |
msgstr "Allineamento globale"
|
3938 |
|
3939 |
-
# @ fl-builder
|
3940 |
#: modules/callout/callout.php:257
|
|
|
3941 |
msgid "The alignment that will apply to all elements within the callout."
|
3942 |
-
msgstr ""
|
3943 |
-
"L'allineamento che si applicherà a tutti gli elementi all'interno del "
|
3944 |
-
"callout."
|
3945 |
|
3946 |
-
|
3947 |
-
#: modules/
|
|
|
3948 |
msgid "Heading Structure"
|
3949 |
msgstr "Struttura titolo"
|
3950 |
|
3951 |
-
# @ fl-builder
|
3952 |
#: modules/callout/callout.php:269
|
3953 |
-
#: modules/content-slider/content-slider.php:459
|
|
|
3954 |
#: modules/post-slider/post-slider.php:586
|
|
|
3955 |
msgid "Heading Tag"
|
3956 |
msgstr "Tag titolo"
|
3957 |
|
3958 |
-
# @ fl-builder
|
3959 |
#: modules/callout/callout.php:282
|
3960 |
#: modules/content-slider/content-slider.php:472
|
3961 |
-
#: modules/content-slider/content-slider.php:486
|
|
|
3962 |
#: modules/post-slider/post-slider.php:599
|
3963 |
#: modules/post-slider/post-slider.php:613
|
3964 |
#: modules/testimonials/testimonials.php:70
|
|
|
3965 |
msgid "Heading Size"
|
3966 |
msgstr "Dimensione titolo"
|
3967 |
|
3968 |
-
|
3969 |
-
#: modules/
|
|
|
3970 |
msgid "Heading Custom Size"
|
3971 |
msgstr "Dimensione personalizzata titolo"
|
3972 |
|
3973 |
-
# @ fl-builder
|
3974 |
#: modules/callout/callout.php:314
|
|
|
3975 |
msgid "Image Type"
|
3976 |
msgstr "Tipo di immagine"
|
3977 |
|
3978 |
-
# @ fl-builder
|
3979 |
#: modules/callout/callout.php:317
|
|
|
3980 |
msgctxt "Image type."
|
3981 |
msgid "None"
|
3982 |
msgstr "Nessuna"
|
3983 |
|
3984 |
-
|
3985 |
-
#: modules/
|
3986 |
#: modules/post-carousel/post-carousel.php:275
|
3987 |
-
#: modules/post-slider/post-slider.php:482
|
|
|
|
|
3988 |
msgid "Crop"
|
3989 |
msgstr "Ritaglio"
|
3990 |
|
3991 |
-
|
3992 |
-
#: modules/
|
|
|
3993 |
msgctxt "Photo Crop."
|
3994 |
msgid "None"
|
3995 |
msgstr "Nessuno"
|
3996 |
|
3997 |
-
|
3998 |
-
#: modules/
|
3999 |
#: modules/post-carousel/post-carousel.php:278
|
4000 |
#: modules/post-slider/post-slider.php:485
|
|
|
4001 |
msgid "Landscape"
|
4002 |
msgstr "Paesaggio"
|
4003 |
|
4004 |
-
|
4005 |
-
#: modules/
|
4006 |
#: modules/post-carousel/post-carousel.php:279
|
4007 |
#: modules/post-slider/post-slider.php:486
|
|
|
4008 |
msgid "Panorama"
|
4009 |
msgstr "Panorama"
|
4010 |
|
4011 |
-
|
4012 |
-
#: modules/
|
4013 |
#: modules/post-carousel/post-carousel.php:280
|
4014 |
#: modules/post-slider/post-slider.php:487
|
|
|
4015 |
msgid "Portrait"
|
4016 |
msgstr "Ritratto"
|
4017 |
|
4018 |
-
|
4019 |
-
#: modules/
|
4020 |
#: modules/post-carousel/post-carousel.php:281
|
4021 |
#: modules/post-slider/post-slider.php:488
|
|
|
4022 |
msgid "Square"
|
4023 |
msgstr "Quadrato"
|
4024 |
|
4025 |
-
|
4026 |
-
#: modules/
|
4027 |
#: modules/post-carousel/post-carousel.php:282
|
4028 |
#: modules/post-slider/post-slider.php:489
|
|
|
4029 |
msgid "Circle"
|
4030 |
msgstr "Cerchio"
|
4031 |
|
4032 |
-
|
4033 |
-
#: modules/callout/callout.php:
|
|
|
4034 |
msgid "Above Heading"
|
4035 |
msgstr "Sopra intestazione"
|
4036 |
|
4037 |
-
|
4038 |
-
#: modules/callout/callout.php:
|
|
|
4039 |
msgid "Below Heading"
|
4040 |
msgstr "Sotto intestazione"
|
4041 |
|
4042 |
-
|
4043 |
-
#: modules/callout/callout.php:
|
|
|
4044 |
msgid "Left of Text and Heading"
|
4045 |
msgstr "Sinistra del testo e intestazione"
|
4046 |
|
4047 |
-
|
4048 |
-
#: modules/callout/callout.php:
|
|
|
4049 |
msgid "Right of Text and Heading"
|
4050 |
msgstr "Destra del testo e intestazione"
|
4051 |
|
4052 |
-
# @ fl-builder
|
4053 |
#: modules/callout/callout.php:380
|
|
|
4054 |
msgid "Left of Heading"
|
4055 |
msgstr "Sinistra dell'intestazione"
|
4056 |
|
4057 |
-
# @ fl-builder
|
4058 |
#: modules/callout/callout.php:381
|
|
|
4059 |
msgid "Right of Heading"
|
4060 |
msgstr "Destra dell'intestazione"
|
4061 |
|
4062 |
-
# @ fl-builder
|
4063 |
#: modules/callout/callout.php:389
|
|
|
4064 |
msgid "Icon Colors"
|
4065 |
msgstr "Colori icona"
|
4066 |
|
4067 |
-
|
4068 |
-
#: modules/
|
4069 |
#: modules/icon-group/icon-group.php:57
|
|
|
4070 |
msgid "Hover Color"
|
4071 |
msgstr "Colore al passaggio del mouse"
|
4072 |
|
4073 |
-
# @ fl-builder
|
4074 |
#: modules/callout/callout.php:429
|
|
|
4075 |
msgid "Icon Structure"
|
4076 |
msgstr "Struttura icona"
|
4077 |
|
4078 |
-
|
4079 |
-
#: modules/
|
4080 |
#: modules/icon-group/icon-group.php:92
|
4081 |
#: modules/post-carousel/post-carousel.php:270
|
4082 |
-
#: modules/post-grid/post-grid.php:148
|
|
|
|
|
4083 |
msgid "Size"
|
4084 |
msgstr "Dimensione"
|
4085 |
|
4086 |
-
# @ fl-builder
|
4087 |
#: modules/callout/callout.php:444
|
4088 |
#: modules/content-slider/content-slider.php:597
|
|
|
4089 |
msgid "Call To Action"
|
4090 |
msgstr "Call To Action"
|
4091 |
|
4092 |
-
# @ fl-builder
|
4093 |
#: modules/callout/callout.php:452
|
4094 |
-
|
4095 |
-
"The link applies to the entire module. If choosing a call to action type "
|
4096 |
-
"
|
4097 |
-
msgstr ""
|
4098 |
-
"Il collegamento si applica a tutto il modulo. Se si seglie un tipo di azione "
|
4099 |
-
"call to action qui sotto, questo collegamento verrà utilizzato anche per il "
|
4100 |
-
"testo o pulsante."
|
4101 |
|
4102 |
-
# @ fl-builder
|
4103 |
#: modules/callout/callout.php:472
|
4104 |
-
#: modules/content-slider/content-slider.php:619
|
|
|
|
|
4105 |
msgid "Call to Action"
|
4106 |
msgstr "Call to Action"
|
4107 |
|
4108 |
-
# @ fl-builder
|
4109 |
#: modules/callout/callout.php:479
|
4110 |
#: modules/content-slider/content-slider.php:626
|
|
|
4111 |
msgctxt "Call to action."
|
4112 |
msgid "None"
|
4113 |
msgstr "Nessuna"
|
4114 |
|
4115 |
-
|
4116 |
-
#: modules/
|
4117 |
-
#: modules/post-grid/post-grid.php:239
|
|
|
|
|
4118 |
msgid "Read More"
|
4119 |
msgstr "Leggi tutto"
|
4120 |
|
4121 |
-
# @ fl-builder
|
4122 |
#: modules/callout/callout.php:501
|
4123 |
#: modules/content-slider/content-slider.php:647
|
4124 |
#: modules/pricing-table/pricing-table.php:217
|
4125 |
#: modules/subscribe-form/subscribe-form.php:184
|
|
|
4126 |
msgid "Button Icon"
|
4127 |
msgstr "Icona del pulsante"
|
4128 |
|
4129 |
-
# @ fl-builder
|
4130 |
#: modules/callout/callout.php:506
|
4131 |
#: modules/content-slider/content-slider.php:652
|
4132 |
#: modules/pricing-table/pricing-table.php:222
|
|
|
4133 |
msgid "Button Icon Position"
|
4134 |
msgstr "Posizione icona bottone"
|
4135 |
|
4136 |
-
# @ fl-builder
|
4137 |
#: modules/callout/callout.php:516
|
4138 |
-
#: modules/content-slider/content-slider.php:662
|
|
|
4139 |
#: modules/pricing-table/pricing-table.php:232
|
4140 |
#: modules/subscribe-form/subscribe-form.php:199
|
|
|
4141 |
msgid "Button Colors"
|
4142 |
msgstr "Colori pulsante"
|
4143 |
|
4144 |
-
# @ fl-builder
|
4145 |
#: modules/callout/callout.php:551
|
4146 |
-
#: modules/content-slider/content-slider.php:689
|
|
|
4147 |
#: modules/pricing-table/pricing-table.php:261
|
4148 |
#: modules/subscribe-form/subscribe-form.php:234
|
|
|
4149 |
msgid "Button Style"
|
4150 |
msgstr "Stile pulsante"
|
4151 |
|
4152 |
-
# @ fl-builder
|
4153 |
#: modules/callout/callout.php:589
|
4154 |
-
#: modules/content-slider/content-slider.php:727
|
|
|
4155 |
#: modules/pricing-table/pricing-table.php:299
|
4156 |
#: modules/subscribe-form/subscribe-form.php:272
|
|
|
4157 |
msgid "Button Structure"
|
4158 |
msgstr "Struttura pulsante"
|
4159 |
|
4160 |
-
# @ fl-builder
|
4161 |
#: modules/callout/callout.php:593
|
|
|
4162 |
msgid "Button Width"
|
4163 |
msgstr "Larghezza del pulsante"
|
4164 |
|
4165 |
-
# @ fl-builder
|
4166 |
#: modules/contact-form/contact-form.php:14
|
|
|
4167 |
msgid "Contact Form"
|
4168 |
msgstr "Modulo di contatto"
|
4169 |
|
4170 |
-
# @ fl-builder
|
4171 |
#: modules/contact-form/contact-form.php:15
|
|
|
4172 |
msgid "A very simple contact form."
|
4173 |
msgstr "Un semplice modulo di contatto."
|
4174 |
|
4175 |
-
# @ fl-builder
|
4176 |
#: modules/contact-form/contact-form.php:34
|
|
|
4177 |
msgid "Contact Form Submission"
|
4178 |
msgstr "Invio modulo di contatto"
|
4179 |
|
4180 |
-
# @ fl-builder
|
4181 |
#: modules/contact-form/contact-form.php:50
|
|
|
4182 |
msgid "Message"
|
4183 |
msgstr "Messaggio"
|
4184 |
|
4185 |
-
# @ fl-builder
|
4186 |
#: modules/contact-form/contact-form.php:85
|
|
|
4187 |
msgid "Send To Email"
|
4188 |
msgstr "Invia per Email"
|
4189 |
|
4190 |
-
# @ fl-builder
|
4191 |
#: modules/contact-form/contact-form.php:87
|
|
|
4192 |
msgid "example@mail.com"
|
4193 |
msgstr "example@mail.com"
|
4194 |
|
4195 |
-
# @ fl-builder
|
4196 |
#: modules/contact-form/contact-form.php:88
|
|
|
4197 |
msgid "The contact form will send to this e-mail"
|
4198 |
msgstr "Il modulo di contatto sarà inviato a questa e-mail"
|
4199 |
|
4200 |
-
# @ fl-builder
|
4201 |
#: modules/contact-form/contact-form.php:95
|
4202 |
#: modules/subscribe-form/subscribe-form.php:119
|
|
|
4203 |
msgid "Name Field"
|
4204 |
msgstr "Campo nome"
|
4205 |
|
4206 |
-
# @ fl-builder
|
4207 |
#: modules/contact-form/contact-form.php:98
|
4208 |
#: modules/contact-form/contact-form.php:107
|
4209 |
#: modules/contact-form/contact-form.php:116
|
@@ -4213,9 +4183,12 @@ msgstr "Campo nome"
|
|
4213 |
#: modules/post-carousel/post-carousel.php:345
|
4214 |
#: modules/post-carousel/post-carousel.php:380
|
4215 |
#: modules/post-carousel/post-carousel.php:389
|
4216 |
-
#: modules/post-grid/post-grid.php:128
|
4217 |
-
#: modules/post-grid/post-grid.php:
|
4218 |
-
#: modules/post-grid/post-grid.php:
|
|
|
|
|
|
|
4219 |
#: modules/post-slider/post-slider.php:443
|
4220 |
#: modules/post-slider/post-slider.php:502
|
4221 |
#: modules/post-slider/post-slider.php:511
|
@@ -4223,10 +4196,10 @@ msgstr "Campo nome"
|
|
4223 |
#: modules/post-slider/post-slider.php:555
|
4224 |
#: modules/post-slider/post-slider.php:564
|
4225 |
#: modules/subscribe-form/subscribe-form.php:122
|
|
|
4226 |
msgid "Show"
|
4227 |
msgstr "Mostra"
|
4228 |
|
4229 |
-
# @ fl-builder
|
4230 |
#: modules/contact-form/contact-form.php:99
|
4231 |
#: modules/contact-form/contact-form.php:108
|
4232 |
#: modules/contact-form/contact-form.php:117
|
@@ -4236,9 +4209,12 @@ msgstr "Mostra"
|
|
4236 |
#: modules/post-carousel/post-carousel.php:346
|
4237 |
#: modules/post-carousel/post-carousel.php:381
|
4238 |
#: modules/post-carousel/post-carousel.php:390
|
4239 |
-
#: modules/post-grid/post-grid.php:129
|
4240 |
-
#: modules/post-grid/post-grid.php:
|
4241 |
-
#: modules/post-grid/post-grid.php:
|
|
|
|
|
|
|
4242 |
#: modules/post-slider/post-slider.php:444
|
4243 |
#: modules/post-slider/post-slider.php:503
|
4244 |
#: modules/post-slider/post-slider.php:512
|
@@ -4246,3162 +4222,3020 @@ msgstr "Mostra"
|
|
4246 |
#: modules/post-slider/post-slider.php:556
|
4247 |
#: modules/post-slider/post-slider.php:565
|
4248 |
#: modules/subscribe-form/subscribe-form.php:123
|
|
|
4249 |
msgid "Hide"
|
4250 |
msgstr "Nascondi"
|
4251 |
|
4252 |
-
# @ fl-builder
|
4253 |
#: modules/contact-form/contact-form.php:104
|
|
|
4254 |
msgid "Subject Field"
|
4255 |
msgstr "Campo oggetto"
|
4256 |
|
4257 |
-
# @ fl-builder
|
4258 |
#: modules/contact-form/contact-form.php:113
|
|
|
4259 |
msgid "Email Field"
|
4260 |
msgstr "Campo email"
|
4261 |
|
4262 |
-
# @ fl-builder
|
4263 |
#: modules/contact-form/contact-form.php:122
|
|
|
4264 |
msgid "Phone Field"
|
4265 |
msgstr "Campo telefono"
|
4266 |
|
4267 |
-
# @ fl-builder
|
4268 |
#: modules/contact-form/includes/frontend.php:5
|
|
|
4269 |
msgctxt "Contact form field label."
|
4270 |
msgid "Name"
|
4271 |
msgstr "Nome"
|
4272 |
|
4273 |
-
# @ fl-builder
|
4274 |
#: modules/contact-form/includes/frontend.php:6
|
4275 |
#: modules/subscribe-form/includes/frontend.php:6
|
|
|
4276 |
msgid "Please enter your name."
|
4277 |
msgstr "Inserisci il tuo nome."
|
4278 |
|
4279 |
-
# @ fl-builder
|
4280 |
#: modules/contact-form/includes/frontend.php:7
|
|
|
4281 |
msgid "Your name"
|
4282 |
msgstr "Il tuo nome"
|
4283 |
|
4284 |
-
# @ fl-builder
|
4285 |
#: modules/contact-form/includes/frontend.php:13
|
4286 |
#: modules/contact-form/includes/frontend.php:15
|
|
|
4287 |
msgid "Subject"
|
4288 |
msgstr "Oggetto"
|
4289 |
|
4290 |
-
# @ fl-builder
|
4291 |
#: modules/contact-form/includes/frontend.php:14
|
|
|
4292 |
msgid "Please enter a subject."
|
4293 |
msgstr "Si prega di inserire un oggetto."
|
4294 |
|
4295 |
-
# @ fl-builder
|
4296 |
#: modules/contact-form/includes/frontend.php:22
|
|
|
4297 |
msgid "Please enter a valid email."
|
4298 |
msgstr "Inserisci un indirizzo email valido."
|
4299 |
|
4300 |
-
# @ fl-builder
|
4301 |
#: modules/contact-form/includes/frontend.php:23
|
|
|
4302 |
msgid "Your email"
|
4303 |
msgstr "La tua email"
|
4304 |
|
4305 |
-
# @ fl-builder
|
4306 |
#: modules/contact-form/includes/frontend.php:29
|
|
|
4307 |
msgid "Phone"
|
4308 |
msgstr "Telefono"
|
4309 |
|
4310 |
-
# @ fl-builder
|
4311 |
#: modules/contact-form/includes/frontend.php:30
|
|
|
4312 |
msgid "Please enter a valid phone number."
|
4313 |
msgstr "Si prega di inserire un numero di telefono valido."
|
4314 |
|
4315 |
-
# @ fl-builder
|
4316 |
#: modules/contact-form/includes/frontend.php:31
|
|
|
4317 |
msgid "Your phone"
|
4318 |
msgstr "Il tuo telefono"
|
4319 |
|
4320 |
-
# @ fl-builder
|
4321 |
#: modules/contact-form/includes/frontend.php:36
|
|
|
4322 |
msgid "Your Message"
|
4323 |
msgstr "Il tuo messaggio"
|
4324 |
|
4325 |
-
# @ fl-builder
|
4326 |
#: modules/contact-form/includes/frontend.php:37
|
|
|
4327 |
msgid "Please enter a message."
|
4328 |
msgstr "Inserisci un messaggio."
|
4329 |
|
4330 |
-
# @ fl-builder
|
4331 |
#: modules/contact-form/includes/frontend.php:38
|
|
|
4332 |
msgid "Your message"
|
4333 |
msgstr "Il tuo messaggio"
|
4334 |
|
4335 |
-
# @ fl-builder
|
4336 |
#: modules/contact-form/includes/frontend.php:43
|
|
|
4337 |
msgid "Send"
|
4338 |
msgstr "Invia"
|
4339 |
|
4340 |
-
# @ fl-builder
|
4341 |
#: modules/contact-form/includes/frontend.php:47
|
|
|
4342 |
msgid "Message Sent!"
|
4343 |
msgstr "Messaggio inviato!"
|
4344 |
|
4345 |
-
# @ fl-builder
|
4346 |
#: modules/contact-form/includes/frontend.php:50
|
|
|
4347 |
msgid "Message failed. Please try again."
|
4348 |
msgstr "Invio non riuscito. Per favore riprova."
|
4349 |
|
4350 |
-
# @ fl-builder
|
4351 |
#: modules/content-slider/content-slider.php:14
|
|
|
4352 |
msgid "Content Slider"
|
4353 |
msgstr "Slider contenuto"
|
4354 |
|
4355 |
-
# @ fl-builder
|
4356 |
#: modules/content-slider/content-slider.php:15
|
|
|
4357 |
msgid "Displays multiple slides with an optional heading and call to action."
|
4358 |
-
msgstr ""
|
4359 |
-
|
4360 |
-
|
4361 |
-
|
4362 |
-
#:
|
4363 |
-
#: modules/
|
4364 |
-
#: modules/separator/separator.php:59
|
|
|
|
|
4365 |
msgid "Height"
|
4366 |
msgstr "Altezza"
|
4367 |
|
4368 |
-
# @ fl-builder
|
4369 |
#: modules/content-slider/content-slider.php:229
|
4370 |
-
|
4371 |
-
"This setting is the minimum height of the content slider. Content will "
|
4372 |
-
"
|
4373 |
-
msgstr ""
|
4374 |
-
"Questa impostazione è l'altezza minima dello slider di contenuto. Il "
|
4375 |
-
"contenuto espanderà automaticamente l'altezza."
|
4376 |
|
4377 |
-
|
4378 |
-
#: modules/
|
4379 |
#: modules/post-carousel/post-carousel.php:137
|
4380 |
-
#: modules/post-slider/post-slider.php:354
|
4381 |
-
#: modules/
|
|
|
|
|
|
|
4382 |
msgid "Auto Play"
|
4383 |
msgstr "Avvio automatico"
|
4384 |
|
4385 |
-
# @ fl-builder
|
4386 |
#: modules/content-slider/content-slider.php:247
|
|
|
4387 |
msgid "Show Play/Pause"
|
4388 |
msgstr "Mostra Play/Pausa"
|
4389 |
|
4390 |
-
# @ fl-builder
|
4391 |
#: modules/content-slider/content-slider.php:267
|
4392 |
#: modules/testimonials/testimonials.php:103
|
|
|
4393 |
msgctxt "Transition type."
|
4394 |
msgid "Slide"
|
4395 |
msgstr "Slide"
|
4396 |
|
4397 |
-
# @ fl-builder
|
4398 |
#: modules/content-slider/content-slider.php:281
|
4399 |
#: modules/post-carousel/post-carousel.php:189
|
4400 |
#: modules/post-slider/post-slider.php:415
|
4401 |
#: modules/testimonials/testimonials.php:122
|
|
|
4402 |
msgid "Show Arrows"
|
4403 |
msgstr "Mostra frecce"
|
4404 |
|
4405 |
-
# @ fl-builder
|
4406 |
#: modules/content-slider/content-slider.php:290
|
4407 |
#: modules/post-carousel/post-carousel.php:180
|
4408 |
#: modules/post-slider/post-slider.php:406
|
4409 |
#: modules/testimonials/testimonials.php:152
|
|
|
4410 |
msgid "Show Dots"
|
4411 |
msgstr "Mostra navigazione"
|
4412 |
|
4413 |
-
# @ fl-builder
|
4414 |
#: modules/content-slider/content-slider.php:304
|
|
|
4415 |
msgid "Max Content Width"
|
4416 |
msgstr "Larghezza max contenuto"
|
4417 |
|
4418 |
-
# @ fl-builder
|
4419 |
#: modules/content-slider/content-slider.php:309
|
|
|
4420 |
msgid "The max width that the content area will be within your slides."
|
4421 |
msgstr "La larghezza massima dell'area di contenuto nelle tue slides."
|
4422 |
|
4423 |
-
# @ fl-builder
|
4424 |
#: modules/content-slider/content-slider.php:316
|
|
|
4425 |
msgid "Slides"
|
4426 |
msgstr "Slides"
|
4427 |
|
4428 |
-
# @ fl-builder
|
4429 |
#: modules/content-slider/content-slider.php:323
|
4430 |
#: modules/post-slider/post-slider.php:374
|
|
|
4431 |
msgid "Slide"
|
4432 |
msgstr "Slide"
|
4433 |
|
4434 |
-
# @ fl-builder
|
4435 |
#: modules/content-slider/content-slider.php:338
|
|
|
4436 |
msgid "Slide Settings"
|
4437 |
msgstr "Impostazioni slide"
|
4438 |
|
4439 |
-
# @ fl-builder
|
4440 |
#: modules/content-slider/content-slider.php:348
|
|
|
4441 |
msgid "Slide Label"
|
4442 |
msgstr "Etichetta slide"
|
4443 |
|
4444 |
-
# @ fl-builder
|
4445 |
#: modules/content-slider/content-slider.php:349
|
4446 |
-
|
4447 |
-
"A label to identify this slide on the Slides tab of the Content Slider "
|
4448 |
-
"
|
4449 |
-
msgstr ""
|
4450 |
-
"Un'etichetta per identificare questa slide nelle impostazioni dello Slider "
|
4451 |
-
"Contenuti, tra le schede delle slide."
|
4452 |
|
4453 |
-
# @ fl-builder
|
4454 |
#: modules/content-slider/content-slider.php:354
|
|
|
4455 |
msgid "Background Layout"
|
4456 |
msgstr "Layout sfondo"
|
4457 |
|
4458 |
-
# @ fl-builder
|
4459 |
#: modules/content-slider/content-slider.php:360
|
|
|
4460 |
msgid "This setting is for the entire background of your slide."
|
4461 |
msgstr "Questa impostazione è per l'intero sfondo della tua slide."
|
4462 |
|
4463 |
-
# @ fl-builder
|
4464 |
#: modules/content-slider/content-slider.php:395
|
|
|
4465 |
msgid "Background Video Code"
|
4466 |
msgstr "Codice sfondo video"
|
4467 |
|
4468 |
-
# @ fl-builder
|
4469 |
#: modules/content-slider/content-slider.php:401
|
|
|
4470 |
msgid "Content Layout"
|
4471 |
msgstr "Layout contenuto"
|
4472 |
|
4473 |
-
# @ fl-builder
|
4474 |
#: modules/content-slider/content-slider.php:407
|
4475 |
-
|
4476 |
-
"This allows you to add content over or in addition to the background "
|
4477 |
-
"
|
4478 |
-
"style tab."
|
4479 |
-
msgstr ""
|
4480 |
-
"Questo permette di aggiungere contenuto sopra o in aggiunta alla selezione "
|
4481 |
-
"sfondo sopra. La posizione del layout contenuti può essere selezionata nella "
|
4482 |
-
"scheda stile."
|
4483 |
|
4484 |
-
# @ fl-builder
|
4485 |
#: modules/content-slider/content-slider.php:410
|
|
|
4486 |
msgid "Text & Photo"
|
4487 |
msgstr "Testo e foto"
|
4488 |
|
4489 |
-
# @ fl-builder
|
4490 |
#: modules/content-slider/content-slider.php:411
|
|
|
4491 |
msgid "Text & Video"
|
4492 |
msgstr "Testo e Video"
|
4493 |
|
4494 |
-
# @ fl-builder
|
4495 |
#: modules/content-slider/content-slider.php:412
|
|
|
4496 |
msgctxt "Content type."
|
4497 |
msgid "None"
|
4498 |
msgstr "Nessuno"
|
4499 |
|
4500 |
-
|
4501 |
-
#: modules/
|
|
|
4502 |
msgid "Video Embed Code"
|
4503 |
msgstr "Codice di embed del video"
|
4504 |
|
4505 |
-
# @ fl-builder
|
4506 |
#: modules/content-slider/content-slider.php:495
|
|
|
4507 |
msgid "Text Position"
|
4508 |
msgstr "Posizione testo"
|
4509 |
|
4510 |
-
# @ fl-builder
|
4511 |
#: modules/content-slider/content-slider.php:501
|
4512 |
-
|
4513 |
-
"The position will move the content layout selections left, right or center "
|
4514 |
-
"
|
4515 |
-
msgstr ""
|
4516 |
-
"La posizione sposterà le selezioni di layout contenuto a sinistra, destra o "
|
4517 |
-
"centrato sullo sfondo della slide."
|
4518 |
|
4519 |
-
# @ fl-builder
|
4520 |
#: modules/content-slider/content-slider.php:518
|
|
|
4521 |
msgid "Top Margin"
|
4522 |
msgstr "Margine alto"
|
4523 |
|
4524 |
-
# @ fl-builder
|
4525 |
#: modules/content-slider/content-slider.php:526
|
|
|
4526 |
msgid "Bottom Margin"
|
4527 |
msgstr "Margine basso"
|
4528 |
|
4529 |
-
# @ fl-builder
|
4530 |
#: modules/content-slider/content-slider.php:534
|
|
|
4531 |
msgid "Left Margin"
|
4532 |
msgstr "Margine sinistro"
|
4533 |
|
4534 |
-
# @ fl-builder
|
4535 |
#: modules/content-slider/content-slider.php:542
|
|
|
4536 |
msgid "Right Margin"
|
4537 |
msgstr "Margine destro"
|
4538 |
|
4539 |
-
# @ fl-builder
|
4540 |
#: modules/content-slider/content-slider.php:551
|
|
|
4541 |
msgid "Text Colors"
|
4542 |
msgstr "Colori del testo"
|
4543 |
|
4544 |
-
# @ fl-builder
|
4545 |
#: modules/content-slider/content-slider.php:561
|
|
|
4546 |
msgid "Text Shadow"
|
4547 |
msgstr "Ombra del testo"
|
4548 |
|
4549 |
-
# @ fl-builder
|
4550 |
#: modules/content-slider/content-slider.php:570
|
4551 |
#: modules/content-slider/content-slider.php:796
|
4552 |
#: modules/post-carousel/post-carousel.php:425
|
4553 |
-
#: modules/post-grid/post-grid.php:321
|
|
|
|
|
4554 |
msgid "Text Background Color"
|
4555 |
msgstr "Colore di sfondo del testo"
|
4556 |
|
4557 |
-
# @ fl-builder
|
4558 |
#: modules/content-slider/content-slider.php:571
|
4559 |
#: modules/post-carousel/post-carousel.php:427
|
4560 |
-
#: modules/post-grid/post-grid.php:323
|
4561 |
-
|
4562 |
-
|
4563 |
-
|
4564 |
-
"Il colore si applica all'overlay dietro il testo sopra lo sfondo selezionato."
|
4565 |
|
4566 |
-
# @ fl-builder
|
4567 |
#: modules/content-slider/content-slider.php:576
|
4568 |
#: modules/post-carousel/post-carousel.php:437
|
4569 |
-
#: modules/post-grid/post-grid.php:328
|
|
|
|
|
4570 |
msgid "Text Background Opacity"
|
4571 |
msgstr "Opacità sfondo del testo"
|
4572 |
|
4573 |
-
# @ fl-builder
|
4574 |
#: modules/content-slider/content-slider.php:584
|
4575 |
#: modules/post-slider/post-slider.php:745
|
|
|
4576 |
msgid "Text Background Height"
|
4577 |
msgstr "Altezza sfondo del testo"
|
4578 |
|
4579 |
-
# @ fl-builder
|
4580 |
#: modules/content-slider/content-slider.php:586
|
4581 |
#: modules/post-slider/post-slider.php:747
|
4582 |
-
|
4583 |
-
"Auto will allow the overlay to fit however long the text content is. 100% "
|
4584 |
-
"
|
4585 |
-
msgstr ""
|
4586 |
-
"Auto permetterà all'overlay di adattarsi a qualunque lunghezza del contenuto "
|
4587 |
-
"di testo. 100% adatta l'overlay alla parte superiore e inferiore della slide."
|
4588 |
|
4589 |
-
# @ fl-builder
|
4590 |
#: modules/content-slider/content-slider.php:588
|
4591 |
#: modules/post-slider/post-slider.php:749
|
|
|
4592 |
msgctxt "Background height."
|
4593 |
msgid "Auto"
|
4594 |
msgstr "Auto"
|
4595 |
|
4596 |
-
# @ fl-builder
|
4597 |
#: modules/content-slider/content-slider.php:605
|
4598 |
-
|
4599 |
-
"The link applies to the entire slide. If choosing a call to action type "
|
4600 |
-
"
|
4601 |
-
msgstr ""
|
4602 |
-
"Il collegamento si applica all'intera slide. Se si sceglie un tipo di call "
|
4603 |
-
"to action qui sotto, questo collegamento verrà utilizzato anche per il testo "
|
4604 |
-
"o pulsante."
|
4605 |
|
4606 |
-
# @ fl-builder
|
4607 |
#: modules/content-slider/content-slider.php:747
|
|
|
4608 |
msgid "Border Radius"
|
4609 |
msgstr "Raggio del bordo"
|
4610 |
|
4611 |
-
# @ fl-builder
|
4612 |
#: modules/content-slider/content-slider.php:758
|
|
|
4613 |
msgctxt "Module settings form tab. Display on mobile devices."
|
4614 |
msgid "Mobile"
|
4615 |
msgstr "Mobile"
|
4616 |
|
4617 |
-
# @ fl-builder
|
4618 |
#: modules/content-slider/content-slider.php:761
|
|
|
4619 |
msgid "Mobile Photo"
|
4620 |
msgstr "Foto mobile"
|
4621 |
|
4622 |
-
# @ fl-builder
|
4623 |
#: modules/content-slider/content-slider.php:767
|
4624 |
-
|
4625 |
-
"You can choose a different photo that the slide will change to on mobile "
|
4626 |
-
"
|
4627 |
-
msgstr ""
|
4628 |
-
"È possibile scegliere una foto diversa da visualizzare nella slide per i "
|
4629 |
-
"dispositivi mobili, o nessuna foto se lo si desidera."
|
4630 |
|
4631 |
-
# @ fl-builder
|
4632 |
#: modules/content-slider/content-slider.php:769
|
|
|
4633 |
msgid "Use Main Photo"
|
4634 |
msgstr "Utilizza foto principale"
|
4635 |
|
4636 |
-
# @ fl-builder
|
4637 |
#: modules/content-slider/content-slider.php:770
|
|
|
4638 |
msgid "Choose Another Photo"
|
4639 |
msgstr "Scegli un'altra foto"
|
4640 |
|
4641 |
-
# @ fl-builder
|
4642 |
#: modules/content-slider/content-slider.php:771
|
|
|
4643 |
msgid "No Photo"
|
4644 |
msgstr "Nessuna foto"
|
4645 |
|
4646 |
-
# @ fl-builder
|
4647 |
#: modules/content-slider/content-slider.php:786
|
|
|
4648 |
msgid "Mobile Text Colors"
|
4649 |
msgstr "Colori testo mobile"
|
4650 |
|
4651 |
-
# @ fl-builder
|
4652 |
#: modules/cta/cta.php:15
|
|
|
4653 |
msgid "Display a heading, subheading and a button."
|
4654 |
msgstr "Mostra un titolo, sottotitolo e un pulsante."
|
4655 |
|
4656 |
-
# @ fl-builder
|
4657 |
#: modules/cta/cta.php:77
|
|
|
4658 |
msgid "Ready to find out more?"
|
4659 |
msgstr "Pronti a saperne di più?"
|
4660 |
|
4661 |
-
# @ fl-builder
|
4662 |
#: modules/cta/cta.php:92
|
|
|
4663 |
msgid "Drop us a line today for a free quote!"
|
4664 |
msgstr "Mandaci oggi due righe per un preventivo gratuito!"
|
4665 |
|
4666 |
-
|
4667 |
-
#: modules/
|
4668 |
-
#: modules/gallery/gallery.php:228
|
4669 |
-
#: modules/
|
|
|
|
|
4670 |
#: modules/post-carousel/post-carousel.php:207
|
4671 |
-
#: modules/post-grid/post-grid.php:44
|
4672 |
-
#: modules/
|
|
|
|
|
4673 |
#: modules/testimonials/testimonials.php:38
|
4674 |
#: modules/woocommerce/woocommerce.php:58
|
|
|
4675 |
msgid "Layout"
|
4676 |
msgstr "Layout"
|
4677 |
|
4678 |
-
|
4679 |
-
#: modules/
|
|
|
4680 |
msgid "Inline"
|
4681 |
msgstr "In linea"
|
4682 |
|
4683 |
-
|
4684 |
-
#: modules/
|
|
|
4685 |
msgid "Stacked"
|
4686 |
msgstr "Impilati"
|
4687 |
|
4688 |
-
|
4689 |
-
#: modules/
|
4690 |
#: modules/pricing-table/pricing-table.php:108
|
|
|
4691 |
msgid "Spacing"
|
4692 |
msgstr "Spaziatura"
|
4693 |
|
4694 |
-
# @ fl-builder
|
4695 |
#: modules/cta/cta.php:247
|
|
|
4696 |
msgid "Button Link"
|
4697 |
msgstr "Collegamento pulsante"
|
4698 |
|
4699 |
-
|
4700 |
-
#: modules/
|
4701 |
#: modules/post-grid/post-grid.php:55
|
|
|
4702 |
msgid "Gallery"
|
4703 |
msgstr "Galleria"
|
4704 |
|
4705 |
-
# @ fl-builder
|
4706 |
#: modules/gallery/gallery.php:15
|
|
|
4707 |
msgid "Display multiple photos in a gallery view."
|
4708 |
msgstr "Visualizzare più foto in una galleria."
|
4709 |
|
4710 |
-
# @ fl-builder
|
4711 |
#: modules/gallery/gallery.php:231
|
|
|
4712 |
msgid "Collage"
|
4713 |
msgstr "Collage"
|
4714 |
|
4715 |
-
# @ fl-builder
|
4716 |
#: modules/gallery/gallery.php:232
|
|
|
4717 |
msgctxt "Gallery layout: thumbnails."
|
4718 |
msgid "Thumbs"
|
4719 |
msgstr "Miniature"
|
4720 |
|
4721 |
-
# @ fl-builder
|
4722 |
#: modules/gallery/gallery.php:268
|
|
|
4723 |
msgid "Photo Size"
|
4724 |
msgstr "Dimensione foto"
|
4725 |
|
4726 |
-
# @ fl-builder
|
4727 |
#: modules/gallery/gallery.php:271
|
|
|
4728 |
msgctxt "Photo size."
|
4729 |
msgid "Small"
|
4730 |
msgstr "Piccola"
|
4731 |
|
4732 |
-
# @ fl-builder
|
4733 |
#: modules/gallery/gallery.php:272
|
|
|
4734 |
msgctxt "Photo size."
|
4735 |
msgid "Medium"
|
4736 |
msgstr "Media"
|
4737 |
|
4738 |
-
# @ fl-builder
|
4739 |
#: modules/gallery/gallery.php:273
|
|
|
4740 |
msgctxt "Photo size."
|
4741 |
msgid "Large"
|
4742 |
msgstr "Grande"
|
4743 |
|
4744 |
-
# @ fl-builder
|
4745 |
#: modules/gallery/gallery.php:278
|
|
|
4746 |
msgid "Photo Spacing"
|
4747 |
msgstr "Spaziatura foto"
|
4748 |
|
4749 |
-
# @ fl-builder
|
4750 |
#: modules/gallery/gallery.php:286
|
|
|
4751 |
msgid "Show Captions"
|
4752 |
msgstr "Visualizza didascalie"
|
4753 |
|
4754 |
-
|
4755 |
-
#: modules/
|
|
|
4756 |
msgid "Never"
|
4757 |
msgstr "Mai"
|
4758 |
|
4759 |
-
|
4760 |
-
#: modules/
|
|
|
4761 |
msgid "On Hover"
|
4762 |
msgstr "Al passaggio del mouse"
|
4763 |
|
4764 |
-
|
4765 |
-
#: modules/
|
|
|
4766 |
msgid "Below Photo"
|
4767 |
msgstr "Sotto la foto"
|
4768 |
|
4769 |
-
# @ fl-builder
|
4770 |
#: modules/gallery/gallery.php:293
|
4771 |
-
|
4772 |
-
"The caption pulls from whatever text you put in the caption area in the "
|
4773 |
-
"media manager
|
4774 |
-
"SmugMug if you have captions set in your gallery."
|
4775 |
-
msgstr ""
|
4776 |
-
"La didascalia utilizza qualunque testo si inserisca per ciascuna immagine "
|
4777 |
-
"nell'area didascalia del media manager. Vengono direttamente utilizzate "
|
4778 |
-
"anche le didascalie di SmugMug se le hai impostate nella tua galleria."
|
4779 |
|
4780 |
-
|
4781 |
-
#: modules/
|
|
|
4782 |
msgid "Click Action"
|
4783 |
msgstr "Azione click"
|
4784 |
|
4785 |
-
# @ fl-builder
|
4786 |
#: modules/gallery/gallery.php:300
|
|
|
4787 |
msgctxt "Click action."
|
4788 |
msgid "None"
|
4789 |
msgstr "Nessuna"
|
4790 |
|
4791 |
-
|
4792 |
-
#: modules/
|
|
|
4793 |
msgid "Lightbox"
|
4794 |
msgstr "Lightbox"
|
4795 |
|
4796 |
-
# @ fl-builder
|
4797 |
#: modules/gallery/gallery.php:302
|
|
|
4798 |
msgid "Photo Link"
|
4799 |
msgstr "Collegamento foto"
|
4800 |
|
4801 |
-
# @ fl-builder
|
4802 |
#: modules/heading/heading.php:15
|
|
|
4803 |
msgid "Display a title/page heading."
|
4804 |
msgstr "Mostra titolo di pagina."
|
4805 |
|
4806 |
-
# @ fl-builder
|
4807 |
#: modules/heading/heading.php:102
|
|
|
4808 |
msgid "HTML Tag"
|
4809 |
msgstr "Tag HTML"
|
4810 |
|
4811 |
-
|
4812 |
-
#: modules/heading/heading.php:
|
|
|
4813 |
msgid "Custom Font Size"
|
4814 |
msgstr "Dimensione carattere personalizzata"
|
4815 |
|
4816 |
-
# @ fl-builder
|
4817 |
#: modules/heading/heading.php:150
|
|
|
4818 |
msgid "Mobile Structure"
|
4819 |
msgstr "Struttura mobile"
|
4820 |
|
4821 |
-
# @ fl-builder
|
4822 |
#: modules/heading/heading.php:171
|
|
|
4823 |
msgid "Custom Alignment"
|
4824 |
msgstr "Allineamento personalizzato"
|
4825 |
|
4826 |
-
# @ fl-builder
|
4827 |
#: modules/html/html.php:14
|
|
|
4828 |
msgid "HTML"
|
4829 |
msgstr "HTML"
|
4830 |
|
4831 |
-
# @ fl-builder
|
4832 |
#: modules/html/html.php:15
|
|
|
4833 |
msgid "Display raw HTML code."
|
4834 |
msgstr "Mostra codice HTML."
|
4835 |
|
4836 |
-
# @ fl-builder
|
4837 |
#: modules/icon-group/icon-group.php:14
|
|
|
4838 |
msgid "Icon Group"
|
4839 |
msgstr "Gruppo di icone"
|
4840 |
|
4841 |
-
# @ fl-builder
|
4842 |
#: modules/icon-group/icon-group.php:15
|
|
|
4843 |
msgid "Display a group of linked Font Awesome icons."
|
4844 |
msgstr "Mostra un gruppo di icone Font Awesome."
|
4845 |
|
4846 |
-
# @ fl-builder
|
4847 |
#: modules/icon-group/icon-group.php:126
|
|
|
4848 |
msgid "Add Icon"
|
4849 |
msgstr "Aggiungi icona"
|
4850 |
|
4851 |
-
# @ fl-builder
|
4852 |
#: modules/icon/icon.php:15
|
|
|
4853 |
msgid "Display an icon and optional title."
|
4854 |
msgstr "Mostra un'icona e un titolo opzionale."
|
4855 |
|
4856 |
-
# @ fl-builder
|
4857 |
#: modules/map/map.php:14
|
|
|
4858 |
msgid "Map"
|
4859 |
msgstr "Mappa"
|
4860 |
|
4861 |
-
# @ fl-builder
|
4862 |
#: modules/map/map.php:15
|
|
|
4863 |
msgid "Display a Google map."
|
4864 |
msgstr "Mostra una mappa di Google."
|
4865 |
|
4866 |
-
# @ fl-builder
|
4867 |
#: modules/map/map.php:34
|
|
|
4868 |
msgid "Address"
|
4869 |
msgstr "Indirizzo"
|
4870 |
|
4871 |
-
# @ fl-builder
|
4872 |
#: modules/map/map.php:35
|
|
|
4873 |
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
4874 |
msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
|
4875 |
|
4876 |
-
|
4877 |
-
#: modules/menu/menu.php:
|
|
|
4878 |
#: modules/menu/menu.php:71
|
|
|
4879 |
msgid "Menu"
|
4880 |
msgstr "Menu"
|
4881 |
|
4882 |
-
# @ fl-builder
|
4883 |
#: modules/menu/menu.php:15
|
|
|
4884 |
msgid "Renders a WordPress menu."
|
4885 |
msgstr "Visualizza un menu WordPress."
|
4886 |
|
4887 |
-
# @ fl-builder
|
4888 |
#: modules/menu/menu.php:27
|
4889 |
-
|
4890 |
-
"Select a WordPress menu that you created in the admin under Appearance > "
|
4891 |
-
"
|
4892 |
-
msgstr ""
|
4893 |
-
"Seleziona un menu WordPress che hai creato nel menu di amministrazione sotto "
|
4894 |
-
"Aspetto > Menu."
|
4895 |
|
4896 |
-
# @ fl-builder
|
4897 |
#: modules/menu/menu.php:44
|
|
|
4898 |
msgid "No Menus Found"
|
4899 |
msgstr "Nessun menu trovato"
|
4900 |
|
4901 |
-
|
4902 |
-
#: modules/
|
|
|
4903 |
msgid "Horizontal"
|
4904 |
msgstr "Orizzontale"
|
4905 |
|
4906 |
-
|
4907 |
-
#: modules/
|
|
|
4908 |
msgid "Vertical"
|
4909 |
msgstr "Verticale"
|
4910 |
|
4911 |
-
|
4912 |
-
#: modules/menu/menu.php:
|
|
|
4913 |
msgid "Expanded"
|
4914 |
msgstr "Espanso"
|
4915 |
|
4916 |
-
# @ fl-builder
|
4917 |
#: modules/menu/menu.php:114
|
|
|
4918 |
msgid "Submenu Icon"
|
4919 |
msgstr "Icona sottomenu"
|
4920 |
|
4921 |
-
|
4922 |
-
#: modules/menu/menu.php:
|
|
|
4923 |
msgid "Arrows"
|
4924 |
msgstr "Freccia"
|
4925 |
|
4926 |
-
|
4927 |
-
#: modules/menu/menu.php:
|
|
|
4928 |
msgid "Plus sign"
|
4929 |
msgstr "Segno più"
|
4930 |
|
4931 |
-
|
4932 |
-
#: modules/
|
4933 |
-
#: modules/menu/menu.php:247
|
|
|
4934 |
#: modules/pricing-table/pricing-table.php:113
|
|
|
4935 |
msgid "None"
|
4936 |
msgstr "Nessuna"
|
4937 |
|
4938 |
-
# @ fl-builder
|
4939 |
#: modules/menu/menu.php:124
|
|
|
4940 |
msgid "Submenu Icon click"
|
4941 |
msgstr "Click icona sottomenu"
|
4942 |
|
4943 |
-
# @ fl-builder
|
4944 |
#: modules/menu/menu.php:133
|
|
|
4945 |
msgid "Mobile Style"
|
4946 |
msgstr "Stile mobile"
|
4947 |
|
4948 |
-
# @ fl-builder
|
4949 |
#: modules/menu/menu.php:137
|
|
|
4950 |
msgid "Hamburger Icon"
|
4951 |
msgstr "Icona lista"
|
4952 |
|
4953 |
-
# @ fl-builder
|
4954 |
#: modules/menu/menu.php:139
|
|
|
4955 |
msgid "Menu Button"
|
4956 |
msgstr "Pulsante menu"
|
4957 |
|
4958 |
-
# @ fl-builder
|
4959 |
#: modules/menu/menu.php:177
|
|
|
4960 |
msgid "Menu Alignment"
|
4961 |
msgstr "Allineamento menu"
|
4962 |
|
4963 |
-
# @ fl-builder
|
4964 |
#: modules/menu/menu.php:188
|
|
|
4965 |
msgid "Submenu Drop Shadow"
|
4966 |
msgstr "Ombra sottomenu"
|
4967 |
|
4968 |
-
# @ fl-builder
|
4969 |
#: modules/menu/menu.php:230
|
|
|
4970 |
msgid "Link Size"
|
4971 |
msgstr "Dimensione link"
|
4972 |
|
4973 |
-
# @ fl-builder
|
4974 |
#: modules/menu/menu.php:244
|
|
|
4975 |
msgid "Link Format"
|
4976 |
msgstr "Formato link"
|
4977 |
|
4978 |
-
# @ fl-builder
|
4979 |
#: modules/menu/menu.php:248
|
|
|
4980 |
msgid "Uppercase"
|
4981 |
msgstr "Maiuscolo"
|
4982 |
|
4983 |
-
# @ fl-builder
|
4984 |
#: modules/menu/menu.php:249
|
|
|
4985 |
msgid "Lowercase"
|
4986 |
msgstr "Minuscolo"
|
4987 |
|
4988 |
-
# @ fl-builder
|
4989 |
#: modules/menu/menu.php:250
|
|
|
4990 |
msgid "Capitalize"
|
4991 |
msgstr "Capitalizza"
|
4992 |
|
4993 |
-
# @ fl-builder
|
4994 |
#: modules/menu/menu.php:260
|
|
|
4995 |
msgid "Link Weight"
|
4996 |
msgstr "Peso link"
|
4997 |
|
4998 |
-
# @ fl-builder
|
4999 |
#: modules/menu/menu.php:263
|
|
|
5000 |
msgid "Normal"
|
5001 |
msgstr "Normale"
|
5002 |
|
5003 |
-
# @ fl-builder
|
5004 |
#: modules/menu/menu.php:264
|
|
|
5005 |
msgid "Bold"
|
5006 |
msgstr "Grassetto"
|
5007 |
|
5008 |
-
|
5009 |
-
#: modules/
|
|
|
5010 |
msgid "Light"
|
5011 |
msgstr "Leggero"
|
5012 |
|
5013 |
-
# @ fl-builder
|
5014 |
#: modules/menu/menu.php:275
|
|
|
5015 |
msgid "Horizontal Spacing"
|
5016 |
msgstr "Spaziatura orizontale"
|
5017 |
|
5018 |
-
# @ fl-builder
|
5019 |
#: modules/menu/menu.php:298
|
|
|
5020 |
msgid "Vertical Spacing"
|
5021 |
msgstr "Spaziatura verticale"
|
5022 |
|
5023 |
-
|
5024 |
-
#: modules/
|
|
|
5025 |
msgid "Backgrounds"
|
5026 |
msgstr "Sfondi"
|
5027 |
|
5028 |
-
# @ fl-builder
|
5029 |
#: modules/menu/menu.php:327
|
|
|
5030 |
msgid "Menu Background Color"
|
5031 |
msgstr "Colore sfondo menu"
|
5032 |
|
5033 |
-
# @ fl-builder
|
5034 |
#: modules/menu/menu.php:342
|
|
|
5035 |
msgid "Menu Background Opacity"
|
5036 |
msgstr "Opacità sfondo menu"
|
5037 |
|
5038 |
-
# @ fl-builder
|
5039 |
#: modules/menu/menu.php:350
|
|
|
5040 |
msgid "Submenu Background Color"
|
5041 |
msgstr "Colore sfondo menu"
|
5042 |
|
5043 |
-
# @ fl-builder
|
5044 |
#: modules/menu/menu.php:370
|
|
|
5045 |
msgid "Link Background Hover Color"
|
5046 |
msgstr "Colore hover sfondo del link"
|
5047 |
|
5048 |
-
|
5049 |
-
#: modules/
|
5050 |
#: modules/separator/separator.php:14
|
|
|
5051 |
msgid "Separator"
|
5052 |
msgstr "Separatore"
|
5053 |
|
5054 |
-
# @ fl-builder
|
5055 |
#: modules/menu/menu.php:385
|
|
|
5056 |
msgid "Show Separators"
|
5057 |
msgstr "Visualizza separatori"
|
5058 |
|
5059 |
-
|
5060 |
-
#: modules/
|
|
|
5061 |
msgid "Separator Color"
|
5062 |
msgstr "Colore separatore"
|
5063 |
|
5064 |
-
# @ fl-builder
|
5065 |
#: modules/menu/menu.php:404
|
|
|
5066 |
msgid "Separator Opacity"
|
5067 |
msgstr "Opacità separatore"
|
5068 |
|
5069 |
-
# @ fl-builder
|
5070 |
#: modules/photo/photo.php:26
|
|
|
5071 |
msgid "Upload a photo or display one from the media library."
|
5072 |
msgstr "Carica una foto o mostrane una dalla libreria multimediale."
|
5073 |
|
5074 |
-
# @ fl-builder
|
5075 |
#: modules/photo/photo.php:429
|
|
|
5076 |
msgid "Photo Source"
|
5077 |
msgstr "Sorgente foto"
|
5078 |
|
5079 |
-
|
5080 |
-
#: modules/photo/photo.php:
|
|
|
5081 |
msgid "URL"
|
5082 |
msgstr "URL"
|
5083 |
|
5084 |
-
# @ fl-builder
|
5085 |
#: modules/photo/photo.php:450
|
|
|
5086 |
msgid "Photo URL"
|
5087 |
msgstr "URL foto"
|
5088 |
|
5089 |
-
# @ fl-builder
|
5090 |
#: modules/photo/photo.php:451
|
|
|
5091 |
msgid "http://www.example.com/my-photo.jpg"
|
5092 |
msgstr "http://www.example.com/my-photo.jpg"
|
5093 |
|
5094 |
-
|
5095 |
-
#: modules/photo/photo.php:
|
|
|
5096 |
msgid "Caption"
|
5097 |
msgstr "Didascalia"
|
5098 |
|
5099 |
-
# @ fl-builder
|
5100 |
#: modules/photo/photo.php:483
|
|
|
5101 |
msgid "Show Caption"
|
5102 |
msgstr "Mostra didascalia"
|
5103 |
|
5104 |
-
# @ fl-builder
|
5105 |
#: modules/photo/photo.php:502
|
|
|
5106 |
msgid "Link Type"
|
5107 |
msgstr "Tipo di collegamento"
|
5108 |
|
5109 |
-
# @ fl-builder
|
5110 |
#: modules/photo/photo.php:504
|
|
|
5111 |
msgctxt "Link type."
|
5112 |
msgid "None"
|
5113 |
msgstr "Nessuno"
|
5114 |
|
5115 |
-
# @ fl-builder
|
5116 |
#: modules/photo/photo.php:507
|
|
|
5117 |
msgid "Photo File"
|
5118 |
msgstr "File foto"
|
5119 |
|
5120 |
-
# @ fl-builder
|
5121 |
#: modules/photo/photo.php:518
|
5122 |
-
|
5123 |
-
"Link type applies to how the image should be linked on click. You can choose "
|
5124 |
-
"a
|
5125 |
-
msgstr ""
|
5126 |
-
"Il tipo di collegamento si applica a cosa dovrebbe essere collegato al clic. "
|
5127 |
-
"È possibile scegliere un URL specifico, la singola foto o una pagina "
|
5128 |
-
"separata per la foto."
|
5129 |
|
5130 |
-
|
5131 |
-
#: modules/
|
|
|
5132 |
msgid "Link URL"
|
5133 |
msgstr "URL collegamento"
|
5134 |
|
5135 |
-
# @ fl-builder
|
5136 |
#: modules/post-carousel/includes/post-gallery-loop.php:35
|
5137 |
#: modules/post-carousel/includes/post-grid-loop.php:22
|
5138 |
#: modules/post-grid/includes/post-feed.php:14
|
5139 |
#: modules/post-grid/includes/post-grid.php:24
|
5140 |
#: modules/post-slider/includes/post-loop.php:29
|
5141 |
#, php-format
|
|
|
5142 |
msgctxt "%s stands for author name."
|
5143 |
msgid "By %s"
|
5144 |
msgstr "Di %s"
|
5145 |
|
5146 |
-
# @ fl-builder
|
5147 |
#: modules/post-carousel/post-carousel.php:14
|
|
|
5148 |
msgid "Posts Carousel"
|
5149 |
msgstr "Carosello Articoli"
|
5150 |
|
5151 |
-
# @ fl-builder
|
5152 |
#: modules/post-carousel/post-carousel.php:15
|
|
|
5153 |
msgid "Display a carousel of your WordPress posts."
|
5154 |
msgstr "Mostra un carosello dei tuoi articoli WordPress."
|
5155 |
|
5156 |
-
# @ fl-builder
|
5157 |
#: modules/post-carousel/post-carousel.php:111
|
5158 |
#: modules/post-slider/post-slider.php:338
|
|
|
5159 |
msgid "Slider"
|
5160 |
msgstr "Slider"
|
5161 |
|
5162 |
-
# @ fl-builder
|
5163 |
#: modules/post-carousel/post-carousel.php:121
|
5164 |
-
#: modules/post-grid/post-grid.php:54
|
|
|
|
|
5165 |
msgid "Grid"
|
5166 |
msgstr "Griglia"
|
5167 |
|
5168 |
-
|
5169 |
-
#: modules/
|
5170 |
-
#: modules/post-slider/post-slider.php:379
|
|
|
|
|
5171 |
msgid "Loop"
|
5172 |
msgstr "Ripeti"
|
5173 |
|
5174 |
-
# @ fl-builder
|
5175 |
#: modules/post-carousel/post-carousel.php:169
|
5176 |
#: modules/post-slider/post-slider.php:395
|
|
|
5177 |
msgid "Number of Posts"
|
5178 |
msgstr "Numero di articoli"
|
5179 |
|
5180 |
-
# @ fl-builder
|
5181 |
#: modules/post-carousel/post-carousel.php:176
|
5182 |
#: modules/post-slider/post-slider.php:402
|
|
|
5183 |
msgid "Slider Controls"
|
5184 |
msgstr "Controlli slider"
|
5185 |
|
5186 |
-
# @ fl-builder
|
5187 |
#: modules/post-carousel/post-carousel.php:210
|
5188 |
#: modules/post-grid/post-grid.php:14
|
|
|
5189 |
msgid "Posts"
|
5190 |
msgstr "Posts"
|
5191 |
|
5192 |
-
# @ fl-builder
|
5193 |
#: modules/post-carousel/post-carousel.php:214
|
|
|
5194 |
msgid "Post Max Width"
|
5195 |
msgstr "Massima larghezza articoli"
|
5196 |
|
5197 |
-
# @ fl-builder
|
5198 |
#: modules/post-carousel/post-carousel.php:222
|
5199 |
#: modules/post-grid/post-grid.php:112
|
|
|
5200 |
msgid "Post Spacing"
|
5201 |
msgstr "Spaziatura post"
|
5202 |
|
5203 |
-
|
5204 |
-
#:
|
|
|
5205 |
msgid "Equalize Column Heights"
|
5206 |
msgstr "Uniforma l'altezza delle colonne"
|
5207 |
|
5208 |
-
# @ fl-builder
|
5209 |
#: modules/post-carousel/post-carousel.php:239
|
|
|
5210 |
msgid "Post Hover Transition"
|
5211 |
msgstr "Transizione articolo al passaggio del mouse"
|
5212 |
|
5213 |
-
# @ fl-builder
|
5214 |
#: modules/post-carousel/post-carousel.php:243
|
5215 |
#: modules/post-grid/post-grid.php:257
|
|
|
5216 |
msgid "Slide Up"
|
5217 |
msgstr "Slide Su"
|
5218 |
|
5219 |
-
# @ fl-builder
|
5220 |
#: modules/post-carousel/post-carousel.php:244
|
5221 |
#: modules/post-grid/post-grid.php:258
|
|
|
5222 |
msgid "Slide Down"
|
5223 |
msgstr "Slide Giù"
|
5224 |
|
5225 |
-
# @ fl-builder
|
5226 |
#: modules/post-carousel/post-carousel.php:245
|
5227 |
#: modules/post-grid/post-grid.php:259
|
|
|
5228 |
msgid "Scale Up"
|
5229 |
msgstr "Ingrandire"
|
5230 |
|
5231 |
-
# @ fl-builder
|
5232 |
#: modules/post-carousel/post-carousel.php:246
|
5233 |
#: modules/post-grid/post-grid.php:260
|
|
|
5234 |
msgid "Scale Down"
|
5235 |
msgstr "Ridurre"
|
5236 |
|
5237 |
-
# @ fl-builder
|
5238 |
#: modules/post-carousel/post-carousel.php:252
|
5239 |
-
#: modules/post-grid/post-grid.php:121
|
|
|
|
|
5240 |
msgid "Featured Image"
|
5241 |
msgstr "Immagine in evidenza"
|
5242 |
|
5243 |
-
# @ fl-builder
|
5244 |
#: modules/post-carousel/post-carousel.php:293
|
5245 |
#: modules/post-grid/post-grid.php:270
|
|
|
5246 |
msgid "Use Icon for Posts"
|
5247 |
msgstr "Usa icona per articoli"
|
5248 |
|
5249 |
-
# @ fl-builder
|
5250 |
#: modules/post-carousel/post-carousel.php:307
|
5251 |
#: modules/post-grid/post-grid.php:284
|
|
|
5252 |
msgid "Post Icon"
|
5253 |
msgstr "Icona articolo"
|
5254 |
|
5255 |
-
# @ fl-builder
|
5256 |
#: modules/post-carousel/post-carousel.php:311
|
5257 |
#: modules/post-grid/post-grid.php:288
|
|
|
5258 |
msgid "Post Icon Position"
|
5259 |
msgstr "Posizione icona articolo"
|
5260 |
|
5261 |
-
# @ fl-builder
|
5262 |
#: modules/post-carousel/post-carousel.php:314
|
5263 |
-
#: modules/post-grid/post-grid.php:142
|
|
|
|
|
5264 |
msgid "Above Text"
|
5265 |
msgstr "Sopra il testo"
|
5266 |
|
5267 |
-
# @ fl-builder
|
5268 |
#: modules/post-carousel/post-carousel.php:315
|
5269 |
#: modules/post-grid/post-grid.php:292
|
|
|
5270 |
msgid "Below Text"
|
5271 |
msgstr "Sotto il testo"
|
5272 |
|
5273 |
-
# @ fl-builder
|
5274 |
#: modules/post-carousel/post-carousel.php:320
|
5275 |
#: modules/post-grid/post-grid.php:297
|
|
|
5276 |
msgid "Post Icon Size"
|
5277 |
msgstr "Dimensione icona articolo"
|
5278 |
|
5279 |
-
# @ fl-builder
|
5280 |
#: modules/post-carousel/post-carousel.php:329
|
5281 |
-
#: modules/post-grid/post-grid.php:154
|
|
|
|
|
5282 |
msgid "Post Info"
|
5283 |
msgstr "Informazioni post"
|
5284 |
|
5285 |
-
# @ fl-builder
|
5286 |
#: modules/post-carousel/post-carousel.php:356
|
5287 |
-
#: modules/post-grid/post-grid.php:181
|
|
|
|
|
5288 |
msgid "Date Format"
|
5289 |
msgstr "Formato data"
|
5290 |
|
5291 |
-
# @ fl-builder
|
5292 |
#: modules/post-carousel/post-carousel.php:386
|
5293 |
-
#: modules/post-grid/post-grid.php:229
|
|
|
|
|
5294 |
msgid "More Link"
|
5295 |
msgstr "Collegamento \"Leggi tutto\""
|
5296 |
|
5297 |
-
# @ fl-builder
|
5298 |
#: modules/post-carousel/post-carousel.php:395
|
5299 |
-
#: modules/post-grid/post-grid.php:238
|
|
|
|
|
5300 |
msgid "More Link Text"
|
5301 |
msgstr "Testo \"Leggi tutto\""
|
5302 |
|
5303 |
-
# @ fl-builder
|
5304 |
#: modules/post-carousel/post-carousel.php:432
|
5305 |
#: modules/post-grid/post-grid.php:316
|
|
|
5306 |
msgid "Post Icon Color"
|
5307 |
msgstr "Colore icona articolo"
|
5308 |
|
5309 |
-
# @ fl-builder
|
5310 |
#: modules/post-grid/includes/frontend.php:41
|
|
|
5311 |
msgid "No posts found."
|
5312 |
msgstr "Nessun post trovato."
|
5313 |
|
5314 |
-
# @ fl-builder
|
5315 |
#: modules/post-grid/post-grid.php:15
|
|
|
5316 |
msgid "Display a grid of your WordPress posts."
|
5317 |
msgstr "Mostra una griglia con i tuoi post WordPress."
|
5318 |
|
5319 |
-
# @ fl-builder
|
5320 |
#: modules/post-grid/post-grid.php:51
|
|
|
5321 |
msgid "Layout Style"
|
5322 |
msgstr "Stile di layout"
|
5323 |
|
5324 |
-
# @ fl-builder
|
5325 |
#: modules/post-grid/post-grid.php:56
|
|
|
5326 |
msgid "Feed"
|
5327 |
msgstr "Feed"
|
5328 |
|
5329 |
-
# @ fl-builder
|
5330 |
#: modules/post-grid/post-grid.php:83
|
|
|
5331 |
msgid "Pagination Style"
|
5332 |
msgstr "Stile paginazione"
|
5333 |
|
5334 |
-
|
5335 |
-
#: modules/
|
|
|
5336 |
msgid "Numbers"
|
5337 |
msgstr "Numeri"
|
5338 |
|
5339 |
-
# @ fl-builder
|
5340 |
#: modules/post-grid/post-grid.php:88
|
|
|
5341 |
msgctxt "Pagination style."
|
5342 |
msgid "None"
|
5343 |
msgstr "Nessuna"
|
5344 |
|
5345 |
-
# @ fl-builder
|
5346 |
#: modules/post-grid/post-grid.php:93
|
|
|
5347 |
msgid "Posts Per Page"
|
5348 |
msgstr "Post per pagina"
|
5349 |
|
5350 |
-
# @ fl-builder
|
5351 |
#: modules/post-grid/post-grid.php:104
|
|
|
5352 |
msgid "Post Width"
|
5353 |
msgstr "Larghezza post"
|
5354 |
|
5355 |
-
# @ fl-builder
|
5356 |
#: modules/post-grid/post-grid.php:143
|
|
|
5357 |
msgid "Beside Text"
|
5358 |
msgstr "Accanto al testo"
|
5359 |
|
5360 |
-
|
5361 |
-
#: modules/post-
|
|
|
5362 |
msgid "Comments"
|
5363 |
msgstr "Commenti"
|
5364 |
|
5365 |
-
# @ fl-builder
|
5366 |
#: modules/post-grid/post-grid.php:220
|
|
|
5367 |
msgid "Content Type"
|
5368 |
msgstr "Tipo di contenuto"
|
5369 |
|
5370 |
-
# @ fl-builder
|
5371 |
#: modules/post-grid/post-grid.php:223
|
|
|
5372 |
msgid "Excerpt"
|
5373 |
msgstr "Riassunto"
|
5374 |
|
5375 |
-
# @ fl-builder
|
5376 |
#: modules/post-grid/post-grid.php:224
|
|
|
5377 |
msgid "Full Text"
|
5378 |
msgstr "Testo completo"
|
5379 |
|
5380 |
-
# @ fl-builder
|
5381 |
#: modules/post-grid/post-grid.php:253
|
|
|
5382 |
msgid "Hover Transition"
|
5383 |
msgstr "Transizione al passaggio del mouse"
|
5384 |
|
5385 |
-
# @ fl-builder
|
5386 |
#: modules/post-slider/post-slider.php:14
|
|
|
5387 |
msgid "Posts Slider"
|
5388 |
msgstr "Slider Articoli"
|
5389 |
|
5390 |
-
# @ fl-builder
|
5391 |
#: modules/post-slider/post-slider.php:15
|
|
|
5392 |
msgid "Display a slider of your WordPress posts."
|
5393 |
msgstr "Visualizza uno slider dei tuoi articoli WordPress."
|
5394 |
|
5395 |
-
# @ fl-builder
|
5396 |
#: modules/post-slider/post-slider.php:350
|
5397 |
-
|
5398 |
-
"This setting is the minimum height of the post slider. Content will expand "
|
5399 |
-
"
|
5400 |
-
msgstr ""
|
5401 |
-
"Questa impostazione è l'altezza minima dello slider di articoli. Il "
|
5402 |
-
"contenuto espanderà l'altezza automaticamente."
|
5403 |
|
5404 |
-
# @ fl-builder
|
5405 |
#: modules/post-slider/post-slider.php:440
|
|
|
5406 |
msgid "Show Featured Image?"
|
5407 |
msgstr "Mostra immagine in evidenza?"
|
5408 |
|
5409 |
-
# @ fl-builder
|
5410 |
#: modules/post-slider/post-slider.php:628
|
5411 |
-
|
5412 |
-
"The position will move the content layout selections left, right or bottom "
|
5413 |
-
"
|
5414 |
-
msgstr ""
|
5415 |
-
"La posizione sposterà il layout del contenuto selezionato a sinistra, destra "
|
5416 |
-
"o in basso sopra lo sfondo della slide."
|
5417 |
|
5418 |
-
# @ fl-builder
|
5419 |
#: modules/post-slider/post-slider.php:647
|
5420 |
-
|
5421 |
-
"The position will move the content layout selections left or right or center "
|
5422 |
-
"
|
5423 |
-
msgstr ""
|
5424 |
-
"La posizione sposterà il contenuto selezionato a sinistra, destra o al "
|
5425 |
-
"centro dell'immagine di anteprima della slide."
|
5426 |
|
5427 |
-
# @ fl-builder
|
5428 |
#: modules/post-slider/post-slider.php:663
|
|
|
5429 |
msgid "Text Width"
|
5430 |
msgstr "Larghezza testo"
|
5431 |
|
5432 |
-
# @ fl-builder
|
5433 |
#: modules/post-slider/post-slider.php:671
|
|
|
5434 |
msgid "Text Padding"
|
5435 |
msgstr "Padding testo"
|
5436 |
|
5437 |
-
# @ fl-builder
|
5438 |
#: modules/post-slider/post-slider.php:736
|
|
|
5439 |
msgid "Text Background Gradient"
|
5440 |
msgstr "Gradiente di sfondo del testo"
|
5441 |
|
5442 |
-
# @ fl-builder
|
5443 |
#: modules/pricing-table/pricing-table.php:14
|
|
|
5444 |
msgid "Pricing Table"
|
5445 |
msgstr "Tabella dei prezzi"
|
5446 |
|
5447 |
-
# @ fl-builder
|
5448 |
#: modules/pricing-table/pricing-table.php:15
|
|
|
5449 |
msgid "A simple pricing table generator."
|
5450 |
msgstr "Un semplice generatore di tabelle dei prezzi."
|
5451 |
|
5452 |
-
# @ fl-builder
|
5453 |
#: modules/pricing-table/pricing-table.php:55
|
|
|
5454 |
msgid "Pricing Boxes"
|
5455 |
msgstr "Riquadri dei prezzi"
|
5456 |
|
5457 |
-
# @ fl-builder
|
5458 |
#: modules/pricing-table/pricing-table.php:62
|
|
|
5459 |
msgid "Pricing Box"
|
5460 |
msgstr "Riquadro prezzo"
|
5461 |
|
5462 |
-
# @ fl-builder
|
5463 |
#: modules/testimonials/testimonials.php:41
|
|
|
5464 |
msgid "Wide"
|
5465 |
msgstr "Ampia"
|
5466 |
|
5467 |
-
# @ fl-builder
|
5468 |
#: modules/pricing-table/pricing-table.php:118
|
|
|
5469 |
msgid "Features Min Height"
|
5470 |
msgstr "Min altezza caratteristiche"
|
5471 |
|
5472 |
-
# @ fl-builder
|
5473 |
#: modules/pricing-table/pricing-table.php:122
|
5474 |
-
|
5475 |
-
"Use this to normalize the height of your boxes when they have different "
|
5476 |
-
"
|
5477 |
-
msgstr ""
|
5478 |
-
"Usatelo per normalizzare l'altezza dei vostri riquadri quando hanno un "
|
5479 |
-
"diverso numero di funzionalità."
|
5480 |
|
5481 |
-
# @ fl-builder
|
5482 |
#: modules/pricing-table/pricing-table.php:131
|
|
|
5483 |
msgid "Add Pricing Box"
|
5484 |
msgstr "Aggiungi riquadro prezzo"
|
5485 |
|
5486 |
-
# @ fl-builder
|
5487 |
#: modules/pricing-table/pricing-table.php:145
|
|
|
5488 |
msgid "Title Size"
|
5489 |
msgstr "Dimensione del titolo"
|
5490 |
|
5491 |
-
# @ fl-builder
|
5492 |
#: modules/pricing-table/pricing-table.php:154
|
|
|
5493 |
msgid "Price Box"
|
5494 |
msgstr "Riquadro prezzo"
|
5495 |
|
5496 |
-
# @ fl-builder
|
5497 |
#: modules/pricing-table/pricing-table.php:82
|
5498 |
#: modules/pricing-table/pricing-table.php:158
|
5499 |
#: modules/woocommerce/woocommerce.php:195
|
|
|
5500 |
msgid "Price"
|
5501 |
msgstr "Prezzo"
|
5502 |
|
5503 |
-
# @ fl-builder
|
5504 |
#: modules/pricing-table/pricing-table.php:162
|
|
|
5505 |
msgid "Duration"
|
5506 |
msgstr "Durata"
|
5507 |
|
5508 |
-
# @ fl-builder
|
5509 |
#: modules/pricing-table/pricing-table.php:163
|
|
|
5510 |
msgid "per Year"
|
5511 |
msgstr "per anno"
|
5512 |
|
5513 |
-
# @ fl-builder
|
5514 |
#: modules/pricing-table/pricing-table.php:167
|
|
|
5515 |
msgid "Price Size"
|
5516 |
msgstr "Dimensione prezzo"
|
5517 |
|
5518 |
-
# @ fl-builder
|
5519 |
#: modules/pricing-table/pricing-table.php:196
|
5520 |
#: modules/subscribe-form/subscribe-form.php:179
|
|
|
5521 |
msgid "Button Text"
|
5522 |
msgstr "Testo del pulsante "
|
5523 |
|
5524 |
-
# @ fl-builder
|
5525 |
#: modules/pricing-table/pricing-table.php:201
|
|
|
5526 |
msgid "Button URL"
|
5527 |
msgstr "URL pulsante"
|
5528 |
|
5529 |
-
# @ fl-builder
|
5530 |
#: modules/pricing-table/pricing-table.php:176
|
|
|
5531 |
msgctxt "Price features displayed in pricing box."
|
5532 |
msgid "Features"
|
5533 |
msgstr "Caratteristiche"
|
5534 |
|
5535 |
-
# @ fl-builder
|
5536 |
#: modules/pricing-table/pricing-table.php:181
|
|
|
5537 |
msgid "One feature per line. HTML is okay."
|
5538 |
msgstr "Una caratteristica per ogni riga. HTML va bene."
|
5539 |
|
5540 |
-
# @ fl-builder
|
5541 |
#: modules/pricing-table/pricing-table.php:364
|
|
|
5542 |
msgid "Box Foreground"
|
5543 |
msgstr "Riempimento riquadro"
|
5544 |
|
5545 |
-
# @ fl-builder
|
5546 |
#: modules/pricing-table/pricing-table.php:370
|
|
|
5547 |
msgid "Accent Color"
|
5548 |
msgstr "Colore di accento"
|
5549 |
|
5550 |
-
# @ fl-builder
|
5551 |
#: modules/pricing-table/pricing-table.php:375
|
|
|
5552 |
msgid "Accent Text Color"
|
5553 |
msgstr "Colore accento del testo"
|
5554 |
|
5555 |
-
# @ fl-builder
|
5556 |
#: modules/pricing-table/pricing-table.php:379
|
|
|
5557 |
msgid "Box Top Margin"
|
5558 |
msgstr "Margine superiore del box"
|
5559 |
|
5560 |
-
# @ fl-builder
|
5561 |
#: modules/rich-text/rich-text.php:15
|
|
|
5562 |
msgid "A WYSIWYG text editor."
|
5563 |
msgstr "Un editor di testo WYSIWYG."
|
5564 |
|
5565 |
-
# @ fl-builder
|
5566 |
#: modules/separator/separator.php:15
|
|
|
5567 |
msgid "A divider line to separate content."
|
5568 |
msgstr "Una linea divisore per separare il contenuto."
|
5569 |
|
5570 |
-
# @ fl-builder
|
5571 |
#: modules/separator/separator.php:86
|
5572 |
-
|
5573 |
-
"The type of border to use. Double borders must have a height of at least 3px "
|
5574 |
-
"
|
5575 |
-
msgstr ""
|
5576 |
-
"Il tipo di bordo da utilizzare. I bordi doppi devono avere un'altezza di "
|
5577 |
-
"almeno 3px per essere visualizzati correttamente."
|
5578 |
|
5579 |
-
# @ fl-builder
|
5580 |
#: modules/sidebar/includes/settings-general.php:5
|
5581 |
#: modules/sidebar/sidebar.php:14
|
|
|
5582 |
msgid "Sidebar"
|
5583 |
msgstr "Sidebar"
|
5584 |
|
5585 |
-
# @ fl-builder
|
5586 |
#: modules/sidebar/sidebar.php:15
|
5587 |
-
|
5588 |
-
"Display a WordPress sidebar that has been registered by the current theme."
|
5589 |
-
msgstr ""
|
5590 |
-
"Mostra una sidebar di WordPress che è stata registrata dal tema corrente."
|
5591 |
|
5592 |
-
# @ fl-builder
|
5593 |
#: modules/slideshow/slideshow.php:14
|
|
|
5594 |
msgid "Slideshow"
|
5595 |
msgstr "Slideshow"
|
5596 |
|
5597 |
-
# @ fl-builder
|
5598 |
#: modules/slideshow/slideshow.php:15
|
|
|
5599 |
msgid "Display multiple photos in a slideshow view."
|
5600 |
msgstr "Mostra più foto in uno slideshow."
|
5601 |
|
5602 |
-
# @ fl-builder
|
5603 |
#: modules/slideshow/slideshow.php:311
|
|
|
5604 |
msgid "Skin Color"
|
5605 |
msgstr "Colore skin"
|
5606 |
|
5607 |
-
# @ fl-builder
|
5608 |
#: modules/slideshow/slideshow.php:314
|
|
|
5609 |
msgctxt "Color."
|
5610 |
msgid "Light"
|
5611 |
msgstr "Chiaro"
|
5612 |
|
5613 |
-
# @ fl-builder
|
5614 |
#: modules/slideshow/slideshow.php:315
|
|
|
5615 |
msgctxt "Color."
|
5616 |
msgid "Dark"
|
5617 |
msgstr "Scuro"
|
5618 |
|
5619 |
-
# @ fl-builder
|
5620 |
#: modules/slideshow/slideshow.php:317
|
5621 |
-
|
5622 |
-
"If your overall theme/images are lighter in color, light will display "
|
5623 |
-
"
|
5624 |
-
msgstr ""
|
5625 |
-
"Se complessivamente il tuo tema/immagini sono di colore chiaro, "
|
5626 |
-
"l'impostazione Chiaro mostrerà i pulsanti con uno schema di colore più scuro "
|
5627 |
-
"e viceversa per l'impostazione Scuro."
|
5628 |
|
5629 |
-
# @ fl-builder
|
5630 |
#: modules/slideshow/slideshow.php:327
|
5631 |
-
|
5632 |
-
"Crop set to no will fit the slideshow images to the height you specify and "
|
5633 |
-
"
|
5634 |
-
"images to all sides of the content area while cropping the left and right to "
|
5635 |
-
"fit the height you specify."
|
5636 |
-
msgstr ""
|
5637 |
-
"Ritaglia impostatato su No adatterà le immagini dello slideshow all'altezza "
|
5638 |
-
"che specifichi mantenendo la larghezza in proporzione, mentre Ritaglia "
|
5639 |
-
"impostato su Si adatterà le immagini dello slideshow su tutti i lati "
|
5640 |
-
"dell'area di contenuto tagliando a destra e sinistra per adattarsi "
|
5641 |
-
"all'altezza che specifichi."
|
5642 |
|
5643 |
-
# @ fl-builder
|
5644 |
#: modules/slideshow/slideshow.php:331
|
|
|
5645 |
msgid "Disable Right-Click"
|
5646 |
msgstr "Disabilitare il tasto destro del mouse"
|
5647 |
|
5648 |
-
# @ fl-builder
|
5649 |
#: modules/slideshow/slideshow.php:351
|
|
|
5650 |
msgctxt "Click action type."
|
5651 |
msgid "None"
|
5652 |
msgstr "Nessuna"
|
5653 |
|
5654 |
-
# @ fl-builder
|
5655 |
#: modules/slideshow/slideshow.php:375
|
|
|
5656 |
msgid "Playback"
|
5657 |
msgstr "Riproduzione"
|
5658 |
|
5659 |
-
# @ fl-builder
|
5660 |
#: modules/slideshow/slideshow.php:401
|
|
|
5661 |
msgctxt "Slideshow transition."
|
5662 |
msgid "None"
|
5663 |
msgstr "Nessuna"
|
5664 |
|
5665 |
-
# @ fl-builder
|
5666 |
#: modules/slideshow/slideshow.php:438
|
|
|
5667 |
msgid "Controls"
|
5668 |
msgstr "Controlli"
|
5669 |
|
5670 |
-
|
5671 |
-
#: modules/slideshow/slideshow.php:
|
|
|
5672 |
msgid "Navigation Arrows"
|
5673 |
msgstr "Frecce di navigazione"
|
5674 |
|
5675 |
-
# @ fl-builder
|
5676 |
#: modules/slideshow/slideshow.php:451
|
5677 |
-
|
5678 |
-
"Navigational arrows allow the visitor to freely move through the images in "
|
5679 |
-
"
|
5680 |
-
"and are separate from the control bar navigational arrows."
|
5681 |
-
msgstr ""
|
5682 |
-
"Le frecce di navigazione permettono al visitatore di muoversi liberamente "
|
5683 |
-
"tra le immagini nella presentazione. Queste sono grandi frecce sovrapposte "
|
5684 |
-
"alle immagini dello slideshow che sono separate dalle frecce di navigazione "
|
5685 |
-
"nella barra di controllo."
|
5686 |
|
5687 |
-
# @ fl-builder
|
5688 |
#: modules/slideshow/slideshow.php:456
|
|
|
5689 |
msgid "Control Bar"
|
5690 |
msgstr "Barra di controllo"
|
5691 |
|
5692 |
-
# @ fl-builder
|
5693 |
#: modules/slideshow/slideshow.php:460
|
|
|
5694 |
msgid "Nav Type"
|
5695 |
msgstr "Tipo di navigazione"
|
5696 |
|
5697 |
-
# @ fl-builder
|
5698 |
#: modules/slideshow/slideshow.php:463
|
|
|
5699 |
msgctxt "Nav type."
|
5700 |
msgid "None"
|
5701 |
msgstr "Nessuna"
|
5702 |
|
5703 |
-
# @ fl-builder
|
5704 |
#: modules/slideshow/slideshow.php:464
|
|
|
5705 |
msgid "Buttons"
|
5706 |
msgstr "Pulsanti"
|
5707 |
|
5708 |
-
|
5709 |
-
#: modules/slideshow/slideshow.php:
|
|
|
5710 |
msgid "Thumbs"
|
5711 |
msgstr "Miniature"
|
5712 |
|
5713 |
-
# @ fl-builder
|
5714 |
#: modules/slideshow/slideshow.php:480
|
|
|
5715 |
msgid "Nav Position"
|
5716 |
msgstr "Posizione della navigazione"
|
5717 |
|
5718 |
-
# @ fl-builder
|
5719 |
#: modules/slideshow/slideshow.php:490
|
|
|
5720 |
msgid "Control Bar Buttons"
|
5721 |
msgstr "Pulsanti in barra di controllo"
|
5722 |
|
5723 |
-
# @ fl-builder
|
5724 |
#: modules/slideshow/slideshow.php:503
|
|
|
5725 |
msgid "Play Button"
|
5726 |
msgstr "Pulsante Play"
|
5727 |
|
5728 |
-
# @ fl-builder
|
5729 |
#: modules/slideshow/slideshow.php:512
|
|
|
5730 |
msgid "Fullscreen Button"
|
5731 |
msgstr "Pulsante FullScreen"
|
5732 |
|
5733 |
-
# @ fl-builder
|
5734 |
#: modules/slideshow/slideshow.php:521
|
|
|
5735 |
msgid "Photo Count"
|
5736 |
msgstr "Contatore foto"
|
5737 |
|
5738 |
-
# @ fl-builder
|
5739 |
#: modules/slideshow/slideshow.php:530
|
|
|
5740 |
msgid "Thumbs Button"
|
5741 |
msgstr "Pulsante miniatura"
|
5742 |
|
5743 |
-
# @ fl-builder
|
5744 |
#: modules/slideshow/slideshow.php:539
|
|
|
5745 |
msgid "Caption Button"
|
5746 |
msgstr "Pulsante didascalia"
|
5747 |
|
5748 |
-
# @ fl-builder
|
5749 |
#: modules/slideshow/slideshow.php:548
|
|
|
5750 |
msgid "Social Button"
|
5751 |
msgstr "Pulsante sociale"
|
5752 |
|
5753 |
-
# @ fl-builder
|
5754 |
#: modules/slideshow/slideshow.php:558
|
|
|
5755 |
msgid "Control Bar Overlay"
|
5756 |
msgstr "Sovrapposizione della barra di controllo"
|
5757 |
|
5758 |
-
# @ fl-builder
|
5759 |
#: modules/slideshow/slideshow.php:562
|
|
|
5760 |
msgid "Overlay Enabled"
|
5761 |
msgstr "Sovrapposizione abilitata"
|
5762 |
|
5763 |
-
# @ fl-builder
|
5764 |
#: modules/slideshow/slideshow.php:573
|
5765 |
-
|
5766 |
-
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
5767 |
-
"
|
5768 |
-
msgstr ""
|
5769 |
-
"La sovrapposizione della barra di controllo specifica se i pulsanti della "
|
5770 |
-
"barra controllo che scegliete saranno sovrapposti alle immagini dello "
|
5771 |
-
"slideshow o se saranno collocati sotto lo slideshow."
|
5772 |
|
5773 |
-
# @ fl-builder
|
5774 |
#: modules/slideshow/slideshow.php:577
|
|
|
5775 |
msgid "Overlay Hide"
|
5776 |
msgstr "Nascondi overlay"
|
5777 |
|
5778 |
-
# @ fl-builder
|
5779 |
#: modules/slideshow/slideshow.php:583
|
5780 |
-
|
5781 |
-
"Overlay hide will hide the control bar after however many seconds you "
|
5782 |
-
"
|
5783 |
-
msgstr ""
|
5784 |
-
"Nascondi overlay nasconde la barra di controllo dopo un certo numero di "
|
5785 |
-
"secondi specificato qui sotto. Essa riapparirà passando sopra con il mouse."
|
5786 |
|
5787 |
-
# @ fl-builder
|
5788 |
#: modules/slideshow/slideshow.php:587
|
|
|
5789 |
msgid "Overlay Hide Delay"
|
5790 |
msgstr "Ritardo nascondi overlay"
|
5791 |
|
5792 |
-
# @ fl-builder
|
5793 |
#: modules/slideshow/slideshow.php:599
|
|
|
5794 |
msgid "Thumbs Size"
|
5795 |
msgstr "Dimensione miniature"
|
5796 |
|
5797 |
-
# @ fl-builder
|
5798 |
#: modules/slideshow/slideshow.php:608
|
|
|
5799 |
msgid "Social"
|
5800 |
msgstr "Social"
|
5801 |
|
5802 |
-
# @ fl-builder
|
5803 |
#: modules/slideshow/slideshow.php:612
|
|
|
5804 |
msgid "Facebook Button"
|
5805 |
msgstr "Pulsante Facebook"
|
5806 |
|
5807 |
-
# @ fl-builder
|
5808 |
#: modules/slideshow/slideshow.php:624
|
|
|
5809 |
msgid "Twitter Button"
|
5810 |
msgstr "Pulsante Twitter"
|
5811 |
|
5812 |
-
# @ fl-builder
|
5813 |
#: modules/slideshow/slideshow.php:636
|
|
|
5814 |
msgid "Google Plus Button"
|
5815 |
msgstr "Pulsante Google Plus"
|
5816 |
|
5817 |
-
# @ fl-builder
|
5818 |
#: modules/slideshow/slideshow.php:648
|
|
|
5819 |
msgid "Pinterest Button"
|
5820 |
msgstr "Pulsante Pinterest"
|
5821 |
|
5822 |
-
# @ fl-builder
|
5823 |
#: modules/social-buttons/social-buttons.php:14
|
|
|
5824 |
msgid "Social Buttons"
|
5825 |
msgstr "Pulsanti Social"
|
5826 |
|
5827 |
-
# @ fl-builder
|
5828 |
#: modules/social-buttons/social-buttons.php:15
|
|
|
5829 |
msgid "Displays social buttons."
|
5830 |
msgstr "Mostra i pulsanti sociali."
|
5831 |
|
5832 |
-
# @ fl-builder
|
5833 |
#: modules/social-buttons/social-buttons.php:72
|
|
|
5834 |
msgid "Target URL"
|
5835 |
msgstr "URL di destinazione"
|
5836 |
|
5837 |
-
# @ fl-builder
|
5838 |
#: modules/social-buttons/social-buttons.php:76
|
|
|
5839 |
msgid "Current Page"
|
5840 |
msgstr "Pagina corrente"
|
5841 |
|
5842 |
-
# @ fl-builder
|
5843 |
#: modules/social-buttons/social-buttons.php:83
|
5844 |
-
|
5845 |
-
"The Target URL field correlates to the page you would like your social icons "
|
5846 |
-
"
|
5847 |
-
"whatever you put in this field."
|
5848 |
-
msgstr ""
|
5849 |
-
"Il campo URL di destinazione è correlato alla pagina con cui vuoi "
|
5850 |
-
"interfacciare le tue icone social. Ad esempio, se si visualizza Facebook, "
|
5851 |
-
"l'utente farà \"Like\" su ciò che hai inserito in questo campo."
|
5852 |
|
5853 |
-
# @ fl-builder
|
5854 |
#: modules/social-buttons/social-buttons.php:90
|
|
|
5855 |
msgid "Custom URL"
|
5856 |
msgstr "URL personalizzato"
|
5857 |
|
5858 |
-
# @ fl-builder
|
5859 |
#: modules/social-buttons/social-buttons.php:108
|
|
|
5860 |
msgid "Show Facebook"
|
5861 |
msgstr "Mostra Facebook"
|
5862 |
|
5863 |
-
# @ fl-builder
|
5864 |
#: modules/social-buttons/social-buttons.php:117
|
|
|
5865 |
msgid "Show Twitter"
|
5866 |
msgstr "Mostra Twitter"
|
5867 |
|
5868 |
-
# @ fl-builder
|
5869 |
#: modules/social-buttons/social-buttons.php:126
|
|
|
5870 |
msgid "Show Google+"
|
5871 |
msgstr "Mostra Google+"
|
5872 |
|
5873 |
-
# @ fl-builder
|
5874 |
#: modules/subscribe-form/includes/frontend.php:5
|
|
|
5875 |
msgctxt "First and last name."
|
5876 |
msgid "Name"
|
5877 |
msgstr "Nome"
|
5878 |
|
5879 |
-
# @ fl-builder
|
5880 |
#: modules/subscribe-form/includes/frontend.php:12
|
|
|
5881 |
msgid "Please enter a valid email address."
|
5882 |
msgstr "Si prega di inserire un indirizzo email valido."
|
5883 |
|
5884 |
-
# @ fl-builder
|
5885 |
#: modules/subscribe-form/includes/frontend.php:41
|
|
|
5886 |
msgid "Something went wrong. Please check your entries and try again."
|
5887 |
-
msgstr ""
|
5888 |
-
"Qualcosa è andato storto. Si prega di verificare i dati immessi e riprovare."
|
5889 |
|
5890 |
-
# @ fl-builder
|
5891 |
#: modules/subscribe-form/subscribe-form.php:18
|
|
|
5892 |
msgid "Subscribe Form"
|
5893 |
msgstr "Modulo di iscrizione"
|
5894 |
|
5895 |
-
# @ fl-builder
|
5896 |
#: modules/subscribe-form/subscribe-form.php:19
|
|
|
5897 |
msgid "Adds a simple subscribe form to your layout."
|
5898 |
msgstr "Aggiunge un semplice modulo di iscrizione al tuo layout."
|
5899 |
|
5900 |
-
# @ fl-builder
|
5901 |
#: modules/contact-form/contact-form.php:132
|
5902 |
#: modules/subscribe-form/subscribe-form.php:129
|
|
|
5903 |
msgid "Success"
|
5904 |
msgstr "Successo"
|
5905 |
|
5906 |
-
# @ fl-builder
|
5907 |
#: modules/contact-form/contact-form.php:136
|
5908 |
#: modules/subscribe-form/subscribe-form.php:133
|
|
|
5909 |
msgid "Success Action"
|
5910 |
msgstr "Azione di successo"
|
5911 |
|
5912 |
-
# @ fl-builder
|
5913 |
#: modules/contact-form/contact-form.php:139
|
5914 |
#: modules/subscribe-form/subscribe-form.php:135
|
|
|
5915 |
msgid "Show Message"
|
5916 |
msgstr "Mostra messaggio"
|
5917 |
|
5918 |
-
# @ fl-builder
|
5919 |
#: modules/contact-form/contact-form.php:140
|
5920 |
#: modules/subscribe-form/subscribe-form.php:136
|
|
|
5921 |
msgid "Redirect"
|
5922 |
msgstr "Redireziona"
|
5923 |
|
5924 |
-
# @ fl-builder
|
5925 |
#: modules/subscribe-form/subscribe-form.php:155
|
5926 |
-
|
5927 |
-
"Thanks for subscribing! Please check your email for further instructions."
|
5928 |
-
msgstr ""
|
5929 |
-
"Grazie per l'iscrizione! Per favore controlla la tua email per ulteriori "
|
5930 |
-
"istruzioni."
|
5931 |
|
5932 |
-
# @ fl-builder
|
5933 |
#: modules/contact-form/contact-form.php:166
|
5934 |
#: modules/subscribe-form/subscribe-form.php:162
|
|
|
5935 |
msgid "Success URL"
|
5936 |
msgstr "URL successo"
|
5937 |
|
5938 |
-
# @ fl-builder
|
5939 |
#: modules/subscribe-form/subscribe-form.php:180
|
|
|
5940 |
msgid "Subscribe!"
|
5941 |
msgstr "Iscriviti!"
|
5942 |
|
5943 |
-
# @ fl-builder
|
5944 |
#: modules/tabs/tabs.php:14
|
|
|
5945 |
msgid "Tabs"
|
5946 |
msgstr "Schede"
|
5947 |
|
5948 |
-
# @ fl-builder
|
5949 |
#: modules/tabs/tabs.php:15
|
|
|
5950 |
msgid "Display a collection of tabbed content."
|
5951 |
msgstr "Mostra una raccolta di contenuti a schede."
|
5952 |
|
5953 |
-
# @ fl-builder
|
5954 |
#: modules/testimonials/testimonials.php:14
|
5955 |
#: modules/testimonials/testimonials.php:61
|
5956 |
#: modules/testimonials/testimonials.php:175
|
|
|
5957 |
msgid "Testimonials"
|
5958 |
msgstr "Testimonianze"
|
5959 |
|
5960 |
-
# @ fl-builder
|
5961 |
#: modules/testimonials/testimonials.php:15
|
|
|
5962 |
msgid "An animated tesimonials area."
|
5963 |
msgstr "Un'area animata per i testimonials."
|
5964 |
|
5965 |
-
# @ fl-builder
|
5966 |
#: modules/testimonials/testimonials.php:42
|
|
|
5967 |
msgid "Compact"
|
5968 |
msgstr "Compatto"
|
5969 |
|
5970 |
-
# @ fl-builder
|
5971 |
#: modules/testimonials/testimonials.php:52
|
|
|
5972 |
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
5973 |
msgstr "Ampia è per righe con 1 colonna, compatta è per righe multi-colonna."
|
5974 |
|
5975 |
-
# @ fl-builder
|
5976 |
#: modules/testimonials/testimonials.php:79
|
|
|
5977 |
msgid "Slider Settings"
|
5978 |
msgstr "Impostazioni Slider"
|
5979 |
|
5980 |
-
# @ fl-builder
|
5981 |
#: modules/testimonials/testimonials.php:136
|
|
|
5982 |
msgid "Arrow Color"
|
5983 |
msgstr "Colore freccia "
|
5984 |
|
5985 |
-
# @ fl-builder
|
5986 |
#: modules/testimonials/testimonials.php:166
|
|
|
5987 |
msgid "Dot Color"
|
5988 |
msgstr "Colore punto"
|
5989 |
|
5990 |
-
# @ fl-builder
|
5991 |
#: modules/testimonials/testimonials.php:182
|
|
|
5992 |
msgid "Testimonial"
|
5993 |
msgstr "Testimonial"
|
5994 |
|
5995 |
-
# @ fl-builder
|
5996 |
#: modules/testimonials/testimonials.php:198
|
|
|
5997 |
msgid "Add Testimonial"
|
5998 |
msgstr "Aggiungi Testimonial"
|
5999 |
|
6000 |
-
# @ fl-builder
|
6001 |
#: modules/video/video.php:20
|
|
|
6002 |
msgid "Render a WordPress or embedable video."
|
6003 |
msgstr "Visualizza un video caricato in WordPress o embed."
|
6004 |
|
6005 |
-
# @ fl-builder
|
6006 |
#: modules/video/video.php:89
|
|
|
6007 |
msgid "Video Type"
|
6008 |
msgstr "Tipo di video"
|
6009 |
|
6010 |
-
# @ fl-builder
|
6011 |
#: modules/video/video.php:93
|
|
|
6012 |
msgid "Embed"
|
6013 |
msgstr "Embed"
|
6014 |
|
6015 |
-
# @ fl-builder
|
6016 |
#: modules/video/video.php:119
|
|
|
6017 |
msgctxt "Video preview/fallback image."
|
6018 |
msgid "Poster"
|
6019 |
msgstr "Poster"
|
6020 |
|
6021 |
-
# @ fl-builder
|
6022 |
#: modules/widget/includes/frontend.php:34
|
6023 |
#: modules/widget/includes/settings-general.php:46
|
6024 |
#, php-format
|
|
|
6025 |
msgctxt "%s stands for widget slug."
|
6026 |
msgid "%s no longer exists."
|
6027 |
msgstr "%s non esiste più."
|
6028 |
|
6029 |
-
# @ fl-builder
|
6030 |
#: modules/widget/widget.php:14
|
|
|
6031 |
msgid "Widget"
|
6032 |
msgstr "Widget"
|
6033 |
|
6034 |
-
# @ fl-builder
|
6035 |
#: modules/widget/widget.php:15
|
|
|
6036 |
msgid "Display a WordPress widget."
|
6037 |
msgstr "Mostra un widget di WordPress."
|
6038 |
|
6039 |
-
# @ fl-builder
|
6040 |
#: modules/woocommerce/woocommerce.php:16
|
|
|
6041 |
msgid "WooCommerce"
|
6042 |
msgstr "WooCommerce"
|
6043 |
|
6044 |
-
# @ fl-builder
|
6045 |
#: modules/woocommerce/woocommerce.php:17
|
|
|
6046 |
msgid "Display products or categories from your WooCommerce store."
|
6047 |
msgstr "Mostra prodotti o categorie dal tuo negozio WooCommerce."
|
6048 |
|
6049 |
-
# @ fl-builder
|
6050 |
#: modules/woocommerce/woocommerce.php:62
|
|
|
6051 |
msgid "Single Product"
|
6052 |
msgstr "Singolo prodotto"
|
6053 |
|
6054 |
-
# @ fl-builder
|
6055 |
#: modules/woocommerce/woocommerce.php:64
|
6056 |
#: modules/woocommerce/woocommerce.php:118
|
|
|
6057 |
msgid "Multiple Products"
|
6058 |
msgstr "Prodotti multipli"
|
6059 |
|
6060 |
-
# @ fl-builder
|
6061 |
#: modules/woocommerce/woocommerce.php:65
|
|
|
6062 |
msgid "\"Add to Cart\" Button"
|
6063 |
msgstr "Pulsante \"Aggiungi al carrello\""
|
6064 |
|
6065 |
-
# @ fl-builder
|
6066 |
#: modules/woocommerce/woocommerce.php:66
|
|
|
6067 |
msgid "Categories"
|
6068 |
msgstr "Categorie"
|
6069 |
|
6070 |
-
# @ fl-builder
|
6071 |
#: modules/woocommerce/woocommerce.php:67
|
|
|
6072 |
msgid "Cart"
|
6073 |
msgstr "Carrello"
|
6074 |
|
6075 |
-
# @ fl-builder
|
6076 |
#: modules/woocommerce/woocommerce.php:68
|
|
|
6077 |
msgid "Checkout"
|
6078 |
msgstr "Checkout"
|
6079 |
|
6080 |
-
# @ fl-builder
|
6081 |
#: modules/woocommerce/woocommerce.php:69
|
|
|
6082 |
msgid "Order Tracking"
|
6083 |
msgstr "Tracciabilità ordine"
|
6084 |
|
6085 |
-
# @ fl-builder
|
6086 |
#: modules/woocommerce/woocommerce.php:70
|
|
|
6087 |
msgid "My Account"
|
6088 |
msgstr "Il mio Account"
|
6089 |
|
6090 |
-
# @ fl-builder
|
6091 |
#: modules/woocommerce/woocommerce.php:92
|
|
|
6092 |
msgid "Product ID"
|
6093 |
msgstr "ID prodotto"
|
6094 |
|
6095 |
-
# @ fl-builder
|
6096 |
#: modules/woocommerce/woocommerce.php:95
|
6097 |
-
|
6098 |
-
"As you add products in the WooCommerce Products area, each will be assigned "
|
6099 |
-
"
|
6100 |
-
"area and rolling over the product. The unique ID will be the first attribute."
|
6101 |
-
msgstr ""
|
6102 |
-
"Quando si aggiungono prodotti nell'area prodotti WooCommerce, ad ognuno "
|
6103 |
-
"verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico "
|
6104 |
-
"visitando l'area prodotti e passando il mouse sopra al prodotto. L'ID "
|
6105 |
-
"univoco sarà il primo attributo."
|
6106 |
|
6107 |
-
# @ fl-builder
|
6108 |
#: modules/woocommerce/woocommerce.php:99
|
|
|
6109 |
msgid "Parent Category ID"
|
6110 |
msgstr "ID categoria genitore"
|
6111 |
|
6112 |
-
# @ fl-builder
|
6113 |
#: modules/woocommerce/woocommerce.php:102
|
6114 |
-
|
6115 |
-
"As you add product categories in the WooCommerce Products area, each will be "
|
6116 |
-
"
|
6117 |
-
"the categories area under Products and looking in the URL that is displayed "
|
6118 |
-
"in your browser. The ID will be the only number value in the URL."
|
6119 |
-
msgstr ""
|
6120 |
-
"Quando si aggiungono categorie di prodotto nell'area prodotti WooCommerce, a "
|
6121 |
-
"ciascuna verrà assegnato un ID univoco. Questo ID è reperibile passando il "
|
6122 |
-
"mouse sulla categoria nell'area categorie sotto Prodotti e guardando l'URL "
|
6123 |
-
"visualizzato nel browser. L'ID sarà l'unico valore numerico nell'URL."
|
6124 |
|
6125 |
-
# @ fl-builder
|
6126 |
#: modules/woocommerce/woocommerce.php:106
|
6127 |
#: modules/woocommerce/woocommerce.php:177
|
|
|
6128 |
msgid "Columns"
|
6129 |
msgstr "Colonne"
|
6130 |
|
6131 |
-
# @ fl-builder
|
6132 |
#: modules/woocommerce/woocommerce.php:122
|
|
|
6133 |
msgid "Products Source"
|
6134 |
msgstr "Sorgente prodotti"
|
6135 |
|
6136 |
-
# @ fl-builder
|
6137 |
#: modules/woocommerce/woocommerce.php:125
|
|
|
6138 |
msgid "Products IDs"
|
6139 |
msgstr "ID prodotti "
|
6140 |
|
6141 |
-
# @ fl-builder
|
6142 |
#: modules/woocommerce/woocommerce.php:126
|
|
|
6143 |
msgid "Product Category"
|
6144 |
msgstr "Categoria prodotto"
|
6145 |
|
6146 |
-
# @ fl-builder
|
6147 |
#: modules/woocommerce/woocommerce.php:127
|
|
|
6148 |
msgid "Recent Products"
|
6149 |
msgstr "Prodotti recenti"
|
6150 |
|
6151 |
-
# @ fl-builder
|
6152 |
#: modules/woocommerce/woocommerce.php:128
|
|
|
6153 |
msgid "Featured Products"
|
6154 |
msgstr "Prodotti in vetrina"
|
6155 |
|
6156 |
-
# @ fl-builder
|
6157 |
#: modules/woocommerce/woocommerce.php:129
|
|
|
6158 |
msgid "Sale Products"
|
6159 |
msgstr "Prodotti in offerta"
|
6160 |
|
6161 |
-
# @ fl-builder
|
6162 |
#: modules/woocommerce/woocommerce.php:130
|
|
|
6163 |
msgid "Best Selling Products"
|
6164 |
msgstr "Prodotti più venduti"
|
6165 |
|
6166 |
-
# @ fl-builder
|
6167 |
#: modules/woocommerce/woocommerce.php:131
|
|
|
6168 |
msgid "Top Rated Products"
|
6169 |
msgstr "Prodotti più votati"
|
6170 |
|
6171 |
-
# @ fl-builder
|
6172 |
#: modules/woocommerce/woocommerce.php:159
|
|
|
6173 |
msgid "Product IDs"
|
6174 |
msgstr "ID prodotti"
|
6175 |
|
6176 |
-
# @ fl-builder
|
6177 |
#: modules/woocommerce/woocommerce.php:161
|
6178 |
-
|
6179 |
-
"As you add products in the WooCommerce Products area, each will be assigned "
|
6180 |
-
"a
|
6181 |
-
"area and rolling over the product. The unique ID will be the first attribute "
|
6182 |
-
"and you can add several here separated by a comma."
|
6183 |
-
msgstr ""
|
6184 |
-
"Quando si aggiungono prodotti nell'area prodotti WooCommerce, a ciascuno "
|
6185 |
-
"verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico "
|
6186 |
-
"visitando l'area prodotti e toccando con il mouse il prodotto. L'ID univoco "
|
6187 |
-
"sarà il primo attributo, qui è possibile aggiungere diversi ID separati da "
|
6188 |
-
"una virgola."
|
6189 |
|
6190 |
-
# @ fl-builder
|
6191 |
#: modules/woocommerce/woocommerce.php:165
|
|
|
6192 |
msgid "Category Slug"
|
6193 |
msgstr "Slug della categoria "
|
6194 |
|
6195 |
-
# @ fl-builder
|
6196 |
#: modules/woocommerce/woocommerce.php:167
|
6197 |
-
|
6198 |
-
"As you add product categories in the WooCommerce Products area, each will be "
|
6199 |
-
"
|
6200 |
-
"found in the Categories area under WooCommerce Products. Several can be "
|
6201 |
-
"added here separated by a comma."
|
6202 |
-
msgstr ""
|
6203 |
-
"Quando si aggiungono le categorie di prodotto nell'area prodotti "
|
6204 |
-
"WooCommerce, a ciasuna verrà assegnato uno slug univoco o è possibile "
|
6205 |
-
"modificare e aggiungere il proprio. Questi slug si possono trovare nell'area "
|
6206 |
-
"categorie sotto prodotti WooCommerce. Qui puoi aggiungerne diversi separati "
|
6207 |
-
"da una virgola."
|
6208 |
|
6209 |
-
# @ fl-builder
|
6210 |
#: modules/woocommerce/woocommerce.php:171
|
|
|
6211 |
msgid "Number of Products"
|
6212 |
msgstr "Numero di prodotti"
|
6213 |
|
6214 |
-
# @ fl-builder
|
6215 |
#: modules/woocommerce/woocommerce.php:188
|
|
|
6216 |
msgid "Sort By"
|
6217 |
msgstr "Ordina per"
|
6218 |
|
6219 |
-
# @ fl-builder
|
6220 |
#: modules/woocommerce/woocommerce.php:191
|
|
|
6221 |
msgctxt "Sort by."
|
6222 |
msgid "Default"
|
6223 |
msgstr "Predefinito"
|
6224 |
|
6225 |
-
# @ fl-builder
|
6226 |
#: modules/woocommerce/woocommerce.php:192
|
|
|
6227 |
msgid "Popularity"
|
6228 |
msgstr "Popolarità"
|
6229 |
|
6230 |
-
# @ fl-builder
|
6231 |
#: modules/woocommerce/woocommerce.php:193
|
|
|
6232 |
msgid "Rating"
|
6233 |
msgstr "Valutazione"
|
6234 |
|
6235 |
-
# @ fl-builder
|
6236 |
#: modules/woocommerce/woocommerce.php:200
|
|
|
6237 |
msgid "Sort Direction"
|
6238 |
msgstr "Direzione ordinamento"
|
6239 |
|
6240 |
-
# @ fl-builder
|
6241 |
#: includes/admin-posts.php:15
|
6242 |
#, php-format
|
|
|
6243 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
6244 |
-
msgid ""
|
6245 |
-
"
|
6246 |
-
"enabled again. Any edits made while in Text Editor mode will not be made on "
|
6247 |
-
"your %s layout. Do you want to continue?"
|
6248 |
-
msgstr ""
|
6249 |
-
"Tornando alla modalità Text Editor i layout di %s saranno disabilitati "
|
6250 |
-
"finchè non lo riattivi. Le modifiche apportate in modalità Text Editor non "
|
6251 |
-
"saranno effettuate sul tuo layout %s. Vuoi continuare?"
|
6252 |
-
|
6253 |
-
# @ fl-builder
|
6254 |
-
#: includes/global-settings.php:121
|
6255 |
-
msgctxt ""
|
6256 |
-
"General settings form field label. Intended meaning: \"Enable auto spacing "
|
6257 |
-
"for responsive layouts?\""
|
6258 |
-
msgid "Enable Auto Spacing"
|
6259 |
-
msgstr "Abilita spaziatura automatica"
|
6260 |
-
|
6261 |
-
# @ fl-builder
|
6262 |
-
#: includes/global-settings.php:107
|
6263 |
-
msgctxt ""
|
6264 |
-
"General settings form field label. Intended meaning: \"Responsive layout "
|
6265 |
-
"enabled?\""
|
6266 |
-
msgid "Enabled"
|
6267 |
-
msgstr "Abilitato"
|
6268 |
|
6269 |
-
# @ fl-builder
|
6270 |
-
#: includes/global-settings.php:15
|
6271 |
-
msgctxt ""
|
6272 |
-
"General settings form field label. Intended meaning: \"Show page heading?\""
|
6273 |
-
msgid "Show"
|
6274 |
-
msgstr "Visualizza"
|
6275 |
-
|
6276 |
-
# @ fl-builder
|
6277 |
-
#: includes/admin-posts.php:7
|
6278 |
-
#, php-format
|
6279 |
-
msgctxt ""
|
6280 |
-
"The first %s stands for custom branded \"Page Builder\" name. The second %s "
|
6281 |
-
"stands for the post type name."
|
6282 |
-
msgid "%s is currently active for this %s."
|
6283 |
-
msgstr "%s è attualmente attivo per questo %s."
|
6284 |
-
|
6285 |
-
# @ fl-builder
|
6286 |
#: classes/class-fl-builder-service-campayn.php:102
|
6287 |
#: classes/class-fl-builder-service-mailrelay.php:78
|
|
|
6288 |
msgid "Error: You must provide a Host."
|
6289 |
msgstr "Errore: È necessario fornire un Host."
|
6290 |
|
6291 |
-
# @ fl-builder
|
6292 |
#: classes/class-fl-builder-service-campayn.php:117
|
6293 |
#, php-format
|
|
|
6294 |
msgid "Error: Could not connect to Campayn. %s"
|
6295 |
msgstr "Errore: Impossibile connettersi a Campayn. %s"
|
6296 |
|
6297 |
-
# @ fl-builder
|
6298 |
#: classes/class-fl-builder-service-campayn.php:138
|
6299 |
#: classes/class-fl-builder-service-mailrelay.php:119
|
|
|
6300 |
msgid "Host"
|
6301 |
msgstr "Host"
|
6302 |
|
6303 |
-
# @ fl-builder
|
6304 |
#: classes/class-fl-builder-service-campayn.php:139
|
6305 |
-
|
6306 |
-
"The host you chose when you signed up for your account. Check your welcome "
|
6307 |
-
"
|
6308 |
-
"example: demo.campayn.com)."
|
6309 |
-
msgstr ""
|
6310 |
-
"L'host che hai scelto quando sottoscritto il tuo account. Controlla la tua e-"
|
6311 |
-
"mail di benvenuto se l'hai dimenticato. Si prega di inserire senza http:// "
|
6312 |
-
"iniziale (ad esempio: demo.campayn.com)."
|
6313 |
|
6314 |
-
# @ fl-builder
|
6315 |
#: classes/class-fl-builder-service-campayn.php:150
|
6316 |
-
|
6317 |
-
"Your API key can be found in your Campayn account under Settings > API Key."
|
6318 |
-
msgstr ""
|
6319 |
-
"La chiave API può essere trovata nel tuo account di Campayn sotto "
|
6320 |
-
"Impostazioni > API Key."
|
6321 |
|
6322 |
-
# @ fl-builder
|
6323 |
#: classes/class-fl-builder-service-campayn.php:181
|
6324 |
#: classes/class-fl-builder-service-convertkit.php:78
|
6325 |
#: classes/class-fl-builder-service-mailrelay.php:165
|
6326 |
#, php-format
|
|
|
6327 |
msgid "Error: Please check your API key. %s"
|
6328 |
msgstr "Errore: Controlla la tua chiave API. %s"
|
6329 |
|
6330 |
-
# @ fl-builder
|
6331 |
#: classes/class-fl-builder-service-campayn.php:213
|
|
|
6332 |
msgctxt "An email list from third party provider."
|
6333 |
msgid "List"
|
6334 |
msgstr "Elenco"
|
6335 |
|
6336 |
-
# @ fl-builder
|
6337 |
#: classes/class-fl-builder-service-campayn.php:241
|
6338 |
-
|
6339 |
-
"There was an error subscribing to Campayn. The account is no longer "
|
6340 |
-
"
|
6341 |
-
msgstr ""
|
6342 |
-
"Si è verificato un errore nella sottoscrizione di Campayn. L'account non è "
|
6343 |
-
"più collegato."
|
6344 |
|
6345 |
-
# @ fl-builder
|
6346 |
#: classes/class-fl-builder-service-campayn.php:288
|
6347 |
#, php-format
|
|
|
6348 |
msgid "There was an error subscribing to Campayn. %s"
|
6349 |
msgstr "Si è verificato un errore nella sottoscrizione di Campayn. %s"
|
6350 |
|
6351 |
-
# @ fl-builder
|
6352 |
#: classes/class-fl-builder-service-convertkit.php:100
|
6353 |
-
|
6354 |
-
"Your API key can be found in your ConvertKit account under Account > Account "
|
6355 |
-
"
|
6356 |
-
msgstr ""
|
6357 |
-
"Tua chiave API può essere trovata nel tuo account di ConvertKit sotto "
|
6358 |
-
"Account > Impostazioni Account > API Key."
|
6359 |
|
6360 |
-
# @ fl-builder
|
6361 |
#: classes/class-fl-builder-service-convertkit.php:190
|
6362 |
-
|
6363 |
-
"There was an error subscribing to ConvertKit. The account is no longer "
|
6364 |
-
"
|
6365 |
-
msgstr ""
|
6366 |
-
"Si è verificato un errore nella sottoscrizione a ConvertKit. L'account non è "
|
6367 |
-
"più collegato."
|
6368 |
|
6369 |
-
# @ fl-builder
|
6370 |
#: classes/class-fl-builder-service-convertkit.php:198
|
|
|
6371 |
msgid "There was an error subscribing to ConvertKit."
|
6372 |
msgstr "Si è verificato un errore nella sottoscrizione a ConvertKit."
|
6373 |
|
6374 |
-
# @ fl-builder
|
6375 |
#: classes/class-fl-builder-service-drip.php:67
|
|
|
6376 |
msgid "Error: You must provide an API token."
|
6377 |
msgstr "Errore: È necessario fornire un token della API."
|
6378 |
|
6379 |
-
# @ fl-builder
|
6380 |
#: classes/class-fl-builder-service-drip.php:71
|
|
|
6381 |
msgid "Error: You must provide an Account ID."
|
6382 |
msgstr "Errore: È necessario fornire un ID Account."
|
6383 |
|
6384 |
-
# @ fl-builder
|
6385 |
#: classes/class-fl-builder-service-drip.php:92
|
6386 |
#, php-format
|
|
|
6387 |
msgid "Error: Please check your Account ID. %s"
|
6388 |
msgstr "Errore: Si prega di controllare il tuo Account ID. %s"
|
6389 |
|
6390 |
-
# @ fl-builder
|
6391 |
#: classes/class-fl-builder-service-drip.php:99
|
6392 |
#, php-format
|
|
|
6393 |
msgid "Error: Please check your API token. %s"
|
6394 |
msgstr "Errore: Si prega di controllare il tuo API token. %s"
|
6395 |
|
6396 |
-
# @ fl-builder
|
6397 |
#: classes/class-fl-builder-service-drip.php:122
|
|
|
6398 |
msgid "API Token"
|
6399 |
msgstr "Token della API"
|
6400 |
|
6401 |
-
# @ fl-builder
|
6402 |
#: classes/class-fl-builder-service-drip.php:123
|
6403 |
#, php-format
|
6404 |
-
|
6405 |
-
"Your API Token can be found in your Drip account under Settings > My User "
|
6406 |
-
"
|
6407 |
-
msgstr ""
|
6408 |
-
"Puoi trovare il Token della API nel tuo account di Drip sotto Impostazioni > "
|
6409 |
-
"Impostazioni utente personali. Oppure, è possibile cliccare questo <a%s>link "
|
6410 |
-
"diretto</a>."
|
6411 |
|
6412 |
-
# @ fl-builder
|
6413 |
#: classes/class-fl-builder-service-drip.php:133
|
|
|
6414 |
msgid "Account ID"
|
6415 |
msgstr "ID account"
|
6416 |
|
6417 |
-
# @ fl-builder
|
6418 |
#: classes/class-fl-builder-service-drip.php:134
|
6419 |
-
|
6420 |
-
"Your Account ID can be found in your Drip account under Settings > Site "
|
6421 |
-
"
|
6422 |
-
msgstr ""
|
6423 |
-
"L'ID dell'Account può essere trovato nel tuo account Drip sotto Impostazioni "
|
6424 |
-
"> Configurazione del sito."
|
6425 |
|
6426 |
-
# @ fl-builder
|
6427 |
#: classes/class-fl-builder-service-drip.php:180
|
|
|
6428 |
msgctxt "A tag to add to contacts in Drip when they subscribe."
|
6429 |
msgid "Tags"
|
6430 |
msgstr "Tags"
|
6431 |
|
6432 |
-
# @ fl-builder
|
6433 |
#: classes/class-fl-builder-service-drip.php:181
|
|
|
6434 |
msgid "For multiple tags, separate with comma."
|
6435 |
msgstr "Per più tag, separare con la virgola."
|
6436 |
|
6437 |
-
# @ fl-builder
|
6438 |
#: classes/class-fl-builder-service-drip.php:208
|
6439 |
-
|
6440 |
-
"There was an error subscribing to Drip. The account is no longer connected."
|
6441 |
-
msgstr ""
|
6442 |
-
"Si è verificato un errore nella sottoscrizione a Drip. L'account non è più "
|
6443 |
-
"collegato."
|
6444 |
|
6445 |
-
# @ fl-builder
|
6446 |
#: classes/class-fl-builder-service-drip.php:229
|
6447 |
#, php-format
|
|
|
6448 |
msgid "There was an error searching contact from Drip. %s"
|
6449 |
msgstr "Si è verificato un errore cercando il contatto su Drip. %s"
|
6450 |
|
6451 |
-
# @ fl-builder
|
6452 |
#: classes/class-fl-builder-service-drip.php:254
|
6453 |
#, php-format
|
|
|
6454 |
msgid "There was an error subscribing to Drip. %s"
|
6455 |
msgstr "Si è verificato un errore nella sottoscrizione a Drip. %s"
|
6456 |
|
6457 |
-
# @ fl-builder
|
6458 |
#: classes/class-fl-builder-service-mailrelay.php:98
|
6459 |
#, php-format
|
|
|
6460 |
msgid "Error: Could not connect to Mailrelay. %s"
|
6461 |
msgstr "Errore: Impossibile connettersi a Mailrelay. %s"
|
6462 |
|
6463 |
-
# @ fl-builder
|
6464 |
#: classes/class-fl-builder-service-mailrelay.php:120
|
6465 |
-
|
6466 |
-
"The host you chose when you signed up for your account. Check your welcome "
|
6467 |
-
"
|
6468 |
-
"demo.ip-zone.com)."
|
6469 |
-
msgstr ""
|
6470 |
-
"L'host che hai scelto quando hai sottoscritto il tuo account. Controlla la "
|
6471 |
-
"tua e-mail di benvenuto se non lo ricordi. Inseriscilo senza http:// "
|
6472 |
-
"iniziale (es: demo.ip-zone.com)."
|
6473 |
|
6474 |
-
# @ fl-builder
|
6475 |
#: classes/class-fl-builder-service-mailrelay.php:131
|
6476 |
-
|
6477 |
-
"Your API key can be found in your Mailrelay account under Menu > Settings > "
|
6478 |
-
"API
|
6479 |
-
msgstr ""
|
6480 |
-
"Puoi trovare la chiave API nel tuo account Mailrelay sotto Menu > "
|
6481 |
-
"Impostazioni > accesso API."
|
6482 |
|
6483 |
-
# @ fl-builder
|
6484 |
#: classes/class-fl-builder-service-mailrelay.php:198
|
|
|
6485 |
msgctxt "A list of subscribers group from a Mailrelay account."
|
6486 |
msgid "Group"
|
6487 |
msgstr "Gruppo"
|
6488 |
|
6489 |
-
# @ fl-builder
|
6490 |
#: classes/class-fl-builder-service-mailrelay.php:225
|
6491 |
-
|
6492 |
-
"There was an error subscribing to Mailrelay. The account is no longer "
|
6493 |
-
"
|
6494 |
-
msgstr ""
|
6495 |
-
"Si è verificato un errore nella sottoscrizione a Mailrelay. L'account non è "
|
6496 |
-
"più collegato."
|
6497 |
|
6498 |
-
# @ fl-builder
|
6499 |
#: classes/class-fl-builder-service-mailrelay.php:238
|
6500 |
#, php-format
|
|
|
6501 |
msgid "There was an error subscribing to Mailrelay. %s"
|
6502 |
msgstr "Si è verificato un errore nella sottoscrizione a Mailrelay. %s"
|
6503 |
|
6504 |
-
# @ fl-builder
|
6505 |
#: classes/class-fl-builder-service-sendy.php:68
|
|
|
6506 |
msgid "Error: You must provide your Sendy installation URL."
|
6507 |
msgstr "Errore: È necessario fornire l'URL di installazione di Sendy."
|
6508 |
|
6509 |
-
# @ fl-builder
|
6510 |
#: classes/class-fl-builder-service-sendy.php:76
|
|
|
6511 |
msgid "Error: You must provide a list ID."
|
6512 |
msgstr "Errore: È necessario fornire un ID di elenco."
|
6513 |
|
6514 |
-
# @ fl-builder
|
6515 |
#: classes/class-fl-builder-service-sendy.php:94
|
6516 |
#, php-format
|
|
|
6517 |
msgid "Error: Could not connect to Sendy. %s"
|
6518 |
msgstr "Errore: Impossibile connettersi a Sendy. %s"
|
6519 |
|
6520 |
-
# @ fl-builder
|
6521 |
#: classes/class-fl-builder-service-sendy.php:115
|
|
|
6522 |
msgid "Installation URL"
|
6523 |
msgstr "URL di installazione"
|
6524 |
|
6525 |
-
# @ fl-builder
|
6526 |
#: classes/class-fl-builder-service-sendy.php:116
|
6527 |
-
|
6528 |
-
"The URL where your Sendy application is installed (e.g. http://mywebsite.com/"
|
6529 |
-
"sendy)."
|
6530 |
-
msgstr ""
|
6531 |
-
"L'URL dove è installata la tua applicazione Sendy (es: http://mywebsite.com/"
|
6532 |
-
"sendy)."
|
6533 |
|
6534 |
-
# @ fl-builder
|
6535 |
#: classes/class-fl-builder-service-sendy.php:127
|
|
|
6536 |
msgid "Found in your Sendy application under Settings."
|
6537 |
msgstr "Si trova nella tua applicazione Sendy sotto Impostazioni."
|
6538 |
|
6539 |
-
# @ fl-builder
|
6540 |
#: classes/class-fl-builder-service-sendy.php:137
|
|
|
6541 |
msgid "List ID"
|
6542 |
msgstr "ID elenco"
|
6543 |
|
6544 |
-
# @ fl-builder
|
6545 |
#: classes/class-fl-builder-service-sendy.php:138
|
6546 |
-
|
6547 |
-
"The ID of the list you would like users to subscribe to. The ID of a list "
|
6548 |
-
"
|
6549 |
-
msgstr ""
|
6550 |
-
"L'ID della lista a cui si desidera iscrivere gli utenti. L'ID della lista "
|
6551 |
-
"può essere trovato sotto \"Mostra tutte le liste\" nella sezione denominata "
|
6552 |
-
"ID."
|
6553 |
|
6554 |
-
# @ fl-builder
|
6555 |
#: classes/class-fl-builder-service-sendy.php:186
|
6556 |
-
|
6557 |
-
"There was an error subscribing to Sendy. The account is no longer connected."
|
6558 |
-
msgstr ""
|
6559 |
-
"Si è verificato un errore nella sottoscrizione a Sendy. L'account non è più "
|
6560 |
-
"collegato."
|
6561 |
|
6562 |
-
# @ fl-builder
|
6563 |
#: classes/class-fl-builder-service-sendy.php:200
|
6564 |
#, php-format
|
|
|
6565 |
msgid "There was an error subscribing to Sendy. %s"
|
6566 |
msgstr "Si è verificato un errore nella sottoscrizione a Sendy. %s"
|
6567 |
|
6568 |
-
# @ default
|
6569 |
#: classes/class-fl-builder-timezones.php:71
|
|
|
6570 |
msgid "Select a city"
|
6571 |
msgstr "Seleziona una città"
|
6572 |
|
6573 |
-
# @ default
|
6574 |
#: classes/class-fl-builder-timezones.php:116
|
6575 |
#: classes/class-fl-builder-timezones.php:120
|
|
|
6576 |
msgid "UTC"
|
6577 |
msgstr "UTC"
|
6578 |
|
6579 |
-
# @ fl-builder
|
6580 |
#: classes/class-fl-builder.php:1176
|
|
|
6581 |
msgctxt "Custom taxonomy label."
|
6582 |
msgid "Template Categories"
|
6583 |
msgstr "Categorie dei modelli"
|
6584 |
|
6585 |
-
# @ fl-builder
|
6586 |
#: classes/class-fl-builder.php:1177
|
|
|
6587 |
msgctxt "Custom taxonomy label."
|
6588 |
msgid "Template Category"
|
6589 |
msgstr "Categoria modello"
|
6590 |
|
6591 |
-
# @ fl-builder
|
6592 |
#: classes/class-fl-builder.php:1178
|
|
|
6593 |
msgctxt "Custom taxonomy label."
|
6594 |
msgid "Search Template Categories"
|
6595 |
msgstr "Cerca categorie dei modelli"
|
6596 |
|
6597 |
-
# @ fl-builder
|
6598 |
#: classes/class-fl-builder.php:1179
|
|
|
6599 |
msgctxt "Custom taxonomy label."
|
6600 |
msgid "All Template Categories"
|
6601 |
msgstr "Tutte le categorie dei modelli"
|
6602 |
|
6603 |
-
# @ fl-builder
|
6604 |
#: classes/class-fl-builder.php:1180
|
|
|
6605 |
msgctxt "Custom taxonomy label."
|
6606 |
msgid "Parent Template Category"
|
6607 |
msgstr "Categoria genitore del modello"
|
6608 |
|
6609 |
-
# @ fl-builder
|
6610 |
#: classes/class-fl-builder.php:1181
|
|
|
6611 |
msgctxt "Custom taxonomy label."
|
6612 |
msgid "Parent Template Category:"
|
6613 |
msgstr "Categoria genitore del modello:"
|
6614 |
|
6615 |
-
# @ fl-builder
|
6616 |
#: classes/class-fl-builder.php:1182
|
|
|
6617 |
msgctxt "Custom taxonomy label."
|
6618 |
msgid "Edit Template Category"
|
6619 |
msgstr "Modifica la categoria del modello"
|
6620 |
|
6621 |
-
# @ fl-builder
|
6622 |
#: classes/class-fl-builder.php:1183
|
|
|
6623 |
msgctxt "Custom taxonomy label."
|
6624 |
msgid "Update Template Category"
|
6625 |
msgstr "Aggiorna la categoria del modello"
|
6626 |
|
6627 |
-
# @ fl-builder
|
6628 |
#: classes/class-fl-builder.php:1184
|
|
|
6629 |
msgctxt "Custom taxonomy label."
|
6630 |
msgid "Add New Template Category"
|
6631 |
msgstr "Aggiungi una nuova categoria di modelli"
|
6632 |
|
6633 |
-
# @ fl-builder
|
6634 |
#: classes/class-fl-builder.php:1185
|
|
|
6635 |
msgctxt "Custom taxonomy label."
|
6636 |
msgid "New Template Category Name"
|
6637 |
msgstr "Nome nuovo modello di categoria"
|
6638 |
|
6639 |
-
# @ fl-builder
|
6640 |
#: includes/admin-settings-branding.php:5
|
|
|
6641 |
msgid "Plugin Branding"
|
6642 |
msgstr "Branding del Plugin"
|
6643 |
|
6644 |
-
# @ fl-builder
|
6645 |
#: includes/admin-settings-branding.php:6
|
|
|
6646 |
msgid "White label the page builder plugin using the settings below."
|
6647 |
-
msgstr ""
|
6648 |
-
"Cambia il marchio del plugin Page Builder utilizzando le seguenti "
|
6649 |
-
"impostazioni."
|
6650 |
|
6651 |
-
# @ fl-builder
|
6652 |
#: includes/admin-settings-branding.php:8
|
|
|
6653 |
msgid "Plugin Name"
|
6654 |
msgstr "Nome del plugin"
|
6655 |
|
6656 |
-
# @ fl-builder
|
6657 |
#: includes/admin-settings-branding.php:11
|
|
|
6658 |
msgid "Plugin Icon URL"
|
6659 |
msgstr "URL icona plugin"
|
6660 |
|
6661 |
-
# @ fl-builder
|
6662 |
#: includes/admin-settings-branding.php:16
|
|
|
6663 |
msgid "Theme Branding"
|
6664 |
msgstr "Branding del tema"
|
6665 |
|
6666 |
-
# @ fl-builder
|
6667 |
#: includes/admin-settings-branding.php:17
|
|
|
6668 |
msgid "White label the page builder theme using the settings below."
|
6669 |
-
msgstr ""
|
6670 |
-
"Cambia il marchio del tema Page Builder utilizzando le seguenti impostazioni."
|
6671 |
|
6672 |
-
# @ fl-builder
|
6673 |
#: includes/admin-settings-branding.php:21
|
|
|
6674 |
msgid "Theme Name"
|
6675 |
msgstr "Nome del tema"
|
6676 |
|
6677 |
-
# @ fl-builder
|
6678 |
#: includes/admin-settings-branding.php:24
|
|
|
6679 |
msgid "Theme Description"
|
6680 |
msgstr "Descrizione del tema"
|
6681 |
|
6682 |
-
# @ fl-builder
|
6683 |
#: includes/admin-settings-branding.php:27
|
|
|
6684 |
msgid "Theme Company Name"
|
6685 |
msgstr "Nome dell'azienda del tema"
|
6686 |
|
6687 |
-
# @ fl-builder
|
6688 |
#: includes/admin-settings-branding.php:30
|
|
|
6689 |
msgid "Theme Company URL"
|
6690 |
msgstr "URL dell'azienda del tema"
|
6691 |
|
6692 |
-
# @ fl-builder
|
6693 |
#: includes/admin-settings-branding.php:33
|
|
|
6694 |
msgid "Theme Screenshot URL"
|
6695 |
msgstr "URL dell'immagine di anteprima del tema"
|
6696 |
|
6697 |
-
# @ fl-builder
|
6698 |
#: includes/column-settings.php:26
|
6699 |
-
|
6700 |
-
"Setting this to yes will make all of the columns in this group the same "
|
6701 |
-
"
|
6702 |
-
msgstr ""
|
6703 |
-
"Impostando questa opzione su Sì, farà in modo che tutte le colonne in questo "
|
6704 |
-
"gruppo abbiano la stessa altezza indipendentemente dalla quantità di "
|
6705 |
-
"contenuto presente in ciascuna."
|
6706 |
|
6707 |
-
# @ fl-builder
|
6708 |
#: includes/field-multiple-audios.php:21
|
6709 |
#, php-format
|
|
|
6710 |
msgid "1 Audio File Selected"
|
6711 |
msgid_plural "%d Audio Files Selected"
|
6712 |
msgstr[0] "1 File audio selezionato"
|
6713 |
msgstr[1] "%d files audio selezionati"
|
6714 |
|
6715 |
-
|
6716 |
-
#: includes/
|
|
|
6717 |
msgid "Select Audio"
|
6718 |
msgstr "Selezionare audio"
|
6719 |
|
6720 |
-
# @ fl-builder
|
6721 |
#: includes/field-multiple-audios.php:24
|
|
|
6722 |
msgid "Edit Playlist"
|
6723 |
msgstr "Modifica Playlist"
|
6724 |
|
6725 |
-
# @ fl-builder
|
6726 |
#: includes/field-multiple-audios.php:25
|
|
|
6727 |
msgid "Add Audio Files"
|
6728 |
msgstr "Aggiungi file audio"
|
6729 |
|
6730 |
-
# @ fl-builder
|
6731 |
#: includes/field-text.php:18
|
|
|
6732 |
msgctxt "Add predefined value."
|
6733 |
msgid "- Add predefined -"
|
6734 |
msgstr "-Aggiungi predefiniti-"
|
6735 |
|
6736 |
-
|
6737 |
-
#: includes/
|
|
|
6738 |
msgid "Global Settings"
|
6739 |
msgstr "Impostazioni globali"
|
6740 |
|
6741 |
-
# @ fl-builder
|
6742 |
#: includes/global-settings.php:8
|
|
|
6743 |
msgid "<strong>Note</strong>: These settings apply to all posts and pages."
|
6744 |
-
msgstr ""
|
6745 |
-
"<strong>Nota</strong>: queste impostazioni si applicano a tutti gli articoli "
|
6746 |
-
"e pagine."
|
6747 |
|
6748 |
-
|
6749 |
-
#: includes/
|
|
|
6750 |
msgid "CSS"
|
6751 |
msgstr "CSS"
|
6752 |
|
6753 |
-
|
6754 |
-
#: includes/
|
|
|
6755 |
msgid "JavaScript"
|
6756 |
msgstr "JavaScript"
|
6757 |
|
6758 |
-
|
6759 |
-
#: includes/
|
|
|
6760 |
msgid "Layout Settings"
|
6761 |
msgstr "Impostazioni di layout"
|
6762 |
|
6763 |
-
# @ fl-builder
|
6764 |
#: includes/row-settings.php:51
|
|
|
6765 |
msgid "Full Height"
|
6766 |
msgstr "Altezza piena"
|
6767 |
|
6768 |
-
# @ fl-builder
|
6769 |
#: includes/row-settings.php:53
|
|
|
6770 |
msgid "Full height rows fill the height of the browser window."
|
6771 |
-
msgstr ""
|
6772 |
-
"Le righe ad altezza piena riempiono l'altezza della finestra del browser."
|
6773 |
|
6774 |
-
|
6775 |
-
#:
|
|
|
6776 |
msgid "Video (MP4)"
|
6777 |
msgstr "Video (MP4)"
|
6778 |
|
6779 |
-
# @ fl-builder
|
6780 |
#: includes/row-settings.php:221
|
6781 |
-
|
6782 |
-
"A video in the MP4 format to use as the background of this row. Most modern "
|
6783 |
-
"
|
6784 |
-
msgstr ""
|
6785 |
-
"Un video in formato MP4 da utilizzare come sfondo di questa riga. I browser "
|
6786 |
-
"più moderni supportano questo formato."
|
6787 |
|
6788 |
-
|
6789 |
-
#:
|
|
|
6790 |
msgid "Video (WebM)"
|
6791 |
msgstr "Video (WebM)"
|
6792 |
|
6793 |
-
# @ fl-builder
|
6794 |
#: includes/row-settings.php:229
|
6795 |
-
|
6796 |
-
"A video in the WebM format to use as the background of this row. This format "
|
6797 |
-
"
|
6798 |
-
msgstr ""
|
6799 |
-
"Un video nel formato WebM da utilizzare come sfondo di questa riga. Questo "
|
6800 |
-
"formato è necessario per supportare i browser come FireFox e Opera."
|
6801 |
-
|
6802 |
-
# @ fl-builder
|
6803 |
-
#: includes/ui-js-config.php:24
|
6804 |
-
msgid " is already a saved preset."
|
6805 |
-
msgstr "è un preferito già salvato."
|
6806 |
|
6807 |
-
|
6808 |
-
|
6809 |
msgid "Audio File Selected"
|
6810 |
msgstr "File audio selezionato"
|
6811 |
|
6812 |
-
|
6813 |
-
|
6814 |
msgid "Audio Files Selected"
|
6815 |
msgstr "File audio selezionati"
|
6816 |
|
6817 |
-
|
6818 |
-
|
6819 |
msgid "Color Presets"
|
6820 |
msgstr "Colori preferiti"
|
6821 |
|
6822 |
-
|
6823 |
-
|
6824 |
msgid "Color Picker"
|
6825 |
msgstr "Selettore colore"
|
6826 |
|
6827 |
-
|
6828 |
-
|
6829 |
msgid "Error! Please enter a date that is in the future."
|
6830 |
msgstr "Errore! Si prega di inserire una data futura."
|
6831 |
|
6832 |
-
|
6833 |
-
|
6834 |
msgid "Do you really want to delete this column?"
|
6835 |
msgstr "Vuoi davvero eliminare questa colonna?"
|
6836 |
|
6837 |
-
|
6838 |
-
|
6839 |
msgid "Do you really want to delete this module?"
|
6840 |
msgstr "Vuoi davvero eliminare questo modulo?"
|
6841 |
|
6842 |
-
|
6843 |
-
|
6844 |
msgid "Do you really want to delete this row?"
|
6845 |
msgstr "Vuoi davvero eliminare questa riga?"
|
6846 |
|
6847 |
-
|
6848 |
-
|
6849 |
-
msgid "Duplicate Layout"
|
6850 |
-
msgstr "Duplica Layout"
|
6851 |
-
|
6852 |
-
# @ fl-builder
|
6853 |
-
#: includes/ui-js-config.php:52
|
6854 |
msgid "Error! Please enter a valid day."
|
6855 |
msgstr "Errore! Si prega di inserire un giorno valido."
|
6856 |
|
6857 |
-
|
6858 |
-
|
6859 |
msgid "Error! Please enter a valid month."
|
6860 |
msgstr "Errore! Si prega di inserire un mese valido."
|
6861 |
|
6862 |
-
|
6863 |
-
|
6864 |
msgid "Error! Please enter a valid year."
|
6865 |
msgstr "Errore! Si prega di inserire un anno valido."
|
6866 |
|
6867 |
-
|
6868 |
-
|
6869 |
msgid "Please enter a color first."
|
6870 |
msgstr "Si prega di inserire prima un colore."
|
6871 |
|
6872 |
-
|
6873 |
-
|
6874 |
msgid "Add a color preset first."
|
6875 |
msgstr "Aggiungi un colore preferito prima."
|
6876 |
|
6877 |
-
|
6878 |
-
|
6879 |
msgid "Paste color here..."
|
6880 |
msgstr "Incolla colore qui..."
|
6881 |
|
6882 |
-
|
6883 |
-
|
6884 |
-
msgid " added to presets!"
|
6885 |
-
msgstr "aggiunto ai preferiti!"
|
6886 |
-
|
6887 |
-
# @ fl-builder
|
6888 |
-
#: includes/ui-js-config.php:82
|
6889 |
msgid "Are you sure?"
|
6890 |
msgstr "Sei sicuro?"
|
6891 |
|
6892 |
-
|
6893 |
-
|
6894 |
-
msgid ""
|
6895 |
-
"
|
6896 |
-
"settings for a layout or edit the global settings."
|
6897 |
-
msgstr ""
|
6898 |
-
"Il pulsante strumenti consente di salvare un modello, duplicare un layout, "
|
6899 |
-
"modificare le impostazioni di un layout o modificare le impostazioni globali."
|
6900 |
|
6901 |
-
|
6902 |
-
#: includes/ui-js-templates.php:
|
|
|
6903 |
msgid "Edit Column"
|
6904 |
msgstr "Modifica colonna"
|
6905 |
|
6906 |
-
|
6907 |
-
#: includes/ui-js-templates.php:
|
|
|
6908 |
msgid "Insert Column Before"
|
6909 |
msgstr "Inserisci colonna prima"
|
6910 |
|
6911 |
-
|
6912 |
-
#: includes/ui-js-templates.php:
|
|
|
6913 |
msgid "Insert Column After"
|
6914 |
msgstr "Inserisci colonna dopo"
|
6915 |
|
6916 |
-
|
6917 |
-
#: includes/ui-js-templates.php:
|
|
|
6918 |
msgid "Reset Column Widths"
|
6919 |
msgstr "Reimposta larghezza colonne"
|
6920 |
|
6921 |
-
# @ fl-builder
|
6922 |
#: includes/ui-js-templates.php:89
|
|
|
6923 |
msgid "Delete Column"
|
6924 |
msgstr "Elimina colonna"
|
6925 |
|
6926 |
-
# @ fl-builder
|
6927 |
#: includes/updater/includes/form.php:22
|
|
|
6928 |
msgid "License key saved!"
|
6929 |
msgstr "Chiave di licenza salvata!"
|
6930 |
|
6931 |
-
|
6932 |
-
#: modules/audio/audio.php:
|
|
|
6933 |
msgid "Audio"
|
6934 |
msgstr "Audio"
|
6935 |
|
6936 |
-
# @ fl-builder
|
6937 |
#: modules/audio/audio.php:20
|
|
|
6938 |
msgid "Render a WordPress audio shortcode."
|
6939 |
msgstr "Eseguire il rendering di un shortcode WordPress audio."
|
6940 |
|
6941 |
-
# @ fl-builder
|
6942 |
#: modules/audio/audio.php:83
|
|
|
6943 |
msgid "Audio Type"
|
6944 |
msgstr "Tipo di audio"
|
6945 |
|
6946 |
-
# @ fl-builder
|
6947 |
#: modules/audio/audio.php:152
|
|
|
6948 |
msgid "Dark"
|
6949 |
msgstr "Scuro"
|
6950 |
|
6951 |
-
# @ fl-builder
|
6952 |
#: modules/audio/audio.php:157
|
|
|
6953 |
msgid "Show Playlist"
|
6954 |
msgstr "Mostra Playlist"
|
6955 |
|
6956 |
-
# @ fl-builder
|
6957 |
#: modules/audio/audio.php:171
|
|
|
6958 |
msgid "Show Track Numbers"
|
6959 |
msgstr "Visualizza i numeri dei brani"
|
6960 |
|
6961 |
-
# @ fl-builder
|
6962 |
#: modules/audio/audio.php:183
|
|
|
6963 |
msgid "Show Thumbnail"
|
6964 |
msgstr "Visualizza anteprima"
|
6965 |
|
6966 |
-
# @ fl-builder
|
6967 |
#: modules/audio/audio.php:192
|
|
|
6968 |
msgid "Show Artist Name"
|
6969 |
msgstr "Mostra il nome dell'artista"
|
6970 |
|
6971 |
-
# @ fl-builder
|
6972 |
#: modules/contact-form/contact-form.php:159
|
|
|
6973 |
msgid "Thanks for your message! We’ll be in touch soon."
|
6974 |
msgstr "Grazie per il tuo messaggio! Saremo in contatto presto."
|
6975 |
|
6976 |
-
# @ fl-builder
|
6977 |
#: modules/countdown/countdown.php:14
|
|
|
6978 |
msgid "Countdown"
|
6979 |
msgstr "Conto alla rovescia"
|
6980 |
|
6981 |
-
# @ fl-builder
|
6982 |
#: modules/countdown/countdown.php:15
|
|
|
6983 |
msgid "Render a Countdown module."
|
6984 |
msgstr "Eseguire il rendering del modulo di conto alla rovescia."
|
6985 |
|
6986 |
-
# @ fl-builder
|
6987 |
#: modules/countdown/countdown.php:88
|
6988 |
-
#: modules/countdown/includes/frontend.php:
|
|
|
6989 |
msgid "Day"
|
6990 |
msgstr "Giorno"
|
6991 |
|
6992 |
-
# @ fl-builder
|
6993 |
#: modules/countdown/countdown.php:98
|
|
|
6994 |
msgid "Month"
|
6995 |
msgstr "Mese"
|
6996 |
|
6997 |
-
# @ fl-builder
|
6998 |
#: modules/countdown/countdown.php:108
|
|
|
6999 |
msgid "Year"
|
7000 |
msgstr "Anno"
|
7001 |
|
7002 |
-
|
7003 |
-
#: modules/countdown/countdown.php:
|
|
|
7004 |
msgid "Time"
|
7005 |
msgstr "Orario"
|
7006 |
|
7007 |
-
# @ fl-builder
|
7008 |
#: modules/countdown/countdown.php:132
|
|
|
7009 |
msgid "Time Zone"
|
7010 |
msgstr "Fuso orario"
|
7011 |
|
7012 |
-
# @ fl-builder
|
7013 |
#: modules/countdown/countdown.php:152
|
|
|
7014 |
msgid "Numbers + Circles"
|
7015 |
msgstr "Numeri + cerchi"
|
7016 |
|
7017 |
-
# @ fl-builder
|
7018 |
#: modules/countdown/countdown.php:168
|
|
|
7019 |
msgid "Numbers and Text"
|
7020 |
msgstr "Numeri e testo"
|
7021 |
|
7022 |
-
|
7023 |
-
#: modules/
|
|
|
7024 |
msgid "Number Color"
|
7025 |
msgstr "Colore numero"
|
7026 |
|
7027 |
-
|
7028 |
-
#: modules/
|
|
|
7029 |
msgid "Number Size"
|
7030 |
msgstr "Dimensione numero"
|
7031 |
|
7032 |
-
# @ fl-builder
|
7033 |
#: modules/countdown/countdown.php:206
|
|
|
7034 |
msgid "Text Size"
|
7035 |
msgstr "Dimensione del testo"
|
7036 |
|
7037 |
-
# @ fl-builder
|
7038 |
#: modules/countdown/countdown.php:220
|
|
|
7039 |
msgid "Horizontal Padding"
|
7040 |
msgstr "Spaziatura orizzontale"
|
7041 |
|
7042 |
-
# @ fl-builder
|
7043 |
#: modules/countdown/countdown.php:243
|
|
|
7044 |
msgid "Vertical Padding"
|
7045 |
msgstr "Spaziatura verticale"
|
7046 |
|
7047 |
-
# @ fl-builder
|
7048 |
#: modules/countdown/countdown.php:266
|
|
|
7049 |
msgid "Number Spacing"
|
7050 |
msgstr "Spaziatura del numero"
|
7051 |
|
7052 |
-
# @ fl-builder
|
7053 |
#: modules/countdown/countdown.php:294
|
|
|
7054 |
msgid "Number Background Color"
|
7055 |
msgstr "Colore di sfondo del numero "
|
7056 |
|
7057 |
-
# @ fl-builder
|
7058 |
#: modules/countdown/countdown.php:304
|
|
|
7059 |
msgid "Number Background Opacity"
|
7060 |
msgstr "Opacità sfondo del numero "
|
7061 |
|
7062 |
-
# @ fl-builder
|
7063 |
#: modules/countdown/countdown.php:312
|
|
|
7064 |
msgid "Number Border Radius"
|
7065 |
msgstr "Raggio del bordo del numero"
|
7066 |
|
7067 |
-
# @ fl-builder
|
7068 |
#: modules/countdown/countdown.php:331
|
|
|
7069 |
msgid "Show Time Separators"
|
7070 |
msgstr "Mostra separatori tempo"
|
7071 |
|
7072 |
-
# @ fl-builder
|
7073 |
#: modules/countdown/countdown.php:345
|
|
|
7074 |
msgid "Separator Type"
|
7075 |
msgstr "Tipo di separatore"
|
7076 |
|
7077 |
-
# @ fl-builder
|
7078 |
#: modules/countdown/countdown.php:348
|
|
|
7079 |
msgid "Colon"
|
7080 |
msgstr "Virgola"
|
7081 |
|
7082 |
-
# @ fl-builder
|
7083 |
#: modules/countdown/countdown.php:349
|
|
|
7084 |
msgid "Line"
|
7085 |
msgstr "Linea"
|
7086 |
|
7087 |
-
# @ fl-builder
|
7088 |
#: modules/countdown/countdown.php:364
|
|
|
7089 |
msgid "Separator Size"
|
7090 |
msgstr "Dimensione del separatore"
|
7091 |
|
7092 |
-
# @ fl-builder
|
7093 |
#: modules/countdown/countdown.php:373
|
|
|
7094 |
msgid "Circle Styles"
|
7095 |
msgstr "Stile dei cerchi"
|
7096 |
|
7097 |
-
# @ fl-builder
|
7098 |
#: modules/countdown/countdown.php:377
|
|
|
7099 |
msgid "Circle Size"
|
7100 |
msgstr "Dimensione del cerchio"
|
7101 |
|
7102 |
-
# @ fl-builder
|
7103 |
#: modules/countdown/countdown.php:411
|
|
|
7104 |
msgid "Circle Stroke Size"
|
7105 |
msgstr "Dimensione della linea del cerchio"
|
7106 |
|
7107 |
-
|
7108 |
-
#: modules/
|
|
|
7109 |
msgid "Circle Foreground Color"
|
7110 |
msgstr "Colore in primo piano del cerchio"
|
7111 |
|
7112 |
-
|
7113 |
-
#: modules/
|
|
|
7114 |
msgid "Circle Background Color"
|
7115 |
msgstr "Colore di sfondo del cerchio"
|
7116 |
|
7117 |
-
|
7118 |
-
|
7119 |
msgid "Hour"
|
7120 |
msgstr "Ora"
|
7121 |
|
7122 |
-
|
7123 |
-
|
7124 |
msgid "Minute"
|
7125 |
msgstr "Minuti"
|
7126 |
|
7127 |
-
|
7128 |
-
|
7129 |
msgid "Second"
|
7130 |
msgstr "Secondi"
|
7131 |
|
7132 |
-
# @ fl-builder
|
7133 |
#: modules/heading/heading.php:119
|
|
|
7134 |
msgid "Font"
|
7135 |
msgstr "Tipo di carattere"
|
7136 |
|
7137 |
-
# @ fl-builder
|
7138 |
#: modules/menu/menu.php:138
|
|
|
7139 |
msgid "Hamburger Icon + Label"
|
7140 |
msgstr "Icona hamburger + etichetta"
|
7141 |
|
7142 |
-
# @ fl-builder
|
7143 |
#: modules/menu/menu.php:152
|
|
|
7144 |
msgid "Mobile Width"
|
7145 |
msgstr "Larghezza mobile"
|
7146 |
|
7147 |
-
# @ fl-builder
|
7148 |
#: modules/menu/menu.php:153
|
7149 |
-
|
7150 |
-
"Choose Full Width if you want the menu to span the width of the screen on "
|
7151 |
-
"
|
7152 |
-
msgstr ""
|
7153 |
-
"Sceglire larghezza piena se si desidera che il menu occupi tutta la "
|
7154 |
-
"larghezza dello schermo sui dispositivi mobili."
|
7155 |
|
7156 |
-
# @ fl-builder
|
7157 |
#: modules/menu/menu.php:337
|
|
|
7158 |
msgid "Menu Background Color (Mobile)"
|
7159 |
msgstr "Colore di sfondo del menu (Mobile)"
|
7160 |
|
7161 |
-
# @ fl-builder
|
7162 |
#: modules/menu/menu.php:361
|
|
|
7163 |
msgid "Submenu Background Opacity"
|
7164 |
msgstr "Opacità dello sfondo dei sottomenu"
|
7165 |
|
7166 |
-
# @ fl-builder
|
7167 |
#: modules/numbers/numbers.php:14
|
|
|
7168 |
msgid "Number Counter"
|
7169 |
msgstr "Contatore numero"
|
7170 |
|
7171 |
-
# @ fl-builder
|
7172 |
#: modules/numbers/numbers.php:15
|
|
|
7173 |
msgid "Renders an animated number counter."
|
7174 |
msgstr "Esegue il rendering di un contatore numerico animato."
|
7175 |
|
7176 |
-
# @ fl-builder
|
7177 |
#: modules/numbers/numbers.php:69
|
|
|
7178 |
msgid "Only Numbers"
|
7179 |
msgstr "Solo numeri"
|
7180 |
|
7181 |
-
# @ fl-builder
|
7182 |
#: modules/numbers/numbers.php:70
|
|
|
7183 |
msgid "Circle Counter"
|
7184 |
msgstr "Contatore circolare"
|
7185 |
|
7186 |
-
# @ fl-builder
|
7187 |
#: modules/numbers/numbers.php:71
|
|
|
7188 |
msgid "Bars Counter"
|
7189 |
msgstr "Contatore a barra"
|
7190 |
|
7191 |
-
# @ fl-builder
|
7192 |
#: modules/numbers/numbers.php:85
|
|
|
7193 |
msgid "Number Type"
|
7194 |
msgstr "Tipo di numero"
|
7195 |
|
7196 |
-
# @ fl-builder
|
7197 |
#: modules/numbers/numbers.php:88
|
|
|
7198 |
msgid "Percent"
|
7199 |
msgstr "Percentuale"
|
7200 |
|
7201 |
-
# @ fl-builder
|
7202 |
#: modules/numbers/numbers.php:89
|
|
|
7203 |
msgid "Standard"
|
7204 |
msgstr "Standard"
|
7205 |
|
7206 |
-
# @ fl-builder
|
7207 |
#: modules/numbers/numbers.php:99
|
|
|
7208 |
msgid "Number"
|
7209 |
msgstr "Numero"
|
7210 |
|
7211 |
-
# @ fl-builder
|
7212 |
#: modules/numbers/numbers.php:106
|
|
|
7213 |
msgid "Total"
|
7214 |
msgstr "Totale"
|
7215 |
|
7216 |
-
# @ fl-builder
|
7217 |
#: modules/numbers/numbers.php:108
|
7218 |
-
|
7219 |
-
"The total number of units for this counter. For example, if the Number is "
|
7220 |
-
"
|
7221 |
-
msgstr ""
|
7222 |
-
"Il numero totale di unità per questo contatore. Ad esempio, se il numero è "
|
7223 |
-
"impostato a 250 e il totale è impostato su 500, il contatore si animerà fino "
|
7224 |
-
"al 50%."
|
7225 |
|
7226 |
-
# @ fl-builder
|
7227 |
#: modules/numbers/numbers.php:112
|
|
|
7228 |
msgid "Number Position"
|
7229 |
msgstr "Posizione del numero"
|
7230 |
|
7231 |
-
# @ fl-builder
|
7232 |
#: modules/numbers/numbers.php:114
|
|
|
7233 |
msgid "Where to display the number in relation to the bar."
|
7234 |
msgstr "Dove visualizzare il numero in relazione alla barra."
|
7235 |
|
7236 |
-
# @ fl-builder
|
7237 |
#: modules/numbers/numbers.php:116
|
|
|
7238 |
msgid "Inside Bar"
|
7239 |
msgstr "Dentro la barra"
|
7240 |
|
7241 |
-
# @ fl-builder
|
7242 |
#: modules/numbers/numbers.php:117
|
|
|
7243 |
msgid "Above Bar"
|
7244 |
msgstr "Sopra la barra"
|
7245 |
|
7246 |
-
# @ fl-builder
|
7247 |
#: modules/numbers/numbers.php:118
|
|
|
7248 |
msgid "Below Bar"
|
7249 |
msgstr "Sotto la barra"
|
7250 |
|
7251 |
-
# @ fl-builder
|
7252 |
#: modules/numbers/numbers.php:123
|
|
|
7253 |
msgid "Text Before Number"
|
7254 |
msgstr "Testo prima del numero"
|
7255 |
|
7256 |
-
# @ fl-builder
|
7257 |
#: modules/numbers/numbers.php:125
|
|
|
7258 |
msgid "Text to appear above the number. Leave it empty for none."
|
7259 |
msgstr "Testo da visualizzare sopra il numero. Lasciare vuoto per nessuno."
|
7260 |
|
7261 |
-
# @ fl-builder
|
7262 |
#: modules/numbers/numbers.php:129
|
|
|
7263 |
msgid "Text After Number"
|
7264 |
msgstr "Testo dopo il numero"
|
7265 |
|
7266 |
-
# @ fl-builder
|
7267 |
#: modules/numbers/numbers.php:131
|
|
|
7268 |
msgid "Text to appear after the number. Leave it empty for none."
|
7269 |
msgstr "Testo da visualizzare dopo il numero. Lasciare vuoto per nessuno."
|
7270 |
|
7271 |
-
# @ fl-builder
|
7272 |
#: modules/numbers/numbers.php:135
|
|
|
7273 |
msgid "Number Prefix"
|
7274 |
msgstr "Prefisso del numero"
|
7275 |
|
7276 |
-
# @ fl-builder
|
7277 |
#: modules/numbers/numbers.php:137
|
|
|
7278 |
msgid "For example, if your number is US$ 10, your prefix would be \"US$ \"."
|
7279 |
msgstr "Ad esempio, se il numero è US$ 10, il tuo prefisso sarebbe \"US$\"."
|
7280 |
|
7281 |
-
# @ fl-builder
|
7282 |
#: modules/numbers/numbers.php:141
|
|
|
7283 |
msgid "Number Suffix"
|
7284 |
msgstr "Suffisso del numero"
|
7285 |
|
7286 |
-
# @ fl-builder
|
7287 |
#: modules/numbers/numbers.php:143
|
|
|
7288 |
msgid "For example, if your number is 10%, your prefix would be \"%\"."
|
7289 |
msgstr "Ad esempio, se il numero è 10%, il tuo prefisso sarebbe \"%\"."
|
7290 |
|
7291 |
-
# @ fl-builder
|
7292 |
#: modules/numbers/numbers.php:147
|
|
|
7293 |
msgid "Animation Speed"
|
7294 |
msgstr "Velocità di animazione"
|
7295 |
|
7296 |
-
|
7297 |
-
#: modules/numbers/numbers.php:
|
|
|
7298 |
msgid "second(s)"
|
7299 |
msgstr "Secondo(i)"
|
7300 |
|
7301 |
-
# @ fl-builder
|
7302 |
#: modules/numbers/numbers.php:152
|
|
|
7303 |
msgid "Number of seconds to complete the animation."
|
7304 |
msgstr "Numero di secondi per completare l'animazione."
|
7305 |
|
7306 |
-
# @ fl-builder
|
7307 |
#: modules/numbers/numbers.php:156
|
|
|
7308 |
msgid "Animation Delay"
|
7309 |
msgstr "Ritardo di animazione"
|
7310 |
|
7311 |
-
# @ fl-builder
|
7312 |
#: modules/numbers/numbers.php:209
|
|
|
7313 |
msgid "Circle Bar Styles"
|
7314 |
msgstr "Stili della barra circolare"
|
7315 |
|
7316 |
-
# @ fl-builder
|
7317 |
#: modules/numbers/numbers.php:213
|
|
|
7318 |
msgid "Cirle Size"
|
7319 |
msgstr "Dimensione cerchio"
|
7320 |
|
7321 |
-
# @ fl-builder
|
7322 |
#: modules/numbers/numbers.php:237
|
|
|
7323 |
msgid "Cirle Stroke Size"
|
7324 |
msgstr "Dimensione della linea del cerchio"
|
7325 |
|
7326 |
-
# @ fl-builder
|
7327 |
#: modules/numbers/numbers.php:274
|
|
|
7328 |
msgid "Bar Styles"
|
7329 |
msgstr "Stile della barra"
|
7330 |
|
7331 |
-
# @ fl-builder
|
7332 |
#: modules/numbers/numbers.php:278
|
|
|
7333 |
msgid "Bar Foreground Color"
|
7334 |
msgstr "Colore in primo piano della barra"
|
7335 |
|
7336 |
-
# @ fl-builder
|
7337 |
#: modules/numbers/numbers.php:289
|
|
|
7338 |
msgid "Bar Background Color"
|
7339 |
msgstr "Colore di sfondo della barra"
|
7340 |
|
7341 |
-
# @ fl-builder
|
7342 |
#: modules/post-grid/post-grid.php:74
|
|
|
7343 |
msgid "Equal Heights"
|
7344 |
msgstr "Altezze uguali"
|
7345 |
|
7346 |
-
# @ fl-builder
|
7347 |
#: modules/pricing-table/pricing-table.php:79
|
|
|
7348 |
msgid "Highlight"
|
7349 |
msgstr "Evidenziare"
|
7350 |
|
7351 |
-
# @ fl-builder
|
7352 |
#: modules/pricing-table/pricing-table.php:89
|
|
|
7353 |
msgid "Border Style"
|
7354 |
msgstr "Stile del bordo"
|
7355 |
|
7356 |
-
# @ fl-builder
|
7357 |
#: modules/pricing-table/pricing-table.php:92
|
|
|
7358 |
msgid "Rounded"
|
7359 |
msgstr "Arrotondato"
|
7360 |
|
7361 |
-
# @ fl-builder
|
7362 |
#: modules/pricing-table/pricing-table.php:93
|
|
|
7363 |
msgid "Straight"
|
7364 |
msgstr "Dritto"
|
7365 |
|
7366 |
-
# @ fl-builder
|
7367 |
#: modules/pricing-table/pricing-table.php:101
|
|
|
7368 |
msgctxt "Border size."
|
7369 |
msgid "Large"
|
7370 |
msgstr "Grande"
|
7371 |
|
7372 |
-
# @ fl-builder
|
7373 |
#: modules/pricing-table/pricing-table.php:102
|
|
|
7374 |
msgctxt "Border size."
|
7375 |
msgid "Medium"
|
7376 |
msgstr "Medio"
|
7377 |
|
7378 |
-
# @ fl-builder
|
7379 |
#: modules/pricing-table/pricing-table.php:103
|
|
|
7380 |
msgctxt "Border size."
|
7381 |
msgid "Small"
|
7382 |
msgstr "Piccolo"
|
7383 |
|
7384 |
-
# @ fl-builder
|
7385 |
#: modules/pricing-table/pricing-table.php:359
|
|
|
7386 |
msgid "Box Border"
|
7387 |
msgstr "Bordo del riquadro"
|
7388 |
|
7389 |
-
# @ fl-builder
|
7390 |
#: modules/video/video.php:107
|
|
|
7391 |
msgid "A video in the MP4 format. Most modern browsers support this format."
|
7392 |
-
msgstr ""
|
7393 |
-
"Un video in formato MP4. I browser più moderni supportano questo formato."
|
7394 |
|
7395 |
-
# @ fl-builder
|
7396 |
#: modules/video/video.php:112
|
7397 |
-
|
7398 |
-
"A video in the WebM format to use as fallback. This format is required to "
|
7399 |
-
"
|
7400 |
-
msgstr ""
|
7401 |
-
"Un video in formato WebM da utilizzare come fallback. Questo formato è "
|
7402 |
-
"necessario per supportare i browser come FireFox e Opera."
|
7403 |
|
7404 |
-
# @ fl-builder
|
7405 |
#: modules/woocommerce/woocommerce.php:63
|
|
|
7406 |
msgid "Product Page"
|
7407 |
msgstr "Pagina del prodotto"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Beaver Builder Plugin (Agency Version) v1.7.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2016-01-25 10:13:47+0000\n"
|
7 |
"Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: CSL v1.x\n"
|
14 |
+
"X-Poedit-Language: Italian\n"
|
15 |
+
"X-Poedit-Country: ITALY\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
|
|
18 |
"X-Poedit-Basepath: ../\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
|
|
|
23 |
#: classes/class-fl-builder-admin-settings.php:116
|
24 |
#, php-format
|
25 |
+
#@ fl-builder
|
26 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
27 |
msgid "%s Settings"
|
28 |
msgstr "Impostazioni %s"
|
29 |
|
|
|
30 |
#: classes/class-fl-builder-admin-settings.php:133
|
31 |
+
#@ fl-builder
|
32 |
msgid "Settings updated!"
|
33 |
msgstr "Impostazioni aggiornate!"
|
34 |
|
|
|
35 |
#: classes/class-fl-builder-admin-settings.php:147
|
36 |
+
#@ fl-builder
|
37 |
msgid "License"
|
38 |
msgstr "Licenza"
|
39 |
|
|
|
40 |
#: classes/class-fl-builder-admin-settings.php:151
|
41 |
#: includes/admin-settings-upgrade.php:3
|
42 |
+
#@ fl-builder
|
43 |
msgid "Upgrade"
|
44 |
msgstr "Aggiornamento"
|
45 |
|
|
|
46 |
#: classes/class-fl-builder-admin-settings.php:155
|
47 |
#: includes/global-settings.php:90
|
48 |
+
#@ fl-builder
|
49 |
msgid "Modules"
|
50 |
msgstr "Moduli"
|
51 |
|
|
|
52 |
#: classes/class-fl-builder-admin-settings.php:159
|
53 |
#: classes/class-fl-builder.php:663
|
54 |
+
#@ fl-builder
|
55 |
msgid "Templates"
|
56 |
msgstr "Modelli"
|
57 |
|
|
|
58 |
#: classes/class-fl-builder-admin-settings.php:163
|
59 |
#: includes/admin-settings-post-types.php:3
|
60 |
+
#@ fl-builder
|
61 |
msgid "Post Types"
|
62 |
msgstr "Tipi di post"
|
63 |
|
|
|
64 |
#: classes/class-fl-builder-admin-settings.php:167
|
65 |
#: modules/icon-group/icon-group.php:28
|
66 |
#: modules/post-carousel/post-carousel.php:289
|
67 |
#: modules/post-grid/post-grid.php:266
|
68 |
+
#@ fl-builder
|
69 |
msgid "Icons"
|
70 |
msgstr "Icone"
|
71 |
|
|
|
72 |
#: classes/class-fl-builder-admin-settings.php:171
|
73 |
+
#@ fl-builder
|
74 |
msgid "Editing"
|
75 |
msgstr "Modifica"
|
76 |
|
|
|
77 |
#: classes/class-fl-builder-admin-settings.php:175
|
78 |
+
#@ fl-builder
|
79 |
msgid "Branding"
|
80 |
msgstr "Branding"
|
81 |
|
|
|
82 |
#: classes/class-fl-builder-admin-settings.php:179
|
83 |
+
#@ fl-builder
|
84 |
msgid "Help Button"
|
85 |
msgstr "Pulsante Aiuto"
|
86 |
|
|
|
87 |
#: classes/class-fl-builder-admin-settings.php:183
|
88 |
#: includes/admin-settings-cache.php:3
|
89 |
+
#@ fl-builder
|
90 |
msgid "Cache"
|
91 |
msgstr "Cache"
|
92 |
|
|
|
93 |
#: classes/class-fl-builder-admin-settings.php:187
|
94 |
#: includes/admin-settings-uninstall.php:3
|
95 |
#: includes/admin-settings-uninstall.php:15
|
96 |
+
#@ fl-builder
|
97 |
msgid "Uninstall"
|
98 |
msgstr "Disinstalla"
|
99 |
|
|
|
100 |
#: classes/class-fl-builder-admin-settings.php:439
|
101 |
+
#@ fl-builder
|
102 |
msgid "Error! You must have at least one icon set enabled."
|
103 |
msgstr "Errore! Devi avere almeno un set di icone abilitato."
|
104 |
|
|
|
105 |
#: classes/class-fl-builder-admin-settings.php:481
|
106 |
+
#@ fl-builder
|
107 |
msgid "Error! Could not unzip file."
|
108 |
msgstr "Errore! Non è stato possibile decomprimere il file."
|
109 |
|
|
|
110 |
#: classes/class-fl-builder-admin-settings.php:515
|
111 |
+
#@ fl-builder
|
112 |
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
113 |
msgstr "Errore! Per favore carica un set di icone da Iconmoon o Fontello."
|
114 |
|
|
|
115 |
#: classes/class-fl-builder-admin-settings.php:632
|
116 |
+
#@ fl-builder
|
117 |
msgid "Error! Please enter an iframe for the video embed code."
|
118 |
msgstr "Errore! Per favore inserisci un iframe per il codice video embed."
|
119 |
|
|
|
120 |
#: classes/class-fl-builder-admin-settings.php:650
|
121 |
+
#@ fl-builder
|
122 |
msgid "Error! You must have at least one feature of the help button enabled."
|
123 |
msgstr "Errore! Devi avere almeno una funzione del bottone aiuto abilitata."
|
124 |
|
|
|
125 |
#: classes/class-fl-builder-admin.php:45
|
126 |
#, php-format
|
127 |
+
#@ fl-builder
|
128 |
+
msgid "This version of the <strong>Page Builder</strong> plugin is not compatible with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version of this plugin."
|
129 |
+
msgstr "Questa versione del plugin <strong>Page Builder</strong> non è compatibile con WordPress Multisite. <a%s>Si prega di aggiornare</a> alla versione Multisite di questo plugin."
|
|
|
|
|
|
|
|
|
|
|
130 |
|
|
|
131 |
#: classes/class-fl-builder-admin.php:55
|
132 |
+
#@ fl-builder
|
133 |
+
msgid "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update WordPress before activating the plugin."
|
134 |
+
msgstr "Il plugin <strong>Page Builder</strong> richiede WordPress versione 3.5 o superiore. Si prega di aggiornare WordPress prima di attivare il plugin."
|
|
|
|
|
|
|
135 |
|
|
|
136 |
#: classes/class-fl-builder-admin.php:112
|
137 |
#, php-format
|
138 |
+
#@ fl-builder
|
139 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
140 |
+
msgstr "Page Builder attivato! <a%s>Clicca qui</a> per attivare gli aggiornamenti remoti."
|
|
|
|
|
141 |
|
|
|
142 |
#: classes/class-fl-builder-admin.php:238
|
143 |
+
#@ fl-builder
|
144 |
msgctxt "Plugin action link label."
|
145 |
msgid "Upgrade"
|
146 |
msgstr "Aggiorna"
|
147 |
|
|
|
148 |
#: classes/class-fl-builder-admin.php:253
|
149 |
#: classes/class-fl-builder-model.php:4405
|
150 |
+
#@ fl-builder
|
151 |
msgid "Page Builder"
|
152 |
msgstr "Page Builder"
|
153 |
|
|
|
154 |
#: classes/class-fl-builder-model.php:1838
|
155 |
#, php-format
|
156 |
+
#@ fl-builder
|
157 |
msgctxt "%s stands for the module filename"
|
158 |
+
msgid "A module with the filename %s.php already exists! Please namespace your module filenames to ensure compatibility with Beaver Builder."
|
159 |
+
msgstr "Esiste già un modulo con il nome file %s.php! Per favore usa un namespace nel nome file del tuo modulo per assicurare la compatibilità con Beaver Builder."
|
|
|
|
|
|
|
|
|
|
|
160 |
|
|
|
161 |
#: classes/class-fl-builder-model.php:1896
|
162 |
+
#: classes/class-fl-builder-model.php:1960
|
163 |
+
#: modules/audio/audio.php:21
|
164 |
+
#: modules/button/button.php:16
|
165 |
+
#: modules/heading/heading.php:16
|
166 |
+
#: modules/html/html.php:16
|
167 |
+
#: modules/photo/photo.php:27
|
168 |
+
#: modules/rich-text/rich-text.php:16
|
169 |
+
#: modules/separator/separator.php:16
|
170 |
#: modules/video/video.php:21
|
171 |
+
#@ fl-builder
|
172 |
msgid "Basic Modules"
|
173 |
msgstr "Moduli base"
|
174 |
|
|
|
175 |
#: classes/class-fl-builder-model.php:1897
|
176 |
+
#: classes/class-fl-builder-model.php:1961
|
177 |
+
#: modules/accordion/accordion.php:16
|
178 |
+
#: modules/callout/callout.php:16
|
179 |
+
#: modules/contact-form/contact-form.php:16
|
180 |
#: modules/content-slider/content-slider.php:16
|
181 |
+
#: modules/countdown/countdown.php:16
|
182 |
+
#: modules/cta/cta.php:16
|
183 |
+
#: modules/gallery/gallery.php:16
|
184 |
+
#: modules/icon/icon.php:16
|
185 |
+
#: modules/icon-group/icon-group.php:16
|
186 |
+
#: modules/map/map.php:16
|
187 |
+
#: modules/menu/menu.php:16
|
188 |
+
#: modules/numbers/numbers.php:16
|
189 |
#: modules/post-carousel/post-carousel.php:16
|
190 |
+
#: modules/post-grid/post-grid.php:16
|
191 |
+
#: modules/post-slider/post-slider.php:16
|
192 |
+
#: modules/pricing-table/pricing-table.php:16
|
193 |
+
#: modules/sidebar/sidebar.php:16
|
194 |
#: modules/slideshow/slideshow.php:16
|
195 |
#: modules/social-buttons/social-buttons.php:16
|
196 |
+
#: modules/subscribe-form/subscribe-form.php:20
|
197 |
+
#: modules/tabs/tabs.php:16
|
198 |
#: modules/testimonials/testimonials.php:16
|
199 |
#: modules/woocommerce/woocommerce.php:18
|
200 |
+
#@ fl-builder
|
201 |
msgid "Advanced Modules"
|
202 |
msgstr "Moduli avanzati"
|
203 |
|
|
|
204 |
#: classes/class-fl-builder-model.php:1898
|
205 |
#: classes/class-fl-builder-model.php:1962
|
206 |
+
#@ fl-builder
|
207 |
msgid "Other Modules"
|
208 |
msgstr "Altri moduli"
|
209 |
|
|
|
210 |
#: classes/class-fl-builder-model.php:1899
|
211 |
#: classes/class-fl-builder-model.php:1963
|
212 |
+
#: includes/admin-settings-modules.php:32
|
213 |
+
#: includes/ui-panel.php:56
|
214 |
#: modules/widget/widget.php:16
|
215 |
+
#@ fl-builder
|
216 |
msgid "WordPress Widgets"
|
217 |
msgstr "Widget di WordPress"
|
218 |
|
|
|
219 |
#: classes/class-fl-builder-model.php:2679
|
220 |
#, php-format
|
221 |
+
#@ fl-builder
|
222 |
msgctxt "%s stands for post/page title."
|
223 |
msgid "Copy of %s"
|
224 |
msgstr "Copia di %s"
|
225 |
|
|
|
226 |
#: classes/class-fl-builder-model.php:3287
|
227 |
+
#@ fl-builder
|
228 |
msgctxt "Default user template category."
|
229 |
msgid "Uncategorized"
|
230 |
msgstr "Senza categoria"
|
231 |
|
|
|
232 |
#: classes/class-fl-builder-model.php:4333
|
233 |
+
#@ fl-builder
|
234 |
msgid "Home Pages"
|
235 |
msgstr "Pagine home"
|
236 |
|
|
|
237 |
#: classes/class-fl-builder-model.php:4334
|
238 |
+
#@ fl-builder
|
239 |
msgid "Content Pages"
|
240 |
msgstr "Pagine di contenuto"
|
241 |
|
|
|
|
|
242 |
#: classes/class-fl-builder-photo.php:100
|
243 |
+
#: classes/class-fl-builder-photo.php:105
|
244 |
+
#@ fl-builder
|
245 |
msgctxt "Image size."
|
246 |
msgid "Full Size"
|
247 |
msgstr "Piena larghezza"
|
248 |
|
249 |
+
#: classes/class-fl-builder-photo.php:106
|
250 |
+
#@ fl-builder
|
251 |
msgctxt "Image size."
|
252 |
msgid "Large"
|
253 |
msgstr "Grande"
|
254 |
|
255 |
+
#: classes/class-fl-builder-photo.php:107
|
256 |
+
#@ fl-builder
|
257 |
msgctxt "Image size."
|
258 |
msgid "Medium"
|
259 |
msgstr "Media"
|
260 |
|
261 |
+
#: classes/class-fl-builder-photo.php:108
|
262 |
+
#@ fl-builder
|
263 |
msgctxt "Image size."
|
264 |
msgid "Thumbnail"
|
265 |
msgstr "Miniatura"
|
266 |
|
|
|
267 |
#: classes/class-fl-builder-service-activecampaign.php:69
|
268 |
+
#@ fl-builder
|
269 |
msgid "Error: You must provide an API URL."
|
270 |
msgstr "Errore: devi fornire una API URL."
|
271 |
|
|
|
272 |
#: classes/class-fl-builder-service-activecampaign.php:73
|
273 |
#: classes/class-fl-builder-service-campaign-monitor.php:55
|
274 |
#: classes/class-fl-builder-service-campayn.php:106
|
281 |
#: classes/class-fl-builder-service-mailchimp.php:67
|
282 |
#: classes/class-fl-builder-service-mailrelay.php:82
|
283 |
#: classes/class-fl-builder-service-sendy.php:72
|
284 |
+
#@ fl-builder
|
285 |
msgid "Error: You must provide an API key."
|
286 |
msgstr "Errore: devi fornire una chiave API."
|
287 |
|
|
|
288 |
#: classes/class-fl-builder-service-activecampaign.php:81
|
289 |
+
#@ fl-builder
|
290 |
msgid "Error: Please check your API URL and API key."
|
291 |
msgstr "Errore: si prega di verificare la API URL e la chiave API."
|
292 |
|
|
|
293 |
#: classes/class-fl-builder-service-activecampaign.php:108
|
294 |
+
#@ fl-builder
|
295 |
msgid "API URL"
|
296 |
msgstr "API URL"
|
297 |
|
|
|
298 |
#: classes/class-fl-builder-service-activecampaign.php:109
|
299 |
+
#@ fl-builder
|
300 |
+
msgid "Your API url can be found in your ActiveCampaign account under My Settings > API."
|
301 |
+
msgstr "Puoi trovare la tua API URL nell'account di ActiveCampaign sotto My Settings > API."
|
|
|
|
|
|
|
302 |
|
|
|
303 |
#: classes/class-fl-builder-service-activecampaign.php:119
|
304 |
#: classes/class-fl-builder-service-campaign-monitor.php:88
|
305 |
#: classes/class-fl-builder-service-campayn.php:149
|
312 |
#: classes/class-fl-builder-service-mailchimp.php:100
|
313 |
#: classes/class-fl-builder-service-mailrelay.php:130
|
314 |
#: classes/class-fl-builder-service-sendy.php:126
|
315 |
+
#@ fl-builder
|
316 |
msgid "API Key"
|
317 |
msgstr "Chiave API"
|
318 |
|
|
|
319 |
#: classes/class-fl-builder-service-activecampaign.php:120
|
320 |
+
#@ fl-builder
|
321 |
+
msgid "Your API key can be found in your ActiveCampaign account under My Settings > API."
|
322 |
+
msgstr "Puoi trovare la tua chiave API nell'account di ActiveCampaign sotto My Settings > API."
|
|
|
|
|
|
|
323 |
|
|
|
324 |
#: classes/class-fl-builder-service-activecampaign.php:169
|
325 |
#: classes/class-fl-builder-service-aweber.php:182
|
326 |
#: classes/class-fl-builder-service-campaign-monitor.php:148
|
336 |
#: classes/class-fl-builder-service-mailpoet.php:92
|
337 |
#: classes/class-fl-builder-service-mailrelay.php:187
|
338 |
#: classes/class-fl-builder-service-sendinblue.php:161
|
339 |
+
#: classes/class-fl-builder-services.php:309
|
340 |
+
#: includes/service-settings.php:21
|
341 |
#: modules/woocommerce/woocommerce.php:61
|
342 |
+
#@ fl-builder
|
343 |
msgid "Choose..."
|
344 |
msgstr "Scegli..."
|
345 |
|
|
|
346 |
#: classes/class-fl-builder-service-activecampaign.php:181
|
347 |
#: classes/class-fl-builder-service-aweber.php:192
|
348 |
#: classes/class-fl-builder-service-campaign-monitor.php:209
|
355 |
#: classes/class-fl-builder-service-mailchimp.php:187
|
356 |
#: classes/class-fl-builder-service-mailpoet.php:102
|
357 |
#: classes/class-fl-builder-service-sendinblue.php:171
|
358 |
+
#@ fl-builder
|
359 |
msgctxt "An email list from a third party provider."
|
360 |
msgid "List"
|
361 |
msgstr "Lista"
|
362 |
|
|
|
363 |
#: classes/class-fl-builder-service-activecampaign.php:208
|
364 |
+
#@ fl-builder
|
365 |
+
msgid "There was an error subscribing to ActiveCampaign. The account is no longer connected."
|
366 |
+
msgstr "Si è verificato un errore nell'iscrizione ad ActiveCampaign. L'account non è più connesso. "
|
|
|
|
|
|
|
367 |
|
|
|
368 |
#: classes/class-fl-builder-service-activecampaign.php:239
|
369 |
+
#@ fl-builder
|
370 |
msgid "Error: Invalid API data."
|
371 |
msgstr "Errore: dati API non validi."
|
372 |
|
|
|
373 |
#: classes/class-fl-builder-service-aweber.php:72
|
374 |
+
#@ fl-builder
|
375 |
msgid "Error: You must provide an Authorization Code."
|
376 |
msgstr "Errore: devi fornire un codice di autorizzazione."
|
377 |
|
|
|
378 |
#: classes/class-fl-builder-service-aweber.php:76
|
379 |
+
#@ fl-builder
|
380 |
msgid "Error: Please enter a valid Authorization Code."
|
381 |
msgstr "Errore: si prega di inserire un codice di autorizzazione valido."
|
382 |
|
|
|
383 |
#: classes/class-fl-builder-service-aweber.php:127
|
384 |
+
#@ fl-builder
|
385 |
msgid "Authorization Code"
|
386 |
msgstr "Codice di autorizzazione"
|
387 |
|
|
|
388 |
#: classes/class-fl-builder-service-aweber.php:128
|
389 |
#, php-format
|
390 |
+
#@ fl-builder
|
391 |
+
msgid "Please register this website with AWeber to get your Authorization Code. <a%s>Register Now</a>"
|
392 |
+
msgstr "Si prega di registrare questo sito su AWeber per ottenere il tuo codice di autorizzazione. <a%s>Registra ora</a>"
|
|
|
|
|
|
|
393 |
|
|
|
394 |
#: classes/class-fl-builder-service-aweber.php:219
|
395 |
+
#@ fl-builder
|
396 |
+
msgid "There was an error subscribing to AWeber. The account is no longer connected."
|
397 |
+
msgstr "Si è verificato un errore nell'iscrizione ad Aweber. L'account non è più connesso. "
|
|
|
|
|
398 |
|
|
|
399 |
#: classes/class-fl-builder-service-aweber.php:242
|
400 |
+
#@ fl-builder
|
401 |
msgid "There was an error connecting to AWeber. Please try again."
|
402 |
+
msgstr "Si è verificato un errore nella connessione ad AWeber. Si prega di riprovare."
|
|
|
403 |
|
|
|
404 |
#: classes/class-fl-builder-service-aweber.php:247
|
405 |
#, php-format
|
406 |
+
#@ fl-builder
|
407 |
msgid "There was an error subscribing to AWeber. %s"
|
408 |
msgstr "Si è verificato un'errore nell'iscrizione ad AWeber. %s"
|
409 |
|
|
|
410 |
#: classes/class-fl-builder-service-campaign-monitor.php:67
|
411 |
#: classes/class-fl-builder-service-campaign-monitor.php:129
|
412 |
#: classes/class-fl-builder-service-convertkit.php:131
|
413 |
#: classes/class-fl-builder-service-getresponse.php:76
|
414 |
#: classes/class-fl-builder-service-getresponse.php:132
|
415 |
#: classes/class-fl-builder-service-hatchbuck.php:63
|
416 |
+
#@ fl-builder
|
417 |
msgid "Error: Please check your API key."
|
418 |
msgstr "Errore: si prega di verificare la chiave API."
|
419 |
|
|
|
420 |
#: classes/class-fl-builder-service-campaign-monitor.php:89
|
421 |
+
#@ fl-builder
|
422 |
+
msgid "Your API key can be found in your Campaign Monitor account under Account Settings > API Key."
|
423 |
+
msgstr "Puoi trovare la tua chiave API nell'account Campaign Monitor sotto Impostazioni Account > Chiave API."
|
|
|
|
|
|
|
424 |
|
|
|
425 |
#: classes/class-fl-builder-service-campaign-monitor.php:158
|
426 |
+
#@ fl-builder
|
427 |
msgctxt "A client account in Campaign Monitor."
|
428 |
msgid "Client"
|
429 |
msgstr "Client"
|
430 |
|
|
|
431 |
#: classes/class-fl-builder-service-campaign-monitor.php:236
|
432 |
+
#@ fl-builder
|
433 |
+
msgid "There was an error subscribing to Campaign Monitor. The account is no longer connected."
|
434 |
+
msgstr "Si è verificato un errore nell'iscrizione a Campaign Monitor. L'account non è più connesso."
|
|
|
|
|
|
|
435 |
|
|
|
436 |
#: classes/class-fl-builder-service-campaign-monitor.php:253
|
437 |
+
#@ fl-builder
|
438 |
msgid "There was an error subscribing to Campaign Monitor."
|
439 |
msgstr "Si è verificato un'errore nell'iscrizione a Campaign Monitor."
|
440 |
|
|
|
441 |
#: classes/class-fl-builder-service-constant-contact.php:52
|
442 |
+
#@ fl-builder
|
443 |
msgid "Error: You must provide an access token."
|
444 |
msgstr "Errore: devi fornire un token di accesso."
|
445 |
|
|
|
446 |
#: classes/class-fl-builder-service-constant-contact.php:61
|
447 |
#: classes/class-fl-builder-service-constant-contact.php:134
|
448 |
#, php-format
|
449 |
+
#@ fl-builder
|
450 |
msgid "Error: Could not connect to Constant Contact. %s"
|
451 |
msgstr "Errore: impossibile connettersi a Constant Contact. %s "
|
452 |
|
|
|
453 |
#: classes/class-fl-builder-service-constant-contact.php:89
|
454 |
+
#@ fl-builder
|
455 |
msgid "Your Constant Contact API key."
|
456 |
msgstr "La tua chiave API Constant Contact."
|
457 |
|
|
|
458 |
#: classes/class-fl-builder-service-constant-contact.php:99
|
459 |
+
#@ fl-builder
|
460 |
msgid "Access Token"
|
461 |
msgstr "Token di accesso"
|
462 |
|
|
|
463 |
#: classes/class-fl-builder-service-constant-contact.php:100
|
464 |
+
#@ fl-builder
|
465 |
msgid "Your Constant Contact access token."
|
466 |
msgstr "Il tuo token di accesso a Constant Contact"
|
467 |
|
|
|
468 |
#: classes/class-fl-builder-service-constant-contact.php:101
|
469 |
#, php-format
|
470 |
+
#@ fl-builder
|
471 |
+
msgid "You must register a <a%s>Developer Account</a> with Constant Contact to obtain an API key and access token. Please see <a%s>Getting an API key</a> for complete instructions."
|
472 |
+
msgstr "Devi registrare un <a%s>Account sviluppatore</a> su Constant Contact per ottenere una chiave API e un token di accesso, Si prega di consultare <a%s>Prendere una chiave API</a> per istruzioni complete."
|
|
|
|
|
|
|
|
|
|
|
473 |
|
|
|
474 |
#: classes/class-fl-builder-service-constant-contact.php:193
|
475 |
+
#@ fl-builder
|
476 |
+
msgid "There was an error subscribing to Constant Contact. The account is no longer connected."
|
477 |
+
msgstr "Si è verificato un errore nell'iscrizione a Constant Contact. L'account non è più connesso."
|
|
|
|
|
|
|
478 |
|
|
|
479 |
#: classes/class-fl-builder-service-constant-contact.php:245
|
480 |
#: classes/class-fl-builder-service-constant-contact.php:279
|
481 |
#, php-format
|
482 |
+
#@ fl-builder
|
483 |
msgid "There was an error subscribing to Constant Contact. %s"
|
484 |
msgstr "Si è verificato un errore nell'iscrizione a Constant Contact. %s"
|
485 |
|
|
|
486 |
#: classes/class-fl-builder-service-email-address.php:39
|
487 |
#: classes/class-fl-builder-service-madmimi.php:69
|
488 |
+
#@ fl-builder
|
489 |
msgid "Error: You must provide an email address."
|
490 |
msgstr "Errore: devi fornire un indirizzo email."
|
491 |
|
|
|
492 |
#: classes/class-fl-builder-service-email-address.php:63
|
493 |
#: classes/class-fl-builder-service-madmimi.php:110
|
494 |
#: modules/subscribe-form/includes/frontend.php:11
|
495 |
+
#@ fl-builder
|
496 |
msgid "Email Address"
|
497 |
msgstr "Indirizzo email"
|
498 |
|
|
|
499 |
#: classes/class-fl-builder-service-email-address.php:110
|
500 |
+
#@ fl-builder
|
501 |
msgid "There was an error subscribing. The account is no longer connected."
|
502 |
+
msgstr "Si è verificato un errore nell'iscrizione. L'account non è più connesso. "
|
|
|
503 |
|
|
|
504 |
#: classes/class-fl-builder-service-email-address.php:114
|
505 |
+
#@ fl-builder
|
506 |
msgid "Subscribe Form Signup"
|
507 |
msgstr "Modulo di iscrizione"
|
508 |
|
|
|
509 |
#: classes/class-fl-builder-service-email-address.php:115
|
510 |
#: modules/contact-form/includes/frontend.php:21
|
511 |
+
#@ fl-builder
|
512 |
msgid "Email"
|
513 |
msgstr "Email"
|
514 |
|
|
|
515 |
#: classes/class-fl-builder-service-email-address.php:118
|
516 |
+
#@ fl-builder
|
517 |
msgid "Name"
|
518 |
msgstr "Nome"
|
519 |
|
|
|
520 |
#: classes/class-fl-builder-service-email-address.php:124
|
521 |
#: modules/subscribe-form/subscribe-form.php:84
|
522 |
+
#@ fl-builder
|
523 |
msgid "There was an error subscribing. Please try again."
|
524 |
msgstr "Si è verificato un errore nell'iscrizione. Riprova, per favore."
|
525 |
|
|
|
526 |
#: classes/class-fl-builder-service-getresponse.php:101
|
527 |
+
#@ fl-builder
|
528 |
+
msgid "Your API key can be found in your GetResponse account under My Account > GetResponse API."
|
529 |
+
msgstr "Puoi trovare la tua chiave API nel tuo account su GetResponse sotto Il mio account > GetResponse API."
|
|
|
|
|
|
|
530 |
|
|
|
531 |
#: classes/class-fl-builder-service-getresponse.php:191
|
532 |
+
#@ fl-builder
|
533 |
+
msgid "There was an error subscribing to GetResponse. The account is no longer connected."
|
534 |
+
msgstr "Si è verificato un errore nell'iscrizione a GetResponse. L'account non è più connesso."
|
|
|
|
|
|
|
535 |
|
|
|
536 |
#: classes/class-fl-builder-service-getresponse.php:202
|
537 |
#, php-format
|
538 |
+
#@ fl-builder
|
539 |
msgid "There was an error subscribing to GetResponse. %s"
|
540 |
msgstr "Si è verificato un errore nell'iscrizione a GetResponse. %s"
|
541 |
|
|
|
542 |
#: classes/class-fl-builder-service-hatchbuck.php:88
|
543 |
+
#@ fl-builder
|
544 |
+
msgid "Your API key can be found in your Hatchbuck account under Account Settings > Web API."
|
545 |
+
msgstr "La tua chiave API può essere trovata nel tuo account Hatchbuck in Account Settings > Web API."
|
|
|
|
|
|
|
546 |
|
|
|
547 |
#: classes/class-fl-builder-service-hatchbuck.php:134
|
548 |
+
#@ fl-builder
|
549 |
msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
|
550 |
msgid "Tag"
|
551 |
msgstr "Tag"
|
552 |
|
|
|
553 |
#: classes/class-fl-builder-service-hatchbuck.php:161
|
554 |
+
#@ fl-builder
|
555 |
+
msgid "There was an error subscribing to Hatchbuck. The account is no longer connected."
|
556 |
+
msgstr "Si è verificato un errore nell'iscrizione a Hatchbuck. L'account non è più connesso."
|
|
|
|
|
|
|
557 |
|
|
|
558 |
#: classes/class-fl-builder-service-hatchbuck.php:190
|
559 |
+
#@ fl-builder
|
560 |
msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
|
561 |
+
msgstr "Si è verificato un errore nell'iscrizione a Hatchbuck. La chiave API non è valida."
|
|
|
|
|
562 |
|
|
|
563 |
#: classes/class-fl-builder-service-hatchbuck.php:200
|
564 |
#: classes/class-fl-builder-service-hatchbuck.php:232
|
565 |
+
#@ fl-builder
|
566 |
msgid "There was an error subscribing to Hatchbuck."
|
567 |
msgstr "Si è verificato un'errore nell'iscrizione a Hatchbuck."
|
568 |
|
|
|
569 |
#: classes/class-fl-builder-service-icontact.php:75
|
570 |
+
#@ fl-builder
|
571 |
msgid "Error: You must provide a username."
|
572 |
msgstr "Errore: devi fornire un nome utente."
|
573 |
|
|
|
574 |
#: classes/class-fl-builder-service-icontact.php:79
|
575 |
+
#@ fl-builder
|
576 |
msgid "Error: You must provide a app ID."
|
577 |
msgstr "Errore: devi fornire un ID applicazione."
|
578 |
|
|
|
579 |
#: classes/class-fl-builder-service-icontact.php:83
|
580 |
+
#@ fl-builder
|
581 |
msgid "Error: You must provide a app password."
|
582 |
msgstr "Errore: devi fornire una password applicazione."
|
583 |
|
|
|
584 |
#: classes/class-fl-builder-service-icontact.php:104
|
585 |
#: classes/class-fl-builder-service-icontact.php:188
|
586 |
#, php-format
|
587 |
+
#@ fl-builder
|
588 |
msgid "Error: Could not connect to iContact. %s"
|
589 |
msgstr "Errore: non è possibile connettersi ad iContact. %s"
|
590 |
|
|
|
591 |
#: classes/class-fl-builder-service-icontact.php:125
|
592 |
+
#@ fl-builder
|
593 |
msgid "Username"
|
594 |
msgstr "Nome utente"
|
595 |
|
|
|
596 |
#: classes/class-fl-builder-service-icontact.php:126
|
597 |
+
#@ fl-builder
|
598 |
msgid "Your iContact username."
|
599 |
msgstr "Il tuo nome utente iContact."
|
600 |
|
|
|
601 |
#: classes/class-fl-builder-service-icontact.php:136
|
602 |
#: classes/class-fl-builder-service-infusionsoft.php:118
|
603 |
+
#@ fl-builder
|
604 |
msgid "App ID"
|
605 |
msgstr "ID applicazione"
|
606 |
|
|
|
607 |
#: classes/class-fl-builder-service-icontact.php:137
|
608 |
+
#@ fl-builder
|
609 |
msgid "Your iContact app ID."
|
610 |
msgstr "Il tuo ID applicazione iContact."
|
611 |
|
|
|
612 |
#: classes/class-fl-builder-service-icontact.php:147
|
613 |
+
#@ fl-builder
|
614 |
msgid "App Password"
|
615 |
msgstr "Password applicazione"
|
616 |
|
|
|
617 |
#: classes/class-fl-builder-service-icontact.php:148
|
618 |
+
#@ fl-builder
|
619 |
msgid "Your iContact app password."
|
620 |
msgstr "La tua password applicazione iContact."
|
621 |
|
|
|
622 |
#: classes/class-fl-builder-service-icontact.php:149
|
623 |
#, php-format
|
624 |
+
#@ fl-builder
|
625 |
+
msgid "You must <a%s>create an app</a> in iContact to obtain an app ID and password. Please see <a%s>the iContact docs</a> for complete instructions."
|
626 |
+
msgstr "Devi <a%s>creare un'applicazione</a> in iContact per ottenere un ID applicazione e password. Si prega di consultare <a%s>la documentazione di iContact</a> per le istruzioni complete."
|
|
|
|
|
|
|
|
|
627 |
|
|
|
628 |
#: classes/class-fl-builder-service-icontact.php:244
|
629 |
+
#@ fl-builder
|
630 |
+
msgid "There was an error subscribing to iContact. The account is no longer connected."
|
631 |
+
msgstr "Si è verificato un errore nell'iscrizione ad iContact. L'account non è più connesso."
|
|
|
|
|
|
|
632 |
|
|
|
633 |
#: classes/class-fl-builder-service-icontact.php:280
|
634 |
#, php-format
|
635 |
+
#@ fl-builder
|
636 |
msgid "There was an error subscribing to iContact. %s"
|
637 |
msgstr "Si è verificato un errore nell'iscrizione a iContact. %s"
|
638 |
|
|
|
639 |
#: classes/class-fl-builder-service-infusionsoft.php:49
|
640 |
#, php-format
|
641 |
+
#@ fl-builder
|
642 |
msgid "There was an error connecting to Infusionsoft. %s"
|
643 |
msgstr "Si è verificato un errore nella connessione a Infusionsoft. %s"
|
644 |
|
|
|
645 |
#: classes/class-fl-builder-service-infusionsoft.php:83
|
646 |
+
#@ fl-builder
|
647 |
msgid "Error: You must provide an app ID."
|
648 |
msgstr "Errore: devi fornire una app ID."
|
649 |
|
|
|
650 |
#: classes/class-fl-builder-service-infusionsoft.php:119
|
651 |
+
#@ fl-builder
|
652 |
+
msgid "Your App ID can be found in the URL for your account. For example, if the URL for your account is myaccount.infusionsoft.com, your App ID would be <strong>myaccount</strong>."
|
653 |
+
msgstr "Il tuo App ID si può trovare nella URL del tuo account. Per esempio, se la URL del tuo account è myaccount.infusionsoft.com, la tua App ID sarà <strong>myaccount</strong>."
|
|
|
|
|
|
|
|
|
|
|
654 |
|
|
|
655 |
#: classes/class-fl-builder-service-infusionsoft.php:130
|
656 |
+
#@ fl-builder
|
657 |
+
msgid "Your API key can be found in your Infusionsoft account under Admin > Settings > Application > API > Encrypted Key."
|
658 |
+
msgstr "Puoi trovare la tua chiave API nel tuo account Infusionsoft sotto Admin > Settings > Application > API > Encrypted Key."
|
|
|
|
|
|
|
659 |
|
|
|
660 |
#: classes/class-fl-builder-service-infusionsoft.php:242
|
661 |
+
#@ fl-builder
|
662 |
+
msgid "There was an error subscribing to Infusionsoft. The account is no longer connected."
|
663 |
+
msgstr "Si è verificato un errore nell'iscrizione a Infusionsoft. L'account non è più connesso."
|
|
|
|
|
|
|
664 |
|
|
|
665 |
#: classes/class-fl-builder-service-infusionsoft.php:291
|
666 |
#, php-format
|
667 |
+
#@ fl-builder
|
668 |
msgid "There was an error subscribing to Infusionsoft. %s"
|
669 |
msgstr "Si è verificato un errore nell'iscrizione a Infusionsoft. %s"
|
670 |
|
|
|
671 |
#: classes/class-fl-builder-service-madmimi.php:83
|
672 |
+
#@ fl-builder
|
673 |
msgid "Unable to connect to Mad Mimi. Please check your credentials."
|
674 |
+
msgstr "Impossibile connettersi a Mad Mimi. Si prega di verificare le credenziali."
|
|
|
675 |
|
|
|
676 |
#: classes/class-fl-builder-service-madmimi.php:111
|
677 |
+
#@ fl-builder
|
678 |
msgid "The email address associated with your Mad Mimi account."
|
679 |
msgstr "L'indirizzo email associato al tuo account Mad Mimi."
|
680 |
|
|
|
681 |
#: classes/class-fl-builder-service-madmimi.php:122
|
682 |
+
#@ fl-builder
|
683 |
+
msgid "Your API key can be found in your Mad Mimi account under Account > Settings & Billing > API."
|
684 |
+
msgstr "Puoi trovare la tua chiave API nell'account Mad Mimi sotto Account > Settings & Billing > API."
|
|
|
|
|
|
|
685 |
|
|
|
686 |
#: classes/class-fl-builder-service-madmimi.php:156
|
687 |
+
#@ fl-builder
|
688 |
+
msgid "There was a problem retrieving your lists. Please check your API credentials."
|
689 |
+
msgstr "Si è verificato un problema nell'ottenere le tue liste. Si prega di verificare le credenziali API."
|
|
|
|
|
690 |
|
|
|
691 |
#: classes/class-fl-builder-service-madmimi.php:215
|
692 |
#: classes/class-fl-builder-service-madmimi.php:242
|
693 |
+
#@ fl-builder
|
694 |
+
msgid "There was an error subscribing to Mad Mimi. The account is no longer connected."
|
695 |
+
msgstr "Si è verificato un'errore nell'iscrizione a Mad Mimi. L'account non è più connesso."
|
|
|
|
|
|
|
696 |
|
|
|
697 |
#: classes/class-fl-builder-service-mailchimp.php:101
|
698 |
+
#@ fl-builder
|
699 |
+
msgid "Your API key can be found in your MailChimp account under Account > Extras > API Keys."
|
700 |
+
msgstr "Puoi trovare la tua chiave API nel tuo account MailChimp sotto Account > Extras > API Keys."
|
|
|
|
|
|
|
701 |
|
|
|
702 |
#: classes/class-fl-builder-service-mailchimp.php:215
|
703 |
+
#@ fl-builder
|
704 |
msgid "No Group"
|
705 |
msgstr "Nessun gruppo"
|
706 |
|
|
|
707 |
#: classes/class-fl-builder-service-mailchimp.php:227
|
708 |
+
#@ fl-builder
|
709 |
msgctxt "MailChimp list group."
|
710 |
msgid "Groups"
|
711 |
msgstr "Gruppi"
|
712 |
|
|
|
713 |
#: classes/class-fl-builder-service-mailchimp.php:255
|
714 |
+
#@ fl-builder
|
715 |
+
msgid "There was an error subscribing to MailChimp. The account is no longer connected."
|
716 |
+
msgstr "Si è verificato un errore nell'iscrizione a MailChimp. L'account non è più connesso."
|
|
|
|
|
|
|
717 |
|
|
|
718 |
#: classes/class-fl-builder-service-mailchimp.php:352
|
719 |
#, php-format
|
720 |
+
#@ fl-builder
|
721 |
msgid "There was an error subscribing to MailChimp. %s"
|
722 |
msgstr "Si è verificato un errore nell'iscrizione a MailChimp. %s"
|
723 |
|
|
|
724 |
#: classes/class-fl-builder-service-mailpoet.php:73
|
725 |
+
#@ fl-builder
|
726 |
msgid "There was an error retrieveing your lists."
|
727 |
msgstr "Si è verificato un'errore nell'ottenere le tue liste."
|
728 |
|
|
|
729 |
#: classes/class-fl-builder-service-mailpoet.php:129
|
730 |
+
#@ fl-builder
|
731 |
msgid "There was an error subscribing. MailPoet is not installed."
|
732 |
msgstr "Si è verificato un'errore nell'iscrizione. MailPoet non è installato."
|
733 |
|
|
|
734 |
#: classes/class-fl-builder-service-sendinblue.php:67
|
735 |
+
#@ fl-builder
|
736 |
msgid "Error: You must provide an Access Key."
|
737 |
msgstr "Errore: devi fornire una chiave di accesso."
|
738 |
|
|
|
|
|
739 |
#: classes/class-fl-builder-service-sendinblue.php:76
|
740 |
#: classes/class-fl-builder-service-sendinblue.php:136
|
741 |
+
#@ fl-builder
|
742 |
msgid "There was an error connecting to SendinBlue. Please try again."
|
743 |
+
msgstr "Si è verificato un errore nella connessione a SendinBlue. Si prega di riprovare."
|
|
|
|
|
744 |
|
|
|
745 |
#: classes/class-fl-builder-service-sendinblue.php:79
|
746 |
#: classes/class-fl-builder-service-sendinblue.php:139
|
747 |
#, php-format
|
748 |
+
#@ fl-builder
|
749 |
msgid "Error: Could not connect to SendinBlue. %s"
|
750 |
msgstr "Errore: Impossibile connettersi a SendinBlue. %s"
|
751 |
|
|
|
752 |
#: classes/class-fl-builder-service-sendinblue.php:103
|
753 |
+
#@ fl-builder
|
754 |
msgid "Access Key"
|
755 |
msgstr "Chiave di accesso"
|
756 |
|
|
|
757 |
#: classes/class-fl-builder-service-sendinblue.php:104
|
758 |
+
#@ fl-builder
|
759 |
+
msgid "Your Access Key can be found in your SendinBlue account under API & Integration > Manager Your Keys > Version 2.0 > Access Key."
|
760 |
+
msgstr "Puoi trovare la tua chiave API nel tuo account SendinBlue sotto API & Integration > Manager Your Keys > Version 2.0 > Access Key."
|
|
|
|
|
|
|
761 |
|
|
|
762 |
#: classes/class-fl-builder-service-sendinblue.php:198
|
763 |
+
#@ fl-builder
|
764 |
+
msgid "There was an error subscribing to SendinBlue. The account is no longer connected."
|
765 |
+
msgstr "Si è verificato un errore nell'iscrizione a SendinBlue. L'account non è più connesso."
|
|
|
|
|
|
|
766 |
|
|
|
767 |
#: classes/class-fl-builder-service-sendinblue.php:220
|
768 |
+
#@ fl-builder
|
769 |
msgid "There was an error subscribing to SendinBlue. Please try again."
|
770 |
+
msgstr "Si è verificato un errore nell'iscrizione a SendinBlue. Si prega di riprovare."
|
|
|
|
|
771 |
|
|
|
772 |
#: classes/class-fl-builder-service-sendinblue.php:223
|
773 |
#, php-format
|
774 |
+
#@ fl-builder
|
775 |
msgid "Error: Could not subscribe to SendinBlue. %s"
|
776 |
msgstr "Errore: Impossibile sottoscrivere SendinBlue . %s"
|
777 |
|
|
|
778 |
#: classes/class-fl-builder-services.php:183
|
779 |
+
#@ fl-builder
|
780 |
msgctxt "Third party service such as MailChimp."
|
781 |
msgid "Error: Missing service type."
|
782 |
msgstr "Errore: tipo di servizio mancante."
|
783 |
|
|
|
784 |
#: classes/class-fl-builder-services.php:186
|
785 |
+
#@ fl-builder
|
786 |
msgctxt "Connection data such as an API key."
|
787 |
msgid "Error: Missing service data."
|
788 |
msgstr "Errore: dati di servizio mancanti."
|
789 |
|
|
|
790 |
#: classes/class-fl-builder-services.php:189
|
791 |
+
#@ fl-builder
|
792 |
msgctxt "Account name for a third party service such as MailChimp."
|
793 |
msgid "Error: Missing account name."
|
794 |
msgstr "Errore: nome account mancante."
|
795 |
|
|
|
796 |
#: classes/class-fl-builder-services.php:198
|
797 |
+
#@ fl-builder
|
798 |
msgctxt "Account name for a third party service such as MailChimp."
|
799 |
msgid "Error: An account with that name already exists."
|
800 |
msgstr "Errore: esiste già un account con quel nome."
|
801 |
|
|
|
802 |
#: classes/class-fl-builder-services.php:274
|
803 |
+
#@ fl-builder
|
804 |
msgid "Account Name"
|
805 |
msgstr "Nome account"
|
806 |
|
|
|
807 |
#: classes/class-fl-builder-services.php:275
|
808 |
+
#@ fl-builder
|
809 |
+
msgid "Used to identify this connection within the accounts list and can be anything you like."
|
810 |
+
msgstr "Usato per identificare questo collegamento nella lista degli account e può essere ciò che preferisci."
|
|
|
|
|
|
|
811 |
|
|
|
812 |
#: classes/class-fl-builder-services.php:288
|
813 |
+
#@ fl-builder
|
814 |
msgid "Connect"
|
815 |
msgstr "Connetti"
|
816 |
|
|
|
817 |
#: classes/class-fl-builder-services.php:316
|
818 |
+
#@ fl-builder
|
819 |
msgid "Add Account..."
|
820 |
msgstr "Aggiungi account..."
|
821 |
|
|
|
822 |
#: classes/class-fl-builder-services.php:323
|
823 |
+
#@ fl-builder
|
824 |
msgid "Account"
|
825 |
msgstr "Account"
|
826 |
|
|
|
827 |
#: classes/class-fl-builder-templates-override.php:49
|
828 |
+
#@ fl-builder
|
829 |
msgid "Error! Please enter a number for the site ID."
|
830 |
msgstr "Errore! Si prega di inserire un numero di ID del sito."
|
831 |
|
|
|
832 |
#: classes/class-fl-builder-templates-override.php:53
|
833 |
+
#@ fl-builder
|
834 |
msgid "Error! A site with that ID doesn't exist."
|
835 |
msgstr "Errore! Non esiste un sito con quell'ID."
|
836 |
|
|
|
837 |
#: classes/class-fl-builder.php:612
|
838 |
#, php-format
|
839 |
+
#@ fl-builder
|
840 |
msgid "Template: %s"
|
841 |
msgstr "Modello: %s"
|
842 |
|
|
|
843 |
#: classes/class-fl-builder.php:647
|
844 |
+
#@ fl-builder
|
845 |
msgid "Upgrade!"
|
846 |
msgstr "Aggiorna!"
|
847 |
|
|
|
848 |
#: classes/class-fl-builder.php:651
|
849 |
+
#@ fl-builder
|
850 |
msgid "Buy Now!"
|
851 |
msgstr "Acquista ora!"
|
852 |
|
853 |
+
#: classes/class-fl-builder.php:655
|
854 |
+
#: includes/ui-js-config.php:46
|
855 |
#: includes/ui-js-templates.php:163
|
856 |
+
#@ fl-builder
|
857 |
msgid "Done"
|
858 |
msgstr "Fatto"
|
859 |
|
|
|
860 |
#: classes/class-fl-builder.php:659
|
861 |
+
#@ fl-builder
|
862 |
msgid "Tools"
|
863 |
msgstr "Strumenti"
|
864 |
|
865 |
+
#: classes/class-fl-builder.php:667
|
866 |
+
#: includes/ui-js-config.php:107
|
867 |
+
#@ fl-builder
|
868 |
msgid "Add Content"
|
869 |
msgstr "Aggiungi contenuto"
|
870 |
|
|
|
871 |
#: classes/class-fl-builder.php:1041
|
872 |
#, php-format
|
873 |
+
#@ fl-builder
|
874 |
msgctxt "Field name to add."
|
875 |
msgid "Add %s"
|
876 |
msgstr "Aggiungi %s"
|
877 |
|
878 |
+
#: classes/class-fl-builder.php:1149
|
879 |
+
#: classes/class-fl-builder.php:1151
|
880 |
+
#@ fl-builder
|
881 |
msgctxt "Custom post type label."
|
882 |
msgid "Templates"
|
883 |
msgstr "Modelli"
|
884 |
|
885 |
+
#: classes/class-fl-builder.php:1150
|
886 |
+
#: classes/class-fl-builder.php:1152
|
887 |
+
#@ fl-builder
|
888 |
msgctxt "Custom post type label."
|
889 |
msgid "Template"
|
890 |
msgstr "Modello"
|
891 |
|
|
|
892 |
#: classes/class-fl-builder.php:1153
|
893 |
+
#@ fl-builder
|
894 |
msgctxt "Custom post type label."
|
895 |
msgid "Add New"
|
896 |
msgstr "Aggiungi nuovo"
|
897 |
|
|
|
898 |
#: classes/class-fl-builder.php:1154
|
899 |
+
#@ fl-builder
|
900 |
msgctxt "Custom post type label."
|
901 |
msgid "Add New Template"
|
902 |
msgstr "Aggiungi nuovo modello"
|
903 |
|
|
|
904 |
#: classes/class-fl-builder.php:1155
|
905 |
+
#@ fl-builder
|
906 |
msgctxt "Custom post type label."
|
907 |
msgid "New Template"
|
908 |
msgstr "Nuovo modello"
|
909 |
|
|
|
910 |
#: classes/class-fl-builder.php:1156
|
911 |
+
#@ fl-builder
|
912 |
msgctxt "Custom post type label."
|
913 |
msgid "Edit Template"
|
914 |
msgstr "Modifica modello"
|
915 |
|
|
|
916 |
#: classes/class-fl-builder.php:1157
|
917 |
+
#@ fl-builder
|
918 |
msgctxt "Custom post type label."
|
919 |
msgid "View Template"
|
920 |
msgstr "Visualizza modello"
|
921 |
|
|
|
922 |
#: classes/class-fl-builder.php:1158
|
923 |
+
#@ fl-builder
|
924 |
msgctxt "Custom post type label."
|
925 |
msgid "All Templates"
|
926 |
msgstr "Tutti i modelli"
|
927 |
|
|
|
928 |
#: classes/class-fl-builder.php:1159
|
929 |
+
#@ fl-builder
|
930 |
msgctxt "Custom post type label."
|
931 |
msgid "Search Templates"
|
932 |
msgstr "Cerca modelli"
|
933 |
|
|
|
934 |
#: classes/class-fl-builder.php:1160
|
935 |
+
#@ fl-builder
|
936 |
msgctxt "Custom post type label."
|
937 |
msgid "Parent Templates:"
|
938 |
msgstr "Modelli genitore:"
|
939 |
|
|
|
940 |
#: classes/class-fl-builder.php:1161
|
941 |
+
#@ fl-builder
|
942 |
msgctxt "Custom post type label."
|
943 |
msgid "No templates found."
|
944 |
msgstr "Nessun modello trovato."
|
945 |
|
|
|
946 |
#: classes/class-fl-builder.php:1162
|
947 |
+
#@ fl-builder
|
948 |
msgctxt "Custom post type label."
|
949 |
msgid "No templates found in Trash."
|
950 |
msgstr "Nessun modello trovato nel cestino."
|
951 |
|
|
|
952 |
#: classes/class-fl-builder.php:1186
|
953 |
+
#@ fl-builder
|
954 |
msgctxt "Custom taxonomy label."
|
955 |
msgid "Categories"
|
956 |
msgstr "Categorie"
|
957 |
|
|
|
958 |
#: classes/class-fl-builder.php:1195
|
959 |
+
#@ fl-builder
|
960 |
msgctxt "Custom taxonomy label."
|
961 |
msgid "Type"
|
962 |
msgstr "Tipo"
|
963 |
|
964 |
+
#: classes/class-fl-builder.php:1449
|
965 |
+
#: classes/class-fl-builder.php:1563
|
966 |
+
#: classes/class-fl-builder.php:1704
|
967 |
+
#: includes/ui-js-templates.php:173
|
968 |
#: includes/ui-panel-node-templates.php:18
|
969 |
#: includes/ui-panel-node-templates.php:49
|
970 |
+
#@ fl-builder
|
971 |
msgctxt "Indicator for global node templates."
|
972 |
msgid "Global"
|
973 |
msgstr "Globale"
|
974 |
|
|
|
975 |
#: classes/class-fl-builder.php:1703
|
976 |
#, php-format
|
977 |
+
#@ fl-builder
|
978 |
msgctxt "%s stands for module name."
|
979 |
msgid "%s Settings"
|
980 |
msgstr "Impostazioni %s"
|
981 |
|
982 |
+
#: includes/admin-posts.php:3
|
983 |
+
#: modules/rich-text/rich-text.php:14
|
984 |
+
#@ fl-builder
|
985 |
msgid "Text Editor"
|
986 |
msgstr "Editor di testo"
|
987 |
|
|
|
988 |
#: includes/admin-posts.php:8
|
989 |
#, php-format
|
990 |
+
#@ fl-builder
|
991 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
992 |
msgid "Launch %s"
|
993 |
msgstr "Lancia %s"
|
994 |
|
|
|
995 |
#: includes/admin-settings-branding.php:37
|
996 |
+
#@ fl-builder
|
997 |
msgid "Save Branding"
|
998 |
msgstr "Salva Branding"
|
999 |
|
|
|
1000 |
#: includes/admin-settings-cache.php:9
|
1001 |
+
#@ fl-builder
|
1002 |
+
msgid "A CSS and JavaScript file is dynamically generated and cached each time you create a new layout. Sometimes the cache needs to be refreshed when you migrate your site to another server or update to the latest version. If you are running into any issues, please try clearing the cache by clicking the button below."
|
1003 |
+
msgstr "Ogni volta che crei un layout vengono generati dinamicamente un file CSS e Javascript. Qualche volta la cache deve essere rigenerata quando migri il tuo sito ad un'altro server o aggiorni all'ultima versione. Se stai avendo qualche problema, si prega di provare a svuotare la cache cliccando il bottone di sotto."
|
1004 |
+
|
1005 |
+
#: includes/admin-settings-cache.php:12
|
1006 |
+
#: includes/admin-settings-cache.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1007 |
#: includes/admin-settings-uninstall.php:7
|
1008 |
#: includes/admin-settings-uninstall.php:10
|
1009 |
#: includes/updater/includes/form.php:31
|
1010 |
+
#@ fl-builder
|
1011 |
msgid "NOTE:"
|
1012 |
msgstr "NOTA:"
|
1013 |
|
|
|
1014 |
#: includes/admin-settings-cache.php:12
|
1015 |
#: includes/admin-settings-uninstall.php:10
|
1016 |
#: includes/updater/includes/form.php:31
|
1017 |
+
#@ fl-builder
|
1018 |
msgid "This applies to all sites on the network."
|
1019 |
msgstr "Questo vale per tutti i siti della rete."
|
1020 |
|
|
|
1021 |
#: includes/admin-settings-cache.php:14
|
1022 |
+
#@ fl-builder
|
1023 |
+
msgid "This only applies to this site. Please visit the Network Admin Settings to clear the cache for all sites on the network."
|
1024 |
+
msgstr "Ciò si applica solo a questo sito. Si prega di visitare le impostazioni amministrative di rete per svuotare la cache di tutti i siti della rete."
|
|
|
|
|
|
|
1025 |
|
|
|
1026 |
#: includes/admin-settings-cache.php:19
|
1027 |
+
#@ fl-builder
|
1028 |
msgid "Clear Cache"
|
1029 |
msgstr "Svuota cache"
|
1030 |
|
|
|
1031 |
#: includes/admin-settings-editing.php:3
|
1032 |
+
#@ fl-builder
|
1033 |
msgid "Editing Settings"
|
1034 |
msgstr "Impostazioni di modifica"
|
1035 |
|
1036 |
+
#: includes/admin-settings-editing.php:10
|
1037 |
+
#: includes/admin-settings-icons.php:27
|
1038 |
#: includes/admin-settings-modules.php:10
|
1039 |
#: includes/admin-settings-post-types.php:10
|
1040 |
#: includes/admin-settings-templates.php:16
|
1041 |
+
#@ fl-builder
|
1042 |
msgid "Override network settings?"
|
1043 |
msgstr "Eseguire l'override delle impostazioni di rete?"
|
1044 |
|
|
|
1045 |
#: includes/admin-settings-editing.php:16
|
1046 |
+
#@ fl-builder
|
1047 |
msgid "Editing Capability"
|
1048 |
msgstr "Capacità di modifica"
|
1049 |
|
|
|
1050 |
#: includes/admin-settings-editing.php:17
|
1051 |
#, php-format
|
1052 |
+
#@ fl-builder
|
1053 |
+
msgid "Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules."
|
1054 |
+
msgstr "Imposta la <a%s>capacità</a> necessaria degli utenti per accedere al builder avanzato e aggiungere, eliminare o spostare i moduli."
|
|
|
|
|
|
|
1055 |
|
|
|
1056 |
#: includes/admin-settings-editing.php:21
|
1057 |
+
#@ fl-builder
|
1058 |
msgid "Global Templates Editing Capability"
|
1059 |
msgstr "Capacità di modifica modelli globali"
|
1060 |
|
|
|
1061 |
#: includes/admin-settings-editing.php:22
|
1062 |
#, php-format
|
1063 |
+
#@ fl-builder
|
1064 |
msgid "Set the <a%s>capability</a> required for users to global templates."
|
1065 |
+
msgstr "Imposta la <a%s>capacità</a> richiesta agli utenti per i modelli blobali"
|
|
|
1066 |
|
|
|
1067 |
#: includes/admin-settings-editing.php:28
|
1068 |
+
#@ fl-builder
|
1069 |
msgid "Save Editing Settings"
|
1070 |
msgstr "Salva le impostazioni di modifica"
|
1071 |
|
|
|
1072 |
#: includes/admin-settings-help-button.php:8
|
1073 |
+
#@ fl-builder
|
1074 |
msgid "Help Button Settings"
|
1075 |
msgstr "Impostazioni pulsante di aiuto"
|
1076 |
|
|
|
1077 |
#: includes/admin-settings-help-button.php:17
|
1078 |
+
#@ fl-builder
|
1079 |
msgid "Enable Help Button"
|
1080 |
msgstr "Abilita pulsante di aiuto"
|
1081 |
|
|
|
1082 |
#: includes/admin-settings-help-button.php:23
|
1083 |
+
#@ fl-builder
|
1084 |
msgid "Help Tour"
|
1085 |
msgstr "Visita guidata"
|
1086 |
|
|
|
1087 |
#: includes/admin-settings-help-button.php:27
|
1088 |
+
#@ fl-builder
|
1089 |
msgid "Enable Help Tour"
|
1090 |
msgstr "Abilita visita guidata"
|
1091 |
|
|
|
1092 |
#: includes/admin-settings-help-button.php:31
|
1093 |
+
#@ fl-builder
|
1094 |
msgid "Help Video"
|
1095 |
msgstr "Video di aiuto"
|
1096 |
|
|
|
1097 |
#: includes/admin-settings-help-button.php:35
|
1098 |
+
#@ fl-builder
|
1099 |
msgid "Enable Help Video"
|
1100 |
msgstr "Abilita "
|
1101 |
|
|
|
1102 |
#: includes/admin-settings-help-button.php:39
|
1103 |
+
#@ fl-builder
|
1104 |
msgid "Help Video Embed Code"
|
1105 |
msgstr "Codice di embed del video di aiuto"
|
1106 |
|
|
|
1107 |
#: includes/admin-settings-help-button.php:45
|
1108 |
+
#@ fl-builder
|
1109 |
msgid "Knowledge Base"
|
1110 |
msgstr "Documentazione"
|
1111 |
|
|
|
1112 |
#: includes/admin-settings-help-button.php:49
|
1113 |
+
#@ fl-builder
|
1114 |
msgid "Enable Knowledge Base"
|
1115 |
msgstr "Abilita documentazione"
|
1116 |
|
|
|
1117 |
#: includes/admin-settings-help-button.php:53
|
1118 |
+
#@ fl-builder
|
1119 |
msgid "Knowledge Base URL"
|
1120 |
msgstr "URL documentazione"
|
1121 |
|
|
|
1122 |
#: includes/admin-settings-help-button.php:59
|
1123 |
+
#@ fl-builder
|
1124 |
msgid "Forums"
|
1125 |
msgstr "Forum"
|
1126 |
|
|
|
1127 |
#: includes/admin-settings-help-button.php:63
|
1128 |
+
#@ fl-builder
|
1129 |
msgid "Enable Forums"
|
1130 |
msgstr "Abilita forum"
|
1131 |
|
|
|
1132 |
#: includes/admin-settings-help-button.php:67
|
1133 |
+
#@ fl-builder
|
1134 |
msgid "Forums URL"
|
1135 |
msgstr "URL forum"
|
1136 |
|
|
|
1137 |
#: includes/admin-settings-help-button.php:77
|
1138 |
+
#@ fl-builder
|
1139 |
msgid "Save Help Button Settings"
|
1140 |
msgstr "Salva impostazioni pulsante di aiuto"
|
1141 |
|
|
|
1142 |
#: includes/admin-settings-icons.php:3
|
1143 |
+
#@ fl-builder
|
1144 |
msgid "Icon Settings"
|
1145 |
msgstr "Impostazioni icona"
|
1146 |
|
|
|
1147 |
#: includes/admin-settings-icons.php:13
|
1148 |
+
#@ fl-builder
|
1149 |
msgid "Icons for the main site must be managed in the network admin."
|
1150 |
+
msgstr "Le icone per il sito principale devono essere gestite nell'amministrazione di rete."
|
|
|
|
|
1151 |
|
|
|
1152 |
#: includes/admin-settings-icons.php:33
|
1153 |
#, php-format
|
1154 |
+
#@ fl-builder
|
1155 |
+
msgid "Enable or disable icon sets using the options below or upload a custom icon set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
1156 |
+
msgstr "Abilita o disabilita set di icone usando le opzioni qui sotto o carica un set di icone personalizzato da <a%s>Icomoon</a> o <a%s>Fontello</a>."
|
|
|
|
|
|
|
1157 |
|
|
|
1158 |
#: includes/admin-settings-icons.php:48
|
1159 |
+
#@ fl-builder
|
1160 |
msgctxt "Plugin setup page: Delete icon set."
|
1161 |
msgid "Delete"
|
1162 |
msgstr "Elimina"
|
1163 |
|
|
|
1164 |
#: includes/admin-settings-icons.php:59
|
1165 |
+
#@ fl-builder
|
1166 |
msgid "Upload Icon Set"
|
1167 |
msgstr "Carica set di icone"
|
1168 |
|
|
|
1169 |
#: includes/admin-settings-icons.php:60
|
1170 |
+
#@ fl-builder
|
1171 |
msgid "Save Icon Settings"
|
1172 |
msgstr "Salva impostazioni icona"
|
1173 |
|
|
|
1174 |
#: includes/admin-settings-js-config.php:4
|
1175 |
+
#@ fl-builder
|
1176 |
msgid "Select File"
|
1177 |
msgstr "Seleziona file"
|
1178 |
|
|
|
1179 |
#: includes/admin-settings-js-config.php:5
|
1180 |
+
#@ fl-builder
|
1181 |
+
msgid "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder and all of its data."
|
1182 |
+
msgstr "Si prega di digitare \"uninstall\" nella casella qui sotto per confermare che si desidera davvero disinstallare il page builder e tutti i relativi dati."
|
|
|
|
|
|
|
|
|
1183 |
|
|
|
1184 |
#: includes/admin-settings-modules.php:3
|
1185 |
+
#@ fl-builder
|
1186 |
msgid "Enabled Modules"
|
1187 |
msgstr "Moduli abilitati"
|
1188 |
|
|
|
1189 |
#: includes/admin-settings-modules.php:16
|
1190 |
+
#@ fl-builder
|
1191 |
msgid "Check or uncheck modules below to enable or disable them."
|
1192 |
+
msgstr "Selezionare o deselezionare i moduli sottostanti per abilitarli o disabilitarli."
|
|
|
|
|
1193 |
|
|
|
1194 |
#: includes/admin-settings-modules.php:26
|
1195 |
+
#@ fl-builder
|
1196 |
msgctxt "Plugin setup page: Modules."
|
1197 |
msgid "All"
|
1198 |
msgstr "Tutti"
|
1199 |
|
|
|
1200 |
#: includes/admin-settings-modules.php:64
|
1201 |
+
#@ fl-builder
|
1202 |
msgid "Save Module Settings"
|
1203 |
msgstr "Salvare le impostazioni del modulo"
|
1204 |
|
|
|
1205 |
#: includes/admin-settings-post-types.php:18
|
1206 |
+
#@ fl-builder
|
1207 |
+
msgid "Enter a comma separated list of the post types you would like the builder to work with."
|
1208 |
+
msgstr "Inserisci una lista separata da virgole dei tipi di post su cui desideri attivare il builder."
|
|
|
|
|
|
|
1209 |
|
|
|
1210 |
#: includes/admin-settings-post-types.php:19
|
1211 |
#: includes/admin-settings-post-types.php:39
|
1212 |
+
#@ fl-builder
|
1213 |
msgid "NOTE: Not all custom post types may be supported."
|
1214 |
+
msgstr "Nota: Non tutti i tipi di post personalizzati potrebbero essere supportati."
|
|
|
1215 |
|
|
|
1216 |
#: includes/admin-settings-post-types.php:34
|
1217 |
+
#@ fl-builder
|
1218 |
msgid "Example: page, post, product"
|
1219 |
msgstr "Esempio: pagina, articolo, prodotto"
|
1220 |
|
|
|
1221 |
#: includes/admin-settings-post-types.php:38
|
1222 |
+
#@ fl-builder
|
1223 |
msgid "Select the post types you would like the builder to work with."
|
1224 |
msgstr "Seleziona i tipi di post su cui vuoi abilitare il builder."
|
1225 |
|
|
|
1226 |
#: includes/admin-settings-post-types.php:71
|
1227 |
+
#@ fl-builder
|
1228 |
msgid "Save Post Types"
|
1229 |
msgstr "Salva tipi di Post"
|
1230 |
|
|
|
1231 |
#: includes/admin-settings-templates-override.php:1
|
1232 |
#: includes/admin-settings-templates-override.php:12
|
1233 |
+
#@ fl-builder
|
1234 |
msgid "Override Core Templates"
|
1235 |
msgstr "Override modelli core"
|
1236 |
|
|
|
1237 |
#: includes/admin-settings-templates-override.php:3
|
1238 |
+
#@ fl-builder
|
1239 |
+
msgid "Enter the ID of a site on the network whose templates should override core builder templates. Leave this field blank if you do not wish to override core templates."
|
1240 |
+
msgstr "Inserisci l'ID di un sito nella rete i cui templates dovrebbero prevalere sui modelli core del builder. Lascia questo campo in bianco se non vuoi prevalere sui modelli core."
|
|
|
|
|
|
|
|
|
|
|
1241 |
|
|
|
1242 |
#: includes/admin-settings-templates-override.php:8
|
1243 |
+
#@ fl-builder
|
1244 |
+
msgid "Use this setting to override core builder templates with your templates."
|
1245 |
+
msgstr "Usa questa impostazione per prevalere sui modelli core del builder con i tuoi modelli. "
|
|
|
|
|
1246 |
|
|
|
1247 |
#: includes/admin-settings-templates-override.php:17
|
1248 |
+
#@ fl-builder
|
1249 |
+
msgid "You may also choose to show your row and module templates as sections within the builder panel. A new section will be created for each row or module category that you have defined."
|
1250 |
+
msgstr "Puoi anche scegliere di mostrare i tuoi modelli di riga e modulo come sezioni nel pannello del builder. Sarà creata una nuova sezione per ogni riga o categoria di modulo che hai definito."
|
|
|
|
|
|
|
|
|
|
|
1251 |
|
|
|
1252 |
#: includes/admin-settings-templates-override.php:21
|
1253 |
+
#@ fl-builder
|
1254 |
msgid "Show Row Templates?"
|
1255 |
msgstr "Visualizza i modelli di riga?"
|
1256 |
|
|
|
1257 |
#: includes/admin-settings-templates-override.php:27
|
1258 |
+
#@ fl-builder
|
1259 |
msgid "Show Module Templates?"
|
1260 |
msgstr "Visualizza i modelli dei moduli?"
|
1261 |
|
|
|
1262 |
#: includes/admin-settings-templates.php:9
|
1263 |
+
#@ fl-builder
|
1264 |
msgid "Template Settings"
|
1265 |
msgstr "Impostazioni dei modelli"
|
1266 |
|
|
|
1267 |
#: includes/admin-settings-templates.php:22
|
1268 |
+
#@ fl-builder
|
1269 |
msgid "Enable Templates"
|
1270 |
msgstr "Abilita modelli"
|
1271 |
|
|
|
1272 |
#: includes/admin-settings-templates.php:23
|
1273 |
+
#@ fl-builder
|
1274 |
+
msgid "Use this setting to enable or disable templates in the builder interface."
|
1275 |
+
msgstr "Usa questa impostazione per abilitare o disabilitare modelli nell'interfaccia del builder."
|
|
|
|
|
1276 |
|
|
|
1277 |
#: includes/admin-settings-templates.php:25
|
1278 |
+
#@ fl-builder
|
1279 |
msgid "Enable All Templates"
|
1280 |
msgstr "Abilita tutti i modelli"
|
1281 |
|
|
|
1282 |
#: includes/admin-settings-templates.php:26
|
1283 |
+
#@ fl-builder
|
1284 |
msgid "Enable Core Templates Only"
|
1285 |
msgstr "Abilita solo i modelli Core"
|
1286 |
|
|
|
1287 |
#: includes/admin-settings-templates.php:27
|
1288 |
+
#@ fl-builder
|
1289 |
msgid "Enable User Templates Only"
|
1290 |
msgstr "Abilita solo i modelli utente"
|
1291 |
|
|
|
1292 |
#: includes/admin-settings-templates.php:28
|
1293 |
+
#@ fl-builder
|
1294 |
msgid "Disable All Templates"
|
1295 |
msgstr "Disabilita tutti i modelli"
|
1296 |
|
|
|
1297 |
#: includes/admin-settings-templates.php:31
|
1298 |
#: includes/admin-settings-templates.php:36
|
1299 |
+
#@ fl-builder
|
1300 |
msgid "Enable Templates Admin"
|
1301 |
msgstr "Abilita amministrazione modelli"
|
1302 |
|
|
|
1303 |
#: includes/admin-settings-templates.php:32
|
1304 |
+
#@ fl-builder
|
1305 |
msgid "Use this setting to edit builder templates in the WordPress admin."
|
1306 |
+
msgstr "Usa questa impostazione per modificare i modelli del builder nell'amministrazione di Wordpress."
|
|
|
|
|
1307 |
|
|
|
1308 |
#: includes/admin-settings-templates.php:50
|
1309 |
+
#@ fl-builder
|
1310 |
msgid "Save Template Settings"
|
1311 |
msgstr "Salva le impostazioni dei modelli"
|
1312 |
|
|
|
1313 |
#: includes/admin-settings-uninstall.php:5
|
1314 |
+
#@ fl-builder
|
1315 |
+
msgid "Clicking the button below will uninstall the page builder plugin and delete all of the data associated with it. You can uninstall or deactivate the page builder from the plugins page instead if you do not wish to delete the data."
|
1316 |
+
msgstr "Clicca sul pulsante qui sotto per disinstallare il page builder plugin e rimuovere tutti i dati ad esso associati. È possibile disinstallare o disattivare il page builder dalla pagina dei plugin se invece non si desidera eliminare i dati."
|
|
|
|
|
|
|
|
|
|
|
|
|
1317 |
|
|
|
1318 |
#: includes/admin-settings-uninstall.php:7
|
1319 |
+
#@ fl-builder
|
1320 |
+
msgid "The builder does not delete the post meta <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values."
|
1321 |
+
msgstr "Il builder non elimina il post meta <code>_fl_builder_data</code> , <code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> nel caso in cui si desidera reinstallarlo successivamente. Se lo fai, il builder ricostruirà tutti i suoi dati utilizzando quei valori meta."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
|
|
|
1323 |
#: includes/admin-settings-upgrade.php:5
|
1324 |
+
#@ fl-builder
|
1325 |
+
msgid "You are currently running the lite version of the Beaver Builder plugin. Upgrade today for access to premium features such as advanced modules, templates, support and more!"
|
1326 |
+
msgstr "Stai usando la versione lite del plugin Beaver Builder. Aggiorna oggi per accedere a funzioni premium come moduli avanzati, modelli, supporto e altro!"
|
|
|
|
|
|
|
|
|
1327 |
|
|
|
1328 |
#: includes/admin-settings-upgrade.php:7
|
1329 |
+
#@ fl-builder
|
1330 |
msgid "Upgrade Now"
|
1331 |
msgstr "Aggiorna ora"
|
1332 |
|
|
|
1333 |
#: includes/admin-settings-upgrade.php:9
|
1334 |
+
#@ fl-builder
|
1335 |
msgid "Learn More"
|
1336 |
msgstr "Ulteriori informazioni"
|
1337 |
|
1338 |
+
#: modules/callout/callout.php:307
|
1339 |
+
#: modules/post-carousel/post-carousel.php:256
|
1340 |
+
#: modules/post-grid/post-grid.php:125
|
1341 |
+
#: modules/post-slider/post-slider.php:460
|
1342 |
+
#@ fl-builder
|
1343 |
msgid "Image"
|
1344 |
msgstr "Immagine"
|
1345 |
|
1346 |
+
#: includes/column-settings.php:152
|
1347 |
+
#: includes/row-settings.php:168
|
1348 |
+
#: modules/callout/callout.php:355
|
1349 |
+
#: modules/callout/callout.php:375
|
1350 |
#: modules/content-slider/content-slider.php:499
|
1351 |
+
#: modules/post-grid/post-grid.php:139
|
1352 |
+
#: modules/post-slider/post-slider.php:626
|
1353 |
#: modules/post-slider/post-slider.php:645
|
1354 |
+
#@ fl-builder
|
1355 |
msgid "Position"
|
1356 |
msgstr "Posizione"
|
1357 |
|
1358 |
+
#: includes/column-settings.php:29
|
1359 |
+
#: includes/global-settings.php:18
|
1360 |
+
#: includes/global-settings.php:110
|
1361 |
+
#: includes/global-settings.php:124
|
1362 |
+
#: includes/node-template-settings.php:22
|
1363 |
+
#: includes/row-settings.php:328
|
1364 |
+
#: modules/accordion/accordion.php:91
|
1365 |
+
#: modules/audio/audio.php:123
|
1366 |
+
#: modules/audio/audio.php:135
|
1367 |
+
#: modules/audio/audio.php:160
|
1368 |
+
#: modules/audio/audio.php:174
|
1369 |
+
#: modules/audio/audio.php:186
|
1370 |
+
#: modules/audio/audio.php:195
|
1371 |
+
#: modules/callout/callout.php:422
|
1372 |
#: modules/content-slider/content-slider.php:236
|
1373 |
#: modules/content-slider/content-slider.php:250
|
1374 |
#: modules/content-slider/content-slider.php:284
|
1375 |
#: modules/content-slider/content-slider.php:293
|
1376 |
#: modules/content-slider/content-slider.php:564
|
1377 |
+
#: modules/countdown/countdown.php:334
|
1378 |
+
#: modules/icon/icon.php:112
|
1379 |
+
#: modules/icon-group/icon-group.php:81
|
1380 |
+
#: modules/menu/menu.php:191
|
1381 |
+
#: modules/menu/menu.php:388
|
1382 |
+
#: modules/post-carousel/post-carousel.php:140
|
1383 |
#: modules/post-carousel/post-carousel.php:156
|
1384 |
#: modules/post-carousel/post-carousel.php:183
|
1385 |
#: modules/post-carousel/post-carousel.php:192
|
1386 |
#: modules/post-carousel/post-carousel.php:233
|
1387 |
#: modules/post-carousel/post-carousel.php:297
|
1388 |
+
#: modules/post-grid/post-grid.php:78
|
1389 |
+
#: modules/post-grid/post-grid.php:274
|
1390 |
#: modules/post-slider/post-slider.php:357
|
1391 |
#: modules/post-slider/post-slider.php:382
|
1392 |
#: modules/post-slider/post-slider.php:409
|
1393 |
#: modules/post-slider/post-slider.php:418
|
1394 |
+
#: modules/post-slider/post-slider.php:739
|
1395 |
+
#: modules/slideshow/slideshow.php:324
|
1396 |
+
#: modules/slideshow/slideshow.php:334
|
1397 |
+
#: modules/slideshow/slideshow.php:385
|
1398 |
+
#: modules/slideshow/slideshow.php:426
|
1399 |
+
#: modules/slideshow/slideshow.php:448
|
1400 |
+
#: modules/slideshow/slideshow.php:497
|
1401 |
+
#: modules/slideshow/slideshow.php:506
|
1402 |
+
#: modules/slideshow/slideshow.php:515
|
1403 |
+
#: modules/slideshow/slideshow.php:524
|
1404 |
+
#: modules/slideshow/slideshow.php:533
|
1405 |
+
#: modules/slideshow/slideshow.php:542
|
1406 |
+
#: modules/slideshow/slideshow.php:551
|
1407 |
+
#: modules/slideshow/slideshow.php:565
|
1408 |
+
#: modules/slideshow/slideshow.php:580
|
1409 |
+
#: modules/slideshow/slideshow.php:615
|
1410 |
+
#: modules/slideshow/slideshow.php:627
|
1411 |
+
#: modules/slideshow/slideshow.php:639
|
1412 |
#: modules/slideshow/slideshow.php:651
|
1413 |
#: modules/social-buttons/social-buttons.php:112
|
1414 |
#: modules/social-buttons/social-buttons.php:121
|
1415 |
#: modules/social-buttons/social-buttons.php:130
|
1416 |
#: modules/testimonials/testimonials.php:86
|
1417 |
#: modules/testimonials/testimonials.php:125
|
1418 |
+
#: modules/testimonials/testimonials.php:155
|
1419 |
+
#: modules/video/video.php:126
|
1420 |
#: modules/video/video.php:138
|
1421 |
+
#@ fl-builder
|
1422 |
msgid "No"
|
1423 |
msgstr "No"
|
1424 |
|
1425 |
+
#: includes/column-settings.php:30
|
1426 |
+
#: includes/global-settings.php:19
|
1427 |
+
#: includes/global-settings.php:111
|
1428 |
+
#: includes/global-settings.php:125
|
1429 |
+
#: includes/node-template-settings.php:23
|
1430 |
+
#: includes/row-settings.php:329
|
1431 |
+
#: modules/accordion/accordion.php:90
|
1432 |
+
#: modules/audio/audio.php:124
|
1433 |
+
#: modules/audio/audio.php:136
|
1434 |
+
#: modules/audio/audio.php:161
|
1435 |
+
#: modules/audio/audio.php:175
|
1436 |
+
#: modules/audio/audio.php:187
|
1437 |
+
#: modules/audio/audio.php:196
|
1438 |
+
#: modules/callout/callout.php:423
|
1439 |
#: modules/content-slider/content-slider.php:237
|
1440 |
#: modules/content-slider/content-slider.php:251
|
1441 |
#: modules/content-slider/content-slider.php:285
|
1442 |
#: modules/content-slider/content-slider.php:294
|
1443 |
#: modules/content-slider/content-slider.php:565
|
1444 |
+
#: modules/countdown/countdown.php:335
|
1445 |
+
#: modules/icon/icon.php:113
|
1446 |
+
#: modules/icon-group/icon-group.php:82
|
1447 |
+
#: modules/menu/menu.php:192
|
1448 |
+
#: modules/menu/menu.php:389
|
1449 |
+
#: modules/post-carousel/post-carousel.php:141
|
1450 |
#: modules/post-carousel/post-carousel.php:157
|
1451 |
#: modules/post-carousel/post-carousel.php:184
|
1452 |
#: modules/post-carousel/post-carousel.php:193
|
1453 |
#: modules/post-carousel/post-carousel.php:234
|
1454 |
#: modules/post-carousel/post-carousel.php:296
|
1455 |
+
#: modules/post-grid/post-grid.php:77
|
1456 |
+
#: modules/post-grid/post-grid.php:273
|
1457 |
#: modules/post-slider/post-slider.php:358
|
1458 |
#: modules/post-slider/post-slider.php:383
|
1459 |
#: modules/post-slider/post-slider.php:410
|
1460 |
#: modules/post-slider/post-slider.php:419
|
1461 |
+
#: modules/post-slider/post-slider.php:740
|
1462 |
+
#: modules/slideshow/slideshow.php:325
|
1463 |
+
#: modules/slideshow/slideshow.php:335
|
1464 |
+
#: modules/slideshow/slideshow.php:386
|
1465 |
+
#: modules/slideshow/slideshow.php:427
|
1466 |
+
#: modules/slideshow/slideshow.php:449
|
1467 |
+
#: modules/slideshow/slideshow.php:498
|
1468 |
+
#: modules/slideshow/slideshow.php:507
|
1469 |
+
#: modules/slideshow/slideshow.php:516
|
1470 |
+
#: modules/slideshow/slideshow.php:525
|
1471 |
+
#: modules/slideshow/slideshow.php:534
|
1472 |
+
#: modules/slideshow/slideshow.php:543
|
1473 |
+
#: modules/slideshow/slideshow.php:552
|
1474 |
+
#: modules/slideshow/slideshow.php:566
|
1475 |
+
#: modules/slideshow/slideshow.php:581
|
1476 |
+
#: modules/slideshow/slideshow.php:616
|
1477 |
+
#: modules/slideshow/slideshow.php:628
|
1478 |
+
#: modules/slideshow/slideshow.php:640
|
1479 |
#: modules/slideshow/slideshow.php:652
|
1480 |
#: modules/social-buttons/social-buttons.php:111
|
1481 |
#: modules/social-buttons/social-buttons.php:120
|
1482 |
#: modules/social-buttons/social-buttons.php:129
|
1483 |
#: modules/testimonials/testimonials.php:87
|
1484 |
#: modules/testimonials/testimonials.php:126
|
1485 |
+
#: modules/testimonials/testimonials.php:156
|
1486 |
+
#: modules/video/video.php:127
|
1487 |
#: modules/video/video.php:139
|
1488 |
+
#@ fl-builder
|
1489 |
msgid "Yes"
|
1490 |
msgstr "Sì"
|
1491 |
|
1492 |
+
#: includes/field-photo.php:12
|
1493 |
+
#: includes/template-selector.php:70
|
1494 |
+
#@ fl-builder
|
1495 |
msgid "Edit"
|
1496 |
msgstr "Modifica"
|
1497 |
|
|
|
1498 |
#: includes/template-selector.php:71
|
1499 |
+
#@ fl-builder
|
1500 |
msgid "Delete"
|
1501 |
msgstr "Elimina"
|
1502 |
|
1503 |
+
#: includes/ui-js-config.php:42
|
1504 |
+
#@ fl-builder
|
1505 |
msgid "Do you really want to delete this template?"
|
1506 |
msgstr "Vuoi davvero eliminare questo modello?"
|
1507 |
|
1508 |
+
#: includes/column-settings.php:4
|
1509 |
+
#: includes/ui-js-templates.php:33
|
1510 |
#: includes/ui-js-templates.php:88
|
1511 |
+
#@ fl-builder
|
1512 |
msgid "Column Settings"
|
1513 |
msgstr "Impostazioni colonna"
|
1514 |
|
1515 |
+
#: includes/column-settings.php:7
|
1516 |
+
#: includes/module-settings.php:87
|
1517 |
+
#: includes/row-settings.php:9
|
1518 |
+
#: modules/accordion/accordion.php:46
|
1519 |
+
#: modules/audio/audio.php:148
|
1520 |
+
#: modules/button/button.php:118
|
1521 |
+
#: modules/button/button.php:156
|
1522 |
+
#: modules/button/button.php:160
|
1523 |
+
#: modules/callout/callout.php:243
|
1524 |
+
#: modules/callout/callout.php:555
|
1525 |
#: modules/content-slider/content-slider.php:452
|
1526 |
#: modules/content-slider/content-slider.php:693
|
1527 |
+
#: modules/countdown/countdown.php:141
|
1528 |
+
#: modules/cta/cta.php:103
|
1529 |
+
#: modules/cta/cta.php:310
|
1530 |
+
#: modules/heading/heading.php:70
|
1531 |
+
#: modules/icon/icon.php:76
|
1532 |
+
#: modules/icon-group/icon-group.php:45
|
1533 |
+
#: modules/menu/menu.php:170
|
1534 |
+
#: modules/numbers/numbers.php:167
|
1535 |
#: modules/post-carousel/post-carousel.php:403
|
1536 |
+
#: modules/post-grid/post-grid.php:246
|
1537 |
+
#: modules/post-slider/post-slider.php:579
|
1538 |
#: modules/pricing-table/pricing-table.php:72
|
1539 |
#: modules/pricing-table/pricing-table.php:265
|
1540 |
#: modules/pricing-table/pricing-table.php:352
|
1541 |
#: modules/separator/separator.php:73
|
1542 |
+
#: modules/subscribe-form/subscribe-form.php:238
|
1543 |
+
#: modules/tabs/tabs.php:46
|
1544 |
+
#@ fl-builder
|
1545 |
msgid "Style"
|
1546 |
msgstr "Stile"
|
1547 |
|
|
|
1548 |
#: includes/column-settings.php:14
|
1549 |
+
#@ fl-builder
|
1550 |
msgid "Column Width"
|
1551 |
msgstr "Larghezza colonna"
|
1552 |
|
1553 |
+
#: includes/column-settings.php:39
|
1554 |
+
#: modules/button/button.php:67
|
1555 |
+
#: modules/callout/callout.php:227
|
1556 |
+
#: modules/callout/callout.php:480
|
1557 |
#: modules/callout/callout.php:496
|
1558 |
#: modules/content-slider/content-slider.php:409
|
1559 |
+
#: modules/content-slider/content-slider.php:643
|
1560 |
+
#: modules/cta/cta.php:86
|
1561 |
+
#: modules/cta/cta.php:223
|
1562 |
+
#: modules/menu/menu.php:198
|
1563 |
#: modules/post-slider/post-slider.php:622
|
1564 |
+
#@ fl-builder
|
1565 |
msgid "Text"
|
1566 |
msgstr "Testo"
|
1567 |
|
1568 |
+
#: includes/column-settings.php:43
|
1569 |
+
#: includes/column-settings.php:106
|
1570 |
+
#: includes/column-settings.php:261
|
1571 |
+
#: includes/row-settings.php:367
|
1572 |
+
#: includes/row-settings.php:448
|
1573 |
+
#: modules/callout/callout.php:393
|
1574 |
+
#: modules/content-slider/content-slider.php:364
|
1575 |
+
#: modules/icon/icon.php:83
|
1576 |
+
#: modules/icon-group/icon-group.php:52
|
1577 |
+
#: modules/separator/separator.php:35
|
1578 |
+
#@ fl-builder
|
1579 |
msgid "Color"
|
1580 |
msgstr "Colore"
|
1581 |
|
1582 |
+
#: includes/column-settings.php:51
|
1583 |
+
#: includes/row-settings.php:73
|
1584 |
+
#: modules/menu/menu.php:202
|
1585 |
+
#: modules/post-carousel/post-carousel.php:415
|
1586 |
#: modules/post-slider/post-slider.php:699
|
1587 |
+
#@ fl-builder
|
1588 |
msgid "Link Color"
|
1589 |
msgstr "Colore collegamento"
|
1590 |
|
1591 |
+
#: includes/column-settings.php:59
|
1592 |
+
#: includes/row-settings.php:81
|
1593 |
+
#: modules/menu/menu.php:220
|
1594 |
+
#: modules/post-carousel/post-carousel.php:420
|
1595 |
#: modules/post-slider/post-slider.php:715
|
1596 |
+
#@ fl-builder
|
1597 |
msgid "Link Hover Color"
|
1598 |
msgstr "Colore collegamento al passaggio del mouse"
|
1599 |
|
1600 |
+
#: includes/column-settings.php:67
|
1601 |
+
#: includes/row-settings.php:89
|
1602 |
+
#@ fl-builder
|
1603 |
msgid "Heading Color"
|
1604 |
msgstr "Colore intestazione"
|
1605 |
|
1606 |
+
#: includes/column-settings.php:76
|
1607 |
+
#: includes/row-settings.php:98
|
1608 |
#: modules/post-slider/post-slider.php:463
|
1609 |
+
#@ fl-builder
|
1610 |
msgid "Background"
|
1611 |
msgstr "Sfondo"
|
1612 |
|
1613 |
+
#: includes/column-settings.php:80
|
1614 |
+
#: includes/column-settings.php:228
|
1615 |
+
#: includes/row-settings.php:102
|
1616 |
+
#: includes/row-settings.php:415
|
1617 |
#: modules/callout/callout.php:476
|
1618 |
#: modules/content-slider/content-slider.php:358
|
1619 |
#: modules/content-slider/content-slider.php:405
|
1620 |
#: modules/content-slider/content-slider.php:623
|
1621 |
#: modules/content-slider/content-slider.php:765
|
1622 |
#: modules/slideshow/slideshow.php:348
|
1623 |
+
#@ fl-builder
|
1624 |
msgid "Type"
|
1625 |
msgstr "Tipo"
|
1626 |
|
1627 |
+
#: includes/column-settings.php:83
|
1628 |
+
#: includes/row-settings.php:105
|
1629 |
#: modules/content-slider/content-slider.php:365
|
1630 |
+
#@ fl-builder
|
1631 |
msgctxt "Background type."
|
1632 |
msgid "None"
|
1633 |
msgstr "Nessuno"
|
1634 |
|
1635 |
+
#: includes/column-settings.php:84
|
1636 |
+
#: includes/row-settings.php:106
|
1637 |
+
#@ fl-builder
|
1638 |
msgctxt "Background type."
|
1639 |
msgid "Color"
|
1640 |
msgstr "Colore"
|
1641 |
|
1642 |
+
#: includes/column-settings.php:85
|
1643 |
+
#: includes/row-settings.php:107
|
1644 |
+
#@ fl-builder
|
1645 |
msgctxt "Background type."
|
1646 |
msgid "Photo"
|
1647 |
msgstr "Foto"
|
1648 |
|
1649 |
+
#: includes/column-settings.php:102
|
1650 |
+
#: includes/row-settings.php:363
|
1651 |
+
#: modules/button/button.php:125
|
1652 |
+
#: modules/callout/callout.php:406
|
1653 |
#: modules/callout/callout.php:520
|
1654 |
#: modules/content-slider/content-slider.php:390
|
1655 |
+
#: modules/content-slider/content-slider.php:666
|
1656 |
+
#: modules/cta/cta.php:199
|
1657 |
+
#: modules/cta/cta.php:275
|
1658 |
+
#: modules/icon/icon.php:96
|
1659 |
#: modules/icon-group/icon-group.php:65
|
1660 |
#: modules/pricing-table/pricing-table.php:236
|
1661 |
#: modules/subscribe-form/subscribe-form.php:203
|
1662 |
+
#@ fl-builder
|
1663 |
msgid "Background Color"
|
1664 |
msgstr "Colore di sfondo"
|
1665 |
|
1666 |
+
#: includes/column-settings.php:114
|
1667 |
+
#: includes/column-settings.php:269
|
1668 |
+
#: includes/row-settings.php:375
|
1669 |
+
#: includes/row-settings.php:456
|
1670 |
#: modules/separator/separator.php:45
|
1671 |
+
#@ fl-builder
|
1672 |
msgid "Opacity"
|
1673 |
msgstr "Opacità"
|
1674 |
|
1675 |
+
#: includes/column-settings.php:126
|
1676 |
+
#: includes/row-settings.php:142
|
1677 |
#: modules/content-slider/content-slider.php:386
|
1678 |
+
#@ fl-builder
|
1679 |
msgid "Background Photo"
|
1680 |
msgstr "Foto di sfondo"
|
1681 |
|
1682 |
+
#: includes/column-settings.php:130
|
1683 |
+
#: includes/row-settings.php:146
|
1684 |
+
#: includes/row-settings.php:342
|
1685 |
+
#: modules/callout/callout.php:318
|
1686 |
+
#: modules/callout/callout.php:334
|
1687 |
+
#: modules/callout/callout.php:338
|
1688 |
#: modules/content-slider/content-slider.php:362
|
1689 |
#: modules/content-slider/content-slider.php:431
|
1690 |
+
#: modules/content-slider/content-slider.php:781
|
1691 |
+
#: modules/photo/photo.php:25
|
1692 |
#: modules/photo/photo.php:446
|
1693 |
+
#@ fl-builder
|
1694 |
msgid "Photo"
|
1695 |
msgstr "Foto"
|
1696 |
|
1697 |
+
#: includes/column-settings.php:137
|
1698 |
+
#: includes/row-settings.php:153
|
1699 |
+
#@ fl-builder
|
1700 |
msgid "Repeat"
|
1701 |
msgstr "Ripetizione"
|
1702 |
|
1703 |
+
#: includes/column-settings.php:140
|
1704 |
+
#: includes/row-settings.php:156
|
1705 |
+
#@ fl-builder
|
1706 |
msgctxt "Background repeat."
|
1707 |
msgid "None"
|
1708 |
msgstr "Nessuna"
|
1709 |
|
1710 |
+
#: includes/column-settings.php:141
|
1711 |
+
#: includes/row-settings.php:157
|
1712 |
+
#@ fl-builder
|
1713 |
msgctxt "Background repeat."
|
1714 |
msgid "Tile"
|
1715 |
msgstr "Tassello"
|
1716 |
|
1717 |
+
#: includes/column-settings.php:142
|
1718 |
+
#: includes/row-settings.php:158
|
1719 |
+
#@ fl-builder
|
1720 |
msgctxt "Background repeat."
|
1721 |
msgid "Horizontal"
|
1722 |
msgstr "Orizzontale"
|
1723 |
|
1724 |
+
#: includes/column-settings.php:143
|
1725 |
+
#: includes/row-settings.php:159
|
1726 |
+
#@ fl-builder
|
1727 |
msgctxt "Background repeat."
|
1728 |
msgid "Vertical"
|
1729 |
msgstr "Verticale"
|
1730 |
|
1731 |
+
#: includes/column-settings.php:145
|
1732 |
+
#: includes/row-settings.php:161
|
1733 |
+
#@ fl-builder
|
1734 |
+
msgid "Repeat applies to how the image should display in the background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the background horizontally and vertically. You can also specify the image to only repeat horizontally or vertically."
|
1735 |
+
msgstr "Ripeti si applica a come mostrare l'immagine nello sfondo. Scegliendo nessuno mostrerà l'immagine così come caricata. Tassello ripeterà l'immagine tante volte quanto necessario per riempire lo sfondo in orizontale e verticale. Puoi anche specificare di ripetere l'immagine solo in orizontale o verticale."
|
1736 |
+
|
1737 |
+
#: includes/column-settings.php:155
|
1738 |
+
#: includes/row-settings.php:171
|
1739 |
+
#@ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1740 |
msgid "Left Top"
|
1741 |
msgstr "Sinistra Alto"
|
1742 |
|
1743 |
+
#: includes/column-settings.php:156
|
1744 |
+
#: includes/row-settings.php:172
|
1745 |
+
#@ fl-builder
|
1746 |
msgid "Left Center"
|
1747 |
msgstr "Sinistra Centro"
|
1748 |
|
1749 |
+
#: includes/column-settings.php:157
|
1750 |
+
#: includes/row-settings.php:173
|
1751 |
+
#@ fl-builder
|
1752 |
msgid "Left Bottom"
|
1753 |
msgstr "Sinistra Basso"
|
1754 |
|
1755 |
+
#: includes/column-settings.php:158
|
1756 |
+
#: includes/row-settings.php:174
|
1757 |
+
#@ fl-builder
|
1758 |
msgid "Right Top"
|
1759 |
msgstr "Destra Alto"
|
1760 |
|
1761 |
+
#: includes/column-settings.php:159
|
1762 |
+
#: includes/row-settings.php:175
|
1763 |
+
#@ fl-builder
|
1764 |
msgid "Right Center"
|
1765 |
msgstr "Destra Centro"
|
1766 |
|
1767 |
+
#: includes/column-settings.php:160
|
1768 |
+
#: includes/row-settings.php:176
|
1769 |
+
#@ fl-builder
|
1770 |
msgid "Right Bottom"
|
1771 |
msgstr "Destra Basso"
|
1772 |
|
1773 |
+
#: includes/column-settings.php:161
|
1774 |
+
#: includes/row-settings.php:177
|
1775 |
+
#@ fl-builder
|
1776 |
msgid "Center Top"
|
1777 |
msgstr "Centro Alto"
|
1778 |
|
1779 |
+
#: includes/column-settings.php:162
|
1780 |
+
#: includes/row-settings.php:178
|
1781 |
+
#: modules/button/button.php:228
|
1782 |
+
#: modules/callout/callout.php:253
|
1783 |
+
#: modules/content-slider/content-slider.php:504
|
1784 |
+
#: modules/cta/cta.php:128
|
1785 |
+
#: modules/heading/heading.php:91
|
1786 |
+
#: modules/heading/heading.php:175
|
1787 |
+
#: modules/icon/icon.php:134
|
1788 |
+
#: modules/icon-group/icon-group.php:111
|
1789 |
+
#: modules/menu/menu.php:182
|
1790 |
+
#: modules/photo/photo.php:472
|
1791 |
#: modules/pricing-table/pricing-table.php:316
|
1792 |
#: modules/social-buttons/social-buttons.php:101
|
1793 |
+
#@ fl-builder
|
1794 |
msgid "Center"
|
1795 |
msgstr "Centro"
|
1796 |
|
1797 |
+
#: includes/column-settings.php:163
|
1798 |
+
#: includes/row-settings.php:179
|
1799 |
+
#@ fl-builder
|
1800 |
msgid "Center Bottom"
|
1801 |
msgstr "Centro Basso"
|
1802 |
|
1803 |
+
#: includes/column-settings.php:165
|
1804 |
+
#: includes/row-settings.php:181
|
1805 |
+
#@ fl-builder
|
1806 |
msgid "Position will tell the image where it should sit in the background."
|
1807 |
msgstr "La posizione sistemerà l'immagine sullo sfondo."
|
1808 |
|
1809 |
+
#: includes/column-settings.php:172
|
1810 |
+
#: includes/row-settings.php:188
|
1811 |
+
#@ fl-builder
|
1812 |
msgid "Attachment"
|
1813 |
msgstr "Attaccatura"
|
1814 |
|
1815 |
+
#: includes/column-settings.php:175
|
1816 |
+
#: includes/row-settings.php:191
|
1817 |
#: modules/post-grid/post-grid.php:87
|
1818 |
+
#@ fl-builder
|
1819 |
msgid "Scroll"
|
1820 |
msgstr "Scorrimento"
|
1821 |
|
1822 |
+
#: includes/column-settings.php:176
|
1823 |
+
#: includes/global-settings.php:69
|
1824 |
+
#: includes/global-settings.php:83
|
1825 |
+
#: includes/row-settings.php:19
|
1826 |
+
#: includes/row-settings.php:37
|
1827 |
+
#: includes/row-settings.php:192
|
1828 |
+
#@ fl-builder
|
1829 |
msgid "Fixed"
|
1830 |
msgstr "Fissa"
|
1831 |
|
1832 |
+
#: includes/column-settings.php:178
|
1833 |
+
#: includes/row-settings.php:194
|
1834 |
+
#@ fl-builder
|
1835 |
+
msgid "Attachment will specify how the image reacts when scrolling a page. When scrolling is selected, the image will scroll with page scrolling. This is the default setting. Fixed will allow the image to scroll within the background if fill is selected in the scale setting."
|
1836 |
+
msgstr "L'attaccatura specificherà come reagisce l'immagine durante lo scorrimento di pagina. Quando lo scorrimento è selezionato, l'immagine scorre con lo scorrimento della pagina. Questa è l'impostazione predefinita. Fisso permette all'immagine di scorrere all'interno dello sfondo se nelle impostazioni di scala è selezionato riempimento."
|
1837 |
+
|
1838 |
+
#: includes/column-settings.php:185
|
1839 |
+
#: includes/row-settings.php:201
|
1840 |
+
#@ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1841 |
msgid "Scale"
|
1842 |
msgstr "Scala"
|
1843 |
|
1844 |
+
#: includes/column-settings.php:188
|
1845 |
+
#: includes/row-settings.php:204
|
1846 |
+
#@ fl-builder
|
1847 |
msgctxt "Background scale."
|
1848 |
msgid "None"
|
1849 |
msgstr "Nessuno"
|
1850 |
|
1851 |
+
#: includes/column-settings.php:189
|
1852 |
+
#: includes/row-settings.php:205
|
1853 |
+
#@ fl-builder
|
1854 |
msgid "Fit"
|
1855 |
msgstr "Adatta"
|
1856 |
|
1857 |
+
#: includes/column-settings.php:190
|
1858 |
+
#: includes/row-settings.php:206
|
1859 |
+
#@ fl-builder
|
1860 |
msgid "Fill"
|
1861 |
msgstr "Riempi"
|
1862 |
|
1863 |
+
#: includes/column-settings.php:192
|
1864 |
+
#: includes/row-settings.php:208
|
1865 |
+
#@ fl-builder
|
1866 |
+
msgid "Scale applies to how the image should display in the background. You can select either fill or fit to the background."
|
1867 |
+
msgstr "La scala si applica a come si dovrebbe visualizzare l'immagine sullo sfondo. È possibile selezionare o riempimento o adatta allo sfondo della riga."
|
|
|
|
|
|
|
1868 |
|
1869 |
+
#: includes/column-settings.php:200
|
1870 |
+
#: includes/row-settings.php:387
|
1871 |
+
#@ fl-builder
|
1872 |
msgid "Background Overlay"
|
1873 |
msgstr "Sfondo overlay"
|
1874 |
|
1875 |
+
#: includes/column-settings.php:204
|
1876 |
+
#: includes/row-settings.php:391
|
1877 |
+
#@ fl-builder
|
1878 |
msgid "Overlay Color"
|
1879 |
msgstr "Colore overlay"
|
1880 |
|
1881 |
+
#: includes/column-settings.php:212
|
1882 |
+
#: includes/row-settings.php:399
|
1883 |
+
#@ fl-builder
|
1884 |
msgid "Overlay Opacity"
|
1885 |
msgstr "Opacità overlay"
|
1886 |
|
1887 |
+
#: includes/column-settings.php:224
|
1888 |
+
#: includes/row-settings.php:411
|
1889 |
+
#@ fl-builder
|
1890 |
msgid "Border"
|
1891 |
msgstr "Bordo"
|
1892 |
|
1893 |
+
#: includes/column-settings.php:230
|
1894 |
+
#: includes/row-settings.php:417
|
1895 |
+
#@ fl-builder
|
1896 |
+
msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
|
1897 |
+
msgstr "Il tipo di bordo da utilizzare. I bordi doppi devono avere una larghezza di almeno 3px per essere visualizzati correttamente."
|
|
|
|
|
|
|
1898 |
|
1899 |
+
#: includes/column-settings.php:232
|
1900 |
+
#: includes/row-settings.php:419
|
1901 |
+
#@ fl-builder
|
1902 |
msgctxt "Border type."
|
1903 |
msgid "None"
|
1904 |
msgstr "Nessuno"
|
1905 |
|
1906 |
+
#: includes/column-settings.php:233
|
1907 |
+
#: includes/row-settings.php:420
|
1908 |
#: modules/separator/separator.php:76
|
1909 |
+
#@ fl-builder
|
1910 |
msgctxt "Border type."
|
1911 |
msgid "Solid"
|
1912 |
msgstr "Solido"
|
1913 |
|
1914 |
+
#: includes/column-settings.php:234
|
1915 |
+
#: includes/row-settings.php:421
|
1916 |
#: modules/separator/separator.php:77
|
1917 |
+
#@ fl-builder
|
1918 |
msgctxt "Border type."
|
1919 |
msgid "Dashed"
|
1920 |
msgstr "Tratteggiato"
|
1921 |
|
1922 |
+
#: includes/column-settings.php:235
|
1923 |
+
#: includes/row-settings.php:422
|
1924 |
#: modules/separator/separator.php:78
|
1925 |
+
#@ fl-builder
|
1926 |
msgctxt "Border type."
|
1927 |
msgid "Dotted"
|
1928 |
msgstr "Punteggiato"
|
1929 |
|
1930 |
+
#: includes/column-settings.php:236
|
1931 |
+
#: includes/row-settings.php:423
|
1932 |
#: modules/separator/separator.php:79
|
1933 |
+
#@ fl-builder
|
1934 |
msgctxt "Border type."
|
1935 |
msgid "Double"
|
1936 |
msgstr "Doppio"
|
1937 |
|
1938 |
+
#: includes/column-settings.php:280
|
1939 |
+
#: includes/row-settings.php:467
|
1940 |
+
#@ fl-builder
|
1941 |
msgid "Top Width"
|
1942 |
msgstr "Larghezza superiore"
|
1943 |
|
1944 |
+
#: includes/column-settings.php:292
|
1945 |
+
#: includes/row-settings.php:479
|
1946 |
+
#@ fl-builder
|
1947 |
msgid "Bottom Width"
|
1948 |
msgstr "Larghezza inferiore"
|
1949 |
|
1950 |
+
#: includes/column-settings.php:304
|
1951 |
+
#: includes/row-settings.php:491
|
1952 |
+
#@ fl-builder
|
1953 |
msgid "Left Width"
|
1954 |
msgstr "Larghezza sinistra"
|
1955 |
|
1956 |
+
#: includes/column-settings.php:316
|
1957 |
+
#: includes/row-settings.php:503
|
1958 |
+
#@ fl-builder
|
1959 |
msgid "Right Width"
|
1960 |
msgstr "Larghezza destra"
|
1961 |
|
1962 |
+
#: includes/column-settings.php:331
|
1963 |
+
#: includes/module-settings.php:6
|
1964 |
+
#: includes/row-settings.php:518
|
1965 |
+
#: modules/content-slider/content-slider.php:300
|
1966 |
+
#@ fl-builder
|
1967 |
msgid "Advanced"
|
1968 |
msgstr "Avanzato"
|
1969 |
|
1970 |
+
#: includes/column-settings.php:334
|
1971 |
+
#: includes/global-settings.php:41
|
1972 |
+
#: includes/global-settings.php:94
|
1973 |
+
#: includes/module-settings.php:9
|
1974 |
#: includes/row-settings.php:521
|
1975 |
+
#@ fl-builder
|
1976 |
msgid "Margins"
|
1977 |
msgstr "Margini"
|
1978 |
|
1979 |
+
#: includes/column-settings.php:338
|
1980 |
+
#: includes/column-settings.php:391
|
1981 |
+
#: includes/module-settings.php:13
|
1982 |
+
#: includes/row-settings.php:525
|
1983 |
+
#: includes/row-settings.php:578
|
1984 |
+
#: modules/slideshow/slideshow.php:484
|
1985 |
+
#@ fl-builder
|
1986 |
msgid "Top"
|
1987 |
msgstr "Alto"
|
1988 |
|
1989 |
+
#: includes/column-settings.php:350
|
1990 |
+
#: includes/column-settings.php:403
|
1991 |
+
#: includes/module-settings.php:25
|
1992 |
+
#: includes/row-settings.php:537
|
1993 |
+
#: includes/row-settings.php:590
|
1994 |
+
#: modules/post-slider/post-slider.php:632
|
1995 |
#: modules/slideshow/slideshow.php:483
|
1996 |
+
#@ fl-builder
|
1997 |
msgid "Bottom"
|
1998 |
msgstr "Basso"
|
1999 |
|
2000 |
+
#: includes/column-settings.php:362
|
2001 |
+
#: includes/column-settings.php:415
|
2002 |
+
#: includes/module-settings.php:37
|
2003 |
+
#: includes/row-settings.php:549
|
2004 |
+
#: includes/row-settings.php:602
|
2005 |
+
#: modules/button/button.php:229
|
2006 |
#: modules/callout/callout.php:254
|
2007 |
+
#: modules/content-slider/content-slider.php:503
|
2008 |
+
#: modules/cta/cta.php:127
|
2009 |
+
#: modules/heading/heading.php:90
|
2010 |
+
#: modules/heading/heading.php:174
|
2011 |
+
#: modules/icon/icon.php:135
|
2012 |
+
#: modules/icon-group/icon-group.php:112
|
2013 |
+
#: modules/menu/menu.php:181
|
2014 |
+
#: modules/photo/photo.php:471
|
2015 |
#: modules/post-slider/post-slider.php:630
|
2016 |
#: modules/post-slider/post-slider.php:649
|
2017 |
#: modules/pricing-table/pricing-table.php:315
|
2018 |
#: modules/social-buttons/social-buttons.php:102
|
2019 |
+
#@ fl-builder
|
2020 |
msgid "Left"
|
2021 |
msgstr "Sinistra"
|
2022 |
|
2023 |
+
#: includes/column-settings.php:374
|
2024 |
+
#: includes/column-settings.php:427
|
2025 |
+
#: includes/module-settings.php:49
|
2026 |
+
#: includes/row-settings.php:561
|
2027 |
+
#: includes/row-settings.php:614
|
2028 |
+
#: modules/button/button.php:230
|
2029 |
#: modules/callout/callout.php:255
|
2030 |
+
#: modules/content-slider/content-slider.php:505
|
2031 |
+
#: modules/cta/cta.php:129
|
2032 |
+
#: modules/heading/heading.php:92
|
2033 |
+
#: modules/heading/heading.php:176
|
2034 |
+
#: modules/icon/icon.php:136
|
2035 |
+
#: modules/icon-group/icon-group.php:113
|
2036 |
+
#: modules/menu/menu.php:183
|
2037 |
+
#: modules/photo/photo.php:473
|
2038 |
#: modules/post-slider/post-slider.php:631
|
2039 |
#: modules/post-slider/post-slider.php:650
|
2040 |
#: modules/pricing-table/pricing-table.php:317
|
2041 |
#: modules/social-buttons/social-buttons.php:103
|
2042 |
+
#@ fl-builder
|
2043 |
msgid "Right"
|
2044 |
msgstr "Destra"
|
2045 |
|
2046 |
+
#: includes/column-settings.php:387
|
2047 |
+
#: includes/global-settings.php:49
|
2048 |
+
#: includes/row-settings.php:574
|
2049 |
+
#: modules/button/button.php:243
|
2050 |
#: modules/callout/callout.php:610
|
2051 |
+
#: modules/content-slider/content-slider.php:739
|
2052 |
+
#: modules/cta/cta.php:356
|
2053 |
#: modules/pricing-table/pricing-table.php:333
|
2054 |
#: modules/subscribe-form/subscribe-form.php:284
|
2055 |
+
#@ fl-builder
|
2056 |
msgid "Padding"
|
2057 |
msgstr "Padding"
|
2058 |
|
2059 |
+
#: includes/column-settings.php:440
|
2060 |
+
#: includes/global-settings.php:103
|
2061 |
+
#: includes/module-settings.php:62
|
2062 |
+
#: includes/row-settings.php:627
|
2063 |
+
#@ fl-builder
|
2064 |
msgid "Responsive Layout"
|
2065 |
msgstr "Layout reattivo"
|
2066 |
|
2067 |
+
#: includes/column-settings.php:444
|
2068 |
+
#: includes/module-settings.php:66
|
2069 |
+
#: includes/row-settings.php:631
|
2070 |
+
#: modules/slideshow/slideshow.php:299
|
2071 |
+
#@ fl-builder
|
2072 |
msgid "Display"
|
2073 |
msgstr "Visualizza"
|
2074 |
|
2075 |
+
#: includes/column-settings.php:446
|
2076 |
+
#: includes/module-settings.php:68
|
2077 |
#: includes/row-settings.php:633
|
2078 |
+
#@ fl-builder
|
2079 |
msgid "Always"
|
2080 |
msgstr "Sempre"
|
2081 |
|
2082 |
+
#: includes/column-settings.php:447
|
2083 |
+
#: includes/module-settings.php:69
|
2084 |
#: includes/row-settings.php:634
|
2085 |
+
#@ fl-builder
|
2086 |
msgid "Large Devices Only"
|
2087 |
msgstr "Solo dispositivi grandi"
|
2088 |
|
2089 |
+
#: includes/column-settings.php:448
|
2090 |
+
#: includes/module-settings.php:70
|
2091 |
#: includes/row-settings.php:635
|
2092 |
+
#@ fl-builder
|
2093 |
msgid "Large & Medium Devices Only"
|
2094 |
msgstr "Solo dispositivi grandi e medi"
|
2095 |
|
2096 |
+
#: includes/column-settings.php:449
|
2097 |
+
#: includes/module-settings.php:71
|
2098 |
#: includes/row-settings.php:636
|
2099 |
+
#@ fl-builder
|
2100 |
msgid "Medium Devices Only"
|
2101 |
msgstr "Solo dispositivi medi"
|
2102 |
|
2103 |
+
#: includes/column-settings.php:450
|
2104 |
+
#: includes/module-settings.php:72
|
2105 |
#: includes/row-settings.php:637
|
2106 |
+
#@ fl-builder
|
2107 |
msgid "Medium & Small Devices Only"
|
2108 |
msgstr "Solo dispositivi medi e piccoli"
|
2109 |
|
2110 |
+
#: includes/column-settings.php:451
|
2111 |
+
#: includes/module-settings.php:73
|
2112 |
#: includes/row-settings.php:638
|
2113 |
+
#@ fl-builder
|
2114 |
msgid "Small Devices Only"
|
2115 |
msgstr "Solo dispositivi piccoli"
|
2116 |
|
|
|
2117 |
#: includes/column-settings.php:453
|
2118 |
+
#@ fl-builder
|
2119 |
msgid "Choose whether to show or hide this column at different device sizes."
|
2120 |
+
msgstr "Scegli se visualizzare o nascondere questa colonna a diverse dimensioni dei dispositivi."
|
|
|
|
|
2121 |
|
|
|
2122 |
#: includes/column-settings.php:460
|
2123 |
+
#@ fl-builder
|
2124 |
msgid "Medium Device Width"
|
2125 |
msgstr "Larghezza dispositivi medi"
|
2126 |
|
|
|
2127 |
#: includes/column-settings.php:461
|
2128 |
+
#@ fl-builder
|
2129 |
msgid "The width of this column on medium devices such as tablets."
|
2130 |
msgstr "La larghezza della colonna su dispositivi medi come i tablet."
|
2131 |
|
2132 |
+
#: classes/class-fl-builder-fonts.php:41
|
2133 |
+
#: classes/class-fl-builder-fonts.php:66
|
2134 |
+
#: classes/class-fl-builder-fonts.php:97
|
2135 |
+
#: includes/column-settings.php:463
|
2136 |
+
#: includes/column-settings.php:491
|
2137 |
+
#: includes/row-settings.php:50
|
2138 |
#: modules/callout/callout.php:285
|
2139 |
+
#: modules/content-slider/content-slider.php:475
|
2140 |
+
#: modules/cta/cta.php:169
|
2141 |
+
#: modules/heading/heading.php:130
|
2142 |
+
#: modules/heading/heading.php:157
|
2143 |
+
#: modules/heading/heading.php:187
|
2144 |
+
#: modules/menu/menu.php:156
|
2145 |
+
#: modules/menu/menu.php:180
|
2146 |
+
#: modules/post-carousel/post-carousel.php:359
|
2147 |
+
#: modules/post-grid/post-grid.php:184
|
2148 |
+
#: modules/post-slider/post-slider.php:525
|
2149 |
#: modules/post-slider/post-slider.php:602
|
2150 |
+
#@ fl-builder
|
2151 |
msgid "Default"
|
2152 |
msgstr "Predefinita"
|
2153 |
|
2154 |
+
#: includes/column-settings.php:464
|
2155 |
+
#: includes/column-settings.php:492
|
2156 |
+
#: modules/button/button.php:203
|
2157 |
+
#: modules/callout/callout.php:286
|
2158 |
+
#: modules/content-slider/content-slider.php:476
|
2159 |
+
#: modules/cta/cta.php:170
|
2160 |
+
#: modules/heading/heading.php:131
|
2161 |
+
#: modules/heading/heading.php:158
|
2162 |
+
#: modules/heading/heading.php:188
|
2163 |
+
#: modules/post-slider/post-slider.php:603
|
2164 |
#: modules/social-buttons/social-buttons.php:75
|
2165 |
+
#@ fl-builder
|
2166 |
msgid "Custom"
|
2167 |
msgstr "Personalizzata"
|
2168 |
|
|
|
2169 |
#: includes/column-settings.php:477
|
2170 |
+
#@ fl-builder
|
2171 |
msgid "Custom Medium Device Width"
|
2172 |
msgstr "Larghezza personalizzata dispositivi medi"
|
2173 |
|
|
|
2174 |
#: includes/column-settings.php:488
|
2175 |
+
#@ fl-builder
|
2176 |
msgid "Small Device Width"
|
2177 |
msgstr "Larghezza dispositivi piccoli"
|
2178 |
|
|
|
2179 |
#: includes/column-settings.php:489
|
2180 |
+
#@ fl-builder
|
2181 |
msgid "The width of this column on small devices such as phones."
|
2182 |
msgstr "La larghezza della colonna su dispositivi piccoli come i telefoni."
|
2183 |
|
|
|
2184 |
#: includes/column-settings.php:505
|
2185 |
+
#@ fl-builder
|
2186 |
msgid "Custom Small Device Width"
|
2187 |
msgstr "Larghezza personalizzata dispositivi piccoli"
|
2188 |
|
2189 |
+
#: includes/column-settings.php:517
|
2190 |
+
#: includes/module-settings.php:115
|
2191 |
#: includes/row-settings.php:648
|
2192 |
+
#@ fl-builder
|
2193 |
msgid "CSS Selectors"
|
2194 |
msgstr "Selettore CSS"
|
2195 |
|
2196 |
+
#: includes/column-settings.php:521
|
2197 |
+
#: includes/loop-settings.php:28
|
2198 |
+
#: includes/module-settings.php:119
|
2199 |
+
#: includes/row-settings.php:652
|
2200 |
+
#@ fl-builder
|
2201 |
msgid "ID"
|
2202 |
msgstr "ID"
|
2203 |
|
|
|
2204 |
#: includes/column-settings.php:522
|
2205 |
+
#@ fl-builder
|
2206 |
+
msgid "A unique ID that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
|
2207 |
+
msgstr "Un ID univoco che sarà applicato al codice HTML della colonna. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
|
|
|
|
|
|
|
|
|
2208 |
|
|
|
2209 |
#: includes/column-settings.php:529
|
2210 |
+
#@ fl-builder
|
2211 |
msgid "CSS Class"
|
2212 |
msgstr "Classe CSS"
|
2213 |
|
|
|
2214 |
#: includes/column-settings.php:530
|
2215 |
+
#@ fl-builder
|
2216 |
+
msgid "A class that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
|
2217 |
+
msgstr "Una classe che sarà applicata al codice HTML di questa colonna. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
|
|
|
|
|
|
|
|
|
|
|
2218 |
|
|
|
2219 |
#: includes/field-form.php:28
|
2220 |
#, php-format
|
2221 |
+
#@ fl-builder
|
2222 |
msgctxt "%s stands for form field label."
|
2223 |
msgid "Edit %s"
|
2224 |
msgstr "Modifica %s"
|
2225 |
|
2226 |
+
#: includes/field-icon.php:2
|
2227 |
+
#: includes/icon-selector.php:2
|
2228 |
+
#@ fl-builder
|
2229 |
msgid "Select Icon"
|
2230 |
msgstr "Seleziona icona"
|
2231 |
|
2232 |
+
#: includes/field-icon.php:5
|
2233 |
+
#: includes/field-photo.php:16
|
2234 |
+
#@ fl-builder
|
2235 |
msgid "Replace"
|
2236 |
msgstr "Sostituisci"
|
2237 |
|
2238 |
+
#: includes/field-icon.php:7
|
2239 |
+
#: includes/field-photo.php:14
|
2240 |
+
#: includes/ui-js-config.php:82
|
2241 |
+
#: includes/ui-js-templates.php:15
|
2242 |
+
#: includes/ui-js-templates.php:43
|
2243 |
+
#: includes/ui-js-templates.php:99
|
2244 |
+
#@ fl-builder
|
2245 |
msgid "Remove"
|
2246 |
msgstr "Rimuovi"
|
2247 |
|
|
|
2248 |
#: includes/field-link.php:3
|
2249 |
+
#@ fl-builder
|
2250 |
msgid "Select"
|
2251 |
msgstr "Seleziona"
|
2252 |
|
|
|
2253 |
#: includes/field-link.php:5
|
2254 |
+
#@ fl-builder
|
2255 |
msgid "Enter a post title to search."
|
2256 |
msgstr "Inserisci un titolo del post per la ricerca."
|
2257 |
|
|
|
2258 |
#: includes/field-link.php:6
|
2259 |
+
#@ fl-builder
|
2260 |
msgid "Start typing..."
|
2261 |
msgstr "Inizia a digitare..."
|
2262 |
|
2263 |
+
#: includes/field-link.php:7
|
2264 |
+
#: includes/icon-selector.php:28
|
2265 |
+
#: includes/settings.php:71
|
2266 |
+
#: includes/template-selector.php:92
|
2267 |
+
#: includes/ui-js-config.php:28
|
2268 |
+
#: includes/ui-js-templates.php:135
|
2269 |
+
#@ fl-builder
|
2270 |
msgid "Cancel"
|
2271 |
msgstr "Annulla"
|
2272 |
|
|
|
2273 |
#: includes/field-multiple-photos.php:20
|
2274 |
#, php-format
|
2275 |
+
#@ fl-builder
|
2276 |
msgid "1 Photo Selected"
|
2277 |
msgid_plural "%d Photos Selected"
|
2278 |
msgstr[0] "Una foto selezionata"
|
2279 |
msgstr[1] "%d foto selezionate"
|
2280 |
|
|
|
2281 |
#: includes/field-multiple-photos.php:22
|
2282 |
+
#@ fl-builder
|
2283 |
msgid "Create Gallery"
|
2284 |
msgstr "Crea galleria"
|
2285 |
|
|
|
2286 |
#: includes/field-multiple-photos.php:23
|
2287 |
+
#@ fl-builder
|
2288 |
msgid "Edit Gallery"
|
2289 |
msgstr "Modifica galleria"
|
2290 |
|
|
|
2291 |
#: includes/field-multiple-photos.php:24
|
2292 |
+
#@ fl-builder
|
2293 |
msgid "Add Photos"
|
2294 |
msgstr "Aggiungi foto"
|
2295 |
|
2296 |
+
#: includes/field-photo.php:3
|
2297 |
+
#: includes/ui-js-config.php:90
|
2298 |
+
#@ fl-builder
|
2299 |
msgid "Select Photo"
|
2300 |
msgstr "Seleziona foto"
|
2301 |
|
2302 |
+
#: includes/field-video.php:3
|
2303 |
+
#: includes/ui-js-config.php:92
|
2304 |
+
#@ fl-builder
|
2305 |
msgid "Select Video"
|
2306 |
msgstr "Seleziona video"
|
2307 |
|
|
|
2308 |
#: includes/field-video.php:17
|
2309 |
+
#@ fl-builder
|
2310 |
msgid "Replace Video"
|
2311 |
msgstr "Sostituisci video"
|
2312 |
|
2313 |
+
#: includes/global-settings.php:7
|
2314 |
+
#: includes/node-template-settings.php:7
|
2315 |
+
#: includes/user-template-settings.php:7
|
2316 |
+
#: modules/accordion/accordion.php:111
|
2317 |
+
#: modules/audio/audio.php:76
|
2318 |
+
#: modules/button/button.php:60
|
2319 |
+
#: modules/callout/callout.php:211
|
2320 |
+
#: modules/contact-form/contact-form.php:78
|
2321 |
#: modules/content-slider/content-slider.php:217
|
2322 |
#: modules/content-slider/content-slider.php:341
|
2323 |
+
#: modules/countdown/countdown.php:81
|
2324 |
+
#: modules/cta/cta.php:69
|
2325 |
+
#: modules/gallery/gallery.php:221
|
2326 |
+
#: modules/heading/heading.php:27
|
2327 |
+
#: modules/html/html.php:27
|
2328 |
+
#: modules/icon/icon.php:28
|
2329 |
+
#: modules/icon-group/icon-group.php:129
|
2330 |
+
#: modules/map/map.php:27
|
2331 |
+
#: modules/menu/menu.php:84
|
2332 |
+
#: modules/numbers/numbers.php:59
|
2333 |
+
#: modules/photo/photo.php:422
|
2334 |
+
#: modules/pricing-table/pricing-table.php:134
|
2335 |
+
#: modules/rich-text/rich-text.php:27
|
2336 |
+
#: modules/separator/separator.php:28
|
2337 |
+
#: modules/sidebar/sidebar.php:28
|
2338 |
+
#: modules/slideshow/slideshow.php:265
|
2339 |
#: modules/social-buttons/social-buttons.php:65
|
2340 |
+
#: modules/subscribe-form/subscribe-form.php:98
|
2341 |
+
#: modules/tabs/tabs.php:78
|
2342 |
#: modules/testimonials/testimonials.php:31
|
2343 |
+
#: modules/testimonials/testimonials.php:201
|
2344 |
+
#: modules/video/video.php:82
|
2345 |
+
#: modules/widget/widget.php:68
|
2346 |
+
#: modules/woocommerce/woocommerce.php:51
|
2347 |
+
#@ fl-builder
|
2348 |
msgid "General"
|
2349 |
msgstr "Generale"
|
2350 |
|
|
|
2351 |
#: includes/global-settings.php:11
|
2352 |
+
#@ fl-builder
|
2353 |
msgid "Default Page Heading"
|
2354 |
msgstr "Intestazione di pagina predefinita"
|
2355 |
|
|
|
2356 |
#: includes/global-settings.php:26
|
2357 |
+
#@ fl-builder
|
2358 |
+
msgid "Choosing no will hide the default theme heading for the \"Page\" post type. You will also be required to enter some basic CSS for this to work if you choose no."
|
2359 |
+
msgstr "Scegliendo no, si nasconderà il titolo predefinito del tema per il tipo di post \"Pagina\". Se scegli no, sarà richiesto anche di inserire alcuni CSS base per fare in modo che questo funzioni."
|
|
|
|
|
|
|
|
|
|
|
2360 |
|
|
|
2361 |
#: includes/global-settings.php:30
|
2362 |
+
#@ fl-builder
|
2363 |
msgid "CSS Selector"
|
2364 |
msgstr "Selettore CSS"
|
2365 |
|
|
|
2366 |
#: includes/global-settings.php:32
|
2367 |
+
#@ fl-builder
|
2368 |
msgid "Enter a CSS selector for the default page heading to hide it."
|
2369 |
+
msgstr "Inserire il selettore CSS per nascondere l'intestazione predefinita della pagina."
|
|
|
|
|
2370 |
|
|
|
2371 |
#: includes/global-settings.php:37
|
2372 |
+
#@ fl-builder
|
2373 |
msgid "Rows"
|
2374 |
msgstr "Righe"
|
2375 |
|
|
|
2376 |
#: includes/global-settings.php:57
|
2377 |
+
#@ fl-builder
|
2378 |
msgid "Max Width"
|
2379 |
msgstr "Larghezza max"
|
2380 |
|
|
|
2381 |
#: includes/global-settings.php:62
|
2382 |
+
#@ fl-builder
|
2383 |
+
msgid "All rows will default to this width. You can override this and make a row full width in the settings for each row."
|
2384 |
+
msgstr "Tutte le righe avranno questa larghezza per impostazione predefinita. Potete ignorarla e creare una riga a piena larghezza nelle impostazioni di ciascuna riga."
|
|
|
|
|
|
|
|
|
2385 |
|
|
|
2386 |
#: includes/global-settings.php:66
|
2387 |
+
#@ fl-builder
|
2388 |
msgid "Default Row Width"
|
2389 |
msgstr "Larghezza predefinita riga"
|
2390 |
|
2391 |
+
#: includes/global-settings.php:70
|
2392 |
+
#: includes/global-settings.php:84
|
2393 |
+
#: includes/row-settings.php:20
|
2394 |
+
#: includes/row-settings.php:38
|
2395 |
+
#: modules/button/button.php:202
|
2396 |
+
#: modules/callout/callout.php:597
|
2397 |
+
#: modules/menu/menu.php:157
|
2398 |
+
#: modules/pricing-table/pricing-table.php:307
|
2399 |
+
#@ fl-builder
|
2400 |
msgid "Full Width"
|
2401 |
msgstr "Larghezza piena"
|
2402 |
|
|
|
2403 |
#: includes/global-settings.php:80
|
2404 |
+
#@ fl-builder
|
2405 |
msgid "Default Row Content Width"
|
2406 |
msgstr "Larghezza predefinita riga di contenuto"
|
2407 |
|
|
|
2408 |
#: includes/global-settings.php:127
|
2409 |
+
#@ fl-builder
|
2410 |
+
msgid "When auto spacing is enabled, the builder will automatically adjust the margins and padding in your layout once the small device breakpoint is reached. Most users will want to leave this enabled."
|
2411 |
+
msgstr "Quando la spaziatura automatica è abilitata, il builder aggiusterà automaticamente i margini e il padding nel tuo layout non appena viene raggiunto il breakpoint per dispositivi piccoli. La maggior parte degli utenti vorrà lasciare questo abilitato."
|
|
|
|
|
|
|
|
|
|
|
|
|
2412 |
|
|
|
2413 |
#: includes/global-settings.php:131
|
2414 |
+
#@ fl-builder
|
2415 |
msgid "Medium Device Breakpoint"
|
2416 |
msgstr "Breakpoint dispositivi medi"
|
2417 |
|
|
|
2418 |
#: includes/global-settings.php:136
|
2419 |
+
#@ fl-builder
|
2420 |
+
msgid "The browser width at which the layout will adjust for medium devices such as tablets."
|
2421 |
+
msgstr "La larghezza del browser a cui il layout si adatterà per dispositivi medi come i tablet."
|
|
|
|
|
|
|
2422 |
|
|
|
2423 |
#: includes/global-settings.php:140
|
2424 |
+
#@ fl-builder
|
2425 |
msgid "Small Device Breakpoint"
|
2426 |
msgstr "Breakpoint dispositivi piccoli"
|
2427 |
|
|
|
2428 |
#: includes/global-settings.php:145
|
2429 |
+
#@ fl-builder
|
2430 |
+
msgid "The browser width at which the layout will adjust for small devices such as phones."
|
2431 |
+
msgstr "La larghezza del browser a cui il layout si adatterà per dispositivi piccoli come i telefoni."
|
|
|
|
|
|
|
2432 |
|
|
|
2433 |
#: includes/icon-selector.php:5
|
2434 |
+
#@ fl-builder
|
2435 |
msgctxt "Select option for showing all icon libraries."
|
2436 |
msgid "All Libraries"
|
2437 |
msgstr "Tutte le librerie"
|
2438 |
|
|
|
2439 |
#: includes/loop-settings.php:20
|
2440 |
+
#@ fl-builder
|
2441 |
msgid "Post Type"
|
2442 |
msgstr "Tipo di post"
|
2443 |
|
|
|
2444 |
#: includes/loop-settings.php:26
|
2445 |
+
#@ fl-builder
|
2446 |
msgid "Order By"
|
2447 |
msgstr "Ordina per"
|
2448 |
|
2449 |
+
#: includes/loop-settings.php:29
|
2450 |
+
#: modules/countdown/countdown.php:84
|
2451 |
#: modules/post-carousel/post-carousel.php:342
|
2452 |
+
#: modules/post-grid/post-grid.php:167
|
2453 |
+
#: modules/post-slider/post-slider.php:508
|
2454 |
#: modules/woocommerce/woocommerce.php:194
|
2455 |
+
#@ fl-builder
|
2456 |
msgid "Date"
|
2457 |
msgstr "Data"
|
2458 |
|
|
|
2459 |
#: includes/loop-settings.php:30
|
2460 |
+
#@ fl-builder
|
2461 |
msgid "Date Last Modified"
|
2462 |
msgstr "Data ultima modifica"
|
2463 |
|
2464 |
+
#: includes/loop-settings.php:31
|
2465 |
+
#: modules/pricing-table/pricing-table.php:83
|
2466 |
#: modules/pricing-table/pricing-table.php:137
|
2467 |
#: modules/pricing-table/pricing-table.php:141
|
2468 |
+
#@ fl-builder
|
2469 |
msgid "Title"
|
2470 |
msgstr "Titolo"
|
2471 |
|
2472 |
+
#: includes/loop-settings.php:32
|
2473 |
+
#: modules/post-carousel/post-carousel.php:333
|
2474 |
+
#: modules/post-grid/post-grid.php:158
|
2475 |
+
#: modules/post-slider/post-slider.php:499
|
2476 |
+
#@ fl-builder
|
2477 |
msgid "Author"
|
2478 |
msgstr "Autore"
|
2479 |
|
|
|
2480 |
#: includes/loop-settings.php:33
|
2481 |
+
#@ fl-builder
|
2482 |
msgid "Comment Count"
|
2483 |
msgstr "Conteggio commenti"
|
2484 |
|
|
|
2485 |
#: includes/loop-settings.php:34
|
2486 |
+
#@ fl-builder
|
2487 |
msgid "Menu Order"
|
2488 |
msgstr "Ordine del menu"
|
2489 |
|
|
|
2490 |
#: includes/loop-settings.php:35
|
2491 |
+
#@ fl-builder
|
2492 |
msgid "Random"
|
2493 |
msgstr "Casuale"
|
2494 |
|
|
|
2495 |
#: includes/loop-settings.php:42
|
2496 |
+
#@ fl-builder
|
2497 |
msgid "Order"
|
2498 |
msgstr "Ordine"
|
2499 |
|
2500 |
+
#: includes/loop-settings.php:44
|
2501 |
+
#: modules/woocommerce/woocommerce.php:204
|
2502 |
+
#@ fl-builder
|
2503 |
msgid "Descending"
|
2504 |
msgstr "Decrescente"
|
2505 |
|
2506 |
+
#: includes/loop-settings.php:45
|
2507 |
+
#: modules/woocommerce/woocommerce.php:203
|
2508 |
+
#@ fl-builder
|
2509 |
msgid "Ascending"
|
2510 |
msgstr "Ascendente"
|
2511 |
|
|
|
2512 |
#: includes/loop-settings.php:52
|
2513 |
+
#@ fl-builder
|
2514 |
msgctxt "How many posts to skip."
|
2515 |
msgid "Offset"
|
2516 |
msgstr "Offset"
|
2517 |
|
|
|
2518 |
#: includes/loop-settings.php:55
|
2519 |
+
#@ fl-builder
|
2520 |
msgid "Skip this many posts that match the specified criteria."
|
2521 |
msgstr "Salta questo numero di post che corrispondono ai criteri specificati."
|
2522 |
|
|
|
2523 |
#: includes/loop-settings.php:62
|
2524 |
+
#@ fl-builder
|
2525 |
msgid "Filter"
|
2526 |
msgstr "Filtro"
|
2527 |
|
|
|
2528 |
#: includes/loop-settings.php:73
|
2529 |
#, php-format
|
2530 |
+
#@ fl-builder
|
2531 |
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
2532 |
+
msgstr "Immettere un elenco delimitato da virgole di %s. Verranno mostrati solo questi %s."
|
|
|
|
|
2533 |
|
|
|
2534 |
#: includes/loop-settings.php:86
|
2535 |
#, php-format
|
2536 |
+
#@ fl-builder
|
2537 |
+
msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
|
2538 |
+
msgstr "Immettere un elenco delimitato da virgole di %s. Verranno mostrati soli gli articoli con queste %s."
|
|
|
|
|
2539 |
|
|
|
2540 |
#: includes/loop-settings.php:100
|
2541 |
+
#@ fl-builder
|
2542 |
msgid "Authors"
|
2543 |
msgstr "Autori"
|
2544 |
|
|
|
2545 |
#: includes/loop-settings.php:101
|
2546 |
+
#@ fl-builder
|
2547 |
+
msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
|
2548 |
+
msgstr "Immettere un elenco delimitato da virgole di nomi di autori. Verranno visualizzati solo i post di questi autori."
|
|
|
|
|
|
|
2549 |
|
|
|
2550 |
#: includes/module-settings.php:75
|
2551 |
+
#@ fl-builder
|
2552 |
msgid "Choose whether to show or hide this module at different device sizes."
|
2553 |
+
msgstr "Scegli se visualizzare o nascondere questo modulo a diverse dimensioni dei dispositivi."
|
|
|
|
|
2554 |
|
|
|
2555 |
#: includes/module-settings.php:83
|
2556 |
+
#@ fl-builder
|
2557 |
msgid "Animation"
|
2558 |
msgstr "Animazione"
|
2559 |
|
|
|
2560 |
#: includes/module-settings.php:89
|
2561 |
+
#@ fl-builder
|
2562 |
msgctxt "Animation style."
|
2563 |
msgid "None"
|
2564 |
msgstr "Nessuno"
|
2565 |
|
|
|
2566 |
#: includes/module-settings.php:90
|
2567 |
+
#@ fl-builder
|
2568 |
msgctxt "Animation style."
|
2569 |
msgid "Fade In"
|
2570 |
msgstr "Dissolvenza in entrata"
|
2571 |
|
|
|
2572 |
#: includes/module-settings.php:91
|
2573 |
+
#@ fl-builder
|
2574 |
msgctxt "Animation style."
|
2575 |
msgid "Slide Left"
|
2576 |
msgstr "Scorri sinistra"
|
2577 |
|
|
|
2578 |
#: includes/module-settings.php:92
|
2579 |
+
#@ fl-builder
|
2580 |
msgctxt "Animation style."
|
2581 |
msgid "Slide Right"
|
2582 |
msgstr "Scorri destra"
|
2583 |
|
|
|
2584 |
#: includes/module-settings.php:93
|
2585 |
+
#@ fl-builder
|
2586 |
msgctxt "Animation style."
|
2587 |
msgid "Slide Up"
|
2588 |
msgstr "Scorri alto"
|
2589 |
|
|
|
2590 |
#: includes/module-settings.php:94
|
2591 |
+
#@ fl-builder
|
2592 |
msgctxt "Animation style."
|
2593 |
msgid "Slide Down"
|
2594 |
msgstr "Scorri basso"
|
2595 |
|
|
|
2596 |
#: includes/module-settings.php:102
|
2597 |
#: modules/content-slider/content-slider.php:256
|
2598 |
#: modules/post-carousel/post-carousel.php:146
|
2599 |
#: modules/post-slider/post-slider.php:363
|
2600 |
#: modules/testimonials/testimonials.php:92
|
2601 |
+
#@ fl-builder
|
2602 |
msgid "Delay"
|
2603 |
msgstr "Ritardo"
|
2604 |
|
2605 |
+
#: includes/module-settings.php:106
|
2606 |
+
#: includes/row-settings.php:287
|
2607 |
+
#: includes/row-settings.php:318
|
2608 |
+
#: modules/content-slider/content-slider.php:260
|
2609 |
#: modules/content-slider/content-slider.php:277
|
2610 |
#: modules/post-carousel/post-carousel.php:149
|
2611 |
#: modules/post-carousel/post-carousel.php:165
|
2612 |
#: modules/post-slider/post-slider.php:366
|
2613 |
+
#: modules/post-slider/post-slider.php:391
|
2614 |
+
#: modules/slideshow/slideshow.php:394
|
2615 |
+
#: modules/slideshow/slideshow.php:419
|
2616 |
+
#: modules/slideshow/slideshow.php:590
|
2617 |
#: modules/testimonials/testimonials.php:96
|
2618 |
#: modules/testimonials/testimonials.php:113
|
2619 |
+
#@ fl-builder
|
2620 |
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
2621 |
msgid "seconds"
|
2622 |
msgstr "secondi"
|
2623 |
|
|
|
2624 |
#: includes/module-settings.php:107
|
2625 |
+
#@ fl-builder
|
2626 |
msgid "The amount of time in seconds before this animation starts."
|
2627 |
msgstr "Periodo di tempo in secondi prima dell'inizio di questa animazione."
|
2628 |
|
|
|
2629 |
#: includes/module-settings.php:120
|
2630 |
+
#@ fl-builder
|
2631 |
+
msgid "A unique ID that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
|
2632 |
+
msgstr "Un ID univoco che sarà applicato al codice HTML del modulo. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
|
|
|
|
|
|
|
|
|
2633 |
|
2634 |
+
#: includes/module-settings.php:127
|
2635 |
+
#: includes/row-settings.php:660
|
2636 |
+
#@ fl-builder
|
2637 |
msgid "Class"
|
2638 |
msgstr "Classe"
|
2639 |
|
|
|
2640 |
#: includes/module-settings.php:128
|
2641 |
+
#@ fl-builder
|
2642 |
+
msgid "A class that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
|
2643 |
+
msgstr "Una classe che sarà applicata al codice HTML di questo modulo. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
|
|
|
|
|
|
|
|
|
|
|
2644 |
|
|
|
2645 |
#: includes/node-template-settings.php:4
|
2646 |
#, php-format
|
2647 |
+
#@ fl-builder
|
2648 |
msgctxt "%s stands for the type of node template being saved."
|
2649 |
msgid "Save %s Template"
|
2650 |
msgstr "Salva il modello %s"
|
2651 |
|
|
|
2652 |
#: includes/node-template-settings.php:14
|
2653 |
#: includes/user-template-settings.php:15
|
2654 |
+
#@ fl-builder
|
2655 |
msgctxt "Template name."
|
2656 |
msgid "Name"
|
2657 |
msgstr "Nome"
|
2658 |
|
|
|
2659 |
#: includes/node-template-settings.php:18
|
2660 |
+
#@ fl-builder
|
2661 |
msgctxt "Whether this is a global template or not."
|
2662 |
msgid "Global"
|
2663 |
msgstr "Globale"
|
2664 |
|
|
|
2665 |
#: includes/node-template-settings.php:19
|
2666 |
+
#@ fl-builder
|
2667 |
+
msgid "Global templates can be added to multiple pages and edited in one place."
|
2668 |
+
msgstr "I modelli globali possono essere aggiunti a più pagine e modificati in un singolo posto. "
|
|
|
|
|
2669 |
|
2670 |
+
#: includes/row-settings.php:6
|
2671 |
+
#: includes/ui-js-config.php:85
|
2672 |
#: includes/ui-js-templates.php:12
|
2673 |
+
#@ fl-builder
|
2674 |
msgid "Row Settings"
|
2675 |
msgstr "Impostazioni di riga"
|
2676 |
|
2677 |
+
#: includes/row-settings.php:16
|
2678 |
+
#: modules/button/button.php:198
|
2679 |
#: modules/content-slider/content-slider.php:510
|
2680 |
#: modules/pricing-table/pricing-table.php:303
|
2681 |
+
#@ fl-builder
|
2682 |
msgid "Width"
|
2683 |
msgstr "Larghezza"
|
2684 |
|
|
|
2685 |
#: includes/row-settings.php:27
|
2686 |
+
#@ fl-builder
|
2687 |
+
msgid "Full width rows span the width of the page from edge to edge. Fixed rows are no wider than the Row Max Width set in the Global Settings."
|
2688 |
+
msgstr "Le righe a larghezza piena si estendono per la larghezza di pagina da bordo a bordo. Le righe fisse non sono più ampie rispetto alla larghezza massima scelta nelle impostazioni globali."
|
|
|
|
|
|
|
|
|
2689 |
|
|
|
2690 |
#: includes/row-settings.php:34
|
2691 |
+
#@ fl-builder
|
2692 |
msgid "Content Width"
|
2693 |
msgstr "Larghezza contenuto"
|
2694 |
|
|
|
2695 |
#: includes/row-settings.php:40
|
2696 |
+
#@ fl-builder
|
2697 |
+
msgid "Full width content spans the width of the page from edge to edge. Fixed content is no wider than the Row Max Width set in the Global Settings."
|
2698 |
+
msgstr "Il contenuto a larghezza piena si estende per la larghezza di pagina da bordo a bordo. Il contenuto fisso non è più ampio rispetto alla larghezza massima scelta nelle impostazioni globali."
|
2699 |
+
|
2700 |
+
#: includes/row-settings.php:61
|
2701 |
+
#: modules/button/button.php:121
|
2702 |
+
#: modules/cta/cta.php:189
|
2703 |
+
#: modules/heading/heading.php:73
|
2704 |
+
#: modules/icon/icon.php:79
|
2705 |
+
#: modules/icon-group/icon-group.php:48
|
2706 |
+
#: modules/numbers/numbers.php:170
|
2707 |
+
#: modules/post-carousel/post-carousel.php:406
|
2708 |
+
#: modules/post-grid/post-grid.php:306
|
2709 |
+
#: modules/post-slider/post-slider.php:680
|
2710 |
+
#@ fl-builder
|
2711 |
msgid "Colors"
|
2712 |
msgstr "Colori"
|
2713 |
|
2714 |
+
#: includes/row-settings.php:65
|
2715 |
+
#: modules/button/button.php:140
|
2716 |
#: modules/callout/callout.php:535
|
2717 |
#: modules/content-slider/content-slider.php:555
|
2718 |
#: modules/content-slider/content-slider.php:677
|
2719 |
#: modules/content-slider/content-slider.php:790
|
2720 |
+
#: modules/countdown/countdown.php:182
|
2721 |
+
#: modules/cta/cta.php:193
|
2722 |
+
#: modules/cta/cta.php:290
|
2723 |
+
#: modules/heading/heading.php:78
|
2724 |
+
#: modules/numbers/numbers.php:174
|
2725 |
+
#: modules/post-carousel/post-carousel.php:410
|
2726 |
+
#: modules/post-grid/post-grid.php:310
|
2727 |
+
#: modules/post-slider/post-slider.php:684
|
2728 |
#: modules/pricing-table/pricing-table.php:248
|
2729 |
#: modules/subscribe-form/subscribe-form.php:218
|
2730 |
+
#@ fl-builder
|
2731 |
msgid "Text Color"
|
2732 |
msgstr "Colore del testo"
|
2733 |
|
|
|
2734 |
#: includes/row-settings.php:108
|
2735 |
+
#@ fl-builder
|
2736 |
msgctxt "Background type."
|
2737 |
msgid "Video"
|
2738 |
msgstr "Video"
|
2739 |
|
|
|
2740 |
#: includes/row-settings.php:110
|
2741 |
+
#@ fl-builder
|
2742 |
msgctxt "Background type."
|
2743 |
msgid "Slideshow"
|
2744 |
msgstr "Slideshow"
|
2745 |
|
|
|
2746 |
#: includes/row-settings.php:114
|
2747 |
+
#@ fl-builder
|
2748 |
msgctxt "Background type."
|
2749 |
msgid "Parallax"
|
2750 |
msgstr "Parallasse"
|
2751 |
|
|
|
2752 |
#: includes/row-settings.php:216
|
2753 |
+
#@ fl-builder
|
2754 |
msgid "Background Video"
|
2755 |
msgstr "Video di sfondo"
|
2756 |
|
2757 |
+
#: modules/content-slider/content-slider.php:363
|
2758 |
+
#: modules/video/video.php:19
|
2759 |
+
#@ fl-builder
|
2760 |
msgid "Video"
|
2761 |
msgstr "Video"
|
2762 |
|
|
|
2763 |
#: includes/row-settings.php:236
|
2764 |
+
#@ fl-builder
|
2765 |
msgid "Fallback Photo"
|
2766 |
msgstr "Foto di fallback"
|
2767 |
|
|
|
2768 |
#: includes/row-settings.php:237
|
2769 |
+
#@ fl-builder
|
2770 |
msgid "A photo that will be displayed if the video fails to load."
|
2771 |
msgstr "Una foto che verrà visualizzata se non è possibile caricare il video."
|
2772 |
|
|
|
2773 |
#: includes/row-settings.php:245
|
2774 |
+
#@ fl-builder
|
2775 |
msgid "Background Slideshow"
|
2776 |
msgstr "Sfondo Slideshow"
|
2777 |
|
2778 |
+
#: includes/row-settings.php:249
|
2779 |
+
#: modules/gallery/gallery.php:242
|
2780 |
#: modules/slideshow/slideshow.php:272
|
2781 |
+
#@ fl-builder
|
2782 |
msgid "Source"
|
2783 |
msgstr "Sorgente"
|
2784 |
|
2785 |
+
#: includes/row-settings.php:252
|
2786 |
+
#: modules/audio/audio.php:86
|
2787 |
+
#: modules/gallery/gallery.php:245
|
2788 |
+
#: modules/photo/photo.php:432
|
2789 |
+
#: modules/slideshow/slideshow.php:275
|
2790 |
+
#: modules/video/video.php:92
|
2791 |
+
#@ fl-builder
|
2792 |
msgid "Media Library"
|
2793 |
msgstr "Libreria multimediale"
|
2794 |
|
2795 |
+
#: includes/row-settings.php:255
|
2796 |
+
#: modules/gallery/gallery.php:248
|
2797 |
#: modules/slideshow/slideshow.php:278
|
2798 |
+
#@ fl-builder
|
2799 |
+
msgid "Pull images from the WordPress media library or a gallery on your SmugMug site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be accessed by using the get a link function in your SmugMug gallery."
|
2800 |
+
msgstr "Estrae immagini dalla libreria multimedia di WordPress o una galleria sul tuo sito SmugMug inserendo la URL del feed RSS di SmugMug. L'URL del feed RSS è accessibile tramite un collegamento nella tua galleria SmugMug."
|
|
|
|
|
|
|
|
|
|
|
2801 |
|
2802 |
+
#: includes/row-settings.php:270
|
2803 |
+
#: modules/gallery/gallery.php:260
|
2804 |
#: modules/slideshow/slideshow.php:290
|
2805 |
+
#@ fl-builder
|
2806 |
msgid "Photos"
|
2807 |
msgstr "Foto"
|
2808 |
|
2809 |
+
#: includes/row-settings.php:277
|
2810 |
+
#: modules/gallery/gallery.php:264
|
2811 |
#: modules/slideshow/slideshow.php:294
|
2812 |
+
#@ fl-builder
|
2813 |
msgid "Feed URL"
|
2814 |
msgstr "URL del feed"
|
2815 |
|
2816 |
+
#: includes/row-settings.php:284
|
2817 |
+
#: includes/row-settings.php:349
|
2818 |
#: modules/slideshow/slideshow.php:391
|
2819 |
+
#@ fl-builder
|
2820 |
msgid "Speed"
|
2821 |
msgstr "Velocità"
|
2822 |
|
2823 |
+
#: includes/row-settings.php:294
|
2824 |
+
#: modules/content-slider/content-slider.php:264
|
2825 |
+
#: modules/post-slider/post-slider.php:370
|
2826 |
+
#: modules/slideshow/slideshow.php:398
|
2827 |
#: modules/testimonials/testimonials.php:100
|
2828 |
+
#@ fl-builder
|
2829 |
msgid "Transition"
|
2830 |
msgstr "Transizione"
|
2831 |
|
|
|
2832 |
#: includes/row-settings.php:297
|
2833 |
+
#@ fl-builder
|
2834 |
msgctxt "Slideshow transition type."
|
2835 |
msgid "None"
|
2836 |
msgstr "Nessuna"
|
2837 |
|
2838 |
+
#: includes/row-settings.php:298
|
2839 |
+
#: modules/content-slider/content-slider.php:268
|
2840 |
#: modules/post-carousel/post-carousel.php:242
|
2841 |
+
#: modules/post-grid/post-grid.php:256
|
2842 |
+
#: modules/post-slider/post-slider.php:373
|
2843 |
#: modules/slideshow/slideshow.php:402
|
2844 |
#: modules/testimonials/testimonials.php:104
|
2845 |
+
#@ fl-builder
|
2846 |
msgid "Fade"
|
2847 |
msgstr "Dissolvenza"
|
2848 |
|
2849 |
+
#: includes/row-settings.php:299
|
2850 |
+
#: modules/slideshow/slideshow.php:403
|
2851 |
+
#@ fl-builder
|
2852 |
msgid "Ken Burns"
|
2853 |
msgstr "Ken Burns"
|
2854 |
|
2855 |
+
#: includes/row-settings.php:300
|
2856 |
+
#: modules/slideshow/slideshow.php:404
|
2857 |
+
#@ fl-builder
|
2858 |
msgid "Slide Horizontal"
|
2859 |
msgstr "Scorri orizontale"
|
2860 |
|
2861 |
+
#: includes/row-settings.php:301
|
2862 |
+
#: modules/slideshow/slideshow.php:405
|
2863 |
+
#@ fl-builder
|
2864 |
msgid "Slide Vertical"
|
2865 |
msgstr "Scorri verticale"
|
2866 |
|
2867 |
+
#: includes/row-settings.php:302
|
2868 |
+
#: modules/slideshow/slideshow.php:406
|
2869 |
+
#@ fl-builder
|
2870 |
msgid "Blinds"
|
2871 |
msgstr "Tendina"
|
2872 |
|
2873 |
+
#: includes/row-settings.php:303
|
2874 |
+
#: modules/slideshow/slideshow.php:407
|
2875 |
+
#@ fl-builder
|
2876 |
msgid "Bars"
|
2877 |
msgstr "Barre"
|
2878 |
|
2879 |
+
#: includes/row-settings.php:304
|
2880 |
+
#: modules/slideshow/slideshow.php:408
|
2881 |
+
#@ fl-builder
|
2882 |
msgid "Random Bars"
|
2883 |
msgstr "Barre casuali"
|
2884 |
|
2885 |
+
#: includes/row-settings.php:305
|
2886 |
+
#: modules/slideshow/slideshow.php:409
|
2887 |
+
#@ fl-builder
|
2888 |
msgid "Boxes"
|
2889 |
msgstr "Quadrati"
|
2890 |
|
2891 |
+
#: includes/row-settings.php:306
|
2892 |
+
#: modules/slideshow/slideshow.php:410
|
2893 |
+
#@ fl-builder
|
2894 |
msgid "Random Boxes"
|
2895 |
msgstr "Quadrati casuali"
|
2896 |
|
2897 |
+
#: includes/row-settings.php:307
|
2898 |
+
#: modules/slideshow/slideshow.php:411
|
2899 |
+
#@ fl-builder
|
2900 |
msgid "Boxes Grow"
|
2901 |
msgstr "Quadrati ingrandimento"
|
2902 |
|
2903 |
+
#: includes/row-settings.php:315
|
2904 |
+
#: modules/content-slider/content-slider.php:273
|
2905 |
#: modules/post-carousel/post-carousel.php:162
|
2906 |
+
#: modules/post-slider/post-slider.php:388
|
2907 |
+
#: modules/slideshow/slideshow.php:416
|
2908 |
#: modules/testimonials/testimonials.php:109
|
2909 |
+
#@ fl-builder
|
2910 |
msgid "Transition Speed"
|
2911 |
msgstr "Velocità di transizione"
|
2912 |
|
2913 |
+
#: includes/row-settings.php:325
|
2914 |
+
#: modules/slideshow/slideshow.php:423
|
2915 |
+
#@ fl-builder
|
2916 |
msgid "Randomize Photos"
|
2917 |
msgstr "Foto casuali"
|
2918 |
|
|
|
2919 |
#: includes/row-settings.php:338
|
2920 |
+
#@ fl-builder
|
2921 |
msgid "Background Parallax"
|
2922 |
msgstr "Sfondo parallasse"
|
2923 |
|
|
|
2924 |
#: includes/row-settings.php:352
|
2925 |
+
#@ fl-builder
|
2926 |
msgid "Fast"
|
2927 |
msgstr "Veloce"
|
2928 |
|
|
|
2929 |
#: includes/row-settings.php:353
|
2930 |
+
#@ fl-builder
|
2931 |
msgctxt "Speed."
|
2932 |
msgid "Medium"
|
2933 |
msgstr "Media"
|
2934 |
|
|
|
2935 |
#: includes/row-settings.php:354
|
2936 |
+
#@ fl-builder
|
2937 |
msgid "Slow"
|
2938 |
msgstr "Lenta"
|
2939 |
|
|
|
2940 |
#: includes/row-settings.php:640
|
2941 |
+
#@ fl-builder
|
2942 |
msgid "Choose whether to show or hide this row at different device sizes."
|
2943 |
+
msgstr "Scegli se mostrare o nascondere questa riga per diverse dimensioni dei dispositivi."
|
|
|
|
|
2944 |
|
|
|
2945 |
#: includes/row-settings.php:653
|
2946 |
+
#@ fl-builder
|
2947 |
+
msgid "A unique ID that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
|
2948 |
+
msgstr "Un ID univoco che sarà applicato al codice HTML di questa riga. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Niente spazi."
|
|
|
|
|
|
|
|
|
2949 |
|
|
|
2950 |
#: includes/row-settings.php:661
|
2951 |
+
#@ fl-builder
|
2952 |
+
msgid "A class that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
|
2953 |
+
msgstr "Una classe che sarà applicata al codice HTML di questa riga. Deve iniziare con una lettera e contenere solo trattini, underscore, lettere o numeri. Separa classi multiple con spazio."
|
|
|
|
|
|
|
|
|
|
|
2954 |
|
|
|
2955 |
#: includes/service-settings.php:32
|
2956 |
+
#@ fl-builder
|
2957 |
msgid "Service"
|
2958 |
msgstr "Servizio"
|
2959 |
|
|
|
2960 |
#: includes/settings.php:67
|
2961 |
+
#@ fl-builder
|
2962 |
msgid "Save"
|
2963 |
msgstr "Salva"
|
2964 |
|
|
|
2965 |
#: includes/settings.php:69
|
2966 |
+
#@ fl-builder
|
2967 |
msgid "Save As..."
|
2968 |
msgstr "Salva come..."
|
2969 |
|
|
|
2970 |
#: includes/template-selector.php:4
|
2971 |
+
#@ fl-builder
|
2972 |
msgid "Layout Templates"
|
2973 |
msgstr "Modelli di layout"
|
2974 |
|
|
|
2975 |
#: includes/template-selector.php:17
|
2976 |
+
#@ fl-builder
|
2977 |
msgid "Your Templates"
|
2978 |
msgstr "I tuoi modelli"
|
2979 |
|
|
|
2980 |
#: includes/template-selector.php:53
|
2981 |
+
#@ fl-builder
|
2982 |
+
msgid "You haven't saved any templates yet! To do so, create a layout and save it as a template under <strong>Tools → Save Template</strong>."
|
2983 |
+
msgstr "Non hai ancora salvato nessun modello! Per farlo, crea un layout e salvalo come modello in <strong>Strumenti → Salva modello</strong>."
|
|
|
|
|
|
|
2984 |
|
|
|
2985 |
#: includes/template-selector.php:58
|
2986 |
+
#@ fl-builder
|
2987 |
msgctxt "Template name."
|
2988 |
msgid "Blank"
|
2989 |
msgstr "Vuoto"
|
2990 |
|
2991 |
+
#: includes/ui-js-config.php:24
|
2992 |
+
#@ fl-builder
|
2993 |
msgid "What would you like to do?"
|
2994 |
msgstr "Che cosa vorresti fare?"
|
2995 |
|
2996 |
+
#: includes/ui-js-config.php:29
|
2997 |
+
#@ fl-builder
|
2998 |
msgid "Change Template"
|
2999 |
msgstr "Cambiare modello"
|
3000 |
|
3001 |
+
#: includes/ui-js-config.php:30
|
3002 |
+
#@ fl-builder
|
3003 |
+
msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
|
3004 |
+
msgstr "ATTENZIONE! Cambiare il modello sostituirà il layout esistente. Vuoi davvero fare questo?"
|
|
|
|
|
|
|
|
|
3005 |
|
3006 |
+
#: includes/ui-js-config.php:33
|
3007 |
+
#@ fl-builder
|
3008 |
msgid "Column"
|
3009 |
msgstr "Colonna"
|
3010 |
|
3011 |
+
#: includes/ui-js-config.php:34
|
3012 |
+
#@ fl-builder
|
3013 |
+
msgid "Please select either a background layout or content layout before submitting."
|
3014 |
+
msgstr "Si prega di selezionare un layout di sfondo o un layout contenuto prima di inviare."
|
|
|
|
|
|
|
3015 |
|
3016 |
+
#: includes/ui-js-config.php:36
|
3017 |
+
#@ fl-builder
|
3018 |
msgid "Remove Account"
|
3019 |
msgstr "Rimuovi account"
|
3020 |
|
3021 |
+
#: includes/ui-js-config.php:37
|
3022 |
+
#@ fl-builder
|
3023 |
+
msgid "Are you sure you want to remove this account? Other modules that are connected to it will be affected."
|
3024 |
+
msgstr "Sei sicuro di voler rimuovere questo account? I moduli che gli sono connessi saranno influenzati."
|
|
|
|
|
|
|
|
|
3025 |
|
3026 |
+
#: includes/ui-js-config.php:39
|
3027 |
+
#@ fl-builder
|
3028 |
msgid "Do you really want to delete this item?"
|
3029 |
msgstr "Vuoi davvero eliminare questo elemento?"
|
3030 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3031 |
#: includes/ui-js-config.php:43
|
3032 |
+
#@ fl-builder
|
3033 |
+
msgid "WARNING! You are about to delete a global template that may be linked to other pages. Do you really want to delete this template and unlink it?"
|
3034 |
+
msgstr "ATTENZIONE! Stai per eliminare un modello globale che può essere collegato ad altre pagine. Vuoi veramente eliminare questo modello e scollegarlo?"
|
3035 |
+
|
3036 |
+
#: includes/ui-js-config.php:44
|
3037 |
+
#@ fl-builder
|
3038 |
msgid "Discard Changes"
|
3039 |
msgstr "Scarta modifiche"
|
3040 |
|
3041 |
+
#: includes/ui-js-config.php:45
|
3042 |
+
#@ fl-builder
|
3043 |
+
msgid "Do you really want to discard these changes? All of your changes that are not published will be lost."
|
3044 |
+
msgstr "Vuoi veramente scartare queste modifiche? Tutti i cambiamenti che non sono pubblicati saranno persi."
|
|
|
|
|
|
|
|
|
3045 |
|
3046 |
+
#: includes/ui-js-config.php:47
|
3047 |
+
#@ fl-builder
|
3048 |
msgid "Save Draft"
|
3049 |
msgstr "Salva bozza"
|
3050 |
|
3051 |
+
#: includes/ui-js-config.php:48
|
3052 |
+
#: includes/ui-js-templates.php:14
|
3053 |
#: includes/ui-js-templates.php:84
|
3054 |
+
#@ fl-builder
|
3055 |
msgid "Duplicate"
|
3056 |
msgstr "Duplica"
|
3057 |
|
3058 |
+
#: includes/ui-js-config.php:52
|
3059 |
+
#@ fl-builder
|
3060 |
msgid "Drop a row layout or module to get started!"
|
3061 |
msgstr "Trascina un layout di riga o un modulo per iniziare!"
|
3062 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3063 |
#: includes/ui-js-config.php:56
|
3064 |
+
#@ fl-builder
|
3065 |
+
msgid "Beaver Builder caught the following JavaScript error. If Beaver Builder is not functioning as expected the cause is most likely this error. Please help us by disabling all plugins and testing Beaver Builder while reactivating each to determine if the issue is related to a third party plugin."
|
3066 |
+
msgstr "Beaver Builder ha intercettato il seguente errore JavaScript. Se Beaver Builder non funziona come previsto la causa è probabilmente questo errore. Vi preghiamo di aiutarci disabilitando tutti i plugin e provando Beaver Builder dopo averli riattivati uno ad uno per determinare se il problema è legato a un plugin di terze parti."
|
3067 |
+
|
3068 |
+
#: includes/ui-js-config.php:57
|
3069 |
+
#@ fl-builder
|
3070 |
msgid "Full Size"
|
3071 |
msgstr "Tutta larghezza"
|
3072 |
|
3073 |
+
#: includes/ui-js-config.php:58
|
3074 |
+
#@ fl-builder
|
3075 |
msgid "Get Help"
|
3076 |
msgstr "Richiedi assistenza"
|
3077 |
|
3078 |
+
#: includes/ui-js-config.php:59
|
3079 |
+
#@ fl-builder
|
3080 |
msgid "\"{message}\" on line {line} of {file}."
|
3081 |
msgstr "\"{message}\" nella riga {line} di {file}."
|
3082 |
|
3083 |
+
#: includes/ui-js-config.php:60
|
3084 |
+
#@ fl-builder
|
3085 |
msgid "Insert"
|
3086 |
msgstr "Inserisci"
|
3087 |
|
3088 |
+
#: includes/ui-js-config.php:61
|
3089 |
+
#: modules/pricing-table/pricing-table.php:111
|
3090 |
+
#@ fl-builder
|
3091 |
msgid "Large"
|
3092 |
msgstr "Grande"
|
3093 |
|
3094 |
+
#: includes/ui-js-config.php:62
|
3095 |
+
#@ fl-builder
|
3096 |
msgid "Manage Templates"
|
3097 |
msgstr "Gestione modelli"
|
3098 |
|
3099 |
+
#: includes/ui-js-config.php:63
|
3100 |
+
#: modules/pricing-table/pricing-table.php:112
|
3101 |
+
#@ fl-builder
|
3102 |
msgid "Medium"
|
3103 |
msgstr "Medio"
|
3104 |
|
3105 |
+
#: includes/ui-js-config.php:64
|
3106 |
+
#@ fl-builder
|
3107 |
msgid "Module"
|
3108 |
msgstr "Modulo"
|
3109 |
|
3110 |
+
#: includes/ui-js-config.php:65
|
3111 |
+
#@ fl-builder
|
3112 |
msgid "Module Template Saved!"
|
3113 |
msgstr "Modello del modulo salvato!"
|
3114 |
|
3115 |
+
#: includes/ui-js-config.php:66
|
3116 |
+
#: includes/ui-js-templates.php:10
|
3117 |
#: includes/ui-js-templates.php:80
|
3118 |
+
#@ fl-builder
|
3119 |
msgid "Move"
|
3120 |
msgstr "Sposta"
|
3121 |
|
3122 |
+
#: includes/ui-js-config.php:67
|
3123 |
+
#@ fl-builder
|
3124 |
msgid "New Column"
|
3125 |
msgstr "Nuova colonna"
|
3126 |
|
3127 |
+
#: includes/ui-js-config.php:68
|
3128 |
+
#@ fl-builder
|
3129 |
msgid "New Row"
|
3130 |
msgstr "Nuova riga"
|
3131 |
|
3132 |
+
#: includes/ui-js-config.php:71
|
3133 |
+
#@ fl-builder
|
3134 |
msgid "No results found."
|
3135 |
msgstr "Nessun risultato trovato."
|
3136 |
|
3137 |
+
#: includes/ui-js-config.php:72
|
3138 |
+
#: includes/ui-panel-node-templates.php:11
|
3139 |
+
#@ fl-builder
|
3140 |
msgid "No saved rows found."
|
3141 |
msgstr "Nessuna riga salvata trovata."
|
3142 |
|
3143 |
+
#: includes/ui-js-config.php:73
|
3144 |
+
#: includes/ui-panel-node-templates.php:42
|
3145 |
+
#@ fl-builder
|
3146 |
msgid "No saved modules found."
|
3147 |
msgstr "Nessun modulo salvato trovato."
|
3148 |
|
3149 |
+
#: includes/ui-js-config.php:74
|
3150 |
+
#: includes/ui-js-templates.php:143
|
3151 |
+
#@ fl-builder
|
3152 |
msgid "OK"
|
3153 |
msgstr "OK"
|
3154 |
|
3155 |
+
#: includes/ui-js-config.php:75
|
3156 |
+
#: modules/photo/photo.php:508
|
3157 |
+
#@ fl-builder
|
3158 |
msgid "Photo Page"
|
3159 |
msgstr "Pagina di foto"
|
3160 |
|
3161 |
+
#: includes/ui-js-config.php:76
|
3162 |
+
#@ fl-builder
|
3163 |
msgid "Photo Selected"
|
3164 |
msgstr "Foto selezionata"
|
3165 |
|
3166 |
+
#: includes/ui-js-config.php:77
|
3167 |
+
#@ fl-builder
|
3168 |
msgid "Photos Selected"
|
3169 |
msgstr "Foto selezionate"
|
3170 |
|
3171 |
+
#: includes/ui-js-config.php:79
|
|
|
3172 |
#: modules/subscribe-form/includes/frontend.php:15
|
3173 |
+
#@ fl-builder
|
3174 |
msgid "Please Wait..."
|
3175 |
msgstr "Si prega di attendere..."
|
3176 |
|
3177 |
+
#: includes/ui-js-config.php:81
|
3178 |
+
#@ fl-builder
|
3179 |
msgid "Publish Changes"
|
3180 |
msgstr "Pubblica le modifiche"
|
3181 |
|
3182 |
+
#: includes/ui-js-config.php:84
|
3183 |
+
#: includes/ui-js-templates.php:5
|
3184 |
+
#@ fl-builder
|
3185 |
msgid "Row"
|
3186 |
msgstr "Riga"
|
3187 |
|
3188 |
+
#: includes/ui-js-config.php:86
|
3189 |
+
#@ fl-builder
|
3190 |
msgid "Row Template Saved!"
|
3191 |
msgstr "Modello di riga salvato!"
|
3192 |
|
3193 |
+
#: includes/ui-js-config.php:87
|
3194 |
+
#@ fl-builder
|
3195 |
msgid "Save Core Template"
|
3196 |
msgstr "Salva il modello Core"
|
3197 |
|
3198 |
+
#: includes/ui-js-config.php:88
|
3199 |
+
#: includes/user-template-settings.php:4
|
3200 |
+
#@ fl-builder
|
3201 |
msgid "Save Template"
|
3202 |
msgstr "Salva modello"
|
3203 |
|
3204 |
+
#: includes/ui-js-config.php:91
|
3205 |
+
#@ fl-builder
|
3206 |
msgid "Select Photos"
|
3207 |
msgstr "Seleziona foto"
|
3208 |
|
3209 |
+
#: includes/ui-js-config.php:93
|
3210 |
+
#@ fl-builder
|
3211 |
msgid "Please select an account before saving."
|
3212 |
msgstr "Si prega di selezionare un'account prima di salvare."
|
3213 |
|
3214 |
+
#: includes/ui-js-config.php:94
|
3215 |
+
#@ fl-builder
|
3216 |
msgid "Please connect an account before saving."
|
3217 |
msgstr "Si prega di connettere un account prima di salvare."
|
3218 |
|
3219 |
+
#: includes/ui-js-config.php:95
|
3220 |
+
#@ fl-builder
|
3221 |
msgid "Please select a list before saving."
|
3222 |
msgstr "Si prega di selezionare una lista prima di salvare."
|
3223 |
|
3224 |
+
#: includes/ui-js-config.php:96
|
3225 |
+
#@ fl-builder
|
3226 |
msgid "Take a Tour"
|
3227 |
msgstr "Inizia visita guidata"
|
3228 |
|
3229 |
+
#: includes/ui-js-config.php:97
|
3230 |
+
#@ fl-builder
|
3231 |
msgid "Append New Layout"
|
3232 |
msgstr "Aggiungi nuovo Layout"
|
3233 |
|
3234 |
+
#: includes/ui-js-config.php:98
|
3235 |
+
#@ fl-builder
|
3236 |
msgid "Replace Existing Layout"
|
3237 |
msgstr "Sostituisci Layout esistente"
|
3238 |
|
3239 |
+
#: includes/ui-js-config.php:99
|
3240 |
+
#@ fl-builder
|
3241 |
msgid "Template Saved!"
|
3242 |
msgstr "Modello salvato!"
|
3243 |
|
3244 |
+
#: includes/ui-js-config.php:100
|
3245 |
+
#: modules/post-slider/post-slider.php:464
|
3246 |
+
#@ fl-builder
|
3247 |
msgid "Thumbnail"
|
3248 |
msgstr "Miniatura"
|
3249 |
|
3250 |
+
#: includes/ui-js-config.php:101
|
3251 |
+
#@ fl-builder
|
3252 |
msgid "Next"
|
3253 |
msgstr "Avanti"
|
3254 |
|
3255 |
+
#: includes/ui-js-config.php:102
|
3256 |
+
#: modules/pricing-table/pricing-table.php:197
|
3257 |
+
#@ fl-builder
|
3258 |
msgid "Get Started"
|
3259 |
msgstr "Inizia"
|
3260 |
|
3261 |
+
#: includes/ui-js-config.php:103
|
3262 |
+
#@ fl-builder
|
3263 |
msgid "Choose a Template"
|
3264 |
msgstr "Scegli un modello"
|
3265 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3266 |
#: includes/ui-js-config.php:104
|
3267 |
+
#@ fl-builder
|
3268 |
+
msgid "Get started by choosing a layout template to customize, or build a page from scratch by selecting the blank layout template."
|
3269 |
+
msgstr "Inizia scegliendo un modello di layout da personalizzare, o costruisci una pagina da zero selezionando il modello di layout vuoto."
|
3270 |
+
|
3271 |
+
#: includes/ui-js-config.php:105
|
3272 |
+
#@ fl-builder
|
3273 |
msgid "Add Rows"
|
3274 |
msgstr "Aggiungi righe"
|
3275 |
|
3276 |
+
#: includes/ui-js-config.php:106
|
3277 |
+
#@ fl-builder
|
3278 |
+
msgid "Add multi-column rows, adjust spacing, add backgrounds and more by dragging and dropping row layouts onto the page."
|
3279 |
+
msgstr "Aggiungi righe multi-colonna, aggiusta gli spazi, aggiungi sfondi e altro trascinando e rilasciando layout di riga nella pagina."
|
|
|
|
|
|
|
|
|
3280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3281 |
#: includes/ui-js-config.php:108
|
3282 |
+
#@ fl-builder
|
3283 |
+
msgid "Add new content by dragging and dropping modules or widgets into your row layouts or to create a new row layout."
|
3284 |
+
msgstr "Aggiungi nuovo contenuto trascinando e rilasciando moduli o widget nei tuoi layout di riga o crea un nuovo layout di riga."
|
3285 |
|
|
|
3286 |
#: includes/ui-js-config.php:109
|
3287 |
+
#@ fl-builder
|
3288 |
+
msgid "Edit Content"
|
3289 |
+
msgstr "Modifica contenuto"
|
|
|
|
|
3290 |
|
|
|
3291 |
#: includes/ui-js-config.php:110
|
3292 |
+
#@ fl-builder
|
3293 |
+
msgid "Move your mouse over rows, columns or modules to edit and interact with them."
|
3294 |
+
msgstr "Muovi il mouse su righe, colonne o moduli per modificare e interagire con esse."
|
|
|
|
|
|
|
3295 |
|
|
|
3296 |
#: includes/ui-js-config.php:111
|
3297 |
+
#@ fl-builder
|
3298 |
+
msgid "Use the action buttons to perform actions such as moving, editing, duplicating or deleting rows, columns and modules."
|
3299 |
+
msgstr "Usa i bottoni di azione per compiere azioni come muovere, modificare, duplicare, o cancellare righe, colonne e moduli."
|
3300 |
|
|
|
3301 |
#: includes/ui-js-config.php:112
|
3302 |
+
#@ fl-builder
|
3303 |
+
msgid "Add More Content"
|
3304 |
+
msgstr "Aggiungi contenuto"
|
|
|
|
|
|
|
3305 |
|
|
|
3306 |
#: includes/ui-js-config.php:113
|
3307 |
+
#@ fl-builder
|
3308 |
+
msgid "Use the Add Content button to open the content panel and add new row layouts, modules or widgets."
|
3309 |
+
msgstr "Usa il pulsante Aggiungi contenuto per aprire il pannello contenuti e aggiungere nuove righe di layout, moduli o widgets."
|
3310 |
|
|
|
3311 |
#: includes/ui-js-config.php:114
|
3312 |
+
#@ fl-builder
|
3313 |
+
msgid "Change Templates"
|
3314 |
+
msgstr "Cambia modello"
|
|
|
|
|
|
|
|
|
|
|
3315 |
|
|
|
3316 |
#: includes/ui-js-config.php:115
|
3317 |
+
#@ fl-builder
|
3318 |
+
msgid "Use the Templates button to pick a new template or append one to your layout. Appending will insert a new template at the end of your existing page content."
|
3319 |
+
msgstr "Usa il pulsante Modelli per scegliere un nuovo modello o appenderne uno al tuo layout. Appendi inserirà il nuovo modello alla fine del contenuto di pagina esistente."
|
3320 |
+
|
3321 |
+
#: includes/ui-js-config.php:116
|
3322 |
+
#@ fl-builder
|
3323 |
msgid "Helpful Tools"
|
3324 |
msgstr "Strumenti utili"
|
3325 |
|
3326 |
+
#: includes/ui-js-config.php:118
|
3327 |
+
#@ fl-builder
|
3328 |
msgid "Publish Your Changes"
|
3329 |
msgstr "Pubblica le modifiche"
|
3330 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3331 |
#: includes/ui-js-config.php:119
|
3332 |
+
#@ fl-builder
|
3333 |
+
msgid "Once you're finished, click the Done button to publish your changes, save a draft or revert back to the last published state."
|
3334 |
+
msgstr "Quando hai finito, clicca sul pulsante Fatto per pubblicare le tue modifiche, salvare una bozza o ritornare all'ultima versione pubblicata."
|
3335 |
|
|
|
3336 |
#: includes/ui-js-config.php:120
|
3337 |
+
#@ fl-builder
|
3338 |
+
msgid "Let's Get Building!"
|
3339 |
+
msgstr "Andiamo a costruire!"
|
|
|
|
|
|
|
|
|
|
|
3340 |
|
|
|
3341 |
#: includes/ui-js-config.php:121
|
3342 |
+
#@ fl-builder
|
3343 |
+
msgid "Now that you know the basics, you're ready to start building! If at any time you need help, click the help icon in the upper right corner to access the help menu. Happy building!"
|
3344 |
+
msgstr "Ora che conosci le basi, sei pronto per iniziare a costruire! Se in qualsiasi momento hai bisogno di aiuto, clicca l'icona aiuto nell'angolo in alto a destra per accedere al menu di aiuto. Buona costruzione!"
|
|
|
|
|
|
|
3345 |
|
|
|
3346 |
#: includes/ui-js-config.php:122
|
3347 |
+
#@ fl-builder
|
3348 |
+
msgid "The settings you are currently editing will not be saved if you navigate away from this page."
|
3349 |
+
msgstr "Le impostazioni che stai modificando attualmente non verranno salvate se navighi via da questa pagina."
|
3350 |
+
|
3351 |
+
#: includes/ui-js-config.php:123
|
3352 |
+
#@ fl-builder
|
3353 |
msgid "View the Knowledge Base"
|
3354 |
msgstr "Leggi la documentazione"
|
3355 |
|
3356 |
+
#: includes/ui-js-config.php:124
|
3357 |
+
#@ fl-builder
|
3358 |
msgid "Visit the Forums"
|
3359 |
msgstr "Visita i forum"
|
3360 |
|
3361 |
+
#: includes/ui-js-config.php:125
|
3362 |
+
#@ fl-builder
|
3363 |
msgid "Watch the Video"
|
3364 |
msgstr "Visualizza il video"
|
3365 |
|
3366 |
+
#: includes/ui-js-templates.php:7
|
3367 |
+
#: includes/ui-js-templates.php:77
|
3368 |
+
#@ fl-builder
|
3369 |
msgid "Locked"
|
3370 |
msgstr "Bloccato"
|
3371 |
|
|
|
3372 |
#: includes/ui-js-templates.php:82
|
3373 |
+
#@ fl-builder
|
3374 |
msgid "Settings"
|
3375 |
msgstr "Impostazioni"
|
3376 |
|
3377 |
+
#: includes/ui-js-config.php:126
|
3378 |
+
#: includes/ui-js-templates.php:150
|
3379 |
+
#@ fl-builder
|
3380 |
+
msgid "Welcome! It looks like this might be your first time using the builder. Would you like to take a tour?"
|
3381 |
+
msgstr "Benvenuto! Sembra che questa potrebbe essere la prima volta che utilizzi il builder. Vuoi fare un giro?"
|
|
|
|
|
|
|
3382 |
|
|
|
3383 |
#: includes/ui-js-templates.php:151
|
3384 |
+
#@ fl-builder
|
3385 |
msgid "No Thanks"
|
3386 |
msgstr "No grazie"
|
3387 |
|
3388 |
+
#: includes/ui-js-config.php:127
|
3389 |
+
#: includes/ui-js-templates.php:152
|
3390 |
+
#@ fl-builder
|
3391 |
msgid "Yes Please!"
|
3392 |
msgstr "Si grazie!"
|
3393 |
|
|
|
3394 |
#: includes/ui-js-templates.php:159
|
3395 |
+
#@ fl-builder
|
3396 |
msgid "Getting Started Video"
|
3397 |
msgstr "Video per iniziare"
|
3398 |
|
|
|
3399 |
#: includes/ui-panel-node-templates.php:6
|
3400 |
+
#@ fl-builder
|
3401 |
msgid "Saved Rows"
|
3402 |
msgstr "Righe salvate"
|
3403 |
|
|
|
3404 |
#: includes/ui-panel-node-templates.php:37
|
3405 |
+
#@ fl-builder
|
3406 |
msgid "Saved Modules"
|
3407 |
msgstr "Moduli salvati"
|
3408 |
|
|
|
3409 |
#: includes/ui-panel.php:11
|
3410 |
+
#@ fl-builder
|
3411 |
msgid "Row Layouts"
|
3412 |
msgstr "Layout di riga"
|
3413 |
|
|
|
3414 |
#: includes/ui-panel.php:15
|
3415 |
+
#@ fl-builder
|
3416 |
msgid "1 Column"
|
3417 |
msgstr "1 colonna"
|
3418 |
|
|
|
3419 |
#: includes/ui-panel.php:16
|
3420 |
+
#@ fl-builder
|
3421 |
msgid "2 Columns"
|
3422 |
msgstr "2 colonne"
|
3423 |
|
|
|
3424 |
#: includes/ui-panel.php:17
|
3425 |
+
#@ fl-builder
|
3426 |
msgid "3 Columns"
|
3427 |
msgstr "3 colonne"
|
3428 |
|
|
|
3429 |
#: includes/ui-panel.php:18
|
3430 |
+
#@ fl-builder
|
3431 |
msgid "4 Columns"
|
3432 |
msgstr "4 colonne"
|
3433 |
|
|
|
3434 |
#: includes/ui-panel.php:19
|
3435 |
+
#@ fl-builder
|
3436 |
msgid "5 Columns"
|
3437 |
msgstr "5 colonne"
|
3438 |
|
|
|
3439 |
#: includes/ui-panel.php:20
|
3440 |
+
#@ fl-builder
|
3441 |
msgid "6 Columns"
|
3442 |
msgstr "6 colonne"
|
3443 |
|
|
|
3444 |
#: includes/ui-panel.php:21
|
3445 |
+
#@ fl-builder
|
3446 |
msgid "Left Sidebar"
|
3447 |
msgstr "Barra laterale sinistra"
|
3448 |
|
|
|
3449 |
#: includes/ui-panel.php:22
|
3450 |
+
#@ fl-builder
|
3451 |
msgid "Right Sidebar"
|
3452 |
msgstr "Barra laterale destra"
|
3453 |
|
|
|
3454 |
#: includes/ui-panel.php:23
|
3455 |
+
#@ fl-builder
|
3456 |
msgid "Left & Right Sidebar"
|
3457 |
msgstr "Barra laterale sinistra e destra"
|
3458 |
|
|
|
3459 |
#: includes/updater/classes/class-fl-updater.php:294
|
3460 |
+
#@ fl-builder
|
3461 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
3462 |
msgstr "<strong>AGGIORNAMENTO NON DISPONIBILE!</strong>"
|
3463 |
|
|
|
3464 |
#: includes/updater/classes/class-fl-updater.php:296
|
3465 |
+
#@ fl-builder
|
3466 |
msgid "Please subscribe to enable automatic updates for this plugin."
|
3467 |
+
msgstr "Si prega di abbonarsi per abilitare gli aggiornamenti automatici per questo plugin."
|
|
|
|
|
3468 |
|
|
|
3469 |
#: includes/updater/classes/class-fl-updater.php:300
|
3470 |
#: includes/updater/includes/form.php:6
|
3471 |
+
#@ fl-builder
|
3472 |
msgid "Subscribe Now"
|
3473 |
msgstr "Abbonati ora"
|
3474 |
|
|
|
3475 |
#: includes/updater/includes/form.php:5
|
3476 |
+
#@ fl-builder
|
3477 |
+
msgid "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to enable automatic updates."
|
3478 |
+
msgstr "AGGIORNAMENTI NON DISPONIBILI! Si prega di iscriversi o inserire di seguito il codice di licenza per abilitare gli aggiornamenti automatici."
|
|
|
|
|
|
|
3479 |
|
|
|
3480 |
#: includes/updater/includes/form.php:11
|
3481 |
+
#@ fl-builder
|
3482 |
msgid "Updates & Support Subscription"
|
3483 |
msgstr "Abbonamento supporto e aggiornamenti"
|
3484 |
|
|
|
3485 |
#: includes/updater/includes/form.php:14
|
3486 |
+
#@ fl-builder
|
3487 |
msgid "Active!"
|
3488 |
msgstr "Attivo!"
|
3489 |
|
|
|
3490 |
#: includes/updater/includes/form.php:16
|
3491 |
+
#@ fl-builder
|
3492 |
msgid "Not Active!"
|
3493 |
msgstr "Non attivo!"
|
3494 |
|
|
|
3495 |
#: includes/updater/includes/form.php:27
|
3496 |
#, php-format
|
3497 |
+
#@ fl-builder
|
3498 |
msgid "Enter your <a%s>license key</a> to enable remote updates and support."
|
3499 |
+
msgstr "Inserisci la tua <a%s>chiave di licenza</a> per abilitare gli aggiornamenti remoti e ottenere supporto."
|
|
|
|
|
3500 |
|
|
|
3501 |
#: includes/updater/includes/form.php:39
|
3502 |
+
#@ fl-builder
|
3503 |
msgid "Save Subscription Settings"
|
3504 |
msgstr "Salva le impostazioni di abbonamento"
|
3505 |
|
|
|
3506 |
#: includes/user-template-settings.php:8
|
3507 |
+
#@ fl-builder
|
3508 |
+
msgid "Save the current layout as a template that can be reused under <strong>Templates → Your Templates</strong>."
|
3509 |
+
msgstr "Salva il layout attuale come modello che può essere riutilizzato in <strong>Modelli → I tuoi modelli</strong>."
|
|
|
|
|
|
|
3510 |
|
3511 |
+
#: modules/accordion/accordion.php:14
|
3512 |
+
#: modules/menu/menu.php:97
|
3513 |
+
#@ fl-builder
|
3514 |
msgid "Accordion"
|
3515 |
msgstr "Accordion"
|
3516 |
|
|
|
3517 |
#: modules/accordion/accordion.php:15
|
3518 |
+
#@ fl-builder
|
3519 |
msgid "Display a collapsible accordion of items."
|
3520 |
msgstr "Visualizza una lista comprimibile di elementi."
|
3521 |
|
3522 |
+
#: modules/accordion/accordion.php:29
|
3523 |
+
#: modules/tabs/tabs.php:29
|
3524 |
+
#@ fl-builder
|
3525 |
msgid "Items"
|
3526 |
msgstr "Elementi"
|
3527 |
|
3528 |
+
#: modules/accordion/accordion.php:36
|
3529 |
+
#: modules/tabs/tabs.php:36
|
3530 |
+
#@ fl-builder
|
3531 |
msgid "Item"
|
3532 |
msgstr "Elemento"
|
3533 |
|
3534 |
+
#: modules/accordion/accordion.php:53
|
3535 |
+
#: modules/tabs/tabs.php:62
|
3536 |
+
#@ fl-builder
|
3537 |
msgid "Border Color"
|
3538 |
msgstr "Colore bordo"
|
3539 |
|
|
|
3540 |
#: modules/accordion/accordion.php:63
|
3541 |
+
#@ fl-builder
|
3542 |
msgid "Label Size"
|
3543 |
msgstr "Dimensione etichetta"
|
3544 |
|
|
|
3545 |
#: modules/accordion/accordion.php:66
|
3546 |
+
#@ fl-builder
|
3547 |
msgctxt "Label size."
|
3548 |
msgid "Small"
|
3549 |
msgstr "Piccola"
|
3550 |
|
|
|
3551 |
#: modules/accordion/accordion.php:67
|
3552 |
+
#@ fl-builder
|
3553 |
msgctxt "Label size."
|
3554 |
msgid "Medium"
|
3555 |
msgstr "Media"
|
3556 |
|
|
|
3557 |
#: modules/accordion/accordion.php:68
|
3558 |
+
#@ fl-builder
|
3559 |
msgctxt "Label size."
|
3560 |
msgid "Large"
|
3561 |
msgstr "Grande"
|
3562 |
|
|
|
3563 |
#: modules/accordion/accordion.php:76
|
3564 |
+
#@ fl-builder
|
3565 |
msgid "Item Spacing"
|
3566 |
msgstr "Spaziatura elemento"
|
3567 |
|
|
|
3568 |
#: modules/accordion/accordion.php:87
|
3569 |
+
#@ fl-builder
|
3570 |
msgid "Collapse Inactive"
|
3571 |
msgstr "Chiudi inattivo"
|
3572 |
|
|
|
3573 |
#: modules/accordion/accordion.php:93
|
3574 |
+
#@ fl-builder
|
3575 |
+
msgid "Choosing yes will keep only one item open at a time. Choosing no will allow multiple items to be open at the same time."
|
3576 |
+
msgstr "Scegliendo Sì manterrà soltanto un elemento aperto alla volta. Scegliendo No permetterà a più elementi di essere aperti contemporaneamente."
|
|
|
|
|
|
|
3577 |
|
3578 |
+
#: modules/accordion/accordion.php:108
|
3579 |
+
#: modules/tabs/tabs.php:75
|
3580 |
+
#@ fl-builder
|
3581 |
msgid "Add Item"
|
3582 |
msgstr "Aggiungi elemento"
|
3583 |
|
3584 |
+
#: modules/accordion/accordion.php:118
|
3585 |
+
#: modules/tabs/tabs.php:85
|
3586 |
+
#@ fl-builder
|
3587 |
msgid "Label"
|
3588 |
msgstr "Etichetta"
|
3589 |
|
|
|
3590 |
#: modules/accordion/accordion.php:123
|
3591 |
#: modules/post-carousel/post-carousel.php:373
|
3592 |
#: modules/post-carousel/post-carousel.php:377
|
3593 |
#: modules/post-carousel/post-carousel.php:449
|
3594 |
+
#: modules/post-grid/post-grid.php:207
|
3595 |
+
#: modules/post-grid/post-grid.php:211
|
3596 |
+
#: modules/post-grid/post-grid.php:339
|
3597 |
+
#: modules/post-slider/post-slider.php:548
|
3598 |
#: modules/post-slider/post-slider.php:552
|
3599 |
+
#: modules/post-slider/post-slider.php:759
|
3600 |
+
#: modules/tabs/tabs.php:90
|
3601 |
+
#@ fl-builder
|
3602 |
msgid "Content"
|
3603 |
msgstr "Contenuto"
|
3604 |
|
3605 |
+
#: modules/button/button.php:14
|
3606 |
+
#: modules/callout/callout.php:481
|
3607 |
+
#: modules/content-slider/content-slider.php:628
|
3608 |
+
#: modules/cta/cta.php:216
|
3609 |
#: modules/pricing-table/pricing-table.php:189
|
3610 |
#: modules/subscribe-form/subscribe-form.php:172
|
3611 |
+
#@ fl-builder
|
3612 |
msgid "Button"
|
3613 |
msgstr "Pulsante"
|
3614 |
|
|
|
3615 |
#: modules/button/button.php:15
|
3616 |
+
#@ fl-builder
|
3617 |
msgid "A simple call to action button."
|
3618 |
msgstr "Un semplice pulsante Call to action."
|
3619 |
|
3620 |
+
#: modules/button/button.php:68
|
3621 |
+
#: modules/cta/cta.php:224
|
3622 |
+
#@ fl-builder
|
3623 |
msgid "Click Here"
|
3624 |
msgstr "Clicca qui"
|
3625 |
|
3626 |
+
#: modules/button/button.php:76
|
3627 |
+
#: modules/callout/callout.php:319
|
3628 |
+
#: modules/callout/callout.php:367
|
3629 |
+
#: modules/callout/callout.php:371
|
3630 |
+
#: modules/cta/cta.php:232
|
3631 |
+
#: modules/icon/icon.php:14
|
3632 |
+
#: modules/icon/icon.php:35
|
3633 |
+
#: modules/icon-group/icon-group.php:35
|
3634 |
+
#: modules/icon-group/icon-group.php:136
|
3635 |
+
#@ fl-builder
|
3636 |
msgid "Icon"
|
3637 |
msgstr "Icona"
|
3638 |
|
3639 |
+
#: modules/button/button.php:81
|
3640 |
+
#: modules/cta/cta.php:237
|
3641 |
#: modules/subscribe-form/subscribe-form.php:189
|
3642 |
+
#@ fl-builder
|
3643 |
msgid "Icon Position"
|
3644 |
msgstr "Posizione icona"
|
3645 |
|
3646 |
+
#: modules/button/button.php:84
|
3647 |
+
#: modules/callout/callout.php:509
|
3648 |
+
#: modules/content-slider/content-slider.php:655
|
3649 |
+
#: modules/cta/cta.php:240
|
3650 |
#: modules/pricing-table/pricing-table.php:225
|
3651 |
#: modules/subscribe-form/subscribe-form.php:192
|
3652 |
+
#@ fl-builder
|
3653 |
msgid "Before Text"
|
3654 |
msgstr "Prima del testo"
|
3655 |
|
3656 |
+
#: modules/button/button.php:85
|
3657 |
+
#: modules/callout/callout.php:510
|
3658 |
+
#: modules/content-slider/content-slider.php:656
|
3659 |
+
#: modules/cta/cta.php:241
|
3660 |
#: modules/pricing-table/pricing-table.php:226
|
3661 |
#: modules/subscribe-form/subscribe-form.php:193
|
3662 |
+
#@ fl-builder
|
3663 |
msgid "After Text"
|
3664 |
msgstr "Dopo il testo"
|
3665 |
|
3666 |
+
#: modules/audio/audio.php:87
|
3667 |
+
#: modules/audio/audio.php:112
|
3668 |
+
#: modules/button/button.php:91
|
3669 |
+
#: modules/button/button.php:95
|
3670 |
+
#: modules/callout/callout.php:447
|
3671 |
+
#: modules/callout/callout.php:451
|
3672 |
#: modules/content-slider/content-slider.php:600
|
3673 |
#: modules/content-slider/content-slider.php:604
|
3674 |
+
#: modules/content-slider/content-slider.php:627
|
3675 |
+
#: modules/cta/cta.php:251
|
3676 |
+
#: modules/heading/heading.php:44
|
3677 |
+
#: modules/heading/heading.php:48
|
3678 |
+
#: modules/icon/icon.php:40
|
3679 |
+
#: modules/icon/icon.php:44
|
3680 |
+
#: modules/icon-group/icon-group.php:140
|
3681 |
+
#: modules/photo/photo.php:498
|
3682 |
#: modules/slideshow/slideshow.php:352
|
3683 |
+
#@ fl-builder
|
3684 |
msgid "Link"
|
3685 |
msgstr "Collegamento"
|
3686 |
|
|
|
3687 |
#: modules/button/button.php:96
|
3688 |
+
#@ fl-builder
|
3689 |
msgid "http://www.example.com"
|
3690 |
msgstr "http://www.example.com"
|
3691 |
|
3692 |
+
#: modules/button/button.php:103
|
3693 |
+
#: modules/callout/callout.php:459
|
3694 |
+
#: modules/content-slider/content-slider.php:609
|
3695 |
+
#: modules/cta/cta.php:258
|
3696 |
+
#: modules/heading/heading.php:55
|
3697 |
+
#: modules/icon/icon.php:51
|
3698 |
+
#: modules/photo/photo.php:532
|
3699 |
+
#: modules/pricing-table/pricing-table.php:205
|
3700 |
+
#@ fl-builder
|
3701 |
msgid "Link Target"
|
3702 |
msgstr "Destinazione del collegamento"
|
3703 |
|
3704 |
+
#: modules/button/button.php:106
|
3705 |
+
#: modules/callout/callout.php:462
|
3706 |
+
#: modules/content-slider/content-slider.php:612
|
3707 |
+
#: modules/cta/cta.php:261
|
3708 |
+
#: modules/heading/heading.php:58
|
3709 |
+
#: modules/icon/icon.php:54
|
3710 |
+
#: modules/photo/photo.php:535
|
3711 |
+
#: modules/pricing-table/pricing-table.php:208
|
3712 |
+
#@ fl-builder
|
3713 |
msgid "Same Window"
|
3714 |
msgstr "Stessa finestra"
|
3715 |
|
3716 |
+
#: modules/button/button.php:107
|
3717 |
+
#: modules/callout/callout.php:463
|
3718 |
+
#: modules/content-slider/content-slider.php:613
|
3719 |
+
#: modules/cta/cta.php:262
|
3720 |
+
#: modules/heading/heading.php:59
|
3721 |
+
#: modules/icon/icon.php:55
|
3722 |
+
#: modules/photo/photo.php:536
|
3723 |
+
#: modules/pricing-table/pricing-table.php:209
|
3724 |
+
#@ fl-builder
|
3725 |
msgid "New Window"
|
3726 |
msgstr "Nuova finestra"
|
3727 |
|
3728 |
+
#: modules/button/button.php:131
|
3729 |
+
#: modules/callout/callout.php:411
|
3730 |
#: modules/callout/callout.php:526
|
3731 |
+
#: modules/content-slider/content-slider.php:672
|
3732 |
+
#: modules/cta/cta.php:281
|
3733 |
+
#: modules/icon/icon.php:101
|
3734 |
+
#: modules/icon-group/icon-group.php:70
|
3735 |
#: modules/pricing-table/pricing-table.php:242
|
3736 |
#: modules/subscribe-form/subscribe-form.php:209
|
3737 |
+
#@ fl-builder
|
3738 |
msgid "Background Hover Color"
|
3739 |
msgstr "Colore di sfondo al passaggio del mouse"
|
3740 |
|
3741 |
+
#: modules/button/button.php:146
|
3742 |
+
#: modules/callout/callout.php:541
|
3743 |
+
#: modules/content-slider/content-slider.php:683
|
3744 |
+
#: modules/cta/cta.php:296
|
3745 |
#: modules/pricing-table/pricing-table.php:254
|
3746 |
#: modules/subscribe-form/subscribe-form.php:224
|
3747 |
+
#@ fl-builder
|
3748 |
msgid "Text Hover Color"
|
3749 |
msgstr "Colore del testo al passaggio del mouse"
|
3750 |
|
3751 |
+
#: modules/button/button.php:163
|
3752 |
+
#: modules/callout/callout.php:558
|
3753 |
+
#: modules/content-slider/content-slider.php:696
|
3754 |
+
#: modules/cta/cta.php:313
|
3755 |
#: modules/pricing-table/pricing-table.php:268
|
3756 |
#: modules/subscribe-form/subscribe-form.php:241
|
3757 |
+
#@ fl-builder
|
3758 |
msgid "Flat"
|
3759 |
msgstr "Solido"
|
3760 |
|
3761 |
+
#: modules/button/button.php:164
|
3762 |
+
#: modules/callout/callout.php:419
|
3763 |
#: modules/callout/callout.php:559
|
3764 |
+
#: modules/content-slider/content-slider.php:697
|
3765 |
+
#: modules/cta/cta.php:314
|
3766 |
+
#: modules/icon/icon.php:109
|
3767 |
+
#: modules/icon-group/icon-group.php:78
|
3768 |
#: modules/pricing-table/pricing-table.php:269
|
3769 |
#: modules/subscribe-form/subscribe-form.php:242
|
3770 |
+
#@ fl-builder
|
3771 |
msgid "Gradient"
|
3772 |
msgstr "Gradiente"
|
3773 |
|
3774 |
+
#: modules/button/button.php:165
|
3775 |
+
#: modules/callout/callout.php:560
|
3776 |
+
#: modules/content-slider/content-slider.php:698
|
3777 |
+
#: modules/cta/cta.php:315
|
3778 |
#: modules/pricing-table/pricing-table.php:270
|
3779 |
#: modules/subscribe-form/subscribe-form.php:243
|
3780 |
+
#@ fl-builder
|
3781 |
msgid "Transparent"
|
3782 |
msgstr "Trasparente"
|
3783 |
|
3784 |
+
#: modules/button/button.php:175
|
3785 |
+
#: modules/callout/callout.php:570
|
3786 |
+
#: modules/content-slider/content-slider.php:708
|
3787 |
+
#: modules/cta/cta.php:325
|
3788 |
#: modules/pricing-table/pricing-table.php:98
|
3789 |
#: modules/pricing-table/pricing-table.php:280
|
3790 |
#: modules/subscribe-form/subscribe-form.php:253
|
3791 |
+
#@ fl-builder
|
3792 |
msgid "Border Size"
|
3793 |
msgstr "Dimensione bordo"
|
3794 |
|
3795 |
+
#: modules/button/button.php:184
|
3796 |
+
#: modules/callout/callout.php:579
|
3797 |
+
#: modules/content-slider/content-slider.php:717
|
3798 |
+
#: modules/cta/cta.php:205
|
3799 |
+
#: modules/cta/cta.php:334
|
3800 |
+
#: modules/pricing-table/pricing-table.php:289
|
3801 |
#: modules/subscribe-form/subscribe-form.php:262
|
3802 |
+
#@ fl-builder
|
3803 |
msgid "Background Opacity"
|
3804 |
msgstr "Opacità sfondo"
|
3805 |
|
3806 |
+
#: modules/button/button.php:194
|
3807 |
+
#: modules/callout/callout.php:246
|
3808 |
+
#: modules/cta/cta.php:106
|
3809 |
+
#: modules/heading/heading.php:83
|
3810 |
+
#: modules/icon/icon.php:119
|
3811 |
+
#: modules/icon-group/icon-group.php:88
|
3812 |
#: modules/subscribe-form/subscribe-form.php:106
|
3813 |
+
#@ fl-builder
|
3814 |
msgid "Structure"
|
3815 |
msgstr "Struttura"
|
3816 |
|
3817 |
+
#: modules/button/button.php:201
|
3818 |
+
#: modules/callout/callout.php:596
|
3819 |
#: modules/pricing-table/pricing-table.php:306
|
3820 |
+
#@ fl-builder
|
3821 |
msgctxt "Width."
|
3822 |
msgid "Auto"
|
3823 |
msgstr "Automatica"
|
3824 |
|
|
|
3825 |
#: modules/button/button.php:217
|
3826 |
+
#@ fl-builder
|
3827 |
msgid "Custom Width"
|
3828 |
msgstr "Larghezza personalizzata"
|
3829 |
|
3830 |
+
#: modules/button/button.php:225
|
3831 |
+
#: modules/cta/cta.php:124
|
3832 |
+
#: modules/heading/heading.php:87
|
3833 |
+
#: modules/heading/heading.php:154
|
3834 |
+
#: modules/icon/icon.php:131
|
3835 |
+
#: modules/icon-group/icon-group.php:108
|
3836 |
+
#: modules/photo/photo.php:468
|
3837 |
+
#: modules/pricing-table/pricing-table.php:312
|
3838 |
#: modules/social-buttons/social-buttons.php:98
|
3839 |
+
#@ fl-builder
|
3840 |
msgid "Alignment"
|
3841 |
msgstr "Allineamento"
|
3842 |
|
3843 |
+
#: modules/button/button.php:235
|
3844 |
+
#: modules/callout/callout.php:602
|
3845 |
+
#: modules/content-slider/content-slider.php:731
|
3846 |
+
#: modules/cta/cta.php:348
|
3847 |
+
#: modules/heading/heading.php:127
|
3848 |
+
#: modules/heading/heading.php:184
|
3849 |
#: modules/pricing-table/pricing-table.php:325
|
3850 |
#: modules/subscribe-form/subscribe-form.php:276
|
3851 |
+
#@ fl-builder
|
3852 |
msgid "Font Size"
|
3853 |
msgstr "Dimensione carattere"
|
3854 |
|
3855 |
+
#: modules/button/button.php:251
|
3856 |
+
#: modules/callout/callout.php:618
|
3857 |
+
#: modules/cta/cta.php:364
|
3858 |
+
#: modules/pricing-table/pricing-table.php:341
|
3859 |
#: modules/subscribe-form/subscribe-form.php:292
|
3860 |
+
#@ fl-builder
|
3861 |
msgid "Round Corners"
|
3862 |
msgstr "Angoli arrotondati"
|
3863 |
|
|
|
3864 |
#: modules/callout/callout.php:14
|
3865 |
+
#@ fl-builder
|
3866 |
msgid "Callout"
|
3867 |
msgstr "Callout"
|
3868 |
|
|
|
3869 |
#: modules/callout/callout.php:15
|
3870 |
+
#@ fl-builder
|
3871 |
msgid "A heading and snippet of text with an optional link, icon and image."
|
3872 |
+
msgstr "Un titolo e un frammento di testo con collegamento, icona e immagine facoltativi."
|
|
|
|
|
3873 |
|
|
|
3874 |
#: modules/callout/callout.php:218
|
3875 |
#: modules/content-slider/content-slider.php:440
|
3876 |
+
#: modules/content-slider/content-slider.php:455
|
3877 |
+
#: modules/cta/cta.php:76
|
3878 |
+
#: modules/heading/heading.php:14
|
3879 |
+
#: modules/heading/heading.php:34
|
3880 |
#: modules/post-slider/post-slider.php:582
|
3881 |
#: modules/testimonials/testimonials.php:57
|
3882 |
#: modules/testimonials/testimonials.php:62
|
3883 |
+
#@ fl-builder
|
3884 |
msgid "Heading"
|
3885 |
msgstr "Titolo"
|
3886 |
|
|
|
3887 |
#: modules/callout/callout.php:250
|
3888 |
+
#@ fl-builder
|
3889 |
msgid "Overall Alignment"
|
3890 |
msgstr "Allineamento globale"
|
3891 |
|
|
|
3892 |
#: modules/callout/callout.php:257
|
3893 |
+
#@ fl-builder
|
3894 |
msgid "The alignment that will apply to all elements within the callout."
|
3895 |
+
msgstr "L'allineamento che si applicherà a tutti gli elementi all'interno del callout."
|
|
|
|
|
3896 |
|
3897 |
+
#: modules/callout/callout.php:265
|
3898 |
+
#: modules/cta/cta.php:149
|
3899 |
+
#@ fl-builder
|
3900 |
msgid "Heading Structure"
|
3901 |
msgstr "Struttura titolo"
|
3902 |
|
|
|
3903 |
#: modules/callout/callout.php:269
|
3904 |
+
#: modules/content-slider/content-slider.php:459
|
3905 |
+
#: modules/cta/cta.php:153
|
3906 |
#: modules/post-slider/post-slider.php:586
|
3907 |
+
#@ fl-builder
|
3908 |
msgid "Heading Tag"
|
3909 |
msgstr "Tag titolo"
|
3910 |
|
|
|
3911 |
#: modules/callout/callout.php:282
|
3912 |
#: modules/content-slider/content-slider.php:472
|
3913 |
+
#: modules/content-slider/content-slider.php:486
|
3914 |
+
#: modules/cta/cta.php:166
|
3915 |
#: modules/post-slider/post-slider.php:599
|
3916 |
#: modules/post-slider/post-slider.php:613
|
3917 |
#: modules/testimonials/testimonials.php:70
|
3918 |
+
#@ fl-builder
|
3919 |
msgid "Heading Size"
|
3920 |
msgstr "Dimensione titolo"
|
3921 |
|
3922 |
+
#: modules/callout/callout.php:296
|
3923 |
+
#: modules/cta/cta.php:180
|
3924 |
+
#@ fl-builder
|
3925 |
msgid "Heading Custom Size"
|
3926 |
msgstr "Dimensione personalizzata titolo"
|
3927 |
|
|
|
3928 |
#: modules/callout/callout.php:314
|
3929 |
+
#@ fl-builder
|
3930 |
msgid "Image Type"
|
3931 |
msgstr "Tipo di immagine"
|
3932 |
|
|
|
3933 |
#: modules/callout/callout.php:317
|
3934 |
+
#@ fl-builder
|
3935 |
msgctxt "Image type."
|
3936 |
msgid "None"
|
3937 |
msgstr "Nessuna"
|
3938 |
|
3939 |
+
#: modules/callout/callout.php:342
|
3940 |
+
#: modules/photo/photo.php:455
|
3941 |
#: modules/post-carousel/post-carousel.php:275
|
3942 |
+
#: modules/post-slider/post-slider.php:482
|
3943 |
+
#: modules/slideshow/slideshow.php:321
|
3944 |
+
#@ fl-builder
|
3945 |
msgid "Crop"
|
3946 |
msgstr "Ritaglio"
|
3947 |
|
3948 |
+
#: modules/callout/callout.php:345
|
3949 |
+
#: modules/photo/photo.php:458
|
3950 |
+
#@ fl-builder
|
3951 |
msgctxt "Photo Crop."
|
3952 |
msgid "None"
|
3953 |
msgstr "Nessuno"
|
3954 |
|
3955 |
+
#: modules/callout/callout.php:346
|
3956 |
+
#: modules/photo/photo.php:459
|
3957 |
#: modules/post-carousel/post-carousel.php:278
|
3958 |
#: modules/post-slider/post-slider.php:485
|
3959 |
+
#@ fl-builder
|
3960 |
msgid "Landscape"
|
3961 |
msgstr "Paesaggio"
|
3962 |
|
3963 |
+
#: modules/callout/callout.php:347
|
3964 |
+
#: modules/photo/photo.php:460
|
3965 |
#: modules/post-carousel/post-carousel.php:279
|
3966 |
#: modules/post-slider/post-slider.php:486
|
3967 |
+
#@ fl-builder
|
3968 |
msgid "Panorama"
|
3969 |
msgstr "Panorama"
|
3970 |
|
3971 |
+
#: modules/callout/callout.php:348
|
3972 |
+
#: modules/photo/photo.php:461
|
3973 |
#: modules/post-carousel/post-carousel.php:280
|
3974 |
#: modules/post-slider/post-slider.php:487
|
3975 |
+
#@ fl-builder
|
3976 |
msgid "Portrait"
|
3977 |
msgstr "Ritratto"
|
3978 |
|
3979 |
+
#: modules/callout/callout.php:349
|
3980 |
+
#: modules/photo/photo.php:462
|
3981 |
#: modules/post-carousel/post-carousel.php:281
|
3982 |
#: modules/post-slider/post-slider.php:488
|
3983 |
+
#@ fl-builder
|
3984 |
msgid "Square"
|
3985 |
msgstr "Quadrato"
|
3986 |
|
3987 |
+
#: modules/callout/callout.php:350
|
3988 |
+
#: modules/photo/photo.php:463
|
3989 |
#: modules/post-carousel/post-carousel.php:282
|
3990 |
#: modules/post-slider/post-slider.php:489
|
3991 |
+
#@ fl-builder
|
3992 |
msgid "Circle"
|
3993 |
msgstr "Cerchio"
|
3994 |
|
3995 |
+
#: modules/callout/callout.php:358
|
3996 |
+
#: modules/callout/callout.php:378
|
3997 |
+
#@ fl-builder
|
3998 |
msgid "Above Heading"
|
3999 |
msgstr "Sopra intestazione"
|
4000 |
|
4001 |
+
#: modules/callout/callout.php:359
|
4002 |
+
#: modules/callout/callout.php:379
|
4003 |
+
#@ fl-builder
|
4004 |
msgid "Below Heading"
|
4005 |
msgstr "Sotto intestazione"
|
4006 |
|
4007 |
+
#: modules/callout/callout.php:360
|
4008 |
+
#: modules/callout/callout.php:382
|
4009 |
+
#@ fl-builder
|
4010 |
msgid "Left of Text and Heading"
|
4011 |
msgstr "Sinistra del testo e intestazione"
|
4012 |
|
4013 |
+
#: modules/callout/callout.php:361
|
4014 |
+
#: modules/callout/callout.php:383
|
4015 |
+
#@ fl-builder
|
4016 |
msgid "Right of Text and Heading"
|
4017 |
msgstr "Destra del testo e intestazione"
|
4018 |
|
|
|
4019 |
#: modules/callout/callout.php:380
|
4020 |
+
#@ fl-builder
|
4021 |
msgid "Left of Heading"
|
4022 |
msgstr "Sinistra dell'intestazione"
|
4023 |
|
|
|
4024 |
#: modules/callout/callout.php:381
|
4025 |
+
#@ fl-builder
|
4026 |
msgid "Right of Heading"
|
4027 |
msgstr "Destra dell'intestazione"
|
4028 |
|
|
|
4029 |
#: modules/callout/callout.php:389
|
4030 |
+
#@ fl-builder
|
4031 |
msgid "Icon Colors"
|
4032 |
msgstr "Colori icona"
|
4033 |
|
4034 |
+
#: modules/callout/callout.php:398
|
4035 |
+
#: modules/icon/icon.php:88
|
4036 |
#: modules/icon-group/icon-group.php:57
|
4037 |
+
#@ fl-builder
|
4038 |
msgid "Hover Color"
|
4039 |
msgstr "Colore al passaggio del mouse"
|
4040 |
|
|
|
4041 |
#: modules/callout/callout.php:429
|
4042 |
+
#@ fl-builder
|
4043 |
msgid "Icon Structure"
|
4044 |
msgstr "Struttura icona"
|
4045 |
|
4046 |
+
#: modules/callout/callout.php:433
|
4047 |
+
#: modules/icon/icon.php:123
|
4048 |
#: modules/icon-group/icon-group.php:92
|
4049 |
#: modules/post-carousel/post-carousel.php:270
|
4050 |
+
#: modules/post-grid/post-grid.php:148
|
4051 |
+
#: modules/post-slider/post-slider.php:477
|
4052 |
+
#@ fl-builder
|
4053 |
msgid "Size"
|
4054 |
msgstr "Dimensione"
|
4055 |
|
|
|
4056 |
#: modules/callout/callout.php:444
|
4057 |
#: modules/content-slider/content-slider.php:597
|
4058 |
+
#@ fl-builder
|
4059 |
msgid "Call To Action"
|
4060 |
msgstr "Call To Action"
|
4061 |
|
|
|
4062 |
#: modules/callout/callout.php:452
|
4063 |
+
#@ fl-builder
|
4064 |
+
msgid "The link applies to the entire module. If choosing a call to action type below, this link will also be used for the text or button."
|
4065 |
+
msgstr "Il collegamento si applica a tutto il modulo. Se si seglie un tipo di azione call to action qui sotto, questo collegamento verrà utilizzato anche per il testo o pulsante."
|
|
|
|
|
|
|
|
|
4066 |
|
|
|
4067 |
#: modules/callout/callout.php:472
|
4068 |
+
#: modules/content-slider/content-slider.php:619
|
4069 |
+
#: modules/cta/cta.php:14
|
4070 |
+
#@ fl-builder
|
4071 |
msgid "Call to Action"
|
4072 |
msgstr "Call to Action"
|
4073 |
|
|
|
4074 |
#: modules/callout/callout.php:479
|
4075 |
#: modules/content-slider/content-slider.php:626
|
4076 |
+
#@ fl-builder
|
4077 |
msgctxt "Call to action."
|
4078 |
msgid "None"
|
4079 |
msgstr "Nessuna"
|
4080 |
|
4081 |
+
#: modules/callout/callout.php:497
|
4082 |
+
#: modules/post-carousel/post-carousel.php:396
|
4083 |
+
#: modules/post-grid/post-grid.php:239
|
4084 |
+
#: modules/post-slider/post-slider.php:571
|
4085 |
+
#@ fl-builder
|
4086 |
msgid "Read More"
|
4087 |
msgstr "Leggi tutto"
|
4088 |
|
|
|
4089 |
#: modules/callout/callout.php:501
|
4090 |
#: modules/content-slider/content-slider.php:647
|
4091 |
#: modules/pricing-table/pricing-table.php:217
|
4092 |
#: modules/subscribe-form/subscribe-form.php:184
|
4093 |
+
#@ fl-builder
|
4094 |
msgid "Button Icon"
|
4095 |
msgstr "Icona del pulsante"
|
4096 |
|
|
|
4097 |
#: modules/callout/callout.php:506
|
4098 |
#: modules/content-slider/content-slider.php:652
|
4099 |
#: modules/pricing-table/pricing-table.php:222
|
4100 |
+
#@ fl-builder
|
4101 |
msgid "Button Icon Position"
|
4102 |
msgstr "Posizione icona bottone"
|
4103 |
|
|
|
4104 |
#: modules/callout/callout.php:516
|
4105 |
+
#: modules/content-slider/content-slider.php:662
|
4106 |
+
#: modules/cta/cta.php:271
|
4107 |
#: modules/pricing-table/pricing-table.php:232
|
4108 |
#: modules/subscribe-form/subscribe-form.php:199
|
4109 |
+
#@ fl-builder
|
4110 |
msgid "Button Colors"
|
4111 |
msgstr "Colori pulsante"
|
4112 |
|
|
|
4113 |
#: modules/callout/callout.php:551
|
4114 |
+
#: modules/content-slider/content-slider.php:689
|
4115 |
+
#: modules/cta/cta.php:306
|
4116 |
#: modules/pricing-table/pricing-table.php:261
|
4117 |
#: modules/subscribe-form/subscribe-form.php:234
|
4118 |
+
#@ fl-builder
|
4119 |
msgid "Button Style"
|
4120 |
msgstr "Stile pulsante"
|
4121 |
|
|
|
4122 |
#: modules/callout/callout.php:589
|
4123 |
+
#: modules/content-slider/content-slider.php:727
|
4124 |
+
#: modules/cta/cta.php:344
|
4125 |
#: modules/pricing-table/pricing-table.php:299
|
4126 |
#: modules/subscribe-form/subscribe-form.php:272
|
4127 |
+
#@ fl-builder
|
4128 |
msgid "Button Structure"
|
4129 |
msgstr "Struttura pulsante"
|
4130 |
|
|
|
4131 |
#: modules/callout/callout.php:593
|
4132 |
+
#@ fl-builder
|
4133 |
msgid "Button Width"
|
4134 |
msgstr "Larghezza del pulsante"
|
4135 |
|
|
|
4136 |
#: modules/contact-form/contact-form.php:14
|
4137 |
+
#@ fl-builder
|
4138 |
msgid "Contact Form"
|
4139 |
msgstr "Modulo di contatto"
|
4140 |
|
|
|
4141 |
#: modules/contact-form/contact-form.php:15
|
4142 |
+
#@ fl-builder
|
4143 |
msgid "A very simple contact form."
|
4144 |
msgstr "Un semplice modulo di contatto."
|
4145 |
|
|
|
4146 |
#: modules/contact-form/contact-form.php:34
|
4147 |
+
#@ fl-builder
|
4148 |
msgid "Contact Form Submission"
|
4149 |
msgstr "Invio modulo di contatto"
|
4150 |
|
|
|
4151 |
#: modules/contact-form/contact-form.php:50
|
4152 |
+
#@ fl-builder
|
4153 |
msgid "Message"
|
4154 |
msgstr "Messaggio"
|
4155 |
|
|
|
4156 |
#: modules/contact-form/contact-form.php:85
|
4157 |
+
#@ fl-builder
|
4158 |
msgid "Send To Email"
|
4159 |
msgstr "Invia per Email"
|
4160 |
|
|
|
4161 |
#: modules/contact-form/contact-form.php:87
|
4162 |
+
#@ fl-builder
|
4163 |
msgid "example@mail.com"
|
4164 |
msgstr "example@mail.com"
|
4165 |
|
|
|
4166 |
#: modules/contact-form/contact-form.php:88
|
4167 |
+
#@ fl-builder
|
4168 |
msgid "The contact form will send to this e-mail"
|
4169 |
msgstr "Il modulo di contatto sarà inviato a questa e-mail"
|
4170 |
|
|
|
4171 |
#: modules/contact-form/contact-form.php:95
|
4172 |
#: modules/subscribe-form/subscribe-form.php:119
|
4173 |
+
#@ fl-builder
|
4174 |
msgid "Name Field"
|
4175 |
msgstr "Campo nome"
|
4176 |
|
|
|
4177 |
#: modules/contact-form/contact-form.php:98
|
4178 |
#: modules/contact-form/contact-form.php:107
|
4179 |
#: modules/contact-form/contact-form.php:116
|
4183 |
#: modules/post-carousel/post-carousel.php:345
|
4184 |
#: modules/post-carousel/post-carousel.php:380
|
4185 |
#: modules/post-carousel/post-carousel.php:389
|
4186 |
+
#: modules/post-grid/post-grid.php:128
|
4187 |
+
#: modules/post-grid/post-grid.php:161
|
4188 |
+
#: modules/post-grid/post-grid.php:170
|
4189 |
+
#: modules/post-grid/post-grid.php:200
|
4190 |
+
#: modules/post-grid/post-grid.php:214
|
4191 |
+
#: modules/post-grid/post-grid.php:232
|
4192 |
#: modules/post-slider/post-slider.php:443
|
4193 |
#: modules/post-slider/post-slider.php:502
|
4194 |
#: modules/post-slider/post-slider.php:511
|
4196 |
#: modules/post-slider/post-slider.php:555
|
4197 |
#: modules/post-slider/post-slider.php:564
|
4198 |
#: modules/subscribe-form/subscribe-form.php:122
|
4199 |
+
#@ fl-builder
|
4200 |
msgid "Show"
|
4201 |
msgstr "Mostra"
|
4202 |
|
|
|
4203 |
#: modules/contact-form/contact-form.php:99
|
4204 |
#: modules/contact-form/contact-form.php:108
|
4205 |
#: modules/contact-form/contact-form.php:117
|
4209 |
#: modules/post-carousel/post-carousel.php:346
|
4210 |
#: modules/post-carousel/post-carousel.php:381
|
4211 |
#: modules/post-carousel/post-carousel.php:390
|
4212 |
+
#: modules/post-grid/post-grid.php:129
|
4213 |
+
#: modules/post-grid/post-grid.php:162
|
4214 |
+
#: modules/post-grid/post-grid.php:171
|
4215 |
+
#: modules/post-grid/post-grid.php:201
|
4216 |
+
#: modules/post-grid/post-grid.php:215
|
4217 |
+
#: modules/post-grid/post-grid.php:233
|
4218 |
#: modules/post-slider/post-slider.php:444
|
4219 |
#: modules/post-slider/post-slider.php:503
|
4220 |
#: modules/post-slider/post-slider.php:512
|
4222 |
#: modules/post-slider/post-slider.php:556
|
4223 |
#: modules/post-slider/post-slider.php:565
|
4224 |
#: modules/subscribe-form/subscribe-form.php:123
|
4225 |
+
#@ fl-builder
|
4226 |
msgid "Hide"
|
4227 |
msgstr "Nascondi"
|
4228 |
|
|
|
4229 |
#: modules/contact-form/contact-form.php:104
|
4230 |
+
#@ fl-builder
|
4231 |
msgid "Subject Field"
|
4232 |
msgstr "Campo oggetto"
|
4233 |
|
|
|
4234 |
#: modules/contact-form/contact-form.php:113
|
4235 |
+
#@ fl-builder
|
4236 |
msgid "Email Field"
|
4237 |
msgstr "Campo email"
|
4238 |
|
|
|
4239 |
#: modules/contact-form/contact-form.php:122
|
4240 |
+
#@ fl-builder
|
4241 |
msgid "Phone Field"
|
4242 |
msgstr "Campo telefono"
|
4243 |
|
|
|
4244 |
#: modules/contact-form/includes/frontend.php:5
|
4245 |
+
#@ fl-builder
|
4246 |
msgctxt "Contact form field label."
|
4247 |
msgid "Name"
|
4248 |
msgstr "Nome"
|
4249 |
|
|
|
4250 |
#: modules/contact-form/includes/frontend.php:6
|
4251 |
#: modules/subscribe-form/includes/frontend.php:6
|
4252 |
+
#@ fl-builder
|
4253 |
msgid "Please enter your name."
|
4254 |
msgstr "Inserisci il tuo nome."
|
4255 |
|
|
|
4256 |
#: modules/contact-form/includes/frontend.php:7
|
4257 |
+
#@ fl-builder
|
4258 |
msgid "Your name"
|
4259 |
msgstr "Il tuo nome"
|
4260 |
|
|
|
4261 |
#: modules/contact-form/includes/frontend.php:13
|
4262 |
#: modules/contact-form/includes/frontend.php:15
|
4263 |
+
#@ fl-builder
|
4264 |
msgid "Subject"
|
4265 |
msgstr "Oggetto"
|
4266 |
|
|
|
4267 |
#: modules/contact-form/includes/frontend.php:14
|
4268 |
+
#@ fl-builder
|
4269 |
msgid "Please enter a subject."
|
4270 |
msgstr "Si prega di inserire un oggetto."
|
4271 |
|
|
|
4272 |
#: modules/contact-form/includes/frontend.php:22
|
4273 |
+
#@ fl-builder
|
4274 |
msgid "Please enter a valid email."
|
4275 |
msgstr "Inserisci un indirizzo email valido."
|
4276 |
|
|
|
4277 |
#: modules/contact-form/includes/frontend.php:23
|
4278 |
+
#@ fl-builder
|
4279 |
msgid "Your email"
|
4280 |
msgstr "La tua email"
|
4281 |
|
|
|
4282 |
#: modules/contact-form/includes/frontend.php:29
|
4283 |
+
#@ fl-builder
|
4284 |
msgid "Phone"
|
4285 |
msgstr "Telefono"
|
4286 |
|
|
|
4287 |
#: modules/contact-form/includes/frontend.php:30
|
4288 |
+
#@ fl-builder
|
4289 |
msgid "Please enter a valid phone number."
|
4290 |
msgstr "Si prega di inserire un numero di telefono valido."
|
4291 |
|
|
|
4292 |
#: modules/contact-form/includes/frontend.php:31
|
4293 |
+
#@ fl-builder
|
4294 |
msgid "Your phone"
|
4295 |
msgstr "Il tuo telefono"
|
4296 |
|
|
|
4297 |
#: modules/contact-form/includes/frontend.php:36
|
4298 |
+
#@ fl-builder
|
4299 |
msgid "Your Message"
|
4300 |
msgstr "Il tuo messaggio"
|
4301 |
|
|
|
4302 |
#: modules/contact-form/includes/frontend.php:37
|
4303 |
+
#@ fl-builder
|
4304 |
msgid "Please enter a message."
|
4305 |
msgstr "Inserisci un messaggio."
|
4306 |
|
|
|
4307 |
#: modules/contact-form/includes/frontend.php:38
|
4308 |
+
#@ fl-builder
|
4309 |
msgid "Your message"
|
4310 |
msgstr "Il tuo messaggio"
|
4311 |
|
|
|
4312 |
#: modules/contact-form/includes/frontend.php:43
|
4313 |
+
#@ fl-builder
|
4314 |
msgid "Send"
|
4315 |
msgstr "Invia"
|
4316 |
|
|
|
4317 |
#: modules/contact-form/includes/frontend.php:47
|
4318 |
+
#@ fl-builder
|
4319 |
msgid "Message Sent!"
|
4320 |
msgstr "Messaggio inviato!"
|
4321 |
|
|
|
4322 |
#: modules/contact-form/includes/frontend.php:50
|
4323 |
+
#@ fl-builder
|
4324 |
msgid "Message failed. Please try again."
|
4325 |
msgstr "Invio non riuscito. Per favore riprova."
|
4326 |
|
|
|
4327 |
#: modules/content-slider/content-slider.php:14
|
4328 |
+
#@ fl-builder
|
4329 |
msgid "Content Slider"
|
4330 |
msgstr "Slider contenuto"
|
4331 |
|
|
|
4332 |
#: modules/content-slider/content-slider.php:15
|
4333 |
+
#@ fl-builder
|
4334 |
msgid "Displays multiple slides with an optional heading and call to action."
|
4335 |
+
msgstr "Visualizza slide multiple con un titolo e una call to action opzionali."
|
4336 |
+
|
4337 |
+
#: includes/row-settings.php:47
|
4338 |
+
#: modules/content-slider/content-slider.php:224
|
4339 |
+
#: modules/map/map.php:42
|
4340 |
+
#: modules/post-slider/post-slider.php:345
|
4341 |
+
#: modules/separator/separator.php:59
|
4342 |
+
#: modules/slideshow/slideshow.php:303
|
4343 |
+
#@ fl-builder
|
4344 |
msgid "Height"
|
4345 |
msgstr "Altezza"
|
4346 |
|
|
|
4347 |
#: modules/content-slider/content-slider.php:229
|
4348 |
+
#@ fl-builder
|
4349 |
+
msgid "This setting is the minimum height of the content slider. Content will expand the height automatically."
|
4350 |
+
msgstr "Questa impostazione è l'altezza minima dello slider di contenuto. Il contenuto espanderà automaticamente l'altezza."
|
|
|
|
|
|
|
4351 |
|
4352 |
+
#: modules/audio/audio.php:120
|
4353 |
+
#: modules/content-slider/content-slider.php:233
|
4354 |
#: modules/post-carousel/post-carousel.php:137
|
4355 |
+
#: modules/post-slider/post-slider.php:354
|
4356 |
+
#: modules/slideshow/slideshow.php:382
|
4357 |
+
#: modules/testimonials/testimonials.php:83
|
4358 |
+
#: modules/video/video.php:123
|
4359 |
+
#@ fl-builder
|
4360 |
msgid "Auto Play"
|
4361 |
msgstr "Avvio automatico"
|
4362 |
|
|
|
4363 |
#: modules/content-slider/content-slider.php:247
|
4364 |
+
#@ fl-builder
|
4365 |
msgid "Show Play/Pause"
|
4366 |
msgstr "Mostra Play/Pausa"
|
4367 |
|
|
|
4368 |
#: modules/content-slider/content-slider.php:267
|
4369 |
#: modules/testimonials/testimonials.php:103
|
4370 |
+
#@ fl-builder
|
4371 |
msgctxt "Transition type."
|
4372 |
msgid "Slide"
|
4373 |
msgstr "Slide"
|
4374 |
|
|
|
4375 |
#: modules/content-slider/content-slider.php:281
|
4376 |
#: modules/post-carousel/post-carousel.php:189
|
4377 |
#: modules/post-slider/post-slider.php:415
|
4378 |
#: modules/testimonials/testimonials.php:122
|
4379 |
+
#@ fl-builder
|
4380 |
msgid "Show Arrows"
|
4381 |
msgstr "Mostra frecce"
|
4382 |
|
|
|
4383 |
#: modules/content-slider/content-slider.php:290
|
4384 |
#: modules/post-carousel/post-carousel.php:180
|
4385 |
#: modules/post-slider/post-slider.php:406
|
4386 |
#: modules/testimonials/testimonials.php:152
|
4387 |
+
#@ fl-builder
|
4388 |
msgid "Show Dots"
|
4389 |
msgstr "Mostra navigazione"
|
4390 |
|
|
|
4391 |
#: modules/content-slider/content-slider.php:304
|
4392 |
+
#@ fl-builder
|
4393 |
msgid "Max Content Width"
|
4394 |
msgstr "Larghezza max contenuto"
|
4395 |
|
|
|
4396 |
#: modules/content-slider/content-slider.php:309
|
4397 |
+
#@ fl-builder
|
4398 |
msgid "The max width that the content area will be within your slides."
|
4399 |
msgstr "La larghezza massima dell'area di contenuto nelle tue slides."
|
4400 |
|
|
|
4401 |
#: modules/content-slider/content-slider.php:316
|
4402 |
+
#@ fl-builder
|
4403 |
msgid "Slides"
|
4404 |
msgstr "Slides"
|
4405 |
|
|
|
4406 |
#: modules/content-slider/content-slider.php:323
|
4407 |
#: modules/post-slider/post-slider.php:374
|
4408 |
+
#@ fl-builder
|
4409 |
msgid "Slide"
|
4410 |
msgstr "Slide"
|
4411 |
|
|
|
4412 |
#: modules/content-slider/content-slider.php:338
|
4413 |
+
#@ fl-builder
|
4414 |
msgid "Slide Settings"
|
4415 |
msgstr "Impostazioni slide"
|
4416 |
|
|
|
4417 |
#: modules/content-slider/content-slider.php:348
|
4418 |
+
#@ fl-builder
|
4419 |
msgid "Slide Label"
|
4420 |
msgstr "Etichetta slide"
|
4421 |
|
|
|
4422 |
#: modules/content-slider/content-slider.php:349
|
4423 |
+
#@ fl-builder
|
4424 |
+
msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
|
4425 |
+
msgstr "Un'etichetta per identificare questa slide nelle impostazioni dello Slider Contenuti, tra le schede delle slide."
|
|
|
|
|
|
|
4426 |
|
|
|
4427 |
#: modules/content-slider/content-slider.php:354
|
4428 |
+
#@ fl-builder
|
4429 |
msgid "Background Layout"
|
4430 |
msgstr "Layout sfondo"
|
4431 |
|
|
|
4432 |
#: modules/content-slider/content-slider.php:360
|
4433 |
+
#@ fl-builder
|
4434 |
msgid "This setting is for the entire background of your slide."
|
4435 |
msgstr "Questa impostazione è per l'intero sfondo della tua slide."
|
4436 |
|
|
|
4437 |
#: modules/content-slider/content-slider.php:395
|
4438 |
+
#@ fl-builder
|
4439 |
msgid "Background Video Code"
|
4440 |
msgstr "Codice sfondo video"
|
4441 |
|
|
|
4442 |
#: modules/content-slider/content-slider.php:401
|
4443 |
+
#@ fl-builder
|
4444 |
msgid "Content Layout"
|
4445 |
msgstr "Layout contenuto"
|
4446 |
|
|
|
4447 |
#: modules/content-slider/content-slider.php:407
|
4448 |
+
#@ fl-builder
|
4449 |
+
msgid "This allows you to add content over or in addition to the background selection above. The location of the content layout can be selected in the style tab."
|
4450 |
+
msgstr "Questo permette di aggiungere contenuto sopra o in aggiunta alla selezione sfondo sopra. La posizione del layout contenuti può essere selezionata nella scheda stile."
|
|
|
|
|
|
|
|
|
|
|
4451 |
|
|
|
4452 |
#: modules/content-slider/content-slider.php:410
|
4453 |
+
#@ fl-builder
|
4454 |
msgid "Text & Photo"
|
4455 |
msgstr "Testo e foto"
|
4456 |
|
|
|
4457 |
#: modules/content-slider/content-slider.php:411
|
4458 |
+
#@ fl-builder
|
4459 |
msgid "Text & Video"
|
4460 |
msgstr "Testo e Video"
|
4461 |
|
|
|
4462 |
#: modules/content-slider/content-slider.php:412
|
4463 |
+
#@ fl-builder
|
4464 |
msgctxt "Content type."
|
4465 |
msgid "None"
|
4466 |
msgstr "Nessuno"
|
4467 |
|
4468 |
+
#: modules/content-slider/content-slider.php:435
|
4469 |
+
#: modules/video/video.php:147
|
4470 |
+
#@ fl-builder
|
4471 |
msgid "Video Embed Code"
|
4472 |
msgstr "Codice di embed del video"
|
4473 |
|
|
|
4474 |
#: modules/content-slider/content-slider.php:495
|
4475 |
+
#@ fl-builder
|
4476 |
msgid "Text Position"
|
4477 |
msgstr "Posizione testo"
|
4478 |
|
|
|
4479 |
#: modules/content-slider/content-slider.php:501
|
4480 |
+
#@ fl-builder
|
4481 |
+
msgid "The position will move the content layout selections left, right or center over the background of the slide."
|
4482 |
+
msgstr "La posizione sposterà le selezioni di layout contenuto a sinistra, destra o centrato sullo sfondo della slide."
|
|
|
|
|
|
|
4483 |
|
|
|
4484 |
#: modules/content-slider/content-slider.php:518
|
4485 |
+
#@ fl-builder
|
4486 |
msgid "Top Margin"
|
4487 |
msgstr "Margine alto"
|
4488 |
|
|
|
4489 |
#: modules/content-slider/content-slider.php:526
|
4490 |
+
#@ fl-builder
|
4491 |
msgid "Bottom Margin"
|
4492 |
msgstr "Margine basso"
|
4493 |
|
|
|
4494 |
#: modules/content-slider/content-slider.php:534
|
4495 |
+
#@ fl-builder
|
4496 |
msgid "Left Margin"
|
4497 |
msgstr "Margine sinistro"
|
4498 |
|
|
|
4499 |
#: modules/content-slider/content-slider.php:542
|
4500 |
+
#@ fl-builder
|
4501 |
msgid "Right Margin"
|
4502 |
msgstr "Margine destro"
|
4503 |
|
|
|
4504 |
#: modules/content-slider/content-slider.php:551
|
4505 |
+
#@ fl-builder
|
4506 |
msgid "Text Colors"
|
4507 |
msgstr "Colori del testo"
|
4508 |
|
|
|
4509 |
#: modules/content-slider/content-slider.php:561
|
4510 |
+
#@ fl-builder
|
4511 |
msgid "Text Shadow"
|
4512 |
msgstr "Ombra del testo"
|
4513 |
|
|
|
4514 |
#: modules/content-slider/content-slider.php:570
|
4515 |
#: modules/content-slider/content-slider.php:796
|
4516 |
#: modules/post-carousel/post-carousel.php:425
|
4517 |
+
#: modules/post-grid/post-grid.php:321
|
4518 |
+
#: modules/post-slider/post-slider.php:721
|
4519 |
+
#@ fl-builder
|
4520 |
msgid "Text Background Color"
|
4521 |
msgstr "Colore di sfondo del testo"
|
4522 |
|
|
|
4523 |
#: modules/content-slider/content-slider.php:571
|
4524 |
#: modules/post-carousel/post-carousel.php:427
|
4525 |
+
#: modules/post-grid/post-grid.php:323
|
4526 |
+
#: modules/post-slider/post-slider.php:722
|
4527 |
+
#@ fl-builder
|
4528 |
+
msgid "The color applies to the overlay behind text over the background selections."
|
4529 |
+
msgstr "Il colore si applica all'overlay dietro il testo sopra lo sfondo selezionato."
|
4530 |
|
|
|
4531 |
#: modules/content-slider/content-slider.php:576
|
4532 |
#: modules/post-carousel/post-carousel.php:437
|
4533 |
+
#: modules/post-grid/post-grid.php:328
|
4534 |
+
#: modules/post-slider/post-slider.php:728
|
4535 |
+
#@ fl-builder
|
4536 |
msgid "Text Background Opacity"
|
4537 |
msgstr "Opacità sfondo del testo"
|
4538 |
|
|
|
4539 |
#: modules/content-slider/content-slider.php:584
|
4540 |
#: modules/post-slider/post-slider.php:745
|
4541 |
+
#@ fl-builder
|
4542 |
msgid "Text Background Height"
|
4543 |
msgstr "Altezza sfondo del testo"
|
4544 |
|
|
|
4545 |
#: modules/content-slider/content-slider.php:586
|
4546 |
#: modules/post-slider/post-slider.php:747
|
4547 |
+
#@ fl-builder
|
4548 |
+
msgid "Auto will allow the overlay to fit however long the text content is. 100% will fit the overlay to the top and bottom of the slide."
|
4549 |
+
msgstr "Auto permetterà all'overlay di adattarsi a qualunque lunghezza del contenuto di testo. 100% adatta l'overlay alla parte superiore e inferiore della slide."
|
|
|
|
|
|
|
4550 |
|
|
|
4551 |
#: modules/content-slider/content-slider.php:588
|
4552 |
#: modules/post-slider/post-slider.php:749
|
4553 |
+
#@ fl-builder
|
4554 |
msgctxt "Background height."
|
4555 |
msgid "Auto"
|
4556 |
msgstr "Auto"
|
4557 |
|
|
|
4558 |
#: modules/content-slider/content-slider.php:605
|
4559 |
+
#@ fl-builder
|
4560 |
+
msgid "The link applies to the entire slide. If choosing a call to action type below, this link will also be used for the text or button."
|
4561 |
+
msgstr "Il collegamento si applica all'intera slide. Se si sceglie un tipo di call to action qui sotto, questo collegamento verrà utilizzato anche per il testo o pulsante."
|
|
|
|
|
|
|
|
|
4562 |
|
|
|
4563 |
#: modules/content-slider/content-slider.php:747
|
4564 |
+
#@ fl-builder
|
4565 |
msgid "Border Radius"
|
4566 |
msgstr "Raggio del bordo"
|
4567 |
|
|
|
4568 |
#: modules/content-slider/content-slider.php:758
|
4569 |
+
#@ fl-builder
|
4570 |
msgctxt "Module settings form tab. Display on mobile devices."
|
4571 |
msgid "Mobile"
|
4572 |
msgstr "Mobile"
|
4573 |
|
|
|
4574 |
#: modules/content-slider/content-slider.php:761
|
4575 |
+
#@ fl-builder
|
4576 |
msgid "Mobile Photo"
|
4577 |
msgstr "Foto mobile"
|
4578 |
|
|
|
4579 |
#: modules/content-slider/content-slider.php:767
|
4580 |
+
#@ fl-builder
|
4581 |
+
msgid "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
|
4582 |
+
msgstr "È possibile scegliere una foto diversa da visualizzare nella slide per i dispositivi mobili, o nessuna foto se lo si desidera."
|
|
|
|
|
|
|
4583 |
|
|
|
4584 |
#: modules/content-slider/content-slider.php:769
|
4585 |
+
#@ fl-builder
|
4586 |
msgid "Use Main Photo"
|
4587 |
msgstr "Utilizza foto principale"
|
4588 |
|
|
|
4589 |
#: modules/content-slider/content-slider.php:770
|
4590 |
+
#@ fl-builder
|
4591 |
msgid "Choose Another Photo"
|
4592 |
msgstr "Scegli un'altra foto"
|
4593 |
|
|
|
4594 |
#: modules/content-slider/content-slider.php:771
|
4595 |
+
#@ fl-builder
|
4596 |
msgid "No Photo"
|
4597 |
msgstr "Nessuna foto"
|
4598 |
|
|
|
4599 |
#: modules/content-slider/content-slider.php:786
|
4600 |
+
#@ fl-builder
|
4601 |
msgid "Mobile Text Colors"
|
4602 |
msgstr "Colori testo mobile"
|
4603 |
|
|
|
4604 |
#: modules/cta/cta.php:15
|
4605 |
+
#@ fl-builder
|
4606 |
msgid "Display a heading, subheading and a button."
|
4607 |
msgstr "Mostra un titolo, sottotitolo e un pulsante."
|
4608 |
|
|
|
4609 |
#: modules/cta/cta.php:77
|
4610 |
+
#@ fl-builder
|
4611 |
msgid "Ready to find out more?"
|
4612 |
msgstr "Pronti a saperne di più?"
|
4613 |
|
|
|
4614 |
#: modules/cta/cta.php:92
|
4615 |
+
#@ fl-builder
|
4616 |
msgid "Drop us a line today for a free quote!"
|
4617 |
msgstr "Mandaci oggi due righe per un preventivo gratuito!"
|
4618 |
|
4619 |
+
#: modules/countdown/countdown.php:148
|
4620 |
+
#: modules/cta/cta.php:110
|
4621 |
+
#: modules/gallery/gallery.php:228
|
4622 |
+
#: modules/menu/menu.php:92
|
4623 |
+
#: modules/numbers/numbers.php:66
|
4624 |
+
#: modules/post-carousel/post-carousel.php:118
|
4625 |
#: modules/post-carousel/post-carousel.php:207
|
4626 |
+
#: modules/post-grid/post-grid.php:44
|
4627 |
+
#: modules/post-slider/post-slider.php:433
|
4628 |
+
#: modules/subscribe-form/subscribe-form.php:110
|
4629 |
+
#: modules/tabs/tabs.php:53
|
4630 |
#: modules/testimonials/testimonials.php:38
|
4631 |
#: modules/woocommerce/woocommerce.php:58
|
4632 |
+
#@ fl-builder
|
4633 |
msgid "Layout"
|
4634 |
msgstr "Layout"
|
4635 |
|
4636 |
+
#: modules/cta/cta.php:113
|
4637 |
+
#: modules/subscribe-form/subscribe-form.php:114
|
4638 |
+
#@ fl-builder
|
4639 |
msgid "Inline"
|
4640 |
msgstr "In linea"
|
4641 |
|
4642 |
+
#: modules/cta/cta.php:114
|
4643 |
+
#: modules/subscribe-form/subscribe-form.php:113
|
4644 |
+
#@ fl-builder
|
4645 |
msgid "Stacked"
|
4646 |
msgstr "Impilati"
|
4647 |
|
4648 |
+
#: modules/cta/cta.php:134
|
4649 |
+
#: modules/icon-group/icon-group.php:100
|
4650 |
#: modules/pricing-table/pricing-table.php:108
|
4651 |
+
#@ fl-builder
|
4652 |
msgid "Spacing"
|
4653 |
msgstr "Spaziatura"
|
4654 |
|
|
|
4655 |
#: modules/cta/cta.php:247
|
4656 |
+
#@ fl-builder
|
4657 |
msgid "Button Link"
|
4658 |
msgstr "Collegamento pulsante"
|
4659 |
|
4660 |
+
#: modules/gallery/gallery.php:14
|
4661 |
+
#: modules/post-carousel/post-carousel.php:122
|
4662 |
#: modules/post-grid/post-grid.php:55
|
4663 |
+
#@ fl-builder
|
4664 |
msgid "Gallery"
|
4665 |
msgstr "Galleria"
|
4666 |
|
|
|
4667 |
#: modules/gallery/gallery.php:15
|
4668 |
+
#@ fl-builder
|
4669 |
msgid "Display multiple photos in a gallery view."
|
4670 |
msgstr "Visualizzare più foto in una galleria."
|
4671 |
|
|
|
4672 |
#: modules/gallery/gallery.php:231
|
4673 |
+
#@ fl-builder
|
4674 |
msgid "Collage"
|
4675 |
msgstr "Collage"
|
4676 |
|
|
|
4677 |
#: modules/gallery/gallery.php:232
|
4678 |
+
#@ fl-builder
|
4679 |
msgctxt "Gallery layout: thumbnails."
|
4680 |
msgid "Thumbs"
|
4681 |
msgstr "Miniature"
|
4682 |
|
|
|
4683 |
#: modules/gallery/gallery.php:268
|
4684 |
+
#@ fl-builder
|
4685 |
msgid "Photo Size"
|
4686 |
msgstr "Dimensione foto"
|
4687 |
|
|
|
4688 |
#: modules/gallery/gallery.php:271
|
4689 |
+
#@ fl-builder
|
4690 |
msgctxt "Photo size."
|
4691 |
msgid "Small"
|
4692 |
msgstr "Piccola"
|
4693 |
|
|
|
4694 |
#: modules/gallery/gallery.php:272
|
4695 |
+
#@ fl-builder
|
4696 |
msgctxt "Photo size."
|
4697 |
msgid "Medium"
|
4698 |
msgstr "Media"
|
4699 |
|
|
|
4700 |
#: modules/gallery/gallery.php:273
|
4701 |
+
#@ fl-builder
|
4702 |
msgctxt "Photo size."
|
4703 |
msgid "Large"
|
4704 |
msgstr "Grande"
|
4705 |
|
|
|
4706 |
#: modules/gallery/gallery.php:278
|
4707 |
+
#@ fl-builder
|
4708 |
msgid "Photo Spacing"
|
4709 |
msgstr "Spaziatura foto"
|
4710 |
|
|
|
4711 |
#: modules/gallery/gallery.php:286
|
4712 |
+
#@ fl-builder
|
4713 |
msgid "Show Captions"
|
4714 |
msgstr "Visualizza didascalie"
|
4715 |
|
4716 |
+
#: modules/gallery/gallery.php:289
|
4717 |
+
#: modules/photo/photo.php:486
|
4718 |
+
#@ fl-builder
|
4719 |
msgid "Never"
|
4720 |
msgstr "Mai"
|
4721 |
|
4722 |
+
#: modules/gallery/gallery.php:290
|
4723 |
+
#: modules/photo/photo.php:487
|
4724 |
+
#@ fl-builder
|
4725 |
msgid "On Hover"
|
4726 |
msgstr "Al passaggio del mouse"
|
4727 |
|
4728 |
+
#: modules/gallery/gallery.php:291
|
4729 |
+
#: modules/photo/photo.php:488
|
4730 |
+
#@ fl-builder
|
4731 |
msgid "Below Photo"
|
4732 |
msgstr "Sotto la foto"
|
4733 |
|
|
|
4734 |
#: modules/gallery/gallery.php:293
|
4735 |
+
#@ fl-builder
|
4736 |
+
msgid "The caption pulls from whatever text you put in the caption area in the media manager for each image. The caption is also pulled directly from SmugMug if you have captions set in your gallery."
|
4737 |
+
msgstr "La didascalia utilizza qualunque testo si inserisca per ciascuna immagine nell'area didascalia del media manager. Vengono direttamente utilizzate anche le didascalie di SmugMug se le hai impostate nella tua galleria."
|
|
|
|
|
|
|
|
|
|
|
4738 |
|
4739 |
+
#: modules/gallery/gallery.php:297
|
4740 |
+
#: modules/slideshow/slideshow.php:344
|
4741 |
+
#@ fl-builder
|
4742 |
msgid "Click Action"
|
4743 |
msgstr "Azione click"
|
4744 |
|
|
|
4745 |
#: modules/gallery/gallery.php:300
|
4746 |
+
#@ fl-builder
|
4747 |
msgctxt "Click action."
|
4748 |
msgid "None"
|
4749 |
msgstr "Nessuna"
|
4750 |
|
4751 |
+
#: modules/gallery/gallery.php:301
|
4752 |
+
#: modules/photo/photo.php:506
|
4753 |
+
#@ fl-builder
|
4754 |
msgid "Lightbox"
|
4755 |
msgstr "Lightbox"
|
4756 |
|
|
|
4757 |
#: modules/gallery/gallery.php:302
|
4758 |
+
#@ fl-builder
|
4759 |
msgid "Photo Link"
|
4760 |
msgstr "Collegamento foto"
|
4761 |
|
|
|
4762 |
#: modules/heading/heading.php:15
|
4763 |
+
#@ fl-builder
|
4764 |
msgid "Display a title/page heading."
|
4765 |
msgstr "Mostra titolo di pagina."
|
4766 |
|
|
|
4767 |
#: modules/heading/heading.php:102
|
4768 |
+
#@ fl-builder
|
4769 |
msgid "HTML Tag"
|
4770 |
msgstr "Tag HTML"
|
4771 |
|
4772 |
+
#: modules/heading/heading.php:141
|
4773 |
+
#: modules/heading/heading.php:201
|
4774 |
+
#@ fl-builder
|
4775 |
msgid "Custom Font Size"
|
4776 |
msgstr "Dimensione carattere personalizzata"
|
4777 |
|
|
|
4778 |
#: modules/heading/heading.php:150
|
4779 |
+
#@ fl-builder
|
4780 |
msgid "Mobile Structure"
|
4781 |
msgstr "Struttura mobile"
|
4782 |
|
|
|
4783 |
#: modules/heading/heading.php:171
|
4784 |
+
#@ fl-builder
|
4785 |
msgid "Custom Alignment"
|
4786 |
msgstr "Allineamento personalizzato"
|
4787 |
|
|
|
4788 |
#: modules/html/html.php:14
|
4789 |
+
#@ fl-builder
|
4790 |
msgid "HTML"
|
4791 |
msgstr "HTML"
|
4792 |
|
|
|
4793 |
#: modules/html/html.php:15
|
4794 |
+
#@ fl-builder
|
4795 |
msgid "Display raw HTML code."
|
4796 |
msgstr "Mostra codice HTML."
|
4797 |
|
|
|
4798 |
#: modules/icon-group/icon-group.php:14
|
4799 |
+
#@ fl-builder
|
4800 |
msgid "Icon Group"
|
4801 |
msgstr "Gruppo di icone"
|
4802 |
|
|
|
4803 |
#: modules/icon-group/icon-group.php:15
|
4804 |
+
#@ fl-builder
|
4805 |
msgid "Display a group of linked Font Awesome icons."
|
4806 |
msgstr "Mostra un gruppo di icone Font Awesome."
|
4807 |
|
|
|
4808 |
#: modules/icon-group/icon-group.php:126
|
4809 |
+
#@ fl-builder
|
4810 |
msgid "Add Icon"
|
4811 |
msgstr "Aggiungi icona"
|
4812 |
|
|
|
4813 |
#: modules/icon/icon.php:15
|
4814 |
+
#@ fl-builder
|
4815 |
msgid "Display an icon and optional title."
|
4816 |
msgstr "Mostra un'icona e un titolo opzionale."
|
4817 |
|
|
|
4818 |
#: modules/map/map.php:14
|
4819 |
+
#@ fl-builder
|
4820 |
msgid "Map"
|
4821 |
msgstr "Mappa"
|
4822 |
|
|
|
4823 |
#: modules/map/map.php:15
|
4824 |
+
#@ fl-builder
|
4825 |
msgid "Display a Google map."
|
4826 |
msgstr "Mostra una mappa di Google."
|
4827 |
|
|
|
4828 |
#: modules/map/map.php:34
|
4829 |
+
#@ fl-builder
|
4830 |
msgid "Address"
|
4831 |
msgstr "Indirizzo"
|
4832 |
|
|
|
4833 |
#: modules/map/map.php:35
|
4834 |
+
#@ fl-builder
|
4835 |
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
4836 |
msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
|
4837 |
|
4838 |
+
#: modules/menu/menu.php:14
|
4839 |
+
#: modules/menu/menu.php:26
|
4840 |
+
#: modules/menu/menu.php:64
|
4841 |
#: modules/menu/menu.php:71
|
4842 |
+
#@ fl-builder
|
4843 |
msgid "Menu"
|
4844 |
msgstr "Menu"
|
4845 |
|
|
|
4846 |
#: modules/menu/menu.php:15
|
4847 |
+
#@ fl-builder
|
4848 |
msgid "Renders a WordPress menu."
|
4849 |
msgstr "Visualizza un menu WordPress."
|
4850 |
|
|
|
4851 |
#: modules/menu/menu.php:27
|
4852 |
+
#@ fl-builder
|
4853 |
+
msgid "Select a WordPress menu that you created in the admin under Appearance > Menus."
|
4854 |
+
msgstr "Seleziona un menu WordPress che hai creato nel menu di amministrazione sotto Aspetto > Menu."
|
|
|
|
|
|
|
4855 |
|
|
|
4856 |
#: modules/menu/menu.php:44
|
4857 |
+
#@ fl-builder
|
4858 |
msgid "No Menus Found"
|
4859 |
msgstr "Nessun menu trovato"
|
4860 |
|
4861 |
+
#: modules/menu/menu.php:95
|
4862 |
+
#: modules/tabs/tabs.php:56
|
4863 |
+
#@ fl-builder
|
4864 |
msgid "Horizontal"
|
4865 |
msgstr "Orizzontale"
|
4866 |
|
4867 |
+
#: modules/menu/menu.php:96
|
4868 |
+
#: modules/tabs/tabs.php:57
|
4869 |
+
#@ fl-builder
|
4870 |
msgid "Vertical"
|
4871 |
msgstr "Verticale"
|
4872 |
|
4873 |
+
#: modules/menu/menu.php:98
|
4874 |
+
#: modules/menu/menu.php:136
|
4875 |
+
#@ fl-builder
|
4876 |
msgid "Expanded"
|
4877 |
msgstr "Espanso"
|
4878 |
|
|
|
4879 |
#: modules/menu/menu.php:114
|
4880 |
+
#@ fl-builder
|
4881 |
msgid "Submenu Icon"
|
4882 |
msgstr "Icona sottomenu"
|
4883 |
|
4884 |
+
#: modules/menu/menu.php:117
|
4885 |
+
#: modules/menu/menu.php:127
|
4886 |
+
#@ fl-builder
|
4887 |
msgid "Arrows"
|
4888 |
msgstr "Freccia"
|
4889 |
|
4890 |
+
#: modules/menu/menu.php:118
|
4891 |
+
#: modules/menu/menu.php:128
|
4892 |
+
#@ fl-builder
|
4893 |
msgid "Plus sign"
|
4894 |
msgstr "Segno più"
|
4895 |
|
4896 |
+
#: modules/contact-form/contact-form.php:138
|
4897 |
+
#: modules/menu/menu.php:119
|
4898 |
+
#: modules/menu/menu.php:247
|
4899 |
+
#: modules/pricing-table/pricing-table.php:84
|
4900 |
#: modules/pricing-table/pricing-table.php:113
|
4901 |
+
#@ fl-builder
|
4902 |
msgid "None"
|
4903 |
msgstr "Nessuna"
|
4904 |
|
|
|
4905 |
#: modules/menu/menu.php:124
|
4906 |
+
#@ fl-builder
|
4907 |
msgid "Submenu Icon click"
|
4908 |
msgstr "Click icona sottomenu"
|
4909 |
|
|
|
4910 |
#: modules/menu/menu.php:133
|
4911 |
+
#@ fl-builder
|
4912 |
msgid "Mobile Style"
|
4913 |
msgstr "Stile mobile"
|
4914 |
|
|
|
4915 |
#: modules/menu/menu.php:137
|
4916 |
+
#@ fl-builder
|
4917 |
msgid "Hamburger Icon"
|
4918 |
msgstr "Icona lista"
|
4919 |
|
|
|
4920 |
#: modules/menu/menu.php:139
|
4921 |
+
#@ fl-builder
|
4922 |
msgid "Menu Button"
|
4923 |
msgstr "Pulsante menu"
|
4924 |
|
|
|
4925 |
#: modules/menu/menu.php:177
|
4926 |
+
#@ fl-builder
|
4927 |
msgid "Menu Alignment"
|
4928 |
msgstr "Allineamento menu"
|
4929 |
|
|
|
4930 |
#: modules/menu/menu.php:188
|
4931 |
+
#@ fl-builder
|
4932 |
msgid "Submenu Drop Shadow"
|
4933 |
msgstr "Ombra sottomenu"
|
4934 |
|
|
|
4935 |
#: modules/menu/menu.php:230
|
4936 |
+
#@ fl-builder
|
4937 |
msgid "Link Size"
|
4938 |
msgstr "Dimensione link"
|
4939 |
|
|
|
4940 |
#: modules/menu/menu.php:244
|
4941 |
+
#@ fl-builder
|
4942 |
msgid "Link Format"
|
4943 |
msgstr "Formato link"
|
4944 |
|
|
|
4945 |
#: modules/menu/menu.php:248
|
4946 |
+
#@ fl-builder
|
4947 |
msgid "Uppercase"
|
4948 |
msgstr "Maiuscolo"
|
4949 |
|
|
|
4950 |
#: modules/menu/menu.php:249
|
4951 |
+
#@ fl-builder
|
4952 |
msgid "Lowercase"
|
4953 |
msgstr "Minuscolo"
|
4954 |
|
|
|
4955 |
#: modules/menu/menu.php:250
|
4956 |
+
#@ fl-builder
|
4957 |
msgid "Capitalize"
|
4958 |
msgstr "Capitalizza"
|
4959 |
|
|
|
4960 |
#: modules/menu/menu.php:260
|
4961 |
+
#@ fl-builder
|
4962 |
msgid "Link Weight"
|
4963 |
msgstr "Peso link"
|
4964 |
|
|
|
4965 |
#: modules/menu/menu.php:263
|
4966 |
+
#@ fl-builder
|
4967 |
msgid "Normal"
|
4968 |
msgstr "Normale"
|
4969 |
|
|
|
4970 |
#: modules/menu/menu.php:264
|
4971 |
+
#@ fl-builder
|
4972 |
msgid "Bold"
|
4973 |
msgstr "Grassetto"
|
4974 |
|
4975 |
+
#: modules/audio/audio.php:151
|
4976 |
+
#: modules/menu/menu.php:265
|
4977 |
+
#@ fl-builder
|
4978 |
msgid "Light"
|
4979 |
msgstr "Leggero"
|
4980 |
|
|
|
4981 |
#: modules/menu/menu.php:275
|
4982 |
+
#@ fl-builder
|
4983 |
msgid "Horizontal Spacing"
|
4984 |
msgstr "Spaziatura orizontale"
|
4985 |
|
|
|
4986 |
#: modules/menu/menu.php:298
|
4987 |
+
#@ fl-builder
|
4988 |
msgid "Vertical Spacing"
|
4989 |
msgstr "Spaziatura verticale"
|
4990 |
|
4991 |
+
#: modules/countdown/countdown.php:290
|
4992 |
+
#: modules/menu/menu.php:323
|
4993 |
+
#@ fl-builder
|
4994 |
msgid "Backgrounds"
|
4995 |
msgstr "Sfondi"
|
4996 |
|
|
|
4997 |
#: modules/menu/menu.php:327
|
4998 |
+
#@ fl-builder
|
4999 |
msgid "Menu Background Color"
|
5000 |
msgstr "Colore sfondo menu"
|
5001 |
|
|
|
5002 |
#: modules/menu/menu.php:342
|
5003 |
+
#@ fl-builder
|
5004 |
msgid "Menu Background Opacity"
|
5005 |
msgstr "Opacità sfondo menu"
|
5006 |
|
|
|
5007 |
#: modules/menu/menu.php:350
|
5008 |
+
#@ fl-builder
|
5009 |
msgid "Submenu Background Color"
|
5010 |
msgstr "Colore sfondo menu"
|
5011 |
|
|
|
5012 |
#: modules/menu/menu.php:370
|
5013 |
+
#@ fl-builder
|
5014 |
msgid "Link Background Hover Color"
|
5015 |
msgstr "Colore hover sfondo del link"
|
5016 |
|
5017 |
+
#: modules/countdown/countdown.php:327
|
5018 |
+
#: modules/menu/menu.php:381
|
5019 |
#: modules/separator/separator.php:14
|
5020 |
+
#@ fl-builder
|
5021 |
msgid "Separator"
|
5022 |
msgstr "Separatore"
|
5023 |
|
|
|
5024 |
#: modules/menu/menu.php:385
|
5025 |
+
#@ fl-builder
|
5026 |
msgid "Show Separators"
|
5027 |
msgstr "Visualizza separatori"
|
5028 |
|
5029 |
+
#: modules/countdown/countdown.php:359
|
5030 |
+
#: modules/menu/menu.php:399
|
5031 |
+
#@ fl-builder
|
5032 |
msgid "Separator Color"
|
5033 |
msgstr "Colore separatore"
|
5034 |
|
|
|
5035 |
#: modules/menu/menu.php:404
|
5036 |
+
#@ fl-builder
|
5037 |
msgid "Separator Opacity"
|
5038 |
msgstr "Opacità separatore"
|
5039 |
|
|
|
5040 |
#: modules/photo/photo.php:26
|
5041 |
+
#@ fl-builder
|
5042 |
msgid "Upload a photo or display one from the media library."
|
5043 |
msgstr "Carica una foto o mostrane una dalla libreria multimediale."
|
5044 |
|
|
|
5045 |
#: modules/photo/photo.php:429
|
5046 |
+
#@ fl-builder
|
5047 |
msgid "Photo Source"
|
5048 |
msgstr "Sorgente foto"
|
5049 |
|
5050 |
+
#: modules/photo/photo.php:433
|
5051 |
+
#: modules/photo/photo.php:505
|
5052 |
+
#@ fl-builder
|
5053 |
msgid "URL"
|
5054 |
msgstr "URL"
|
5055 |
|
|
|
5056 |
#: modules/photo/photo.php:450
|
5057 |
+
#@ fl-builder
|
5058 |
msgid "Photo URL"
|
5059 |
msgstr "URL foto"
|
5060 |
|
|
|
5061 |
#: modules/photo/photo.php:451
|
5062 |
+
#@ fl-builder
|
5063 |
msgid "http://www.example.com/my-photo.jpg"
|
5064 |
msgstr "http://www.example.com/my-photo.jpg"
|
5065 |
|
5066 |
+
#: modules/photo/photo.php:479
|
5067 |
+
#: modules/photo/photo.php:493
|
5068 |
+
#@ fl-builder
|
5069 |
msgid "Caption"
|
5070 |
msgstr "Didascalia"
|
5071 |
|
|
|
5072 |
#: modules/photo/photo.php:483
|
5073 |
+
#@ fl-builder
|
5074 |
msgid "Show Caption"
|
5075 |
msgstr "Mostra didascalia"
|
5076 |
|
|
|
5077 |
#: modules/photo/photo.php:502
|
5078 |
+
#@ fl-builder
|
5079 |
msgid "Link Type"
|
5080 |
msgstr "Tipo di collegamento"
|
5081 |
|
|
|
5082 |
#: modules/photo/photo.php:504
|
5083 |
+
#@ fl-builder
|
5084 |
msgctxt "Link type."
|
5085 |
msgid "None"
|
5086 |
msgstr "Nessuno"
|
5087 |
|
|
|
5088 |
#: modules/photo/photo.php:507
|
5089 |
+
#@ fl-builder
|
5090 |
msgid "Photo File"
|
5091 |
msgstr "File foto"
|
5092 |
|
|
|
5093 |
#: modules/photo/photo.php:518
|
5094 |
+
#@ fl-builder
|
5095 |
+
msgid "Link type applies to how the image should be linked on click. You can choose a specific URL, the individual photo or a separate page with the photo."
|
5096 |
+
msgstr "Il tipo di collegamento si applica a cosa dovrebbe essere collegato al clic. È possibile scegliere un URL specifico, la singola foto o una pagina separata per la foto."
|
|
|
|
|
|
|
|
|
5097 |
|
5098 |
+
#: modules/photo/photo.php:525
|
5099 |
+
#: modules/slideshow/slideshow.php:365
|
5100 |
+
#@ fl-builder
|
5101 |
msgid "Link URL"
|
5102 |
msgstr "URL collegamento"
|
5103 |
|
|
|
5104 |
#: modules/post-carousel/includes/post-gallery-loop.php:35
|
5105 |
#: modules/post-carousel/includes/post-grid-loop.php:22
|
5106 |
#: modules/post-grid/includes/post-feed.php:14
|
5107 |
#: modules/post-grid/includes/post-grid.php:24
|
5108 |
#: modules/post-slider/includes/post-loop.php:29
|
5109 |
#, php-format
|
5110 |
+
#@ fl-builder
|
5111 |
msgctxt "%s stands for author name."
|
5112 |
msgid "By %s"
|
5113 |
msgstr "Di %s"
|
5114 |
|
|
|
5115 |
#: modules/post-carousel/post-carousel.php:14
|
5116 |
+
#@ fl-builder
|
5117 |
msgid "Posts Carousel"
|
5118 |
msgstr "Carosello Articoli"
|
5119 |
|
|
|
5120 |
#: modules/post-carousel/post-carousel.php:15
|
5121 |
+
#@ fl-builder
|
5122 |
msgid "Display a carousel of your WordPress posts."
|
5123 |
msgstr "Mostra un carosello dei tuoi articoli WordPress."
|
5124 |
|
|
|
5125 |
#: modules/post-carousel/post-carousel.php:111
|
5126 |
#: modules/post-slider/post-slider.php:338
|
5127 |
+
#@ fl-builder
|
5128 |
msgid "Slider"
|
5129 |
msgstr "Slider"
|
5130 |
|
|
|
5131 |
#: modules/post-carousel/post-carousel.php:121
|
5132 |
+
#: modules/post-grid/post-grid.php:54
|
5133 |
+
#: modules/post-grid/post-grid.php:100
|
5134 |
+
#@ fl-builder
|
5135 |
msgid "Grid"
|
5136 |
msgstr "Griglia"
|
5137 |
|
5138 |
+
#: modules/audio/audio.php:132
|
5139 |
+
#: modules/post-carousel/post-carousel.php:153
|
5140 |
+
#: modules/post-slider/post-slider.php:379
|
5141 |
+
#: modules/video/video.php:135
|
5142 |
+
#@ fl-builder
|
5143 |
msgid "Loop"
|
5144 |
msgstr "Ripeti"
|
5145 |
|
|
|
5146 |
#: modules/post-carousel/post-carousel.php:169
|
5147 |
#: modules/post-slider/post-slider.php:395
|
5148 |
+
#@ fl-builder
|
5149 |
msgid "Number of Posts"
|
5150 |
msgstr "Numero di articoli"
|
5151 |
|
|
|
5152 |
#: modules/post-carousel/post-carousel.php:176
|
5153 |
#: modules/post-slider/post-slider.php:402
|
5154 |
+
#@ fl-builder
|
5155 |
msgid "Slider Controls"
|
5156 |
msgstr "Controlli slider"
|
5157 |
|
|
|
5158 |
#: modules/post-carousel/post-carousel.php:210
|
5159 |
#: modules/post-grid/post-grid.php:14
|
5160 |
+
#@ fl-builder
|
5161 |
msgid "Posts"
|
5162 |
msgstr "Posts"
|
5163 |
|
|
|
5164 |
#: modules/post-carousel/post-carousel.php:214
|
5165 |
+
#@ fl-builder
|
5166 |
msgid "Post Max Width"
|
5167 |
msgstr "Massima larghezza articoli"
|
5168 |
|
|
|
5169 |
#: modules/post-carousel/post-carousel.php:222
|
5170 |
#: modules/post-grid/post-grid.php:112
|
5171 |
+
#@ fl-builder
|
5172 |
msgid "Post Spacing"
|
5173 |
msgstr "Spaziatura post"
|
5174 |
|
5175 |
+
#: includes/column-settings.php:25
|
5176 |
+
#: modules/post-carousel/post-carousel.php:230
|
5177 |
+
#@ fl-builder
|
5178 |
msgid "Equalize Column Heights"
|
5179 |
msgstr "Uniforma l'altezza delle colonne"
|
5180 |
|
|
|
5181 |
#: modules/post-carousel/post-carousel.php:239
|
5182 |
+
#@ fl-builder
|
5183 |
msgid "Post Hover Transition"
|
5184 |
msgstr "Transizione articolo al passaggio del mouse"
|
5185 |
|
|
|
5186 |
#: modules/post-carousel/post-carousel.php:243
|
5187 |
#: modules/post-grid/post-grid.php:257
|
5188 |
+
#@ fl-builder
|
5189 |
msgid "Slide Up"
|
5190 |
msgstr "Slide Su"
|
5191 |
|
|
|
5192 |
#: modules/post-carousel/post-carousel.php:244
|
5193 |
#: modules/post-grid/post-grid.php:258
|
5194 |
+
#@ fl-builder
|
5195 |
msgid "Slide Down"
|
5196 |
msgstr "Slide Giù"
|
5197 |
|
|
|
5198 |
#: modules/post-carousel/post-carousel.php:245
|
5199 |
#: modules/post-grid/post-grid.php:259
|
5200 |
+
#@ fl-builder
|
5201 |
msgid "Scale Up"
|
5202 |
msgstr "Ingrandire"
|
5203 |
|
|
|
5204 |
#: modules/post-carousel/post-carousel.php:246
|
5205 |
#: modules/post-grid/post-grid.php:260
|
5206 |
+
#@ fl-builder
|
5207 |
msgid "Scale Down"
|
5208 |
msgstr "Ridurre"
|
5209 |
|
|
|
5210 |
#: modules/post-carousel/post-carousel.php:252
|
5211 |
+
#: modules/post-grid/post-grid.php:121
|
5212 |
+
#: modules/post-slider/post-slider.php:456
|
5213 |
+
#@ fl-builder
|
5214 |
msgid "Featured Image"
|
5215 |
msgstr "Immagine in evidenza"
|
5216 |
|
|
|
5217 |
#: modules/post-carousel/post-carousel.php:293
|
5218 |
#: modules/post-grid/post-grid.php:270
|
5219 |
+
#@ fl-builder
|
5220 |
msgid "Use Icon for Posts"
|
5221 |
msgstr "Usa icona per articoli"
|
5222 |
|
|
|
5223 |
#: modules/post-carousel/post-carousel.php:307
|
5224 |
#: modules/post-grid/post-grid.php:284
|
5225 |
+
#@ fl-builder
|
5226 |
msgid "Post Icon"
|
5227 |
msgstr "Icona articolo"
|
5228 |
|
|
|
5229 |
#: modules/post-carousel/post-carousel.php:311
|
5230 |
#: modules/post-grid/post-grid.php:288
|
5231 |
+
#@ fl-builder
|
5232 |
msgid "Post Icon Position"
|
5233 |
msgstr "Posizione icona articolo"
|
5234 |
|
|
|
5235 |
#: modules/post-carousel/post-carousel.php:314
|
5236 |
+
#: modules/post-grid/post-grid.php:142
|
5237 |
+
#: modules/post-grid/post-grid.php:291
|
5238 |
+
#@ fl-builder
|
5239 |
msgid "Above Text"
|
5240 |
msgstr "Sopra il testo"
|
5241 |
|
|
|
5242 |
#: modules/post-carousel/post-carousel.php:315
|
5243 |
#: modules/post-grid/post-grid.php:292
|
5244 |
+
#@ fl-builder
|
5245 |
msgid "Below Text"
|
5246 |
msgstr "Sotto il testo"
|
5247 |
|
|
|
5248 |
#: modules/post-carousel/post-carousel.php:320
|
5249 |
#: modules/post-grid/post-grid.php:297
|
5250 |
+
#@ fl-builder
|
5251 |
msgid "Post Icon Size"
|
5252 |
msgstr "Dimensione icona articolo"
|
5253 |
|
|
|
5254 |
#: modules/post-carousel/post-carousel.php:329
|
5255 |
+
#: modules/post-grid/post-grid.php:154
|
5256 |
+
#: modules/post-slider/post-slider.php:495
|
5257 |
+
#@ fl-builder
|
5258 |
msgid "Post Info"
|
5259 |
msgstr "Informazioni post"
|
5260 |
|
|
|
5261 |
#: modules/post-carousel/post-carousel.php:356
|
5262 |
+
#: modules/post-grid/post-grid.php:181
|
5263 |
+
#: modules/post-slider/post-slider.php:522
|
5264 |
+
#@ fl-builder
|
5265 |
msgid "Date Format"
|
5266 |
msgstr "Formato data"
|
5267 |
|
|
|
5268 |
#: modules/post-carousel/post-carousel.php:386
|
5269 |
+
#: modules/post-grid/post-grid.php:229
|
5270 |
+
#: modules/post-slider/post-slider.php:561
|
5271 |
+
#@ fl-builder
|
5272 |
msgid "More Link"
|
5273 |
msgstr "Collegamento \"Leggi tutto\""
|
5274 |
|
|
|
5275 |
#: modules/post-carousel/post-carousel.php:395
|
5276 |
+
#: modules/post-grid/post-grid.php:238
|
5277 |
+
#: modules/post-slider/post-slider.php:570
|
5278 |
+
#@ fl-builder
|
5279 |
msgid "More Link Text"
|
5280 |
msgstr "Testo \"Leggi tutto\""
|
5281 |
|
|
|
5282 |
#: modules/post-carousel/post-carousel.php:432
|
5283 |
#: modules/post-grid/post-grid.php:316
|
5284 |
+
#@ fl-builder
|
5285 |
msgid "Post Icon Color"
|
5286 |
msgstr "Colore icona articolo"
|
5287 |
|
|
|
5288 |
#: modules/post-grid/includes/frontend.php:41
|
5289 |
+
#@ fl-builder
|
5290 |
msgid "No posts found."
|
5291 |
msgstr "Nessun post trovato."
|
5292 |
|
|
|
5293 |
#: modules/post-grid/post-grid.php:15
|
5294 |
+
#@ fl-builder
|
5295 |
msgid "Display a grid of your WordPress posts."
|
5296 |
msgstr "Mostra una griglia con i tuoi post WordPress."
|
5297 |
|
|
|
5298 |
#: modules/post-grid/post-grid.php:51
|
5299 |
+
#@ fl-builder
|
5300 |
msgid "Layout Style"
|
5301 |
msgstr "Stile di layout"
|
5302 |
|
|
|
5303 |
#: modules/post-grid/post-grid.php:56
|
5304 |
+
#@ fl-builder
|
5305 |
msgid "Feed"
|
5306 |
msgstr "Feed"
|
5307 |
|
|
|
5308 |
#: modules/post-grid/post-grid.php:83
|
5309 |
+
#@ fl-builder
|
5310 |
msgid "Pagination Style"
|
5311 |
msgstr "Stile paginazione"
|
5312 |
|
5313 |
+
#: modules/countdown/countdown.php:151
|
5314 |
+
#: modules/post-grid/post-grid.php:86
|
5315 |
+
#@ fl-builder
|
5316 |
msgid "Numbers"
|
5317 |
msgstr "Numeri"
|
5318 |
|
|
|
5319 |
#: modules/post-grid/post-grid.php:88
|
5320 |
+
#@ fl-builder
|
5321 |
msgctxt "Pagination style."
|
5322 |
msgid "None"
|
5323 |
msgstr "Nessuna"
|
5324 |
|
|
|
5325 |
#: modules/post-grid/post-grid.php:93
|
5326 |
+
#@ fl-builder
|
5327 |
msgid "Posts Per Page"
|
5328 |
msgstr "Post per pagina"
|
5329 |
|
|
|
5330 |
#: modules/post-grid/post-grid.php:104
|
5331 |
+
#@ fl-builder
|
5332 |
msgid "Post Width"
|
5333 |
msgstr "Larghezza post"
|
5334 |
|
|
|
5335 |
#: modules/post-grid/post-grid.php:143
|
5336 |
+
#@ fl-builder
|
5337 |
msgid "Beside Text"
|
5338 |
msgstr "Accanto al testo"
|
5339 |
|
5340 |
+
#: modules/post-grid/post-grid.php:197
|
5341 |
+
#: modules/post-slider/post-slider.php:538
|
5342 |
+
#@ fl-builder
|
5343 |
msgid "Comments"
|
5344 |
msgstr "Commenti"
|
5345 |
|
|
|
5346 |
#: modules/post-grid/post-grid.php:220
|
5347 |
+
#@ fl-builder
|
5348 |
msgid "Content Type"
|
5349 |
msgstr "Tipo di contenuto"
|
5350 |
|
|
|
5351 |
#: modules/post-grid/post-grid.php:223
|
5352 |
+
#@ fl-builder
|
5353 |
msgid "Excerpt"
|
5354 |
msgstr "Riassunto"
|
5355 |
|
|
|
5356 |
#: modules/post-grid/post-grid.php:224
|
5357 |
+
#@ fl-builder
|
5358 |
msgid "Full Text"
|
5359 |
msgstr "Testo completo"
|
5360 |
|
|
|
5361 |
#: modules/post-grid/post-grid.php:253
|
5362 |
+
#@ fl-builder
|
5363 |
msgid "Hover Transition"
|
5364 |
msgstr "Transizione al passaggio del mouse"
|
5365 |
|
|
|
5366 |
#: modules/post-slider/post-slider.php:14
|
5367 |
+
#@ fl-builder
|
5368 |
msgid "Posts Slider"
|
5369 |
msgstr "Slider Articoli"
|
5370 |
|
|
|
5371 |
#: modules/post-slider/post-slider.php:15
|
5372 |
+
#@ fl-builder
|
5373 |
msgid "Display a slider of your WordPress posts."
|
5374 |
msgstr "Visualizza uno slider dei tuoi articoli WordPress."
|
5375 |
|
|
|
5376 |
#: modules/post-slider/post-slider.php:350
|
5377 |
+
#@ fl-builder
|
5378 |
+
msgid "This setting is the minimum height of the post slider. Content will expand the height automatically."
|
5379 |
+
msgstr "Questa impostazione è l'altezza minima dello slider di articoli. Il contenuto espanderà l'altezza automaticamente."
|
|
|
|
|
|
|
5380 |
|
|
|
5381 |
#: modules/post-slider/post-slider.php:440
|
5382 |
+
#@ fl-builder
|
5383 |
msgid "Show Featured Image?"
|
5384 |
msgstr "Mostra immagine in evidenza?"
|
5385 |
|
|
|
5386 |
#: modules/post-slider/post-slider.php:628
|
5387 |
+
#@ fl-builder
|
5388 |
+
msgid "The position will move the content layout selections left, right or bottom over the background of the slide."
|
5389 |
+
msgstr "La posizione sposterà il layout del contenuto selezionato a sinistra, destra o in basso sopra lo sfondo della slide."
|
|
|
|
|
|
|
5390 |
|
|
|
5391 |
#: modules/post-slider/post-slider.php:647
|
5392 |
+
#@ fl-builder
|
5393 |
+
msgid "The position will move the content layout selections left or right or center of the thumbnail of the slide."
|
5394 |
+
msgstr "La posizione sposterà il contenuto selezionato a sinistra, destra o al centro dell'immagine di anteprima della slide."
|
|
|
|
|
|
|
5395 |
|
|
|
5396 |
#: modules/post-slider/post-slider.php:663
|
5397 |
+
#@ fl-builder
|
5398 |
msgid "Text Width"
|
5399 |
msgstr "Larghezza testo"
|
5400 |
|
|
|
5401 |
#: modules/post-slider/post-slider.php:671
|
5402 |
+
#@ fl-builder
|
5403 |
msgid "Text Padding"
|
5404 |
msgstr "Padding testo"
|
5405 |
|
|
|
5406 |
#: modules/post-slider/post-slider.php:736
|
5407 |
+
#@ fl-builder
|
5408 |
msgid "Text Background Gradient"
|
5409 |
msgstr "Gradiente di sfondo del testo"
|
5410 |
|
|
|
5411 |
#: modules/pricing-table/pricing-table.php:14
|
5412 |
+
#@ fl-builder
|
5413 |
msgid "Pricing Table"
|
5414 |
msgstr "Tabella dei prezzi"
|
5415 |
|
|
|
5416 |
#: modules/pricing-table/pricing-table.php:15
|
5417 |
+
#@ fl-builder
|
5418 |
msgid "A simple pricing table generator."
|
5419 |
msgstr "Un semplice generatore di tabelle dei prezzi."
|
5420 |
|
|
|
5421 |
#: modules/pricing-table/pricing-table.php:55
|
5422 |
+
#@ fl-builder
|
5423 |
msgid "Pricing Boxes"
|
5424 |
msgstr "Riquadri dei prezzi"
|
5425 |
|
|
|
5426 |
#: modules/pricing-table/pricing-table.php:62
|
5427 |
+
#@ fl-builder
|
5428 |
msgid "Pricing Box"
|
5429 |
msgstr "Riquadro prezzo"
|
5430 |
|
|
|
5431 |
#: modules/testimonials/testimonials.php:41
|
5432 |
+
#@ fl-builder
|
5433 |
msgid "Wide"
|
5434 |
msgstr "Ampia"
|
5435 |
|
|
|
5436 |
#: modules/pricing-table/pricing-table.php:118
|
5437 |
+
#@ fl-builder
|
5438 |
msgid "Features Min Height"
|
5439 |
msgstr "Min altezza caratteristiche"
|
5440 |
|
|
|
5441 |
#: modules/pricing-table/pricing-table.php:122
|
5442 |
+
#@ fl-builder
|
5443 |
+
msgid "Use this to normalize the height of your boxes when they have different numbers of features."
|
5444 |
+
msgstr "Usatelo per normalizzare l'altezza dei vostri riquadri quando hanno un diverso numero di funzionalità."
|
|
|
|
|
|
|
5445 |
|
|
|
5446 |
#: modules/pricing-table/pricing-table.php:131
|
5447 |
+
#@ fl-builder
|
5448 |
msgid "Add Pricing Box"
|
5449 |
msgstr "Aggiungi riquadro prezzo"
|
5450 |
|
|
|
5451 |
#: modules/pricing-table/pricing-table.php:145
|
5452 |
+
#@ fl-builder
|
5453 |
msgid "Title Size"
|
5454 |
msgstr "Dimensione del titolo"
|
5455 |
|
|
|
5456 |
#: modules/pricing-table/pricing-table.php:154
|
5457 |
+
#@ fl-builder
|
5458 |
msgid "Price Box"
|
5459 |
msgstr "Riquadro prezzo"
|
5460 |
|
|
|
5461 |
#: modules/pricing-table/pricing-table.php:82
|
5462 |
#: modules/pricing-table/pricing-table.php:158
|
5463 |
#: modules/woocommerce/woocommerce.php:195
|
5464 |
+
#@ fl-builder
|
5465 |
msgid "Price"
|
5466 |
msgstr "Prezzo"
|
5467 |
|
|
|
5468 |
#: modules/pricing-table/pricing-table.php:162
|
5469 |
+
#@ fl-builder
|
5470 |
msgid "Duration"
|
5471 |
msgstr "Durata"
|
5472 |
|
|
|
5473 |
#: modules/pricing-table/pricing-table.php:163
|
5474 |
+
#@ fl-builder
|
5475 |
msgid "per Year"
|
5476 |
msgstr "per anno"
|
5477 |
|
|
|
5478 |
#: modules/pricing-table/pricing-table.php:167
|
5479 |
+
#@ fl-builder
|
5480 |
msgid "Price Size"
|
5481 |
msgstr "Dimensione prezzo"
|
5482 |
|
|
|
5483 |
#: modules/pricing-table/pricing-table.php:196
|
5484 |
#: modules/subscribe-form/subscribe-form.php:179
|
5485 |
+
#@ fl-builder
|
5486 |
msgid "Button Text"
|
5487 |
msgstr "Testo del pulsante "
|
5488 |
|
|
|
5489 |
#: modules/pricing-table/pricing-table.php:201
|
5490 |
+
#@ fl-builder
|
5491 |
msgid "Button URL"
|
5492 |
msgstr "URL pulsante"
|
5493 |
|
|
|
5494 |
#: modules/pricing-table/pricing-table.php:176
|
5495 |
+
#@ fl-builder
|
5496 |
msgctxt "Price features displayed in pricing box."
|
5497 |
msgid "Features"
|
5498 |
msgstr "Caratteristiche"
|
5499 |
|
|
|
5500 |
#: modules/pricing-table/pricing-table.php:181
|
5501 |
+
#@ fl-builder
|
5502 |
msgid "One feature per line. HTML is okay."
|
5503 |
msgstr "Una caratteristica per ogni riga. HTML va bene."
|
5504 |
|
|
|
5505 |
#: modules/pricing-table/pricing-table.php:364
|
5506 |
+
#@ fl-builder
|
5507 |
msgid "Box Foreground"
|
5508 |
msgstr "Riempimento riquadro"
|
5509 |
|
|
|
5510 |
#: modules/pricing-table/pricing-table.php:370
|
5511 |
+
#@ fl-builder
|
5512 |
msgid "Accent Color"
|
5513 |
msgstr "Colore di accento"
|
5514 |
|
|
|
5515 |
#: modules/pricing-table/pricing-table.php:375
|
5516 |
+
#@ fl-builder
|
5517 |
msgid "Accent Text Color"
|
5518 |
msgstr "Colore accento del testo"
|
5519 |
|
|
|
5520 |
#: modules/pricing-table/pricing-table.php:379
|
5521 |
+
#@ fl-builder
|
5522 |
msgid "Box Top Margin"
|
5523 |
msgstr "Margine superiore del box"
|
5524 |
|
|
|
5525 |
#: modules/rich-text/rich-text.php:15
|
5526 |
+
#@ fl-builder
|
5527 |
msgid "A WYSIWYG text editor."
|
5528 |
msgstr "Un editor di testo WYSIWYG."
|
5529 |
|
|
|
5530 |
#: modules/separator/separator.php:15
|
5531 |
+
#@ fl-builder
|
5532 |
msgid "A divider line to separate content."
|
5533 |
msgstr "Una linea divisore per separare il contenuto."
|
5534 |
|
|
|
5535 |
#: modules/separator/separator.php:86
|
5536 |
+
#@ fl-builder
|
5537 |
+
msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
|
5538 |
+
msgstr "Il tipo di bordo da utilizzare. I bordi doppi devono avere un'altezza di almeno 3px per essere visualizzati correttamente."
|
|
|
|
|
|
|
5539 |
|
|
|
5540 |
#: modules/sidebar/includes/settings-general.php:5
|
5541 |
#: modules/sidebar/sidebar.php:14
|
5542 |
+
#@ fl-builder
|
5543 |
msgid "Sidebar"
|
5544 |
msgstr "Sidebar"
|
5545 |
|
|
|
5546 |
#: modules/sidebar/sidebar.php:15
|
5547 |
+
#@ fl-builder
|
5548 |
+
msgid "Display a WordPress sidebar that has been registered by the current theme."
|
5549 |
+
msgstr "Mostra una sidebar di WordPress che è stata registrata dal tema corrente."
|
|
|
5550 |
|
|
|
5551 |
#: modules/slideshow/slideshow.php:14
|
5552 |
+
#@ fl-builder
|
5553 |
msgid "Slideshow"
|
5554 |
msgstr "Slideshow"
|
5555 |
|
|
|
5556 |
#: modules/slideshow/slideshow.php:15
|
5557 |
+
#@ fl-builder
|
5558 |
msgid "Display multiple photos in a slideshow view."
|
5559 |
msgstr "Mostra più foto in uno slideshow."
|
5560 |
|
|
|
5561 |
#: modules/slideshow/slideshow.php:311
|
5562 |
+
#@ fl-builder
|
5563 |
msgid "Skin Color"
|
5564 |
msgstr "Colore skin"
|
5565 |
|
|
|
5566 |
#: modules/slideshow/slideshow.php:314
|
5567 |
+
#@ fl-builder
|
5568 |
msgctxt "Color."
|
5569 |
msgid "Light"
|
5570 |
msgstr "Chiaro"
|
5571 |
|
|
|
5572 |
#: modules/slideshow/slideshow.php:315
|
5573 |
+
#@ fl-builder
|
5574 |
msgctxt "Color."
|
5575 |
msgid "Dark"
|
5576 |
msgstr "Scuro"
|
5577 |
|
|
|
5578 |
#: modules/slideshow/slideshow.php:317
|
5579 |
+
#@ fl-builder
|
5580 |
+
msgid "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and vice versa for dark."
|
5581 |
+
msgstr "Se complessivamente il tuo tema/immagini sono di colore chiaro, l'impostazione Chiaro mostrerà i pulsanti con uno schema di colore più scuro e viceversa per l'impostazione Scuro."
|
|
|
|
|
|
|
|
|
5582 |
|
|
|
5583 |
#: modules/slideshow/slideshow.php:327
|
5584 |
+
#@ fl-builder
|
5585 |
+
msgid "Crop set to no will fit the slideshow images to the height you specify and keep the width proportional, whereas crop set to yes will fit the slideshow images to all sides of the content area while cropping the left and right to fit the height you specify."
|
5586 |
+
msgstr "Ritaglia impostatato su No adatterà le immagini dello slideshow all'altezza che specifichi mantenendo la larghezza in proporzione, mentre Ritaglia impostato su Si adatterà le immagini dello slideshow su tutti i lati dell'area di contenuto tagliando a destra e sinistra per adattarsi all'altezza che specifichi."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5587 |
|
|
|
5588 |
#: modules/slideshow/slideshow.php:331
|
5589 |
+
#@ fl-builder
|
5590 |
msgid "Disable Right-Click"
|
5591 |
msgstr "Disabilitare il tasto destro del mouse"
|
5592 |
|
|
|
5593 |
#: modules/slideshow/slideshow.php:351
|
5594 |
+
#@ fl-builder
|
5595 |
msgctxt "Click action type."
|
5596 |
msgid "None"
|
5597 |
msgstr "Nessuna"
|
5598 |
|
|
|
5599 |
#: modules/slideshow/slideshow.php:375
|
5600 |
+
#@ fl-builder
|
5601 |
msgid "Playback"
|
5602 |
msgstr "Riproduzione"
|
5603 |
|
|
|
5604 |
#: modules/slideshow/slideshow.php:401
|
5605 |
+
#@ fl-builder
|
5606 |
msgctxt "Slideshow transition."
|
5607 |
msgid "None"
|
5608 |
msgstr "Nessuna"
|
5609 |
|
|
|
5610 |
#: modules/slideshow/slideshow.php:438
|
5611 |
+
#@ fl-builder
|
5612 |
msgid "Controls"
|
5613 |
msgstr "Controlli"
|
5614 |
|
5615 |
+
#: modules/slideshow/slideshow.php:445
|
5616 |
+
#: modules/slideshow/slideshow.php:494
|
5617 |
+
#@ fl-builder
|
5618 |
msgid "Navigation Arrows"
|
5619 |
msgstr "Frecce di navigazione"
|
5620 |
|
|
|
5621 |
#: modules/slideshow/slideshow.php:451
|
5622 |
+
#@ fl-builder
|
5623 |
+
msgid "Navigational arrows allow the visitor to freely move through the images in your slideshow. These are larger arrows that overlay your slideshow images and are separate from the control bar navigational arrows."
|
5624 |
+
msgstr "Le frecce di navigazione permettono al visitatore di muoversi liberamente tra le immagini nella presentazione. Queste sono grandi frecce sovrapposte alle immagini dello slideshow che sono separate dalle frecce di navigazione nella barra di controllo."
|
|
|
|
|
|
|
|
|
|
|
|
|
5625 |
|
|
|
5626 |
#: modules/slideshow/slideshow.php:456
|
5627 |
+
#@ fl-builder
|
5628 |
msgid "Control Bar"
|
5629 |
msgstr "Barra di controllo"
|
5630 |
|
|
|
5631 |
#: modules/slideshow/slideshow.php:460
|
5632 |
+
#@ fl-builder
|
5633 |
msgid "Nav Type"
|
5634 |
msgstr "Tipo di navigazione"
|
5635 |
|
|
|
5636 |
#: modules/slideshow/slideshow.php:463
|
5637 |
+
#@ fl-builder
|
5638 |
msgctxt "Nav type."
|
5639 |
msgid "None"
|
5640 |
msgstr "Nessuna"
|
5641 |
|
|
|
5642 |
#: modules/slideshow/slideshow.php:464
|
5643 |
+
#@ fl-builder
|
5644 |
msgid "Buttons"
|
5645 |
msgstr "Pulsanti"
|
5646 |
|
5647 |
+
#: modules/slideshow/slideshow.php:465
|
5648 |
+
#: modules/slideshow/slideshow.php:595
|
5649 |
+
#@ fl-builder
|
5650 |
msgid "Thumbs"
|
5651 |
msgstr "Miniature"
|
5652 |
|
|
|
5653 |
#: modules/slideshow/slideshow.php:480
|
5654 |
+
#@ fl-builder
|
5655 |
msgid "Nav Position"
|
5656 |
msgstr "Posizione della navigazione"
|
5657 |
|
|
|
5658 |
#: modules/slideshow/slideshow.php:490
|
5659 |
+
#@ fl-builder
|
5660 |
msgid "Control Bar Buttons"
|
5661 |
msgstr "Pulsanti in barra di controllo"
|
5662 |
|
|
|
5663 |
#: modules/slideshow/slideshow.php:503
|
5664 |
+
#@ fl-builder
|
5665 |
msgid "Play Button"
|
5666 |
msgstr "Pulsante Play"
|
5667 |
|
|
|
5668 |
#: modules/slideshow/slideshow.php:512
|
5669 |
+
#@ fl-builder
|
5670 |
msgid "Fullscreen Button"
|
5671 |
msgstr "Pulsante FullScreen"
|
5672 |
|
|
|
5673 |
#: modules/slideshow/slideshow.php:521
|
5674 |
+
#@ fl-builder
|
5675 |
msgid "Photo Count"
|
5676 |
msgstr "Contatore foto"
|
5677 |
|
|
|
5678 |
#: modules/slideshow/slideshow.php:530
|
5679 |
+
#@ fl-builder
|
5680 |
msgid "Thumbs Button"
|
5681 |
msgstr "Pulsante miniatura"
|
5682 |
|
|
|
5683 |
#: modules/slideshow/slideshow.php:539
|
5684 |
+
#@ fl-builder
|
5685 |
msgid "Caption Button"
|
5686 |
msgstr "Pulsante didascalia"
|
5687 |
|
|
|
5688 |
#: modules/slideshow/slideshow.php:548
|
5689 |
+
#@ fl-builder
|
5690 |
msgid "Social Button"
|
5691 |
msgstr "Pulsante sociale"
|
5692 |
|
|
|
5693 |
#: modules/slideshow/slideshow.php:558
|
5694 |
+
#@ fl-builder
|
5695 |
msgid "Control Bar Overlay"
|
5696 |
msgstr "Sovrapposizione della barra di controllo"
|
5697 |
|
|
|
5698 |
#: modules/slideshow/slideshow.php:562
|
5699 |
+
#@ fl-builder
|
5700 |
msgid "Overlay Enabled"
|
5701 |
msgstr "Sovrapposizione abilitata"
|
5702 |
|
|
|
5703 |
#: modules/slideshow/slideshow.php:573
|
5704 |
+
#@ fl-builder
|
5705 |
+
msgid "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site below the slideshow completely."
|
5706 |
+
msgstr "La sovrapposizione della barra di controllo specifica se i pulsanti della barra controllo che scegliete saranno sovrapposti alle immagini dello slideshow o se saranno collocati sotto lo slideshow."
|
|
|
|
|
|
|
|
|
5707 |
|
|
|
5708 |
#: modules/slideshow/slideshow.php:577
|
5709 |
+
#@ fl-builder
|
5710 |
msgid "Overlay Hide"
|
5711 |
msgstr "Nascondi overlay"
|
5712 |
|
|
|
5713 |
#: modules/slideshow/slideshow.php:583
|
5714 |
+
#@ fl-builder
|
5715 |
+
msgid "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear upon mouse over."
|
5716 |
+
msgstr "Nascondi overlay nasconde la barra di controllo dopo un certo numero di secondi specificato qui sotto. Essa riapparirà passando sopra con il mouse."
|
|
|
|
|
|
|
5717 |
|
|
|
5718 |
#: modules/slideshow/slideshow.php:587
|
5719 |
+
#@ fl-builder
|
5720 |
msgid "Overlay Hide Delay"
|
5721 |
msgstr "Ritardo nascondi overlay"
|
5722 |
|
|
|
5723 |
#: modules/slideshow/slideshow.php:599
|
5724 |
+
#@ fl-builder
|
5725 |
msgid "Thumbs Size"
|
5726 |
msgstr "Dimensione miniature"
|
5727 |
|
|
|
5728 |
#: modules/slideshow/slideshow.php:608
|
5729 |
+
#@ fl-builder
|
5730 |
msgid "Social"
|
5731 |
msgstr "Social"
|
5732 |
|
|
|
5733 |
#: modules/slideshow/slideshow.php:612
|
5734 |
+
#@ fl-builder
|
5735 |
msgid "Facebook Button"
|
5736 |
msgstr "Pulsante Facebook"
|
5737 |
|
|
|
5738 |
#: modules/slideshow/slideshow.php:624
|
5739 |
+
#@ fl-builder
|
5740 |
msgid "Twitter Button"
|
5741 |
msgstr "Pulsante Twitter"
|
5742 |
|
|
|
5743 |
#: modules/slideshow/slideshow.php:636
|
5744 |
+
#@ fl-builder
|
5745 |
msgid "Google Plus Button"
|
5746 |
msgstr "Pulsante Google Plus"
|
5747 |
|
|
|
5748 |
#: modules/slideshow/slideshow.php:648
|
5749 |
+
#@ fl-builder
|
5750 |
msgid "Pinterest Button"
|
5751 |
msgstr "Pulsante Pinterest"
|
5752 |
|
|
|
5753 |
#: modules/social-buttons/social-buttons.php:14
|
5754 |
+
#@ fl-builder
|
5755 |
msgid "Social Buttons"
|
5756 |
msgstr "Pulsanti Social"
|
5757 |
|
|
|
5758 |
#: modules/social-buttons/social-buttons.php:15
|
5759 |
+
#@ fl-builder
|
5760 |
msgid "Displays social buttons."
|
5761 |
msgstr "Mostra i pulsanti sociali."
|
5762 |
|
|
|
5763 |
#: modules/social-buttons/social-buttons.php:72
|
5764 |
+
#@ fl-builder
|
5765 |
msgid "Target URL"
|
5766 |
msgstr "URL di destinazione"
|
5767 |
|
|
|
5768 |
#: modules/social-buttons/social-buttons.php:76
|
5769 |
+
#@ fl-builder
|
5770 |
msgid "Current Page"
|
5771 |
msgstr "Pagina corrente"
|
5772 |
|
|
|
5773 |
#: modules/social-buttons/social-buttons.php:83
|
5774 |
+
#@ fl-builder
|
5775 |
+
msgid "The Target URL field correlates to the page you would like your social icons to interface with. For example, if you show Facebook, the user will \"Like\" whatever you put in this field."
|
5776 |
+
msgstr "Il campo URL di destinazione è correlato alla pagina con cui vuoi interfacciare le tue icone social. Ad esempio, se si visualizza Facebook, l'utente farà \"Like\" su ciò che hai inserito in questo campo."
|
|
|
|
|
|
|
|
|
|
|
5777 |
|
|
|
5778 |
#: modules/social-buttons/social-buttons.php:90
|
5779 |
+
#@ fl-builder
|
5780 |
msgid "Custom URL"
|
5781 |
msgstr "URL personalizzato"
|
5782 |
|
|
|
5783 |
#: modules/social-buttons/social-buttons.php:108
|
5784 |
+
#@ fl-builder
|
5785 |
msgid "Show Facebook"
|
5786 |
msgstr "Mostra Facebook"
|
5787 |
|
|
|
5788 |
#: modules/social-buttons/social-buttons.php:117
|
5789 |
+
#@ fl-builder
|
5790 |
msgid "Show Twitter"
|
5791 |
msgstr "Mostra Twitter"
|
5792 |
|
|
|
5793 |
#: modules/social-buttons/social-buttons.php:126
|
5794 |
+
#@ fl-builder
|
5795 |
msgid "Show Google+"
|
5796 |
msgstr "Mostra Google+"
|
5797 |
|
|
|
5798 |
#: modules/subscribe-form/includes/frontend.php:5
|
5799 |
+
#@ fl-builder
|
5800 |
msgctxt "First and last name."
|
5801 |
msgid "Name"
|
5802 |
msgstr "Nome"
|
5803 |
|
|
|
5804 |
#: modules/subscribe-form/includes/frontend.php:12
|
5805 |
+
#@ fl-builder
|
5806 |
msgid "Please enter a valid email address."
|
5807 |
msgstr "Si prega di inserire un indirizzo email valido."
|
5808 |
|
|
|
5809 |
#: modules/subscribe-form/includes/frontend.php:41
|
5810 |
+
#@ fl-builder
|
5811 |
msgid "Something went wrong. Please check your entries and try again."
|
5812 |
+
msgstr "Qualcosa è andato storto. Si prega di verificare i dati immessi e riprovare."
|
|
|
5813 |
|
|
|
5814 |
#: modules/subscribe-form/subscribe-form.php:18
|
5815 |
+
#@ fl-builder
|
5816 |
msgid "Subscribe Form"
|
5817 |
msgstr "Modulo di iscrizione"
|
5818 |
|
|
|
5819 |
#: modules/subscribe-form/subscribe-form.php:19
|
5820 |
+
#@ fl-builder
|
5821 |
msgid "Adds a simple subscribe form to your layout."
|
5822 |
msgstr "Aggiunge un semplice modulo di iscrizione al tuo layout."
|
5823 |
|
|
|
5824 |
#: modules/contact-form/contact-form.php:132
|
5825 |
#: modules/subscribe-form/subscribe-form.php:129
|
5826 |
+
#@ fl-builder
|
5827 |
msgid "Success"
|
5828 |
msgstr "Successo"
|
5829 |
|
|
|
5830 |
#: modules/contact-form/contact-form.php:136
|
5831 |
#: modules/subscribe-form/subscribe-form.php:133
|
5832 |
+
#@ fl-builder
|
5833 |
msgid "Success Action"
|
5834 |
msgstr "Azione di successo"
|
5835 |
|
|
|
5836 |
#: modules/contact-form/contact-form.php:139
|
5837 |
#: modules/subscribe-form/subscribe-form.php:135
|
5838 |
+
#@ fl-builder
|
5839 |
msgid "Show Message"
|
5840 |
msgstr "Mostra messaggio"
|
5841 |
|
|
|
5842 |
#: modules/contact-form/contact-form.php:140
|
5843 |
#: modules/subscribe-form/subscribe-form.php:136
|
5844 |
+
#@ fl-builder
|
5845 |
msgid "Redirect"
|
5846 |
msgstr "Redireziona"
|
5847 |
|
|
|
5848 |
#: modules/subscribe-form/subscribe-form.php:155
|
5849 |
+
#@ fl-builder
|
5850 |
+
msgid "Thanks for subscribing! Please check your email for further instructions."
|
5851 |
+
msgstr "Grazie per l'iscrizione! Per favore controlla la tua email per ulteriori istruzioni."
|
|
|
|
|
5852 |
|
|
|
5853 |
#: modules/contact-form/contact-form.php:166
|
5854 |
#: modules/subscribe-form/subscribe-form.php:162
|
5855 |
+
#@ fl-builder
|
5856 |
msgid "Success URL"
|
5857 |
msgstr "URL successo"
|
5858 |
|
|
|
5859 |
#: modules/subscribe-form/subscribe-form.php:180
|
5860 |
+
#@ fl-builder
|
5861 |
msgid "Subscribe!"
|
5862 |
msgstr "Iscriviti!"
|
5863 |
|
|
|
5864 |
#: modules/tabs/tabs.php:14
|
5865 |
+
#@ fl-builder
|
5866 |
msgid "Tabs"
|
5867 |
msgstr "Schede"
|
5868 |
|
|
|
5869 |
#: modules/tabs/tabs.php:15
|
5870 |
+
#@ fl-builder
|
5871 |
msgid "Display a collection of tabbed content."
|
5872 |
msgstr "Mostra una raccolta di contenuti a schede."
|
5873 |
|
|
|
5874 |
#: modules/testimonials/testimonials.php:14
|
5875 |
#: modules/testimonials/testimonials.php:61
|
5876 |
#: modules/testimonials/testimonials.php:175
|
5877 |
+
#@ fl-builder
|
5878 |
msgid "Testimonials"
|
5879 |
msgstr "Testimonianze"
|
5880 |
|
|
|
5881 |
#: modules/testimonials/testimonials.php:15
|
5882 |
+
#@ fl-builder
|
5883 |
msgid "An animated tesimonials area."
|
5884 |
msgstr "Un'area animata per i testimonials."
|
5885 |
|
|
|
5886 |
#: modules/testimonials/testimonials.php:42
|
5887 |
+
#@ fl-builder
|
5888 |
msgid "Compact"
|
5889 |
msgstr "Compatto"
|
5890 |
|
|
|
5891 |
#: modules/testimonials/testimonials.php:52
|
5892 |
+
#@ fl-builder
|
5893 |
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
5894 |
msgstr "Ampia è per righe con 1 colonna, compatta è per righe multi-colonna."
|
5895 |
|
|
|
5896 |
#: modules/testimonials/testimonials.php:79
|
5897 |
+
#@ fl-builder
|
5898 |
msgid "Slider Settings"
|
5899 |
msgstr "Impostazioni Slider"
|
5900 |
|
|
|
5901 |
#: modules/testimonials/testimonials.php:136
|
5902 |
+
#@ fl-builder
|
5903 |
msgid "Arrow Color"
|
5904 |
msgstr "Colore freccia "
|
5905 |
|
|
|
5906 |
#: modules/testimonials/testimonials.php:166
|
5907 |
+
#@ fl-builder
|
5908 |
msgid "Dot Color"
|
5909 |
msgstr "Colore punto"
|
5910 |
|
|
|
5911 |
#: modules/testimonials/testimonials.php:182
|
5912 |
+
#@ fl-builder
|
5913 |
msgid "Testimonial"
|
5914 |
msgstr "Testimonial"
|
5915 |
|
|
|
5916 |
#: modules/testimonials/testimonials.php:198
|
5917 |
+
#@ fl-builder
|
5918 |
msgid "Add Testimonial"
|
5919 |
msgstr "Aggiungi Testimonial"
|
5920 |
|
|
|
5921 |
#: modules/video/video.php:20
|
5922 |
+
#@ fl-builder
|
5923 |
msgid "Render a WordPress or embedable video."
|
5924 |
msgstr "Visualizza un video caricato in WordPress o embed."
|
5925 |
|
|
|
5926 |
#: modules/video/video.php:89
|
5927 |
+
#@ fl-builder
|
5928 |
msgid "Video Type"
|
5929 |
msgstr "Tipo di video"
|
5930 |
|
|
|
5931 |
#: modules/video/video.php:93
|
5932 |
+
#@ fl-builder
|
5933 |
msgid "Embed"
|
5934 |
msgstr "Embed"
|
5935 |
|
|
|
5936 |
#: modules/video/video.php:119
|
5937 |
+
#@ fl-builder
|
5938 |
msgctxt "Video preview/fallback image."
|
5939 |
msgid "Poster"
|
5940 |
msgstr "Poster"
|
5941 |
|
|
|
5942 |
#: modules/widget/includes/frontend.php:34
|
5943 |
#: modules/widget/includes/settings-general.php:46
|
5944 |
#, php-format
|
5945 |
+
#@ fl-builder
|
5946 |
msgctxt "%s stands for widget slug."
|
5947 |
msgid "%s no longer exists."
|
5948 |
msgstr "%s non esiste più."
|
5949 |
|
|
|
5950 |
#: modules/widget/widget.php:14
|
5951 |
+
#@ fl-builder
|
5952 |
msgid "Widget"
|
5953 |
msgstr "Widget"
|
5954 |
|
|
|
5955 |
#: modules/widget/widget.php:15
|
5956 |
+
#@ fl-builder
|
5957 |
msgid "Display a WordPress widget."
|
5958 |
msgstr "Mostra un widget di WordPress."
|
5959 |
|
|
|
5960 |
#: modules/woocommerce/woocommerce.php:16
|
5961 |
+
#@ fl-builder
|
5962 |
msgid "WooCommerce"
|
5963 |
msgstr "WooCommerce"
|
5964 |
|
|
|
5965 |
#: modules/woocommerce/woocommerce.php:17
|
5966 |
+
#@ fl-builder
|
5967 |
msgid "Display products or categories from your WooCommerce store."
|
5968 |
msgstr "Mostra prodotti o categorie dal tuo negozio WooCommerce."
|
5969 |
|
|
|
5970 |
#: modules/woocommerce/woocommerce.php:62
|
5971 |
+
#@ fl-builder
|
5972 |
msgid "Single Product"
|
5973 |
msgstr "Singolo prodotto"
|
5974 |
|
|
|
5975 |
#: modules/woocommerce/woocommerce.php:64
|
5976 |
#: modules/woocommerce/woocommerce.php:118
|
5977 |
+
#@ fl-builder
|
5978 |
msgid "Multiple Products"
|
5979 |
msgstr "Prodotti multipli"
|
5980 |
|
|
|
5981 |
#: modules/woocommerce/woocommerce.php:65
|
5982 |
+
#@ fl-builder
|
5983 |
msgid "\"Add to Cart\" Button"
|
5984 |
msgstr "Pulsante \"Aggiungi al carrello\""
|
5985 |
|
|
|
5986 |
#: modules/woocommerce/woocommerce.php:66
|
5987 |
+
#@ fl-builder
|
5988 |
msgid "Categories"
|
5989 |
msgstr "Categorie"
|
5990 |
|
|
|
5991 |
#: modules/woocommerce/woocommerce.php:67
|
5992 |
+
#@ fl-builder
|
5993 |
msgid "Cart"
|
5994 |
msgstr "Carrello"
|
5995 |
|
|
|
5996 |
#: modules/woocommerce/woocommerce.php:68
|
5997 |
+
#@ fl-builder
|
5998 |
msgid "Checkout"
|
5999 |
msgstr "Checkout"
|
6000 |
|
|
|
6001 |
#: modules/woocommerce/woocommerce.php:69
|
6002 |
+
#@ fl-builder
|
6003 |
msgid "Order Tracking"
|
6004 |
msgstr "Tracciabilità ordine"
|
6005 |
|
|
|
6006 |
#: modules/woocommerce/woocommerce.php:70
|
6007 |
+
#@ fl-builder
|
6008 |
msgid "My Account"
|
6009 |
msgstr "Il mio Account"
|
6010 |
|
|
|
6011 |
#: modules/woocommerce/woocommerce.php:92
|
6012 |
+
#@ fl-builder
|
6013 |
msgid "Product ID"
|
6014 |
msgstr "ID prodotto"
|
6015 |
|
|
|
6016 |
#: modules/woocommerce/woocommerce.php:95
|
6017 |
+
#@ fl-builder
|
6018 |
+
msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute."
|
6019 |
+
msgstr "Quando si aggiungono prodotti nell'area prodotti WooCommerce, ad ognuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico visitando l'area prodotti e passando il mouse sopra al prodotto. L'ID univoco sarà il primo attributo."
|
|
|
|
|
|
|
|
|
|
|
|
|
6020 |
|
|
|
6021 |
#: modules/woocommerce/woocommerce.php:99
|
6022 |
+
#@ fl-builder
|
6023 |
msgid "Parent Category ID"
|
6024 |
msgstr "ID categoria genitore"
|
6025 |
|
|
|
6026 |
#: modules/woocommerce/woocommerce.php:102
|
6027 |
+
#@ fl-builder
|
6028 |
+
msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique ID. This ID can be found by hovering on the category in the categories area under Products and looking in the URL that is displayed in your browser. The ID will be the only number value in the URL."
|
6029 |
+
msgstr "Quando si aggiungono categorie di prodotto nell'area prodotti WooCommerce, a ciascuna verrà assegnato un ID univoco. Questo ID è reperibile passando il mouse sulla categoria nell'area categorie sotto Prodotti e guardando l'URL visualizzato nel browser. L'ID sarà l'unico valore numerico nell'URL."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6030 |
|
|
|
6031 |
#: modules/woocommerce/woocommerce.php:106
|
6032 |
#: modules/woocommerce/woocommerce.php:177
|
6033 |
+
#@ fl-builder
|
6034 |
msgid "Columns"
|
6035 |
msgstr "Colonne"
|
6036 |
|
|
|
6037 |
#: modules/woocommerce/woocommerce.php:122
|
6038 |
+
#@ fl-builder
|
6039 |
msgid "Products Source"
|
6040 |
msgstr "Sorgente prodotti"
|
6041 |
|
|
|
6042 |
#: modules/woocommerce/woocommerce.php:125
|
6043 |
+
#@ fl-builder
|
6044 |
msgid "Products IDs"
|
6045 |
msgstr "ID prodotti "
|
6046 |
|
|
|
6047 |
#: modules/woocommerce/woocommerce.php:126
|
6048 |
+
#@ fl-builder
|
6049 |
msgid "Product Category"
|
6050 |
msgstr "Categoria prodotto"
|
6051 |
|
|
|
6052 |
#: modules/woocommerce/woocommerce.php:127
|
6053 |
+
#@ fl-builder
|
6054 |
msgid "Recent Products"
|
6055 |
msgstr "Prodotti recenti"
|
6056 |
|
|
|
6057 |
#: modules/woocommerce/woocommerce.php:128
|
6058 |
+
#@ fl-builder
|
6059 |
msgid "Featured Products"
|
6060 |
msgstr "Prodotti in vetrina"
|
6061 |
|
|
|
6062 |
#: modules/woocommerce/woocommerce.php:129
|
6063 |
+
#@ fl-builder
|
6064 |
msgid "Sale Products"
|
6065 |
msgstr "Prodotti in offerta"
|
6066 |
|
|
|
6067 |
#: modules/woocommerce/woocommerce.php:130
|
6068 |
+
#@ fl-builder
|
6069 |
msgid "Best Selling Products"
|
6070 |
msgstr "Prodotti più venduti"
|
6071 |
|
|
|
6072 |
#: modules/woocommerce/woocommerce.php:131
|
6073 |
+
#@ fl-builder
|
6074 |
msgid "Top Rated Products"
|
6075 |
msgstr "Prodotti più votati"
|
6076 |
|
|
|
6077 |
#: modules/woocommerce/woocommerce.php:159
|
6078 |
+
#@ fl-builder
|
6079 |
msgid "Product IDs"
|
6080 |
msgstr "ID prodotti"
|
6081 |
|
|
|
6082 |
#: modules/woocommerce/woocommerce.php:161
|
6083 |
+
#@ fl-builder
|
6084 |
+
msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute and you can add several here separated by a comma."
|
6085 |
+
msgstr "Quando si aggiungono prodotti nell'area prodotti WooCommerce, a ciascuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico visitando l'area prodotti e toccando con il mouse il prodotto. L'ID univoco sarà il primo attributo, qui è possibile aggiungere diversi ID separati da una virgola."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6086 |
|
|
|
6087 |
#: modules/woocommerce/woocommerce.php:165
|
6088 |
+
#@ fl-builder
|
6089 |
msgid "Category Slug"
|
6090 |
msgstr "Slug della categoria "
|
6091 |
|
|
|
6092 |
#: modules/woocommerce/woocommerce.php:167
|
6093 |
+
#@ fl-builder
|
6094 |
+
msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique slug or you can edit and add your own. These slugs can be found in the Categories area under WooCommerce Products. Several can be added here separated by a comma."
|
6095 |
+
msgstr "Quando si aggiungono le categorie di prodotto nell'area prodotti WooCommerce, a ciasuna verrà assegnato uno slug univoco o è possibile modificare e aggiungere il proprio. Questi slug si possono trovare nell'area categorie sotto prodotti WooCommerce. Qui puoi aggiungerne diversi separati da una virgola."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6096 |
|
|
|
6097 |
#: modules/woocommerce/woocommerce.php:171
|
6098 |
+
#@ fl-builder
|
6099 |
msgid "Number of Products"
|
6100 |
msgstr "Numero di prodotti"
|
6101 |
|
|
|
6102 |
#: modules/woocommerce/woocommerce.php:188
|
6103 |
+
#@ fl-builder
|
6104 |
msgid "Sort By"
|
6105 |
msgstr "Ordina per"
|
6106 |
|
|
|
6107 |
#: modules/woocommerce/woocommerce.php:191
|
6108 |
+
#@ fl-builder
|
6109 |
msgctxt "Sort by."
|
6110 |
msgid "Default"
|
6111 |
msgstr "Predefinito"
|
6112 |
|
|
|
6113 |
#: modules/woocommerce/woocommerce.php:192
|
6114 |
+
#@ fl-builder
|
6115 |
msgid "Popularity"
|
6116 |
msgstr "Popolarità"
|
6117 |
|
|
|
6118 |
#: modules/woocommerce/woocommerce.php:193
|
6119 |
+
#@ fl-builder
|
6120 |
msgid "Rating"
|
6121 |
msgstr "Valutazione"
|
6122 |
|
|
|
6123 |
#: modules/woocommerce/woocommerce.php:200
|
6124 |
+
#@ fl-builder
|
6125 |
msgid "Sort Direction"
|
6126 |
msgstr "Direzione ordinamento"
|
6127 |
|
|
|
6128 |
#: includes/admin-posts.php:15
|
6129 |
#, php-format
|
6130 |
+
#@ fl-builder
|
6131 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
6132 |
+
msgid "Switching to Text Editor mode will disable your %s layout until it is enabled again. Any edits made while in Text Editor mode will not be made on your %s layout. Do you want to continue?"
|
6133 |
+
msgstr "Tornando alla modalità Text Editor i layout di %s saranno disabilitati finchè non lo riattivi. Le modifiche apportate in modalità Text Editor non saranno effettuate sul tuo layout %s. Vuoi continuare?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6134 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6135 |
#: classes/class-fl-builder-service-campayn.php:102
|
6136 |
#: classes/class-fl-builder-service-mailrelay.php:78
|
6137 |
+
#@ fl-builder
|
6138 |
msgid "Error: You must provide a Host."
|
6139 |
msgstr "Errore: È necessario fornire un Host."
|
6140 |
|
|
|
6141 |
#: classes/class-fl-builder-service-campayn.php:117
|
6142 |
#, php-format
|
6143 |
+
#@ fl-builder
|
6144 |
msgid "Error: Could not connect to Campayn. %s"
|
6145 |
msgstr "Errore: Impossibile connettersi a Campayn. %s"
|
6146 |
|
|
|
6147 |
#: classes/class-fl-builder-service-campayn.php:138
|
6148 |
#: classes/class-fl-builder-service-mailrelay.php:119
|
6149 |
+
#@ fl-builder
|
6150 |
msgid "Host"
|
6151 |
msgstr "Host"
|
6152 |
|
|
|
6153 |
#: classes/class-fl-builder-service-campayn.php:139
|
6154 |
+
#@ fl-builder
|
6155 |
+
msgid "The host you chose when you signed up for your account. Check your welcome email if you forgot it. Please enter it without the initial http:// (for example: demo.campayn.com)."
|
6156 |
+
msgstr "L'host che hai scelto quando sottoscritto il tuo account. Controlla la tua e-mail di benvenuto se l'hai dimenticato. Si prega di inserire senza http:// iniziale (ad esempio: demo.campayn.com)."
|
|
|
|
|
|
|
|
|
|
|
6157 |
|
|
|
6158 |
#: classes/class-fl-builder-service-campayn.php:150
|
6159 |
+
#@ fl-builder
|
6160 |
+
msgid "Your API key can be found in your Campayn account under Settings > API Key."
|
6161 |
+
msgstr "La chiave API può essere trovata nel tuo account di Campayn sotto Impostazioni > API Key."
|
|
|
|
|
6162 |
|
|
|
6163 |
#: classes/class-fl-builder-service-campayn.php:181
|
6164 |
#: classes/class-fl-builder-service-convertkit.php:78
|
6165 |
#: classes/class-fl-builder-service-mailrelay.php:165
|
6166 |
#, php-format
|
6167 |
+
#@ fl-builder
|
6168 |
msgid "Error: Please check your API key. %s"
|
6169 |
msgstr "Errore: Controlla la tua chiave API. %s"
|
6170 |
|
|
|
6171 |
#: classes/class-fl-builder-service-campayn.php:213
|
6172 |
+
#@ fl-builder
|
6173 |
msgctxt "An email list from third party provider."
|
6174 |
msgid "List"
|
6175 |
msgstr "Elenco"
|
6176 |
|
|
|
6177 |
#: classes/class-fl-builder-service-campayn.php:241
|
6178 |
+
#@ fl-builder
|
6179 |
+
msgid "There was an error subscribing to Campayn. The account is no longer connected."
|
6180 |
+
msgstr "Si è verificato un errore nella sottoscrizione di Campayn. L'account non è più collegato."
|
|
|
|
|
|
|
6181 |
|
|
|
6182 |
#: classes/class-fl-builder-service-campayn.php:288
|
6183 |
#, php-format
|
6184 |
+
#@ fl-builder
|
6185 |
msgid "There was an error subscribing to Campayn. %s"
|
6186 |
msgstr "Si è verificato un errore nella sottoscrizione di Campayn. %s"
|
6187 |
|
|
|
6188 |
#: classes/class-fl-builder-service-convertkit.php:100
|
6189 |
+
#@ fl-builder
|
6190 |
+
msgid "Your API key can be found in your ConvertKit account under Account > Account Settings > API Key."
|
6191 |
+
msgstr "Tua chiave API può essere trovata nel tuo account di ConvertKit sotto Account > Impostazioni Account > API Key."
|
|
|
|
|
|
|
6192 |
|
|
|
6193 |
#: classes/class-fl-builder-service-convertkit.php:190
|
6194 |
+
#@ fl-builder
|
6195 |
+
msgid "There was an error subscribing to ConvertKit. The account is no longer connected."
|
6196 |
+
msgstr "Si è verificato un errore nella sottoscrizione a ConvertKit. L'account non è più collegato."
|
|
|
|
|
|
|
6197 |
|
|
|
6198 |
#: classes/class-fl-builder-service-convertkit.php:198
|
6199 |
+
#@ fl-builder
|
6200 |
msgid "There was an error subscribing to ConvertKit."
|
6201 |
msgstr "Si è verificato un errore nella sottoscrizione a ConvertKit."
|
6202 |
|
|
|
6203 |
#: classes/class-fl-builder-service-drip.php:67
|
6204 |
+
#@ fl-builder
|
6205 |
msgid "Error: You must provide an API token."
|
6206 |
msgstr "Errore: È necessario fornire un token della API."
|
6207 |
|
|
|
6208 |
#: classes/class-fl-builder-service-drip.php:71
|
6209 |
+
#@ fl-builder
|
6210 |
msgid "Error: You must provide an Account ID."
|
6211 |
msgstr "Errore: È necessario fornire un ID Account."
|
6212 |
|
|
|
6213 |
#: classes/class-fl-builder-service-drip.php:92
|
6214 |
#, php-format
|
6215 |
+
#@ fl-builder
|
6216 |
msgid "Error: Please check your Account ID. %s"
|
6217 |
msgstr "Errore: Si prega di controllare il tuo Account ID. %s"
|
6218 |
|
|
|
6219 |
#: classes/class-fl-builder-service-drip.php:99
|
6220 |
#, php-format
|
6221 |
+
#@ fl-builder
|
6222 |
msgid "Error: Please check your API token. %s"
|
6223 |
msgstr "Errore: Si prega di controllare il tuo API token. %s"
|
6224 |
|
|
|
6225 |
#: classes/class-fl-builder-service-drip.php:122
|
6226 |
+
#@ fl-builder
|
6227 |
msgid "API Token"
|
6228 |
msgstr "Token della API"
|
6229 |
|
|
|
6230 |
#: classes/class-fl-builder-service-drip.php:123
|
6231 |
#, php-format
|
6232 |
+
#@ fl-builder
|
6233 |
+
msgid "Your API Token can be found in your Drip account under Settings > My User Settings. Or, you can click this <a%s>direct link</a>."
|
6234 |
+
msgstr "Puoi trovare il Token della API nel tuo account di Drip sotto Impostazioni > Impostazioni utente personali. Oppure, è possibile cliccare questo <a%s>link diretto</a>."
|
|
|
|
|
|
|
|
|
6235 |
|
|
|
6236 |
#: classes/class-fl-builder-service-drip.php:133
|
6237 |
+
#@ fl-builder
|
6238 |
msgid "Account ID"
|
6239 |
msgstr "ID account"
|
6240 |
|
|
|
6241 |
#: classes/class-fl-builder-service-drip.php:134
|
6242 |
+
#@ fl-builder
|
6243 |
+
msgid "Your Account ID can be found in your Drip account under Settings > Site Setup."
|
6244 |
+
msgstr "L'ID dell'Account può essere trovato nel tuo account Drip sotto Impostazioni > Configurazione del sito."
|
|
|
|
|
|
|
6245 |
|
|
|
6246 |
#: classes/class-fl-builder-service-drip.php:180
|
6247 |
+
#@ fl-builder
|
6248 |
msgctxt "A tag to add to contacts in Drip when they subscribe."
|
6249 |
msgid "Tags"
|
6250 |
msgstr "Tags"
|
6251 |
|
|
|
6252 |
#: classes/class-fl-builder-service-drip.php:181
|
6253 |
+
#@ fl-builder
|
6254 |
msgid "For multiple tags, separate with comma."
|
6255 |
msgstr "Per più tag, separare con la virgola."
|
6256 |
|
|
|
6257 |
#: classes/class-fl-builder-service-drip.php:208
|
6258 |
+
#@ fl-builder
|
6259 |
+
msgid "There was an error subscribing to Drip. The account is no longer connected."
|
6260 |
+
msgstr "Si è verificato un errore nella sottoscrizione a Drip. L'account non è più collegato."
|
|
|
|
|
6261 |
|
|
|
6262 |
#: classes/class-fl-builder-service-drip.php:229
|
6263 |
#, php-format
|
6264 |
+
#@ fl-builder
|
6265 |
msgid "There was an error searching contact from Drip. %s"
|
6266 |
msgstr "Si è verificato un errore cercando il contatto su Drip. %s"
|
6267 |
|
|
|
6268 |
#: classes/class-fl-builder-service-drip.php:254
|
6269 |
#, php-format
|
6270 |
+
#@ fl-builder
|
6271 |
msgid "There was an error subscribing to Drip. %s"
|
6272 |
msgstr "Si è verificato un errore nella sottoscrizione a Drip. %s"
|
6273 |
|
|
|
6274 |
#: classes/class-fl-builder-service-mailrelay.php:98
|
6275 |
#, php-format
|
6276 |
+
#@ fl-builder
|
6277 |
msgid "Error: Could not connect to Mailrelay. %s"
|
6278 |
msgstr "Errore: Impossibile connettersi a Mailrelay. %s"
|
6279 |
|
|
|
6280 |
#: classes/class-fl-builder-service-mailrelay.php:120
|
6281 |
+
#@ fl-builder
|
6282 |
+
msgid "The host you chose when you signed up for your account. Check your welcome email if you forgot it. Please enter it without the initial http:// (e.g. demo.ip-zone.com)."
|
6283 |
+
msgstr "L'host che hai scelto quando hai sottoscritto il tuo account. Controlla la tua e-mail di benvenuto se non lo ricordi. Inseriscilo senza http:// iniziale (es: demo.ip-zone.com)."
|
|
|
|
|
|
|
|
|
|
|
6284 |
|
|
|
6285 |
#: classes/class-fl-builder-service-mailrelay.php:131
|
6286 |
+
#@ fl-builder
|
6287 |
+
msgid "Your API key can be found in your Mailrelay account under Menu > Settings > API access."
|
6288 |
+
msgstr "Puoi trovare la chiave API nel tuo account Mailrelay sotto Menu > Impostazioni > accesso API."
|
|
|
|
|
|
|
6289 |
|
|
|
6290 |
#: classes/class-fl-builder-service-mailrelay.php:198
|
6291 |
+
#@ fl-builder
|
6292 |
msgctxt "A list of subscribers group from a Mailrelay account."
|
6293 |
msgid "Group"
|
6294 |
msgstr "Gruppo"
|
6295 |
|
|
|
6296 |
#: classes/class-fl-builder-service-mailrelay.php:225
|
6297 |
+
#@ fl-builder
|
6298 |
+
msgid "There was an error subscribing to Mailrelay. The account is no longer connected."
|
6299 |
+
msgstr "Si è verificato un errore nella sottoscrizione a Mailrelay. L'account non è più collegato."
|
|
|
|
|
|
|
6300 |
|
|
|
6301 |
#: classes/class-fl-builder-service-mailrelay.php:238
|
6302 |
#, php-format
|
6303 |
+
#@ fl-builder
|
6304 |
msgid "There was an error subscribing to Mailrelay. %s"
|
6305 |
msgstr "Si è verificato un errore nella sottoscrizione a Mailrelay. %s"
|
6306 |
|
|
|
6307 |
#: classes/class-fl-builder-service-sendy.php:68
|
6308 |
+
#@ fl-builder
|
6309 |
msgid "Error: You must provide your Sendy installation URL."
|
6310 |
msgstr "Errore: È necessario fornire l'URL di installazione di Sendy."
|
6311 |
|
|
|
6312 |
#: classes/class-fl-builder-service-sendy.php:76
|
6313 |
+
#@ fl-builder
|
6314 |
msgid "Error: You must provide a list ID."
|
6315 |
msgstr "Errore: È necessario fornire un ID di elenco."
|
6316 |
|
|
|
6317 |
#: classes/class-fl-builder-service-sendy.php:94
|
6318 |
#, php-format
|
6319 |
+
#@ fl-builder
|
6320 |
msgid "Error: Could not connect to Sendy. %s"
|
6321 |
msgstr "Errore: Impossibile connettersi a Sendy. %s"
|
6322 |
|
|
|
6323 |
#: classes/class-fl-builder-service-sendy.php:115
|
6324 |
+
#@ fl-builder
|
6325 |
msgid "Installation URL"
|
6326 |
msgstr "URL di installazione"
|
6327 |
|
|
|
6328 |
#: classes/class-fl-builder-service-sendy.php:116
|
6329 |
+
#@ fl-builder
|
6330 |
+
msgid "The URL where your Sendy application is installed (e.g. http://mywebsite.com/sendy)."
|
6331 |
+
msgstr "L'URL dove è installata la tua applicazione Sendy (es: http://mywebsite.com/sendy)."
|
|
|
|
|
|
|
6332 |
|
|
|
6333 |
#: classes/class-fl-builder-service-sendy.php:127
|
6334 |
+
#@ fl-builder
|
6335 |
msgid "Found in your Sendy application under Settings."
|
6336 |
msgstr "Si trova nella tua applicazione Sendy sotto Impostazioni."
|
6337 |
|
|
|
6338 |
#: classes/class-fl-builder-service-sendy.php:137
|
6339 |
+
#@ fl-builder
|
6340 |
msgid "List ID"
|
6341 |
msgstr "ID elenco"
|
6342 |
|
|
|
6343 |
#: classes/class-fl-builder-service-sendy.php:138
|
6344 |
+
#@ fl-builder
|
6345 |
+
msgid "The ID of the list you would like users to subscribe to. The ID of a list can be found under \"View all lists\" in the section named ID."
|
6346 |
+
msgstr "L'ID della lista a cui si desidera iscrivere gli utenti. L'ID della lista può essere trovato sotto \"Mostra tutte le liste\" nella sezione denominata ID."
|
|
|
|
|
|
|
|
|
6347 |
|
|
|
6348 |
#: classes/class-fl-builder-service-sendy.php:186
|
6349 |
+
#@ fl-builder
|
6350 |
+
msgid "There was an error subscribing to Sendy. The account is no longer connected."
|
6351 |
+
msgstr "Si è verificato un errore nella sottoscrizione a Sendy. L'account non è più collegato."
|
|
|
|
|
6352 |
|
|
|
6353 |
#: classes/class-fl-builder-service-sendy.php:200
|
6354 |
#, php-format
|
6355 |
+
#@ fl-builder
|
6356 |
msgid "There was an error subscribing to Sendy. %s"
|
6357 |
msgstr "Si è verificato un errore nella sottoscrizione a Sendy. %s"
|
6358 |
|
|
|
6359 |
#: classes/class-fl-builder-timezones.php:71
|
6360 |
+
#@ fl-builder
|
6361 |
msgid "Select a city"
|
6362 |
msgstr "Seleziona una città"
|
6363 |
|
|
|
6364 |
#: classes/class-fl-builder-timezones.php:116
|
6365 |
#: classes/class-fl-builder-timezones.php:120
|
6366 |
+
#@ fl-builder
|
6367 |
msgid "UTC"
|
6368 |
msgstr "UTC"
|
6369 |
|
|
|
6370 |
#: classes/class-fl-builder.php:1176
|
6371 |
+
#@ fl-builder
|
6372 |
msgctxt "Custom taxonomy label."
|
6373 |
msgid "Template Categories"
|
6374 |
msgstr "Categorie dei modelli"
|
6375 |
|
|
|
6376 |
#: classes/class-fl-builder.php:1177
|
6377 |
+
#@ fl-builder
|
6378 |
msgctxt "Custom taxonomy label."
|
6379 |
msgid "Template Category"
|
6380 |
msgstr "Categoria modello"
|
6381 |
|
|
|
6382 |
#: classes/class-fl-builder.php:1178
|
6383 |
+
#@ fl-builder
|
6384 |
msgctxt "Custom taxonomy label."
|
6385 |
msgid "Search Template Categories"
|
6386 |
msgstr "Cerca categorie dei modelli"
|
6387 |
|
|
|
6388 |
#: classes/class-fl-builder.php:1179
|
6389 |
+
#@ fl-builder
|
6390 |
msgctxt "Custom taxonomy label."
|
6391 |
msgid "All Template Categories"
|
6392 |
msgstr "Tutte le categorie dei modelli"
|
6393 |
|
|
|
6394 |
#: classes/class-fl-builder.php:1180
|
6395 |
+
#@ fl-builder
|
6396 |
msgctxt "Custom taxonomy label."
|
6397 |
msgid "Parent Template Category"
|
6398 |
msgstr "Categoria genitore del modello"
|
6399 |
|
|
|
6400 |
#: classes/class-fl-builder.php:1181
|
6401 |
+
#@ fl-builder
|
6402 |
msgctxt "Custom taxonomy label."
|
6403 |
msgid "Parent Template Category:"
|
6404 |
msgstr "Categoria genitore del modello:"
|
6405 |
|
|
|
6406 |
#: classes/class-fl-builder.php:1182
|
6407 |
+
#@ fl-builder
|
6408 |
msgctxt "Custom taxonomy label."
|
6409 |
msgid "Edit Template Category"
|
6410 |
msgstr "Modifica la categoria del modello"
|
6411 |
|
|
|
6412 |
#: classes/class-fl-builder.php:1183
|
6413 |
+
#@ fl-builder
|
6414 |
msgctxt "Custom taxonomy label."
|
6415 |
msgid "Update Template Category"
|
6416 |
msgstr "Aggiorna la categoria del modello"
|
6417 |
|
|
|
6418 |
#: classes/class-fl-builder.php:1184
|
6419 |
+
#@ fl-builder
|
6420 |
msgctxt "Custom taxonomy label."
|
6421 |
msgid "Add New Template Category"
|
6422 |
msgstr "Aggiungi una nuova categoria di modelli"
|
6423 |
|
|
|
6424 |
#: classes/class-fl-builder.php:1185
|
6425 |
+
#@ fl-builder
|
6426 |
msgctxt "Custom taxonomy label."
|
6427 |
msgid "New Template Category Name"
|
6428 |
msgstr "Nome nuovo modello di categoria"
|
6429 |
|
|
|
6430 |
#: includes/admin-settings-branding.php:5
|
6431 |
+
#@ fl-builder
|
6432 |
msgid "Plugin Branding"
|
6433 |
msgstr "Branding del Plugin"
|
6434 |
|
|
|
6435 |
#: includes/admin-settings-branding.php:6
|
6436 |
+
#@ fl-builder
|
6437 |
msgid "White label the page builder plugin using the settings below."
|
6438 |
+
msgstr "Cambia il marchio del plugin Page Builder utilizzando le seguenti impostazioni."
|
|
|
|
|
6439 |
|
|
|
6440 |
#: includes/admin-settings-branding.php:8
|
6441 |
+
#@ fl-builder
|
6442 |
msgid "Plugin Name"
|
6443 |
msgstr "Nome del plugin"
|
6444 |
|
|
|
6445 |
#: includes/admin-settings-branding.php:11
|
6446 |
+
#@ fl-builder
|
6447 |
msgid "Plugin Icon URL"
|
6448 |
msgstr "URL icona plugin"
|
6449 |
|
|
|
6450 |
#: includes/admin-settings-branding.php:16
|
6451 |
+
#@ fl-builder
|
6452 |
msgid "Theme Branding"
|
6453 |
msgstr "Branding del tema"
|
6454 |
|
|
|
6455 |
#: includes/admin-settings-branding.php:17
|
6456 |
+
#@ fl-builder
|
6457 |
msgid "White label the page builder theme using the settings below."
|
6458 |
+
msgstr "Cambia il marchio del tema Page Builder utilizzando le seguenti impostazioni."
|
|
|
6459 |
|
|
|
6460 |
#: includes/admin-settings-branding.php:21
|
6461 |
+
#@ fl-builder
|
6462 |
msgid "Theme Name"
|
6463 |
msgstr "Nome del tema"
|
6464 |
|
|
|
6465 |
#: includes/admin-settings-branding.php:24
|
6466 |
+
#@ fl-builder
|
6467 |
msgid "Theme Description"
|
6468 |
msgstr "Descrizione del tema"
|
6469 |
|
|
|
6470 |
#: includes/admin-settings-branding.php:27
|
6471 |
+
#@ fl-builder
|
6472 |
msgid "Theme Company Name"
|
6473 |
msgstr "Nome dell'azienda del tema"
|
6474 |
|
|
|
6475 |
#: includes/admin-settings-branding.php:30
|
6476 |
+
#@ fl-builder
|
6477 |
msgid "Theme Company URL"
|
6478 |
msgstr "URL dell'azienda del tema"
|
6479 |
|
|
|
6480 |
#: includes/admin-settings-branding.php:33
|
6481 |
+
#@ fl-builder
|
6482 |
msgid "Theme Screenshot URL"
|
6483 |
msgstr "URL dell'immagine di anteprima del tema"
|
6484 |
|
|
|
6485 |
#: includes/column-settings.php:26
|
6486 |
+
#@ fl-builder
|
6487 |
+
msgid "Setting this to yes will make all of the columns in this group the same height regardless of how much content is in each of them."
|
6488 |
+
msgstr "Impostando questa opzione su Sì, farà in modo che tutte le colonne in questo gruppo abbiano la stessa altezza indipendentemente dalla quantità di contenuto presente in ciascuna."
|
|
|
|
|
|
|
|
|
6489 |
|
|
|
6490 |
#: includes/field-multiple-audios.php:21
|
6491 |
#, php-format
|
6492 |
+
#@ fl-builder
|
6493 |
msgid "1 Audio File Selected"
|
6494 |
msgid_plural "%d Audio Files Selected"
|
6495 |
msgstr[0] "1 File audio selezionato"
|
6496 |
msgstr[1] "%d files audio selezionati"
|
6497 |
|
6498 |
+
#: includes/field-multiple-audios.php:23
|
6499 |
+
#: includes/ui-js-config.php:89
|
6500 |
+
#@ fl-builder
|
6501 |
msgid "Select Audio"
|
6502 |
msgstr "Selezionare audio"
|
6503 |
|
|
|
6504 |
#: includes/field-multiple-audios.php:24
|
6505 |
+
#@ fl-builder
|
6506 |
msgid "Edit Playlist"
|
6507 |
msgstr "Modifica Playlist"
|
6508 |
|
|
|
6509 |
#: includes/field-multiple-audios.php:25
|
6510 |
+
#@ fl-builder
|
6511 |
msgid "Add Audio Files"
|
6512 |
msgstr "Aggiungi file audio"
|
6513 |
|
|
|
6514 |
#: includes/field-text.php:18
|
6515 |
+
#@ fl-builder
|
6516 |
msgctxt "Add predefined value."
|
6517 |
msgid "- Add predefined -"
|
6518 |
msgstr "-Aggiungi predefiniti-"
|
6519 |
|
6520 |
+
#: includes/global-settings.php:4
|
6521 |
+
#: includes/ui-js-config.php:50
|
6522 |
+
#@ fl-builder
|
6523 |
msgid "Global Settings"
|
6524 |
msgstr "Impostazioni globali"
|
6525 |
|
|
|
6526 |
#: includes/global-settings.php:8
|
6527 |
+
#@ fl-builder
|
6528 |
msgid "<strong>Note</strong>: These settings apply to all posts and pages."
|
6529 |
+
msgstr "<strong>Nota</strong>: queste impostazioni si applicano a tutti gli articoli e pagine."
|
|
|
|
|
6530 |
|
6531 |
+
#: includes/global-settings.php:152
|
6532 |
+
#: includes/layout-settings.php:7
|
6533 |
+
#@ fl-builder
|
6534 |
msgid "CSS"
|
6535 |
msgstr "CSS"
|
6536 |
|
6537 |
+
#: includes/global-settings.php:171
|
6538 |
+
#: includes/layout-settings.php:26
|
6539 |
+
#@ fl-builder
|
6540 |
msgid "JavaScript"
|
6541 |
msgstr "JavaScript"
|
6542 |
|
6543 |
+
#: includes/layout-settings.php:4
|
6544 |
+
#: includes/ui-js-config.php:51
|
6545 |
+
#@ fl-builder
|
6546 |
msgid "Layout Settings"
|
6547 |
msgstr "Impostazioni di layout"
|
6548 |
|
|
|
6549 |
#: includes/row-settings.php:51
|
6550 |
+
#@ fl-builder
|
6551 |
msgid "Full Height"
|
6552 |
msgstr "Altezza piena"
|
6553 |
|
|
|
6554 |
#: includes/row-settings.php:53
|
6555 |
+
#@ fl-builder
|
6556 |
msgid "Full height rows fill the height of the browser window."
|
6557 |
+
msgstr "Le righe ad altezza piena riempiono l'altezza della finestra del browser."
|
|
|
6558 |
|
6559 |
+
#: includes/row-settings.php:220
|
6560 |
+
#: modules/video/video.php:106
|
6561 |
+
#@ fl-builder
|
6562 |
msgid "Video (MP4)"
|
6563 |
msgstr "Video (MP4)"
|
6564 |
|
|
|
6565 |
#: includes/row-settings.php:221
|
6566 |
+
#@ fl-builder
|
6567 |
+
msgid "A video in the MP4 format to use as the background of this row. Most modern browsers support this format."
|
6568 |
+
msgstr "Un video in formato MP4 da utilizzare come sfondo di questa riga. I browser più moderni supportano questo formato."
|
|
|
|
|
|
|
6569 |
|
6570 |
+
#: includes/row-settings.php:228
|
6571 |
+
#: modules/video/video.php:111
|
6572 |
+
#@ fl-builder
|
6573 |
msgid "Video (WebM)"
|
6574 |
msgstr "Video (WebM)"
|
6575 |
|
|
|
6576 |
#: includes/row-settings.php:229
|
6577 |
+
#@ fl-builder
|
6578 |
+
msgid "A video in the WebM format to use as the background of this row. This format is required to support browsers such as FireFox and Opera."
|
6579 |
+
msgstr "Un video nel formato WebM da utilizzare come sfondo di questa riga. Questo formato è necessario per supportare i browser come FireFox e Opera."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6580 |
|
6581 |
+
#: includes/ui-js-config.php:26
|
6582 |
+
#@ fl-builder
|
6583 |
msgid "Audio File Selected"
|
6584 |
msgstr "File audio selezionato"
|
6585 |
|
6586 |
+
#: includes/ui-js-config.php:27
|
6587 |
+
#@ fl-builder
|
6588 |
msgid "Audio Files Selected"
|
6589 |
msgstr "File audio selezionati"
|
6590 |
|
6591 |
+
#: includes/ui-js-config.php:31
|
6592 |
+
#@ fl-builder
|
6593 |
msgid "Color Presets"
|
6594 |
msgstr "Colori preferiti"
|
6595 |
|
6596 |
+
#: includes/ui-js-config.php:32
|
6597 |
+
#@ fl-builder
|
6598 |
msgid "Color Picker"
|
6599 |
msgstr "Selettore colore"
|
6600 |
|
6601 |
+
#: includes/ui-js-config.php:35
|
6602 |
+
#@ fl-builder
|
6603 |
msgid "Error! Please enter a date that is in the future."
|
6604 |
msgstr "Errore! Si prega di inserire una data futura."
|
6605 |
|
6606 |
+
#: includes/ui-js-config.php:38
|
6607 |
+
#@ fl-builder
|
6608 |
msgid "Do you really want to delete this column?"
|
6609 |
msgstr "Vuoi davvero eliminare questa colonna?"
|
6610 |
|
6611 |
+
#: includes/ui-js-config.php:40
|
6612 |
+
#@ fl-builder
|
6613 |
msgid "Do you really want to delete this module?"
|
6614 |
msgstr "Vuoi davvero eliminare questo modulo?"
|
6615 |
|
6616 |
+
#: includes/ui-js-config.php:41
|
6617 |
+
#@ fl-builder
|
6618 |
msgid "Do you really want to delete this row?"
|
6619 |
msgstr "Vuoi davvero eliminare questa riga?"
|
6620 |
|
6621 |
+
#: includes/ui-js-config.php:53
|
6622 |
+
#@ fl-builder
|
|
|
|
|
|
|
|
|
|
|
6623 |
msgid "Error! Please enter a valid day."
|
6624 |
msgstr "Errore! Si prega di inserire un giorno valido."
|
6625 |
|
6626 |
+
#: includes/ui-js-config.php:54
|
6627 |
+
#@ fl-builder
|
6628 |
msgid "Error! Please enter a valid month."
|
6629 |
msgstr "Errore! Si prega di inserire un mese valido."
|
6630 |
|
6631 |
+
#: includes/ui-js-config.php:55
|
6632 |
+
#@ fl-builder
|
6633 |
msgid "Error! Please enter a valid year."
|
6634 |
msgstr "Errore! Si prega di inserire un anno valido."
|
6635 |
|
6636 |
+
#: includes/ui-js-config.php:69
|
6637 |
+
#@ fl-builder
|
6638 |
msgid "Please enter a color first."
|
6639 |
msgstr "Si prega di inserire prima un colore."
|
6640 |
|
6641 |
+
#: includes/ui-js-config.php:70
|
6642 |
+
#@ fl-builder
|
6643 |
msgid "Add a color preset first."
|
6644 |
msgstr "Aggiungi un colore preferito prima."
|
6645 |
|
6646 |
+
#: includes/ui-js-config.php:78
|
6647 |
+
#@ fl-builder
|
6648 |
msgid "Paste color here..."
|
6649 |
msgstr "Incolla colore qui..."
|
6650 |
|
6651 |
+
#: includes/ui-js-config.php:83
|
6652 |
+
#@ fl-builder
|
|
|
|
|
|
|
|
|
|
|
6653 |
msgid "Are you sure?"
|
6654 |
msgstr "Sei sicuro?"
|
6655 |
|
6656 |
+
#: includes/ui-js-config.php:117
|
6657 |
+
#@ fl-builder
|
6658 |
+
msgid "The Tools button lets you save a template, duplicate a layout, edit the settings for a layout or edit the global settings."
|
6659 |
+
msgstr "Il pulsante strumenti consente di salvare un modello, duplicare un layout, modificare le impostazioni di un layout o modificare le impostazioni globali."
|
|
|
|
|
|
|
|
|
6660 |
|
6661 |
+
#: includes/ui-js-templates.php:31
|
6662 |
+
#: includes/ui-js-templates.php:86
|
6663 |
+
#@ fl-builder
|
6664 |
msgid "Edit Column"
|
6665 |
msgstr "Modifica colonna"
|
6666 |
|
6667 |
+
#: includes/ui-js-templates.php:35
|
6668 |
+
#: includes/ui-js-templates.php:91
|
6669 |
+
#@ fl-builder
|
6670 |
msgid "Insert Column Before"
|
6671 |
msgstr "Inserisci colonna prima"
|
6672 |
|
6673 |
+
#: includes/ui-js-templates.php:36
|
6674 |
+
#: includes/ui-js-templates.php:92
|
6675 |
+
#@ fl-builder
|
6676 |
msgid "Insert Column After"
|
6677 |
msgstr "Inserisci colonna dopo"
|
6678 |
|
6679 |
+
#: includes/ui-js-templates.php:39
|
6680 |
+
#: includes/ui-js-templates.php:95
|
6681 |
+
#@ fl-builder
|
6682 |
msgid "Reset Column Widths"
|
6683 |
msgstr "Reimposta larghezza colonne"
|
6684 |
|
|
|
6685 |
#: includes/ui-js-templates.php:89
|
6686 |
+
#@ fl-builder
|
6687 |
msgid "Delete Column"
|
6688 |
msgstr "Elimina colonna"
|
6689 |
|
|
|
6690 |
#: includes/updater/includes/form.php:22
|
6691 |
+
#@ fl-builder
|
6692 |
msgid "License key saved!"
|
6693 |
msgstr "Chiave di licenza salvata!"
|
6694 |
|
6695 |
+
#: modules/audio/audio.php:19
|
6696 |
+
#: modules/audio/audio.php:100
|
6697 |
+
#@ fl-builder
|
6698 |
msgid "Audio"
|
6699 |
msgstr "Audio"
|
6700 |
|
|
|
6701 |
#: modules/audio/audio.php:20
|
6702 |
+
#@ fl-builder
|
6703 |
msgid "Render a WordPress audio shortcode."
|
6704 |
msgstr "Eseguire il rendering di un shortcode WordPress audio."
|
6705 |
|
|
|
6706 |
#: modules/audio/audio.php:83
|
6707 |
+
#@ fl-builder
|
6708 |
msgid "Audio Type"
|
6709 |
msgstr "Tipo di audio"
|
6710 |
|
|
|
6711 |
#: modules/audio/audio.php:152
|
6712 |
+
#@ fl-builder
|
6713 |
msgid "Dark"
|
6714 |
msgstr "Scuro"
|
6715 |
|
|
|
6716 |
#: modules/audio/audio.php:157
|
6717 |
+
#@ fl-builder
|
6718 |
msgid "Show Playlist"
|
6719 |
msgstr "Mostra Playlist"
|
6720 |
|
|
|
6721 |
#: modules/audio/audio.php:171
|
6722 |
+
#@ fl-builder
|
6723 |
msgid "Show Track Numbers"
|
6724 |
msgstr "Visualizza i numeri dei brani"
|
6725 |
|
|
|
6726 |
#: modules/audio/audio.php:183
|
6727 |
+
#@ fl-builder
|
6728 |
msgid "Show Thumbnail"
|
6729 |
msgstr "Visualizza anteprima"
|
6730 |
|
|
|
6731 |
#: modules/audio/audio.php:192
|
6732 |
+
#@ fl-builder
|
6733 |
msgid "Show Artist Name"
|
6734 |
msgstr "Mostra il nome dell'artista"
|
6735 |
|
|
|
6736 |
#: modules/contact-form/contact-form.php:159
|
6737 |
+
#@ fl-builder
|
6738 |
msgid "Thanks for your message! We’ll be in touch soon."
|
6739 |
msgstr "Grazie per il tuo messaggio! Saremo in contatto presto."
|
6740 |
|
|
|
6741 |
#: modules/countdown/countdown.php:14
|
6742 |
+
#@ fl-builder
|
6743 |
msgid "Countdown"
|
6744 |
msgstr "Conto alla rovescia"
|
6745 |
|
|
|
6746 |
#: modules/countdown/countdown.php:15
|
6747 |
+
#@ fl-builder
|
6748 |
msgid "Render a Countdown module."
|
6749 |
msgstr "Eseguire il rendering del modulo di conto alla rovescia."
|
6750 |
|
|
|
6751 |
#: modules/countdown/countdown.php:88
|
6752 |
+
#: modules/countdown/includes/frontend.php:5
|
6753 |
+
#@ fl-builder
|
6754 |
msgid "Day"
|
6755 |
msgstr "Giorno"
|
6756 |
|
|
|
6757 |
#: modules/countdown/countdown.php:98
|
6758 |
+
#@ fl-builder
|
6759 |
msgid "Month"
|
6760 |
msgstr "Mese"
|
6761 |
|
|
|
6762 |
#: modules/countdown/countdown.php:108
|
6763 |
+
#@ fl-builder
|
6764 |
msgid "Year"
|
6765 |
msgstr "Anno"
|
6766 |
|
6767 |
+
#: modules/countdown/countdown.php:119
|
6768 |
+
#: modules/countdown/countdown.php:123
|
6769 |
+
#@ fl-builder
|
6770 |
msgid "Time"
|
6771 |
msgstr "Orario"
|
6772 |
|
|
|
6773 |
#: modules/countdown/countdown.php:132
|
6774 |
+
#@ fl-builder
|
6775 |
msgid "Time Zone"
|
6776 |
msgstr "Fuso orario"
|
6777 |
|
|
|
6778 |
#: modules/countdown/countdown.php:152
|
6779 |
+
#@ fl-builder
|
6780 |
msgid "Numbers + Circles"
|
6781 |
msgstr "Numeri + cerchi"
|
6782 |
|
|
|
6783 |
#: modules/countdown/countdown.php:168
|
6784 |
+
#@ fl-builder
|
6785 |
msgid "Numbers and Text"
|
6786 |
msgstr "Numeri e testo"
|
6787 |
|
6788 |
+
#: modules/countdown/countdown.php:172
|
6789 |
+
#: modules/numbers/numbers.php:184
|
6790 |
+
#@ fl-builder
|
6791 |
msgid "Number Color"
|
6792 |
msgstr "Colore numero"
|
6793 |
|
6794 |
+
#: modules/countdown/countdown.php:192
|
6795 |
+
#: modules/numbers/numbers.php:194
|
6796 |
+
#@ fl-builder
|
6797 |
msgid "Number Size"
|
6798 |
msgstr "Dimensione numero"
|
6799 |
|
|
|
6800 |
#: modules/countdown/countdown.php:206
|
6801 |
+
#@ fl-builder
|
6802 |
msgid "Text Size"
|
6803 |
msgstr "Dimensione del testo"
|
6804 |
|
|
|
6805 |
#: modules/countdown/countdown.php:220
|
6806 |
+
#@ fl-builder
|
6807 |
msgid "Horizontal Padding"
|
6808 |
msgstr "Spaziatura orizzontale"
|
6809 |
|
|
|
6810 |
#: modules/countdown/countdown.php:243
|
6811 |
+
#@ fl-builder
|
6812 |
msgid "Vertical Padding"
|
6813 |
msgstr "Spaziatura verticale"
|
6814 |
|
|
|
6815 |
#: modules/countdown/countdown.php:266
|
6816 |
+
#@ fl-builder
|
6817 |
msgid "Number Spacing"
|
6818 |
msgstr "Spaziatura del numero"
|
6819 |
|
|
|
6820 |
#: modules/countdown/countdown.php:294
|
6821 |
+
#@ fl-builder
|
6822 |
msgid "Number Background Color"
|
6823 |
msgstr "Colore di sfondo del numero "
|
6824 |
|
|
|
6825 |
#: modules/countdown/countdown.php:304
|
6826 |
+
#@ fl-builder
|
6827 |
msgid "Number Background Opacity"
|
6828 |
msgstr "Opacità sfondo del numero "
|
6829 |
|
|
|
6830 |
#: modules/countdown/countdown.php:312
|
6831 |
+
#@ fl-builder
|
6832 |
msgid "Number Border Radius"
|
6833 |
msgstr "Raggio del bordo del numero"
|
6834 |
|
|
|
6835 |
#: modules/countdown/countdown.php:331
|
6836 |
+
#@ fl-builder
|
6837 |
msgid "Show Time Separators"
|
6838 |
msgstr "Mostra separatori tempo"
|
6839 |
|
|
|
6840 |
#: modules/countdown/countdown.php:345
|
6841 |
+
#@ fl-builder
|
6842 |
msgid "Separator Type"
|
6843 |
msgstr "Tipo di separatore"
|
6844 |
|
|
|
6845 |
#: modules/countdown/countdown.php:348
|
6846 |
+
#@ fl-builder
|
6847 |
msgid "Colon"
|
6848 |
msgstr "Virgola"
|
6849 |
|
|
|
6850 |
#: modules/countdown/countdown.php:349
|
6851 |
+
#@ fl-builder
|
6852 |
msgid "Line"
|
6853 |
msgstr "Linea"
|
6854 |
|
|
|
6855 |
#: modules/countdown/countdown.php:364
|
6856 |
+
#@ fl-builder
|
6857 |
msgid "Separator Size"
|
6858 |
msgstr "Dimensione del separatore"
|
6859 |
|
|
|
6860 |
#: modules/countdown/countdown.php:373
|
6861 |
+
#@ fl-builder
|
6862 |
msgid "Circle Styles"
|
6863 |
msgstr "Stile dei cerchi"
|
6864 |
|
|
|
6865 |
#: modules/countdown/countdown.php:377
|
6866 |
+
#@ fl-builder
|
6867 |
msgid "Circle Size"
|
6868 |
msgstr "Dimensione del cerchio"
|
6869 |
|
|
|
6870 |
#: modules/countdown/countdown.php:411
|
6871 |
+
#@ fl-builder
|
6872 |
msgid "Circle Stroke Size"
|
6873 |
msgstr "Dimensione della linea del cerchio"
|
6874 |
|
6875 |
+
#: modules/countdown/countdown.php:425
|
6876 |
+
#: modules/numbers/numbers.php:251
|
6877 |
+
#@ fl-builder
|
6878 |
msgid "Circle Foreground Color"
|
6879 |
msgstr "Colore in primo piano del cerchio"
|
6880 |
|
6881 |
+
#: modules/countdown/countdown.php:436
|
6882 |
+
#: modules/numbers/numbers.php:262
|
6883 |
+
#@ fl-builder
|
6884 |
msgid "Circle Background Color"
|
6885 |
msgstr "Colore di sfondo del cerchio"
|
6886 |
|
6887 |
+
#: modules/countdown/includes/frontend.php:9
|
6888 |
+
#@ fl-builder
|
6889 |
msgid "Hour"
|
6890 |
msgstr "Ora"
|
6891 |
|
6892 |
+
#: modules/countdown/includes/frontend.php:13
|
6893 |
+
#@ fl-builder
|
6894 |
msgid "Minute"
|
6895 |
msgstr "Minuti"
|
6896 |
|
6897 |
+
#: modules/countdown/includes/frontend.php:17
|
6898 |
+
#@ fl-builder
|
6899 |
msgid "Second"
|
6900 |
msgstr "Secondi"
|
6901 |
|
|
|
6902 |
#: modules/heading/heading.php:119
|
6903 |
+
#@ fl-builder
|
6904 |
msgid "Font"
|
6905 |
msgstr "Tipo di carattere"
|
6906 |
|
|
|
6907 |
#: modules/menu/menu.php:138
|
6908 |
+
#@ fl-builder
|
6909 |
msgid "Hamburger Icon + Label"
|
6910 |
msgstr "Icona hamburger + etichetta"
|
6911 |
|
|
|
6912 |
#: modules/menu/menu.php:152
|
6913 |
+
#@ fl-builder
|
6914 |
msgid "Mobile Width"
|
6915 |
msgstr "Larghezza mobile"
|
6916 |
|
|
|
6917 |
#: modules/menu/menu.php:153
|
6918 |
+
#@ fl-builder
|
6919 |
+
msgid "Choose Full Width if you want the menu to span the width of the screen on mobile devices."
|
6920 |
+
msgstr "Sceglire larghezza piena se si desidera che il menu occupi tutta la larghezza dello schermo sui dispositivi mobili."
|
|
|
|
|
|
|
6921 |
|
|
|
6922 |
#: modules/menu/menu.php:337
|
6923 |
+
#@ fl-builder
|
6924 |
msgid "Menu Background Color (Mobile)"
|
6925 |
msgstr "Colore di sfondo del menu (Mobile)"
|
6926 |
|
|
|
6927 |
#: modules/menu/menu.php:361
|
6928 |
+
#@ fl-builder
|
6929 |
msgid "Submenu Background Opacity"
|
6930 |
msgstr "Opacità dello sfondo dei sottomenu"
|
6931 |
|
|
|
6932 |
#: modules/numbers/numbers.php:14
|
6933 |
+
#@ fl-builder
|
6934 |
msgid "Number Counter"
|
6935 |
msgstr "Contatore numero"
|
6936 |
|
|
|
6937 |
#: modules/numbers/numbers.php:15
|
6938 |
+
#@ fl-builder
|
6939 |
msgid "Renders an animated number counter."
|
6940 |
msgstr "Esegue il rendering di un contatore numerico animato."
|
6941 |
|
|
|
6942 |
#: modules/numbers/numbers.php:69
|
6943 |
+
#@ fl-builder
|
6944 |
msgid "Only Numbers"
|
6945 |
msgstr "Solo numeri"
|
6946 |
|
|
|
6947 |
#: modules/numbers/numbers.php:70
|
6948 |
+
#@ fl-builder
|
6949 |
msgid "Circle Counter"
|
6950 |
msgstr "Contatore circolare"
|
6951 |
|
|
|
6952 |
#: modules/numbers/numbers.php:71
|
6953 |
+
#@ fl-builder
|
6954 |
msgid "Bars Counter"
|
6955 |
msgstr "Contatore a barra"
|
6956 |
|
|
|
6957 |
#: modules/numbers/numbers.php:85
|
6958 |
+
#@ fl-builder
|
6959 |
msgid "Number Type"
|
6960 |
msgstr "Tipo di numero"
|
6961 |
|
|
|
6962 |
#: modules/numbers/numbers.php:88
|
6963 |
+
#@ fl-builder
|
6964 |
msgid "Percent"
|
6965 |
msgstr "Percentuale"
|
6966 |
|
|
|
6967 |
#: modules/numbers/numbers.php:89
|
6968 |
+
#@ fl-builder
|
6969 |
msgid "Standard"
|
6970 |
msgstr "Standard"
|
6971 |
|
|
|
6972 |
#: modules/numbers/numbers.php:99
|
6973 |
+
#@ fl-builder
|
6974 |
msgid "Number"
|
6975 |
msgstr "Numero"
|
6976 |
|
|
|
6977 |
#: modules/numbers/numbers.php:106
|
6978 |
+
#@ fl-builder
|
6979 |
msgid "Total"
|
6980 |
msgstr "Totale"
|
6981 |
|
|
|
6982 |
#: modules/numbers/numbers.php:108
|
6983 |
+
#@ fl-builder
|
6984 |
+
msgid "The total number of units for this counter. For example, if the Number is set to 250 and the Total is set to 500, the counter will animate to 50%."
|
6985 |
+
msgstr "Il numero totale di unità per questo contatore. Ad esempio, se il numero è impostato a 250 e il totale è impostato su 500, il contatore si animerà fino al 50%."
|
|
|
|
|
|
|
|
|
6986 |
|
|
|
6987 |
#: modules/numbers/numbers.php:112
|
6988 |
+
#@ fl-builder
|
6989 |
msgid "Number Position"
|
6990 |
msgstr "Posizione del numero"
|
6991 |
|
|
|
6992 |
#: modules/numbers/numbers.php:114
|
6993 |
+
#@ fl-builder
|
6994 |
msgid "Where to display the number in relation to the bar."
|
6995 |
msgstr "Dove visualizzare il numero in relazione alla barra."
|
6996 |
|
|
|
6997 |
#: modules/numbers/numbers.php:116
|
6998 |
+
#@ fl-builder
|
6999 |
msgid "Inside Bar"
|
7000 |
msgstr "Dentro la barra"
|
7001 |
|
|
|
7002 |
#: modules/numbers/numbers.php:117
|
7003 |
+
#@ fl-builder
|
7004 |
msgid "Above Bar"
|
7005 |
msgstr "Sopra la barra"
|
7006 |
|
|
|
7007 |
#: modules/numbers/numbers.php:118
|
7008 |
+
#@ fl-builder
|
7009 |
msgid "Below Bar"
|
7010 |
msgstr "Sotto la barra"
|
7011 |
|
|
|
7012 |
#: modules/numbers/numbers.php:123
|
7013 |
+
#@ fl-builder
|
7014 |
msgid "Text Before Number"
|
7015 |
msgstr "Testo prima del numero"
|
7016 |
|
|
|
7017 |
#: modules/numbers/numbers.php:125
|
7018 |
+
#@ fl-builder
|
7019 |
msgid "Text to appear above the number. Leave it empty for none."
|
7020 |
msgstr "Testo da visualizzare sopra il numero. Lasciare vuoto per nessuno."
|
7021 |
|
|
|
7022 |
#: modules/numbers/numbers.php:129
|
7023 |
+
#@ fl-builder
|
7024 |
msgid "Text After Number"
|
7025 |
msgstr "Testo dopo il numero"
|
7026 |
|
|
|
7027 |
#: modules/numbers/numbers.php:131
|
7028 |
+
#@ fl-builder
|
7029 |
msgid "Text to appear after the number. Leave it empty for none."
|
7030 |
msgstr "Testo da visualizzare dopo il numero. Lasciare vuoto per nessuno."
|
7031 |
|
|
|
7032 |
#: modules/numbers/numbers.php:135
|
7033 |
+
#@ fl-builder
|
7034 |
msgid "Number Prefix"
|
7035 |
msgstr "Prefisso del numero"
|
7036 |
|
|
|
7037 |
#: modules/numbers/numbers.php:137
|
7038 |
+
#@ fl-builder
|
7039 |
msgid "For example, if your number is US$ 10, your prefix would be \"US$ \"."
|
7040 |
msgstr "Ad esempio, se il numero è US$ 10, il tuo prefisso sarebbe \"US$\"."
|
7041 |
|
|
|
7042 |
#: modules/numbers/numbers.php:141
|
7043 |
+
#@ fl-builder
|
7044 |
msgid "Number Suffix"
|
7045 |
msgstr "Suffisso del numero"
|
7046 |
|
|
|
7047 |
#: modules/numbers/numbers.php:143
|
7048 |
+
#@ fl-builder
|
7049 |
msgid "For example, if your number is 10%, your prefix would be \"%\"."
|
7050 |
msgstr "Ad esempio, se il numero è 10%, il tuo prefisso sarebbe \"%\"."
|
7051 |
|
|
|
7052 |
#: modules/numbers/numbers.php:147
|
7053 |
+
#@ fl-builder
|
7054 |
msgid "Animation Speed"
|
7055 |
msgstr "Velocità di animazione"
|
7056 |
|
7057 |
+
#: modules/numbers/numbers.php:151
|
7058 |
+
#: modules/numbers/numbers.php:160
|
7059 |
+
#@ fl-builder
|
7060 |
msgid "second(s)"
|
7061 |
msgstr "Secondo(i)"
|
7062 |
|
|
|
7063 |
#: modules/numbers/numbers.php:152
|
7064 |
+
#@ fl-builder
|
7065 |
msgid "Number of seconds to complete the animation."
|
7066 |
msgstr "Numero di secondi per completare l'animazione."
|
7067 |
|
|
|
7068 |
#: modules/numbers/numbers.php:156
|
7069 |
+
#@ fl-builder
|
7070 |
msgid "Animation Delay"
|
7071 |
msgstr "Ritardo di animazione"
|
7072 |
|
|
|
7073 |
#: modules/numbers/numbers.php:209
|
7074 |
+
#@ fl-builder
|
7075 |
msgid "Circle Bar Styles"
|
7076 |
msgstr "Stili della barra circolare"
|
7077 |
|
|
|
7078 |
#: modules/numbers/numbers.php:213
|
7079 |
+
#@ fl-builder
|
7080 |
msgid "Cirle Size"
|
7081 |
msgstr "Dimensione cerchio"
|
7082 |
|
|
|
7083 |
#: modules/numbers/numbers.php:237
|
7084 |
+
#@ fl-builder
|
7085 |
msgid "Cirle Stroke Size"
|
7086 |
msgstr "Dimensione della linea del cerchio"
|
7087 |
|
|
|
7088 |
#: modules/numbers/numbers.php:274
|
7089 |
+
#@ fl-builder
|
7090 |
msgid "Bar Styles"
|
7091 |
msgstr "Stile della barra"
|
7092 |
|
|
|
7093 |
#: modules/numbers/numbers.php:278
|
7094 |
+
#@ fl-builder
|
7095 |
msgid "Bar Foreground Color"
|
7096 |
msgstr "Colore in primo piano della barra"
|
7097 |
|
|
|
7098 |
#: modules/numbers/numbers.php:289
|
7099 |
+
#@ fl-builder
|
7100 |
msgid "Bar Background Color"
|
7101 |
msgstr "Colore di sfondo della barra"
|
7102 |
|
|
|
7103 |
#: modules/post-grid/post-grid.php:74
|
7104 |
+
#@ fl-builder
|
7105 |
msgid "Equal Heights"
|
7106 |
msgstr "Altezze uguali"
|
7107 |
|
|
|
7108 |
#: modules/pricing-table/pricing-table.php:79
|
7109 |
+
#@ fl-builder
|
7110 |
msgid "Highlight"
|
7111 |
msgstr "Evidenziare"
|
7112 |
|
|
|
7113 |
#: modules/pricing-table/pricing-table.php:89
|
7114 |
+
#@ fl-builder
|
7115 |
msgid "Border Style"
|
7116 |
msgstr "Stile del bordo"
|
7117 |
|
|
|
7118 |
#: modules/pricing-table/pricing-table.php:92
|
7119 |
+
#@ fl-builder
|
7120 |
msgid "Rounded"
|
7121 |
msgstr "Arrotondato"
|
7122 |
|
|
|
7123 |
#: modules/pricing-table/pricing-table.php:93
|
7124 |
+
#@ fl-builder
|
7125 |
msgid "Straight"
|
7126 |
msgstr "Dritto"
|
7127 |
|
|
|
7128 |
#: modules/pricing-table/pricing-table.php:101
|
7129 |
+
#@ fl-builder
|
7130 |
msgctxt "Border size."
|
7131 |
msgid "Large"
|
7132 |
msgstr "Grande"
|
7133 |
|
|
|
7134 |
#: modules/pricing-table/pricing-table.php:102
|
7135 |
+
#@ fl-builder
|
7136 |
msgctxt "Border size."
|
7137 |
msgid "Medium"
|
7138 |
msgstr "Medio"
|
7139 |
|
|
|
7140 |
#: modules/pricing-table/pricing-table.php:103
|
7141 |
+
#@ fl-builder
|
7142 |
msgctxt "Border size."
|
7143 |
msgid "Small"
|
7144 |
msgstr "Piccolo"
|
7145 |
|
|
|
7146 |
#: modules/pricing-table/pricing-table.php:359
|
7147 |
+
#@ fl-builder
|
7148 |
msgid "Box Border"
|
7149 |
msgstr "Bordo del riquadro"
|
7150 |
|
|
|
7151 |
#: modules/video/video.php:107
|
7152 |
+
#@ fl-builder
|
7153 |
msgid "A video in the MP4 format. Most modern browsers support this format."
|
7154 |
+
msgstr "Un video in formato MP4. I browser più moderni supportano questo formato."
|
|
|
7155 |
|
|
|
7156 |
#: modules/video/video.php:112
|
7157 |
+
#@ fl-builder
|
7158 |
+
msgid "A video in the WebM format to use as fallback. This format is required to support browsers such as FireFox and Opera."
|
7159 |
+
msgstr "Un video in formato WebM da utilizzare come fallback. Questo formato è necessario per supportare i browser come FireFox e Opera."
|
|
|
|
|
|
|
7160 |
|
|
|
7161 |
#: modules/woocommerce/woocommerce.php:63
|
7162 |
+
#@ fl-builder
|
7163 |
msgid "Product Page"
|
7164 |
msgstr "Pagina del prodotto"
|
7165 |
+
|
7166 |
+
#: classes/class-fl-builder-fonts.php:98
|
7167 |
+
#@ fl-builder
|
7168 |
+
msgid "Regular"
|
7169 |
+
msgstr "Normale"
|
7170 |
+
|
7171 |
+
#: includes/admin-posts.php:7
|
7172 |
+
#, php-format
|
7173 |
+
#@ fl-builder
|
7174 |
+
msgctxt "The first %s stands for custom branded \"Page Builder\" name. The second %s stands for the post type name."
|
7175 |
+
msgid "%s is currently active for this %s."
|
7176 |
+
msgstr "%s è attualmente attivo per questo/a %s."
|
7177 |
+
|
7178 |
+
#: includes/field-link.php:2
|
7179 |
+
#@ fl-builder
|
7180 |
+
msgctxt "Link placeholder"
|
7181 |
+
msgid "http://www.example.com"
|
7182 |
+
msgstr "http://www.example.com"
|
7183 |
+
|
7184 |
+
#: includes/global-settings.php:15
|
7185 |
+
#@ fl-builder
|
7186 |
+
msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
|
7187 |
+
msgid "Show"
|
7188 |
+
msgstr "Visualizza"
|
7189 |
+
|
7190 |
+
#: includes/global-settings.php:107
|
7191 |
+
#@ fl-builder
|
7192 |
+
msgctxt "General settings form field label. Intended meaning: \"Responsive layout enabled?\""
|
7193 |
+
msgid "Enabled"
|
7194 |
+
msgstr "Abilitato"
|
7195 |
+
|
7196 |
+
#: includes/global-settings.php:121
|
7197 |
+
#@ fl-builder
|
7198 |
+
msgctxt "General settings form field label. Intended meaning: \"Enable auto spacing for responsive layouts?\""
|
7199 |
+
msgid "Enable Auto Spacing"
|
7200 |
+
msgstr "Abilita la spaziatura automatica"
|
7201 |
+
|
7202 |
+
#: includes/ui-js-config.php:25
|
7203 |
+
#, php-format
|
7204 |
+
#@ fl-builder
|
7205 |
+
msgctxt "%s is the preset hex color code."
|
7206 |
+
msgid "%s is already a saved preset."
|
7207 |
+
msgstr "%s è un preferito già salvato."
|
7208 |
+
|
7209 |
+
#: includes/ui-js-config.php:49
|
7210 |
+
#@ fl-builder
|
7211 |
+
msgctxt "Duplicate page/post action label."
|
7212 |
+
msgid "Duplicate Layout"
|
7213 |
+
msgstr "Duplica il layout"
|
7214 |
+
|
7215 |
+
#: includes/ui-js-config.php:80
|
7216 |
+
#, php-format
|
7217 |
+
#@ fl-builder
|
7218 |
+
msgctxt "%s is the preset hex color code."
|
7219 |
+
msgid "%s added to presets!"
|
7220 |
+
msgstr "%s aggiunto ai preferiti!"
|
7221 |
+
|
7222 |
+
#: modules/countdown/includes/frontend.php:6
|
7223 |
+
#@ fl-builder
|
7224 |
+
msgid "Days"
|
7225 |
+
msgstr "Giorni"
|
7226 |
+
|
7227 |
+
#: modules/countdown/includes/frontend.php:10
|
7228 |
+
#@ fl-builder
|
7229 |
+
msgid "Hours"
|
7230 |
+
msgstr "Ore"
|
7231 |
+
|
7232 |
+
#: modules/countdown/includes/frontend.php:14
|
7233 |
+
#@ fl-builder
|
7234 |
+
msgid "Minutes"
|
7235 |
+
msgstr "Minuti"
|
7236 |
+
|
7237 |
+
#: modules/countdown/includes/frontend.php:18
|
7238 |
+
#@ fl-builder
|
7239 |
+
msgid "Seconds"
|
7240 |
+
msgstr "Secondi"
|
7241 |
+
|