Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | WordPress Page Builder – Beaver Builder |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.3
- changelog.txt +49 -0
- classes/class-fl-builder-admin-settings.php +52 -0
- classes/class-fl-builder-auto-suggest.php +23 -4
- classes/class-fl-builder-loop.php +8 -7
- classes/class-fl-builder-model.php +33 -5
- classes/class-fl-builder-update.php +33 -36
- classes/class-fl-builder.php +24 -16
- css/fl-builder-layout.css +19 -0
- css/fl-builder.css +16 -0
- fl-builder.php +3 -5
- includes/admin-settings-cache.php +23 -0
- includes/admin-settings-modules.php +36 -15
- includes/column-css.php +4 -0
- includes/js-config.php +1 -1
- includes/row-css.php +0 -15
- includes/updater-config.php +1 -1
- js/fl-builder-layout.js +5 -5
- js/fl-builder-preview.js +9 -13
- js/fl-builder.js +11 -13
- languages/de_DE.mo +0 -0
- languages/de_DE.po +4053 -0
- languages/fr_FR.mo +0 -0
- languages/fr_FR.po +1600 -1039
- languages/it_IT.mo +0 -0
- languages/it_IT.po +648 -371
- languages/ru_RU.mo +0 -0
- languages/ru_RU.po +3944 -0
- languages/xx_XX.pot +798 -454
- modules/photo/includes/frontend.php +1 -1
- modules/widget/includes/settings-general.php +2 -0
- readme.txt +1 -1
changelog.txt
CHANGED
@@ -1,3 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h4>1.5.0 - 03/02/2015</h4>
|
2 |
<p><strong>Enhancements</strong></p>
|
3 |
<ul>
|
1 |
+
<h4>1.5.3 - 03/31/2015</h4>
|
2 |
+
<p><strong>Enhancements</strong></p>
|
3 |
+
<ul>
|
4 |
+
<li>Added admin settings section for clearing the builder's CSS and JavaScript cache.</li>
|
5 |
+
<li>Added a setting to show the full content in the posts module.</li>
|
6 |
+
</ul>
|
7 |
+
<p><strong>Bug Fixes</strong></p>
|
8 |
+
<ul>
|
9 |
+
<li>CSS fix for three column layouts in the WooCommerce module.</li>
|
10 |
+
<li>Fixed a preview bug with row background overlay colors.</li>
|
11 |
+
<li>Fixed an issue with the PHP glob function not returning an array on some systems.</li>
|
12 |
+
<li>Fixed CSS conflicts with third party themes and the WordPress editor.</li>
|
13 |
+
</ul>
|
14 |
+
|
15 |
+
<h4>1.5.2 - 03/24/2015</h4>
|
16 |
+
<p><strong>Enhancements</strong></p>
|
17 |
+
<ul>
|
18 |
+
<li>Added logic to the accordion module that scrolls a section into view on mobile if it's not visible.</li>
|
19 |
+
</ul>
|
20 |
+
<p><strong>Bug Fixes</strong></p>
|
21 |
+
<ul>
|
22 |
+
<li>Rolling back part of the last update that removed the style tag from columns. This is due to the fact that many existing sites have old CSS cached that doesn't contain the column width. We'll be releasing this change again in the near future to give sites time to update their cache with the new CSS.</li>
|
23 |
+
<li>Icons in accordion titles don't get replaced anymore when clicked.</li>
|
24 |
+
<li>Fixed an unescaped translation string JavaScript bug.</li>
|
25 |
+
</ul>
|
26 |
+
|
27 |
+
<h4>1.5.1 - 03/22/2015</h4>
|
28 |
+
<p><strong>Enhancements</strong></p>
|
29 |
+
<ul>
|
30 |
+
<li>Added German translation.</li>
|
31 |
+
<li>Added Russian translation.</li>
|
32 |
+
<li>Smooth scrolling now works for all links on a page including links in the header on third party themes.</li>
|
33 |
+
<li>Added phone and subject fields to the contact form module.</li>
|
34 |
+
<li>Added settings to the contact form module for showing and hiding fields.</li>
|
35 |
+
<li>Builder cache now clears itself if the domain name of a website changes.</li>
|
36 |
+
<li>Modules in the backend are now categorized the same as they are on the frontend.</li>
|
37 |
+
<li>Moved column width from the style attribute in the markup to the generated css file.</li>
|
38 |
+
</ul>
|
39 |
+
<p><strong>Bug Fixes</strong></p>
|
40 |
+
<ul>
|
41 |
+
<li>Fixed a bug with text editor refresh previews.</li>
|
42 |
+
<li>Added position:static to the body tag when the builder is active to fix issues with WordPress editor popups when the body is set to position:relative.</li>
|
43 |
+
<li>Fixed bugs with setting the product order in the WooCommerce module.</li>
|
44 |
+
<li>CSS fix for row/column colors overriding the color of elements in the heading module such as em tags.</li>
|
45 |
+
<li>Added ignore_sticky_posts to post module queries to prevent sticky posts from showing when not desired.</li>
|
46 |
+
<li>Smooth scrolling is only applied to rows, columns and modules to avoid conflicts with third party scripts.</li>
|
47 |
+
<li>Autosuggest fields such as links now work on pre WordPress 4.0.</li>
|
48 |
+
</ul>
|
49 |
+
|
50 |
<h4>1.5.0 - 03/02/2015</h4>
|
51 |
<p><strong>Enhancements</strong></p>
|
52 |
<ul>
|
classes/class-fl-builder-admin-settings.php
CHANGED
@@ -150,6 +150,10 @@ final class FLBuilderAdminSettings {
|
|
150 |
'title' => __( 'Help Button', 'fl-builder' ),
|
151 |
'show' => self::has_support( 'help-button' ) && ( is_network_admin() || ! self::multisite_support() )
|
152 |
),
|
|
|
|
|
|
|
|
|
153 |
'uninstall' => array(
|
154 |
'title' => __( 'Uninstall', 'fl-builder' ),
|
155 |
'show' => is_network_admin() || ! self::multisite_support()
|
@@ -199,6 +203,9 @@ final class FLBuilderAdminSettings {
|
|
199 |
// Help Button
|
200 |
self::render_form( 'help-button' );
|
201 |
|
|
|
|
|
|
|
202 |
// Uninstall
|
203 |
self::render_form( 'uninstall' );
|
204 |
}
|
@@ -280,6 +287,7 @@ final class FLBuilderAdminSettings {
|
|
280 |
self::save_editing_capability();
|
281 |
self::save_branding();
|
282 |
self::save_help_button();
|
|
|
283 |
self::uninstall();
|
284 |
}
|
285 |
|
@@ -595,6 +603,50 @@ final class FLBuilderAdminSettings {
|
|
595 |
}
|
596 |
}
|
597 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
598 |
/**
|
599 |
* @method uninstall
|
600 |
* @private
|
150 |
'title' => __( 'Help Button', 'fl-builder' ),
|
151 |
'show' => self::has_support( 'help-button' ) && ( is_network_admin() || ! self::multisite_support() )
|
152 |
),
|
153 |
+
'cache' => array(
|
154 |
+
'title' => __( 'Cache', 'fl-builder' ),
|
155 |
+
'show' => true
|
156 |
+
),
|
157 |
'uninstall' => array(
|
158 |
'title' => __( 'Uninstall', 'fl-builder' ),
|
159 |
'show' => is_network_admin() || ! self::multisite_support()
|
203 |
// Help Button
|
204 |
self::render_form( 'help-button' );
|
205 |
|
206 |
+
// Cache
|
207 |
+
self::render_form( 'cache' );
|
208 |
+
|
209 |
// Uninstall
|
210 |
self::render_form( 'uninstall' );
|
211 |
}
|
287 |
self::save_editing_capability();
|
288 |
self::save_branding();
|
289 |
self::save_help_button();
|
290 |
+
self::clear_cache();
|
291 |
self::uninstall();
|
292 |
}
|
293 |
|
603 |
}
|
604 |
}
|
605 |
|
606 |
+
/**
|
607 |
+
* @method clear_cache
|
608 |
+
* @private
|
609 |
+
*/
|
610 |
+
static private function clear_cache()
|
611 |
+
{
|
612 |
+
if ( ! current_user_can( 'delete_plugins' ) ) {
|
613 |
+
return;
|
614 |
+
}
|
615 |
+
else if ( isset( $_POST['fl-cache-nonce'] ) && wp_verify_nonce( $_POST['fl-cache-nonce'], 'cache' ) ) {
|
616 |
+
if ( is_network_admin() ) {
|
617 |
+
self::clear_cache_for_all_sites();
|
618 |
+
}
|
619 |
+
else {
|
620 |
+
FLBuilderModel::delete_all_asset_cache();
|
621 |
+
}
|
622 |
+
}
|
623 |
+
}
|
624 |
+
|
625 |
+
/**
|
626 |
+
* @method clear_cache_for_all_sites
|
627 |
+
* @private
|
628 |
+
*/
|
629 |
+
static private function clear_cache_for_all_sites()
|
630 |
+
{
|
631 |
+
global $blog_id;
|
632 |
+
global $wpdb;
|
633 |
+
|
634 |
+
// Save the original blog id.
|
635 |
+
$original_blog_id = $blog_id;
|
636 |
+
|
637 |
+
// Get all blog ids.
|
638 |
+
$blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
|
639 |
+
|
640 |
+
// Loop through the blog ids and clear the cache.
|
641 |
+
foreach ( $blog_ids as $id ) {
|
642 |
+
switch_to_blog( $id );
|
643 |
+
FLBuilderModel::delete_all_asset_cache();
|
644 |
+
}
|
645 |
+
|
646 |
+
// Revert to the original blog.
|
647 |
+
switch_to_blog( $original_blog_id );
|
648 |
+
}
|
649 |
+
|
650 |
/**
|
651 |
* @method uninstall
|
652 |
* @private
|
classes/class-fl-builder-auto-suggest.php
CHANGED
@@ -71,6 +71,25 @@ final class FLBuilderAutoSuggest {
|
|
71 |
return isset($data) ? json_encode($data) : '';
|
72 |
}
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
/**
|
75 |
* @method posts
|
76 |
*/
|
@@ -79,7 +98,7 @@ final class FLBuilderAutoSuggest {
|
|
79 |
global $wpdb;
|
80 |
|
81 |
$data = array();
|
82 |
-
$like =
|
83 |
$type = esc_sql($_REQUEST['fl_as_action_data']);
|
84 |
|
85 |
$posts = $wpdb->get_results("
|
@@ -166,7 +185,7 @@ final class FLBuilderAutoSuggest {
|
|
166 |
global $wpdb;
|
167 |
|
168 |
$data = array();
|
169 |
-
$like =
|
170 |
$users = $wpdb->get_results("SELECT * FROM {$wpdb->users} WHERE user_login LIKE '%{$like}%'");
|
171 |
|
172 |
foreach($users as $user) {
|
@@ -205,10 +224,10 @@ final class FLBuilderAutoSuggest {
|
|
205 |
global $wpdb;
|
206 |
|
207 |
$data = array();
|
208 |
-
$like =
|
209 |
$types = FLBuilderLoop::post_types();
|
210 |
$slugs = array();
|
211 |
-
|
212 |
foreach($types as $slug => $type) {
|
213 |
$slugs[] = esc_sql($slug);
|
214 |
}
|
71 |
return isset($data) ? json_encode($data) : '';
|
72 |
}
|
73 |
|
74 |
+
/**
|
75 |
+
* @method get_like
|
76 |
+
*/
|
77 |
+
static public function get_like()
|
78 |
+
{
|
79 |
+
global $wpdb;
|
80 |
+
|
81 |
+
$like = urldecode( $_REQUEST['fl_as_query'] );
|
82 |
+
|
83 |
+
if ( method_exists( $wpdb, 'esc_like' ) ) {
|
84 |
+
$like = esc_sql( $wpdb->esc_like( $like ) );
|
85 |
+
}
|
86 |
+
else {
|
87 |
+
$like = like_escape( esc_sql( $like ) );
|
88 |
+
}
|
89 |
+
|
90 |
+
return $like;
|
91 |
+
}
|
92 |
+
|
93 |
/**
|
94 |
* @method posts
|
95 |
*/
|
98 |
global $wpdb;
|
99 |
|
100 |
$data = array();
|
101 |
+
$like = self::get_like();
|
102 |
$type = esc_sql($_REQUEST['fl_as_action_data']);
|
103 |
|
104 |
$posts = $wpdb->get_results("
|
185 |
global $wpdb;
|
186 |
|
187 |
$data = array();
|
188 |
+
$like = self::get_like();
|
189 |
$users = $wpdb->get_results("SELECT * FROM {$wpdb->users} WHERE user_login LIKE '%{$like}%'");
|
190 |
|
191 |
foreach($users as $user) {
|
224 |
global $wpdb;
|
225 |
|
226 |
$data = array();
|
227 |
+
$like = self::get_like();
|
228 |
$types = FLBuilderLoop::post_types();
|
229 |
$slugs = array();
|
230 |
+
|
231 |
foreach($types as $slug => $type) {
|
232 |
$slugs[] = esc_sql($slug);
|
233 |
}
|
classes/class-fl-builder-loop.php
CHANGED
@@ -20,13 +20,14 @@ final class FLBuilderLoop {
|
|
20 |
$users = empty($settings->users) ? '' : $settings->users;
|
21 |
|
22 |
$args = array(
|
23 |
-
'paged'
|
24 |
-
'posts_per_page'
|
25 |
-
'post_type'
|
26 |
-
'orderby'
|
27 |
-
'order'
|
28 |
-
'author'
|
29 |
-
'tax_query'
|
|
|
30 |
);
|
31 |
|
32 |
// Build the taxonomy query.
|
20 |
$users = empty($settings->users) ? '' : $settings->users;
|
21 |
|
22 |
$args = array(
|
23 |
+
'paged' => is_front_page() ? get_query_var('page') : get_query_var('paged'),
|
24 |
+
'posts_per_page' => $posts_per_page,
|
25 |
+
'post_type' => $post_type,
|
26 |
+
'orderby' => $order_by,
|
27 |
+
'order' => $order,
|
28 |
+
'author' => $users,
|
29 |
+
'tax_query' => array('relation' => 'AND'),
|
30 |
+
'ignore_sticky_posts' => true
|
31 |
);
|
32 |
|
33 |
// Build the taxonomy query.
|
classes/class-fl-builder-model.php
CHANGED
@@ -583,10 +583,19 @@ final class FLBuilderModel {
|
|
583 |
$cache_dir = self::get_cache_dir();
|
584 |
|
585 |
if($post_id == null) {
|
586 |
-
|
587 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
588 |
}
|
589 |
else {
|
|
|
590 |
$css = $cache_dir['path'] . $post_id . '-layout.css';
|
591 |
$css_draft = $cache_dir['path'] . $post_id . '-layout-draft.css';
|
592 |
$css_preview = $cache_dir['path'] . $post_id . '-layout-preview.css';
|
@@ -615,6 +624,25 @@ final class FLBuilderModel {
|
|
615 |
}
|
616 |
}
|
617 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
618 |
/**
|
619 |
* @method generate_node_id
|
620 |
*/
|
@@ -1435,7 +1463,7 @@ final class FLBuilderModel {
|
|
1435 |
/**
|
1436 |
* @method get_categorized_modules
|
1437 |
*/
|
1438 |
-
static public function get_categorized_modules()
|
1439 |
{
|
1440 |
$enabled_modules = self::get_enabled_modules();
|
1441 |
|
@@ -1455,7 +1483,7 @@ final class FLBuilderModel {
|
|
1455 |
// Build the categories array.
|
1456 |
foreach(self::$modules as $module) {
|
1457 |
|
1458 |
-
if(!in_array($module->slug, $enabled_modules)) {
|
1459 |
continue;
|
1460 |
}
|
1461 |
else if($module->slug == 'widget') {
|
@@ -2704,7 +2732,7 @@ final class FLBuilderModel {
|
|
2704 |
'video' => false,
|
2705 |
'video_embed' => '<iframe width="420" height="315" src="https://www.youtube.com/embed/CNJbH2gaACo" frameborder="0" allowfullscreen></iframe>',
|
2706 |
'knowledge_base' => true,
|
2707 |
-
'knowledge_base_url' => 'https://www.wpbeaverbuilder.com/
|
2708 |
'forums' => true,
|
2709 |
'forums_url' => 'https://www.wpbeaverbuilder.com/support/?utm_source=external&utm_medium=builder&utm_campaign=forums-button',
|
2710 |
);
|
583 |
$cache_dir = self::get_cache_dir();
|
584 |
|
585 |
if($post_id == null) {
|
586 |
+
|
587 |
+
$css = glob( $cache_dir['path'] . '*.css' );
|
588 |
+
$js = glob( $cache_dir['path'] . '*.js' );
|
589 |
+
|
590 |
+
if ( is_array( $css ) ) {
|
591 |
+
array_map( 'unlink', $css );
|
592 |
+
}
|
593 |
+
if ( is_array( $js ) ) {
|
594 |
+
array_map( 'unlink', $js );
|
595 |
+
}
|
596 |
}
|
597 |
else {
|
598 |
+
|
599 |
$css = $cache_dir['path'] . $post_id . '-layout.css';
|
600 |
$css_draft = $cache_dir['path'] . $post_id . '-layout-draft.css';
|
601 |
$css_preview = $cache_dir['path'] . $post_id . '-layout-preview.css';
|
624 |
}
|
625 |
}
|
626 |
|
627 |
+
/**
|
628 |
+
* Delete the asset cache if the domain has changed.
|
629 |
+
*
|
630 |
+
* @method delete_asset_cache_domain_change
|
631 |
+
*/
|
632 |
+
static public function delete_asset_cache_domain_change()
|
633 |
+
{
|
634 |
+
$home_url = home_url();
|
635 |
+
$saved_url = get_option( '_fl_builder_home_url' );
|
636 |
+
|
637 |
+
if ( ! $saved_url ) {
|
638 |
+
update_option( '_fl_builder_home_url', $home_url );
|
639 |
+
}
|
640 |
+
else if ( $home_url != $saved_url ) {
|
641 |
+
self::delete_all_asset_cache();
|
642 |
+
update_option( '_fl_builder_home_url', $home_url );
|
643 |
+
}
|
644 |
+
}
|
645 |
+
|
646 |
/**
|
647 |
* @method generate_node_id
|
648 |
*/
|
1463 |
/**
|
1464 |
* @method get_categorized_modules
|
1465 |
*/
|
1466 |
+
static public function get_categorized_modules( $show_disabled = false )
|
1467 |
{
|
1468 |
$enabled_modules = self::get_enabled_modules();
|
1469 |
|
1483 |
// Build the categories array.
|
1484 |
foreach(self::$modules as $module) {
|
1485 |
|
1486 |
+
if(!in_array($module->slug, $enabled_modules) && !$show_disabled) {
|
1487 |
continue;
|
1488 |
}
|
1489 |
else if($module->slug == 'widget') {
|
2732 |
'video' => false,
|
2733 |
'video_embed' => '<iframe width="420" height="315" src="https://www.youtube.com/embed/CNJbH2gaACo" frameborder="0" allowfullscreen></iframe>',
|
2734 |
'knowledge_base' => true,
|
2735 |
+
'knowledge_base_url' => 'https://www.wpbeaverbuilder.com/knowledge-base/?utm_source=external&utm_medium=builder&utm_campaign=docs-button',
|
2736 |
'forums' => true,
|
2737 |
'forums_url' => 'https://www.wpbeaverbuilder.com/support/?utm_source=external&utm_medium=builder&utm_campaign=forums-button',
|
2738 |
);
|
classes/class-fl-builder-update.php
CHANGED
@@ -11,33 +11,34 @@ final class FLBuilderUpdate {
|
|
11 |
static public function init()
|
12 |
{
|
13 |
// Make sure the user is logged in.
|
14 |
-
if(!is_user_logged_in()) {
|
15 |
return;
|
16 |
}
|
17 |
|
18 |
-
//
|
19 |
-
|
20 |
-
|
21 |
-
// No version number. This must be a fresh install.
|
22 |
-
if(!$version) {
|
23 |
-
update_site_option('_fl_builder_version', FL_BUILDER_VERSION);
|
24 |
return;
|
25 |
}
|
26 |
|
27 |
-
//
|
28 |
-
|
|
|
|
|
|
|
|
|
29 |
return;
|
30 |
}
|
31 |
-
|
32 |
// Only run updates if the version numbers don't match.
|
33 |
-
else if(!version_compare($
|
34 |
|
35 |
-
if(is_multisite()) {
|
36 |
-
self::run_multisite();
|
37 |
}
|
38 |
else {
|
39 |
-
self::run();
|
40 |
}
|
|
|
|
|
41 |
}
|
42 |
}
|
43 |
|
@@ -45,35 +46,27 @@ final class FLBuilderUpdate {
|
|
45 |
* @method run
|
46 |
* @private
|
47 |
*/
|
48 |
-
static private function run()
|
49 |
{
|
50 |
-
// Get the current version.
|
51 |
-
$version = get_site_option('_fl_builder_version');
|
52 |
-
|
53 |
// Update to 1.2.8 or greater.
|
54 |
-
if(version_compare($
|
55 |
self::v_1_2_8();
|
56 |
}
|
57 |
|
58 |
// Update to 1.4.6 or greater.
|
59 |
-
if(version_compare($
|
60 |
self::v_1_4_6();
|
61 |
}
|
62 |
|
63 |
// Clear all asset cache.
|
64 |
FLBuilderModel::delete_all_asset_cache();
|
65 |
-
|
66 |
-
// Update the version number.
|
67 |
-
if(!is_multisite()) {
|
68 |
-
update_site_option('_fl_builder_version', FL_BUILDER_VERSION);
|
69 |
-
}
|
70 |
}
|
71 |
|
72 |
/**
|
73 |
* @method run_multisite
|
74 |
* @private
|
75 |
*/
|
76 |
-
static private function run_multisite()
|
77 |
{
|
78 |
global $blog_id;
|
79 |
global $wpdb;
|
@@ -82,19 +75,16 @@ final class FLBuilderUpdate {
|
|
82 |
$original_blog_id = $blog_id;
|
83 |
|
84 |
// Get all blog ids.
|
85 |
-
$blog_ids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
|
86 |
|
87 |
// Loop through the blog ids and run the update.
|
88 |
-
foreach($blog_ids as $id) {
|
89 |
-
switch_to_blog($id);
|
90 |
-
self::run();
|
91 |
}
|
92 |
|
93 |
// Revert to the original blog.
|
94 |
-
switch_to_blog($original_blog_id);
|
95 |
-
|
96 |
-
// Update the version number.
|
97 |
-
update_site_option('_fl_builder_version', FL_BUILDER_VERSION);
|
98 |
}
|
99 |
|
100 |
/**
|
@@ -267,8 +257,15 @@ final class FLBuilderUpdate {
|
|
267 |
self::v_1_2_8_convert_global_settings();
|
268 |
|
269 |
// Delete all asset cache.
|
270 |
-
|
271 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
}
|
273 |
}
|
274 |
|
11 |
static public function init()
|
12 |
{
|
13 |
// Make sure the user is logged in.
|
14 |
+
if ( ! is_user_logged_in() ) {
|
15 |
return;
|
16 |
}
|
17 |
|
18 |
+
// Don't update for dev copies.
|
19 |
+
if ( FL_BUILDER_VERSION == '{FL_BUILDER_VERSION}' ) {
|
|
|
|
|
|
|
|
|
20 |
return;
|
21 |
}
|
22 |
|
23 |
+
// Get the saved version.
|
24 |
+
$saved_version = get_site_option( '_fl_builder_version' );
|
25 |
+
|
26 |
+
// No saved version number. This must be a fresh install.
|
27 |
+
if ( ! $saved_version ) {
|
28 |
+
update_site_option( '_fl_builder_version', FL_BUILDER_VERSION );
|
29 |
return;
|
30 |
}
|
|
|
31 |
// Only run updates if the version numbers don't match.
|
32 |
+
else if ( ! version_compare( $saved_version, FL_BUILDER_VERSION, '=' ) ) {
|
33 |
|
34 |
+
if ( is_multisite() ) {
|
35 |
+
self::run_multisite( $saved_version );
|
36 |
}
|
37 |
else {
|
38 |
+
self::run( $saved_version );
|
39 |
}
|
40 |
+
|
41 |
+
update_site_option( '_fl_builder_version', FL_BUILDER_VERSION );
|
42 |
}
|
43 |
}
|
44 |
|
46 |
* @method run
|
47 |
* @private
|
48 |
*/
|
49 |
+
static private function run( $saved_version )
|
50 |
{
|
|
|
|
|
|
|
51 |
// Update to 1.2.8 or greater.
|
52 |
+
if ( version_compare( $saved_version, '1.2.8', '<' ) ) {
|
53 |
self::v_1_2_8();
|
54 |
}
|
55 |
|
56 |
// Update to 1.4.6 or greater.
|
57 |
+
if ( version_compare( $saved_version, '1.4.6', '<' ) ) {
|
58 |
self::v_1_4_6();
|
59 |
}
|
60 |
|
61 |
// Clear all asset cache.
|
62 |
FLBuilderModel::delete_all_asset_cache();
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
64 |
|
65 |
/**
|
66 |
* @method run_multisite
|
67 |
* @private
|
68 |
*/
|
69 |
+
static private function run_multisite( $saved_version )
|
70 |
{
|
71 |
global $blog_id;
|
72 |
global $wpdb;
|
75 |
$original_blog_id = $blog_id;
|
76 |
|
77 |
// Get all blog ids.
|
78 |
+
$blog_ids = $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs" );
|
79 |
|
80 |
// Loop through the blog ids and run the update.
|
81 |
+
foreach ( $blog_ids as $id ) {
|
82 |
+
switch_to_blog( $id );
|
83 |
+
self::run( $saved_version );
|
84 |
}
|
85 |
|
86 |
// Revert to the original blog.
|
87 |
+
switch_to_blog( $original_blog_id );
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
/**
|
257 |
self::v_1_2_8_convert_global_settings();
|
258 |
|
259 |
// Delete all asset cache.
|
260 |
+
$css = glob( $cache_dir['path'] . '*.css' );
|
261 |
+
$js = glob( $cache_dir['path'] . '*.js' );
|
262 |
+
|
263 |
+
if ( is_array( $css ) ) {
|
264 |
+
array_map( 'unlink', $css );
|
265 |
+
}
|
266 |
+
if ( is_array( $js ) ) {
|
267 |
+
array_map( 'unlink', $js );
|
268 |
+
}
|
269 |
}
|
270 |
}
|
271 |
|
classes/class-fl-builder.php
CHANGED
@@ -903,24 +903,30 @@ final class FLBuilder {
|
|
903 |
*/
|
904 |
static public function render_row_attributes( $row )
|
905 |
{
|
|
|
|
|
|
|
906 |
// ID
|
907 |
if ( ! empty( $row->settings->id ) ) {
|
908 |
-
echo ' id="' . $row->settings->id . '"';
|
909 |
}
|
910 |
|
911 |
// Class
|
912 |
echo ' class="fl-row';
|
913 |
echo ' fl-row-' . $row->settings->width . '-width';
|
914 |
echo ' fl-row-bg-' . $row->settings->bg_type;
|
915 |
-
echo ' fl-node-' . $row->node;
|
916 |
|
917 |
-
if ( ! empty( $row->settings->
|
918 |
-
echo
|
919 |
}
|
920 |
if ( ! empty( $row->settings->responsive_display ) ) {
|
921 |
echo ' fl-visible-' . $row->settings->responsive_display;
|
922 |
}
|
|
|
|
|
|
|
923 |
|
|
|
924 |
echo '"';
|
925 |
|
926 |
// Data
|
@@ -1040,9 +1046,11 @@ final class FLBuilder {
|
|
1040 |
*/
|
1041 |
static public function render_column_attributes( $col )
|
1042 |
{
|
|
|
|
|
1043 |
// ID
|
1044 |
if ( ! empty( $col->settings->id ) ) {
|
1045 |
-
echo ' id="' . $col->settings->id . '"';
|
1046 |
}
|
1047 |
|
1048 |
// Class
|
@@ -1051,16 +1059,14 @@ final class FLBuilder {
|
|
1051 |
if ( $col->settings->size <= 50 ) {
|
1052 |
echo ' fl-col-small';
|
1053 |
}
|
1054 |
-
|
1055 |
-
echo ' fl-node-' . $col->node;
|
1056 |
-
|
1057 |
-
if ( ! empty( $col->settings->class ) ) {
|
1058 |
-
echo apply_filters( 'fl_builder_column_custom_class', ' ' . $col->settings->class, $col );
|
1059 |
-
}
|
1060 |
if ( ! empty( $col->settings->responsive_display ) ) {
|
1061 |
echo ' fl-visible-' . $col->settings->responsive_display;
|
1062 |
}
|
|
|
|
|
|
|
1063 |
|
|
|
1064 |
echo '"';
|
1065 |
|
1066 |
// Width
|
@@ -1177,26 +1183,28 @@ final class FLBuilder {
|
|
1177 |
*/
|
1178 |
static public function render_module_attributes( $module )
|
1179 |
{
|
|
|
|
|
1180 |
// ID
|
1181 |
if ( ! empty( $module->settings->id ) ) {
|
1182 |
-
echo ' id="' . $module->settings->id . '"';
|
1183 |
}
|
1184 |
|
1185 |
// Class
|
1186 |
echo ' class="fl-module';
|
1187 |
echo ' fl-module-' . $module->settings->type;
|
1188 |
-
echo ' fl-node-' . $module->node;
|
1189 |
|
1190 |
-
if ( ! empty( $module->settings->class ) ) {
|
1191 |
-
echo apply_filters( 'fl_builder_module_custom_class', ' ' . $module->settings->class, $module );
|
1192 |
-
}
|
1193 |
if ( ! empty( $module->settings->responsive_display ) ) {
|
1194 |
echo ' fl-visible-' . $module->settings->responsive_display;
|
1195 |
}
|
1196 |
if ( ! empty( $module->settings->animation ) ) {
|
1197 |
echo ' fl-animation fl-' . $module->settings->animation;
|
1198 |
}
|
|
|
|
|
|
|
1199 |
|
|
|
1200 |
echo '"';
|
1201 |
|
1202 |
// Data
|
903 |
*/
|
904 |
static public function render_row_attributes( $row )
|
905 |
{
|
906 |
+
$custom_class = apply_filters( 'fl_builder_row_custom_class', $row->settings->class, $row );
|
907 |
+
$overlay_bgs = array( 'photo', 'parallax', 'slideshow', 'video' );
|
908 |
+
|
909 |
// ID
|
910 |
if ( ! empty( $row->settings->id ) ) {
|
911 |
+
echo ' id="' . esc_attr( $row->settings->id ) . '"';
|
912 |
}
|
913 |
|
914 |
// Class
|
915 |
echo ' class="fl-row';
|
916 |
echo ' fl-row-' . $row->settings->width . '-width';
|
917 |
echo ' fl-row-bg-' . $row->settings->bg_type;
|
|
|
918 |
|
919 |
+
if ( in_array( $row->settings->bg_type, $overlay_bgs ) && ! empty( $row->settings->bg_overlay_color ) ) {
|
920 |
+
echo ' fl-row-bg-overlay';
|
921 |
}
|
922 |
if ( ! empty( $row->settings->responsive_display ) ) {
|
923 |
echo ' fl-visible-' . $row->settings->responsive_display;
|
924 |
}
|
925 |
+
if ( ! empty( $custom_class ) ) {
|
926 |
+
echo ' ' . trim( esc_attr( $custom_class ) );
|
927 |
+
}
|
928 |
|
929 |
+
echo ' fl-node-' . $row->node;
|
930 |
echo '"';
|
931 |
|
932 |
// Data
|
1046 |
*/
|
1047 |
static public function render_column_attributes( $col )
|
1048 |
{
|
1049 |
+
$custom_class = apply_filters( 'fl_builder_column_custom_class', $col->settings->class, $col );
|
1050 |
+
|
1051 |
// ID
|
1052 |
if ( ! empty( $col->settings->id ) ) {
|
1053 |
+
echo ' id="' . esc_attr( $col->settings->id ) . '"';
|
1054 |
}
|
1055 |
|
1056 |
// Class
|
1059 |
if ( $col->settings->size <= 50 ) {
|
1060 |
echo ' fl-col-small';
|
1061 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1062 |
if ( ! empty( $col->settings->responsive_display ) ) {
|
1063 |
echo ' fl-visible-' . $col->settings->responsive_display;
|
1064 |
}
|
1065 |
+
if ( ! empty( $custom_class ) ) {
|
1066 |
+
echo ' ' . trim( esc_attr( $custom_class ) );
|
1067 |
+
}
|
1068 |
|
1069 |
+
echo ' fl-node-' . $col->node;
|
1070 |
echo '"';
|
1071 |
|
1072 |
// Width
|
1183 |
*/
|
1184 |
static public function render_module_attributes( $module )
|
1185 |
{
|
1186 |
+
$custom_class = apply_filters( 'fl_builder_module_custom_class', $module->settings->class, $module );
|
1187 |
+
|
1188 |
// ID
|
1189 |
if ( ! empty( $module->settings->id ) ) {
|
1190 |
+
echo ' id="' . esc_attr( $module->settings->id ) . '"';
|
1191 |
}
|
1192 |
|
1193 |
// Class
|
1194 |
echo ' class="fl-module';
|
1195 |
echo ' fl-module-' . $module->settings->type;
|
|
|
1196 |
|
|
|
|
|
|
|
1197 |
if ( ! empty( $module->settings->responsive_display ) ) {
|
1198 |
echo ' fl-visible-' . $module->settings->responsive_display;
|
1199 |
}
|
1200 |
if ( ! empty( $module->settings->animation ) ) {
|
1201 |
echo ' fl-animation fl-' . $module->settings->animation;
|
1202 |
}
|
1203 |
+
if ( ! empty( $custom_class ) ) {
|
1204 |
+
echo ' ' . trim( esc_attr( $custom_class ) );
|
1205 |
+
}
|
1206 |
|
1207 |
+
echo ' fl-node-' . $module->node;
|
1208 |
echo '"';
|
1209 |
|
1210 |
// Data
|
css/fl-builder-layout.css
CHANGED
@@ -133,6 +133,25 @@
|
|
133 |
top: 0;
|
134 |
}
|
135 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
/* Modules
|
137 |
------------------------------------------------------ */
|
138 |
|
133 |
top: 0;
|
134 |
}
|
135 |
|
136 |
+
/* Bg Overlay */
|
137 |
+
.fl-row-bg-overlay .fl-row-content-wrap {
|
138 |
+
position: relative;
|
139 |
+
}
|
140 |
+
.fl-row-bg-overlay .fl-row-content-wrap:after {
|
141 |
+
content: '';
|
142 |
+
display: block;
|
143 |
+
position: absolute;
|
144 |
+
top: 0;
|
145 |
+
right: 0;
|
146 |
+
bottom: 0;
|
147 |
+
left: 0;
|
148 |
+
z-index: 0;
|
149 |
+
}
|
150 |
+
.fl-row-bg-overlay .fl-row-content {
|
151 |
+
position: relative;
|
152 |
+
z-index: 1;
|
153 |
+
}
|
154 |
+
|
155 |
/* Modules
|
156 |
------------------------------------------------------ */
|
157 |
|
css/fl-builder.css
CHANGED
@@ -4,6 +4,9 @@
|
|
4 |
html.fl-builder-edit {
|
5 |
margin-top: 43px !important;
|
6 |
}
|
|
|
|
|
|
|
7 |
.fl-builder-edit #wpadminbar {
|
8 |
display: none;
|
9 |
}
|
@@ -996,6 +999,12 @@ form.fl-builder-settings {
|
|
996 |
}
|
997 |
|
998 |
/* Text Editors */
|
|
|
|
|
|
|
|
|
|
|
|
|
999 |
.fl-builder-settings .wp-editor-container {
|
1000 |
border: 1px solid #e5e5e5;
|
1001 |
}
|
@@ -1028,6 +1037,8 @@ form.fl-builder-settings {
|
|
1028 |
-moz-box-sizing: border-box;
|
1029 |
-webkit-box-sizing: border-box;
|
1030 |
}
|
|
|
|
|
1031 |
.fl-builder form#wp-link {
|
1032 |
color: #000;
|
1033 |
font-family: Helvetica, Verdana, sans-serif;
|
@@ -1355,6 +1366,9 @@ body > .fl-builder-tour-dimmed {
|
|
1355 |
box-shadow: 0 0 40px rgba(0,0,0,.3);
|
1356 |
color: #666;
|
1357 |
font-size: 13px;
|
|
|
|
|
|
|
1358 |
max-width: none;
|
1359 |
padding: 0;
|
1360 |
width: 300px;
|
@@ -1369,6 +1383,8 @@ body > .fl-builder-tour-dimmed {
|
|
1369 |
.popover[class*=tour-] .popover-title {
|
1370 |
border-radius: 0;
|
1371 |
color: #333;
|
|
|
|
|
1372 |
}
|
1373 |
.popover[class*=tour-] .fa-times {
|
1374 |
color: #b3b3b3;
|
4 |
html.fl-builder-edit {
|
5 |
margin-top: 43px !important;
|
6 |
}
|
7 |
+
.fl-builder-edit body {
|
8 |
+
position: static;
|
9 |
+
}
|
10 |
.fl-builder-edit #wpadminbar {
|
11 |
display: none;
|
12 |
}
|
999 |
}
|
1000 |
|
1001 |
/* Text Editors */
|
1002 |
+
.fl-builder-settings .wp-switch-editor {
|
1003 |
+
background: #ebebeb;
|
1004 |
+
border: 1px solid #e5e5e5;
|
1005 |
+
border-radius: 0;
|
1006 |
+
color: #333;
|
1007 |
+
}
|
1008 |
.fl-builder-settings .wp-editor-container {
|
1009 |
border: 1px solid #e5e5e5;
|
1010 |
}
|
1037 |
-moz-box-sizing: border-box;
|
1038 |
-webkit-box-sizing: border-box;
|
1039 |
}
|
1040 |
+
|
1041 |
+
/* Editor Link Modal */
|
1042 |
.fl-builder form#wp-link {
|
1043 |
color: #000;
|
1044 |
font-family: Helvetica, Verdana, sans-serif;
|
1366 |
box-shadow: 0 0 40px rgba(0,0,0,.3);
|
1367 |
color: #666;
|
1368 |
font-size: 13px;
|
1369 |
+
font-family: Helvetica, Verdana, sans-serif;
|
1370 |
+
font-weight: normal;
|
1371 |
+
line-height: 18px;
|
1372 |
max-width: none;
|
1373 |
padding: 0;
|
1374 |
width: 300px;
|
1383 |
.popover[class*=tour-] .popover-title {
|
1384 |
border-radius: 0;
|
1385 |
color: #333;
|
1386 |
+
letter-spacing: normal;
|
1387 |
+
text-transform: none;
|
1388 |
}
|
1389 |
.popover[class*=tour-] .fa-times {
|
1390 |
color: #b3b3b3;
|
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.5.
|
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.5.
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
@@ -52,9 +52,6 @@ add_action('init', 'FLBuilderUpdate:
|
|
52 |
add_action('init', 'FLBuilderModel::load_settings', 1);
|
53 |
add_action('init', 'FLBuilderModel::load_modules', 2);
|
54 |
|
55 |
-
/* Admin AJAX Actions */
|
56 |
-
add_action('wp_ajax_fl_builder_save', 'FLBuilderModel::update');
|
57 |
-
|
58 |
/* Admin AJAX Filters */
|
59 |
add_filter('heartbeat_received', 'FLBuilderModel::lock_post', 10, 2);
|
60 |
|
@@ -90,6 +87,7 @@ add_action('fl_ajax_fl_builder_render_new_module_settings', 'FLBuilder::rende
|
|
90 |
add_action('fl_ajax_fl_builder_render_module_settings', 'FLBuilder::render_module_settings');
|
91 |
|
92 |
/* Actions */
|
|
|
93 |
add_action('init', 'FLBuilder::register_templates_post_type');
|
94 |
add_action('send_headers', 'FLBuilder::no_cache_headers');
|
95 |
add_action('wp', 'FLBuilder::ajax');
|
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.5.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.5.3');
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
52 |
add_action('init', 'FLBuilderModel::load_settings', 1);
|
53 |
add_action('init', 'FLBuilderModel::load_modules', 2);
|
54 |
|
|
|
|
|
|
|
55 |
/* Admin AJAX Filters */
|
56 |
add_filter('heartbeat_received', 'FLBuilderModel::lock_post', 10, 2);
|
57 |
|
87 |
add_action('fl_ajax_fl_builder_render_module_settings', 'FLBuilder::render_module_settings');
|
88 |
|
89 |
/* Actions */
|
90 |
+
add_action('init', 'FLBuilderModel::delete_asset_cache_domain_change');
|
91 |
add_action('init', 'FLBuilder::register_templates_post_type');
|
92 |
add_action('send_headers', 'FLBuilder::no_cache_headers');
|
93 |
add_action('wp', 'FLBuilder::ajax');
|
includes/admin-settings-cache.php
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="fl-cache-form" class="fl-settings-form">
|
2 |
+
|
3 |
+
<h3 class="fl-settings-form-header"><?php _e('Cache', 'fl-builder'); ?></h3>
|
4 |
+
|
5 |
+
<form id="cache-form" action="<?php FLBuilderAdminSettings::render_form_action( 'cache' ); ?>" method="post">
|
6 |
+
|
7 |
+
<div class="fl-settings-form-content">
|
8 |
+
|
9 |
+
<p><?php _e( '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.', 'fl-builder' ); ?></p>
|
10 |
+
|
11 |
+
<?php if ( is_network_admin() ) : ?>
|
12 |
+
<p><strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?></p>
|
13 |
+
<?php elseif ( ! is_network_admin() && is_multisite() ) : ?>
|
14 |
+
<p><strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This only applies to this site. Please visit the Network Admin Settings to clear the cache for all sites on the network.', 'fl-builder'); ?></p>
|
15 |
+
<?php endif; ?>
|
16 |
+
|
17 |
+
</div>
|
18 |
+
<p class="submit">
|
19 |
+
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Clear Cache', 'fl-builder' ); ?>" />
|
20 |
+
<?php wp_nonce_field('cache', 'fl-cache-nonce'); ?>
|
21 |
+
</p>
|
22 |
+
</form>
|
23 |
+
</div>
|
includes/admin-settings-modules.php
CHANGED
@@ -16,27 +16,48 @@
|
|
16 |
<p><?php _e('Check or uncheck modules below to enable or disable them.', 'fl-builder'); ?></p>
|
17 |
<?php
|
18 |
|
19 |
-
|
20 |
-
$
|
|
|
21 |
|
22 |
?>
|
23 |
<label>
|
24 |
<input class="fl-module-all-cb" type="checkbox" name="fl-modules[]" value="all" <?php echo $checked; ?> />
|
25 |
<?php _ex( 'All', 'Plugin setup page: Modules.', 'fl-builder' ); ?>
|
26 |
</label>
|
27 |
-
<?php
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
<?php endforeach; ?>
|
41 |
</div>
|
42 |
<p class="submit">
|
16 |
<p><?php _e('Check or uncheck modules below to enable or disable them.', 'fl-builder'); ?></p>
|
17 |
<?php
|
18 |
|
19 |
+
$categories = FLBuilderModel::get_categorized_modules( true );
|
20 |
+
$enabled_modules = FLBuilderModel::get_enabled_modules();
|
21 |
+
$checked = in_array('all', $enabled_modules) ? 'checked' : '';
|
22 |
|
23 |
?>
|
24 |
<label>
|
25 |
<input class="fl-module-all-cb" type="checkbox" name="fl-modules[]" value="all" <?php echo $checked; ?> />
|
26 |
<?php _ex( 'All', 'Plugin setup page: Modules.', 'fl-builder' ); ?>
|
27 |
</label>
|
28 |
+
<?php foreach ( $categories as $title => $modules ) : ?>
|
29 |
+
<h3><?php echo $title; ?></h3>
|
30 |
+
<?php
|
31 |
+
|
32 |
+
if ( $title == __( 'WordPress Widgets', 'fl-builder') ) :
|
33 |
+
|
34 |
+
$checked = in_array('widget', $enabled_modules) ? 'checked' : '';
|
35 |
+
|
36 |
+
?>
|
37 |
+
<p>
|
38 |
+
<label>
|
39 |
+
<input class="fl-module-cb" type="checkbox" name="fl-modules[]" value="widget" <?php echo $checked; ?> />
|
40 |
+
<?php echo $title; ?>
|
41 |
+
</label>
|
42 |
+
</p>
|
43 |
+
<?php
|
44 |
+
|
45 |
+
continue;
|
46 |
+
|
47 |
+
endif;
|
48 |
+
|
49 |
+
foreach ( $modules as $module ) :
|
50 |
+
|
51 |
+
$checked = in_array($module->slug, $enabled_modules) ? 'checked' : '';
|
52 |
+
|
53 |
+
?>
|
54 |
+
<p>
|
55 |
+
<label>
|
56 |
+
<input class="fl-module-cb" type="checkbox" name="fl-modules[]" value="<?php echo $module->slug; ?>" <?php echo $checked; ?> />
|
57 |
+
<?php echo $module->name; ?>
|
58 |
+
</label>
|
59 |
+
</p>
|
60 |
+
<?php endforeach; ?>
|
61 |
<?php endforeach; ?>
|
62 |
</div>
|
63 |
<p class="submit">
|
includes/column-css.php
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
<?php if(!empty($col->settings->text_color)) : ?>
|
2 |
.fl-node-<?php echo $col->node; ?>,
|
3 |
.fl-node-<?php echo $col->node; ?> * {
|
1 |
+
.fl-node-<?php echo $col->node; ?> {
|
2 |
+
width: <?php echo $col->settings->size; ?>%;
|
3 |
+
}
|
4 |
+
|
5 |
<?php if(!empty($col->settings->text_color)) : ?>
|
6 |
.fl-node-<?php echo $col->node; ?>,
|
7 |
.fl-node-<?php echo $col->node; ?> * {
|
includes/js-config.php
CHANGED
@@ -35,7 +35,7 @@ var FLBuilderStrings = {
|
|
35 |
duplicateTemplate: '<?php esc_attr_e('Duplicate This Template', 'fl-builder'); ?>',
|
36 |
editGlobalSettings: '<?php esc_attr_e('Edit Global Settings', 'fl-builder'); ?>',
|
37 |
emptyMessage: '<?php esc_attr_e('Drop a row layout or module to get started!', 'fl-builder') ?>',
|
38 |
-
errorMessage: '<?php
|
39 |
fullSize: '<?php esc_attr_e('Full Size', 'fl-builder'); ?>',
|
40 |
getHelp: '<?php esc_attr_e('Get Help', 'fl-builder'); ?>',
|
41 |
gettingStartedVideo: '<?php esc_attr_e('Getting Started Video', 'fl-builder'); ?>',
|
35 |
duplicateTemplate: '<?php esc_attr_e('Duplicate This Template', 'fl-builder'); ?>',
|
36 |
editGlobalSettings: '<?php esc_attr_e('Edit Global Settings', 'fl-builder'); ?>',
|
37 |
emptyMessage: '<?php esc_attr_e('Drop a row layout or module to get started!', 'fl-builder') ?>',
|
38 |
+
errorMessage: '<?php esc_attr_e('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.', 'fl-builder') ?>',
|
39 |
fullSize: '<?php esc_attr_e('Full Size', 'fl-builder'); ?>',
|
40 |
getHelp: '<?php esc_attr_e('Get Help', 'fl-builder'); ?>',
|
41 |
gettingStartedVideo: '<?php esc_attr_e('Getting Started Video', 'fl-builder'); ?>',
|
includes/row-css.php
CHANGED
@@ -25,25 +25,10 @@
|
|
25 |
<?php endif; ?>
|
26 |
|
27 |
<?php if( in_array( $row->settings->bg_type, array('photo', 'parallax', 'slideshow', 'video') ) && !empty($row->settings->bg_overlay_color)) : ?>
|
28 |
-
.fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
|
29 |
-
position: relative;
|
30 |
-
}
|
31 |
.fl-node-<?php echo $row->node; ?> .fl-row-content-wrap:after {
|
32 |
-
content: '';
|
33 |
-
display: block;
|
34 |
-
position: absolute;
|
35 |
-
top: 0;
|
36 |
-
right: 0;
|
37 |
-
bottom: 0;
|
38 |
-
left: 0;
|
39 |
-
z-index: 0;
|
40 |
background-color: #<?php echo $row->settings->bg_overlay_color; ?>;
|
41 |
background-color: rgba(<?php echo implode(',', FLBuilderColor::hex_to_rgb($row->settings->bg_overlay_color)) ?>, <?php echo $row->settings->bg_overlay_opacity/100; ?>);
|
42 |
}
|
43 |
-
.fl-node-<?php echo $row->node; ?> .fl-row-content {
|
44 |
-
position: relative;
|
45 |
-
z-index: 1;
|
46 |
-
}
|
47 |
<?php endif; ?>
|
48 |
|
49 |
<?php if($row->settings->bg_type == 'parallax' && !empty($row->settings->bg_parallax_image_src)) : ?>
|
25 |
<?php endif; ?>
|
26 |
|
27 |
<?php if( in_array( $row->settings->bg_type, array('photo', 'parallax', 'slideshow', 'video') ) && !empty($row->settings->bg_overlay_color)) : ?>
|
|
|
|
|
|
|
28 |
.fl-node-<?php echo $row->node; ?> .fl-row-content-wrap:after {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
background-color: #<?php echo $row->settings->bg_overlay_color; ?>;
|
30 |
background-color: rgba(<?php echo implode(',', FLBuilderColor::hex_to_rgb($row->settings->bg_overlay_color)) ?>, <?php echo $row->settings->bg_overlay_opacity/100; ?>);
|
31 |
}
|
|
|
|
|
|
|
|
|
32 |
<?php endif; ?>
|
33 |
|
34 |
<?php if($row->settings->bg_type == 'parallax' && !empty($row->settings->bg_parallax_image_src)) : ?>
|
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.5.
|
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.5.3',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
js/fl-builder-layout.js
CHANGED
@@ -40,9 +40,7 @@
|
|
40 |
}
|
41 |
|
42 |
// Init anchor links.
|
43 |
-
|
44 |
-
FLBuilderLayout._initAnchorLinks();
|
45 |
-
}
|
46 |
},
|
47 |
|
48 |
_destroy: function()
|
@@ -176,7 +174,7 @@
|
|
176 |
|
177 |
_initAnchorLinks: function()
|
178 |
{
|
179 |
-
$( '
|
180 |
},
|
181 |
|
182 |
_initAnchorLink: function()
|
@@ -194,7 +192,9 @@
|
|
194 |
element = $( '#' + id );
|
195 |
|
196 |
if ( element.length > 0 ) {
|
197 |
-
|
|
|
|
|
198 |
}
|
199 |
}
|
200 |
catch( e ) {}
|
40 |
}
|
41 |
|
42 |
// Init anchor links.
|
43 |
+
FLBuilderLayout._initAnchorLinks();
|
|
|
|
|
44 |
},
|
45 |
|
46 |
_destroy: function()
|
174 |
|
175 |
_initAnchorLinks: function()
|
176 |
{
|
177 |
+
$( 'a' ).each( FLBuilderLayout._initAnchorLink );
|
178 |
},
|
179 |
|
180 |
_initAnchorLink: function()
|
192 |
element = $( '#' + id );
|
193 |
|
194 |
if ( element.length > 0 ) {
|
195 |
+
if ( element.hasClass( 'fl-row' ) || element.hasClass( 'fl-col' ) || element.hasClass( 'fl-module' ) ) {
|
196 |
+
$( link ).on( 'click', FLBuilderLayout._scrollToElementOnLinkClick );
|
197 |
+
}
|
198 |
}
|
199 |
}
|
200 |
catch( e ) {}
|
js/fl-builder-preview.js
CHANGED
@@ -582,6 +582,7 @@ var FLBuilderPreview;
|
|
582 |
var rgb, alpha, value;
|
583 |
|
584 |
if(this.elements.bgOverlayColor.val() == '' || isNaN(this.elements.bgOverlayOpacity.val())) {
|
|
|
585 |
this.updateCSSRule(this.classes.content + ':after', 'background-color', 'transparent');
|
586 |
}
|
587 |
else {
|
@@ -591,18 +592,8 @@ var FLBuilderPreview;
|
|
591 |
value = 'rgba(' + rgb.join() + ', ' + alpha + ')';
|
592 |
|
593 |
this.delay(100, $.proxy(function(){
|
594 |
-
this.
|
595 |
-
this.updateCSSRule(this.classes.content + ':after',
|
596 |
-
'background-color' : value,
|
597 |
-
'content' : "''",
|
598 |
-
'display' : 'block',
|
599 |
-
'position' : 'absolute',
|
600 |
-
'top' : '0',
|
601 |
-
'right' : '0',
|
602 |
-
'bottom' : '0',
|
603 |
-
'left' : '0',
|
604 |
-
'z-index' : '0'
|
605 |
-
});
|
606 |
}, this));
|
607 |
|
608 |
}
|
@@ -1288,7 +1279,12 @@ var FLBuilderPreview;
|
|
1288 |
text = $('<div>' + editor.getContent() + '</div>');
|
1289 |
}
|
1290 |
else {
|
1291 |
-
|
|
|
|
|
|
|
|
|
|
|
1292 |
}
|
1293 |
|
1294 |
text.find('script').remove();
|
582 |
var rgb, alpha, value;
|
583 |
|
584 |
if(this.elements.bgOverlayColor.val() == '' || isNaN(this.elements.bgOverlayOpacity.val())) {
|
585 |
+
this.elements.node.removeClass('fl-row-bg-overlay');
|
586 |
this.updateCSSRule(this.classes.content + ':after', 'background-color', 'transparent');
|
587 |
}
|
588 |
else {
|
592 |
value = 'rgba(' + rgb.join() + ', ' + alpha + ')';
|
593 |
|
594 |
this.delay(100, $.proxy(function(){
|
595 |
+
this.elements.node.addClass('fl-row-bg-overlay');
|
596 |
+
this.updateCSSRule(this.classes.content + ':after', 'background-color', value);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
597 |
}, this));
|
598 |
|
599 |
}
|
1279 |
text = $('<div>' + editor.getContent() + '</div>');
|
1280 |
}
|
1281 |
else {
|
1282 |
+
if ( 'undefined' == typeof switchEditors || 'undefined' == typeof switchEditors.wpautop ) {
|
1283 |
+
text = $('<div>' + textarea.val() + '</div>');
|
1284 |
+
}
|
1285 |
+
else {
|
1286 |
+
text = $('<div>' + switchEditors.wpautop( textarea.val() ) + '</div>');
|
1287 |
+
}
|
1288 |
}
|
1289 |
|
1290 |
text.find('script').remove();
|
js/fl-builder.js
CHANGED
@@ -3794,7 +3794,6 @@ var FLBuilder;
|
|
3794 |
{
|
3795 |
var wpEditors = $('.fl-builder-settings textarea.wp-editor-area');
|
3796 |
|
3797 |
-
$('.wp-switch-editor.switch-tmce').trigger('click');
|
3798 |
wpEditors.each(FLBuilder._updateEditorField);
|
3799 |
},
|
3800 |
|
@@ -3804,21 +3803,20 @@ var FLBuilder;
|
|
3804 |
*/
|
3805 |
_updateEditorField: function()
|
3806 |
{
|
3807 |
-
var textarea = $(this),
|
3808 |
-
|
3809 |
-
id = textarea.attr('id'),
|
3810 |
-
|
3811 |
-
editor = typeof tinyMCE == 'undefined' ? false : tinyMCE.get(id);
|
3812 |
|
3813 |
-
if
|
3814 |
-
|
3815 |
-
|
3816 |
-
else {
|
3817 |
-
content = $('#' + id).val();
|
3818 |
}
|
3819 |
|
3820 |
-
textarea
|
3821 |
-
|
|
|
3822 |
},
|
3823 |
|
3824 |
/* AJAX
|
3794 |
{
|
3795 |
var wpEditors = $('.fl-builder-settings textarea.wp-editor-area');
|
3796 |
|
|
|
3797 |
wpEditors.each(FLBuilder._updateEditorField);
|
3798 |
},
|
3799 |
|
3803 |
*/
|
3804 |
_updateEditorField: function()
|
3805 |
{
|
3806 |
+
var textarea = $( this ),
|
3807 |
+
wrap = textarea.closest( '.wp-editor-wrap' ),
|
3808 |
+
id = textarea.attr( 'id' ),
|
3809 |
+
setting = textarea.closest( '.fl-editor-field' ).attr( 'id' ),
|
3810 |
+
editor = typeof tinyMCE == 'undefined' ? false : tinyMCE.get( id );
|
3811 |
|
3812 |
+
// Update the textarea content if tinymce is active.
|
3813 |
+
if ( editor && wrap.hasClass( 'tmce-active' ) ) {
|
3814 |
+
textarea.val( editor.getContent() );
|
|
|
|
|
3815 |
}
|
3816 |
|
3817 |
+
// Set the textarea name to our setting name so
|
3818 |
+
// it can be referenced in the settings object.
|
3819 |
+
textarea.attr( 'name', setting );
|
3820 |
},
|
3821 |
|
3822 |
/* AJAX
|
languages/de_DE.mo
ADDED
Binary file
|
languages/de_DE.po
ADDED
@@ -0,0 +1,4053 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-03-03 10:40:00+0000\n"
|
6 |
+
"PO-Revision-Date: 2015-03-29 20:27-0800\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: de_DE\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.7.4\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
18 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
|
22 |
+
#: classes/class-fl-builder-admin-settings.php:93
|
23 |
+
#: includes/global-settings.php:4
|
24 |
+
#, php-format
|
25 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
26 |
+
msgid "%s Settings"
|
27 |
+
msgstr "%s Einstellungen"
|
28 |
+
|
29 |
+
#: classes/class-fl-builder-admin-settings.php:107
|
30 |
+
msgid "Settings updated!"
|
31 |
+
msgstr "Einstellungen aktualisiert!"
|
32 |
+
|
33 |
+
#: classes/class-fl-builder-admin-settings.php:118
|
34 |
+
msgid "License"
|
35 |
+
msgstr "Lizenz"
|
36 |
+
|
37 |
+
#: classes/class-fl-builder-admin-settings.php:122
|
38 |
+
#: includes/admin-settings-upgrade.php:3
|
39 |
+
msgid "Upgrade"
|
40 |
+
msgstr "Upgrade"
|
41 |
+
|
42 |
+
#: classes/class-fl-builder-admin-settings.php:126
|
43 |
+
#: includes/global-settings.php:90
|
44 |
+
msgid "Modules"
|
45 |
+
msgstr "Module"
|
46 |
+
|
47 |
+
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
|
48 |
+
msgid "Templates"
|
49 |
+
msgstr "Vorlagen"
|
50 |
+
|
51 |
+
#: classes/class-fl-builder-admin-settings.php:134
|
52 |
+
#: includes/admin-settings-post-types.php:3
|
53 |
+
msgid "Post Types"
|
54 |
+
msgstr "Posttypen"
|
55 |
+
|
56 |
+
#: classes/class-fl-builder-admin-settings.php:138
|
57 |
+
#: modules/icon-group/icon-group.php:27
|
58 |
+
msgid "Icons"
|
59 |
+
msgstr "Icons"
|
60 |
+
|
61 |
+
#: classes/class-fl-builder-admin-settings.php:142
|
62 |
+
msgid "Editing"
|
63 |
+
msgstr "Bearbeitung"
|
64 |
+
|
65 |
+
#: classes/class-fl-builder-admin-settings.php:146
|
66 |
+
#: includes/admin-settings-branding.php:3
|
67 |
+
msgid "Branding"
|
68 |
+
msgstr "Branding"
|
69 |
+
|
70 |
+
# @ fl-builder
|
71 |
+
#: classes/class-fl-builder-admin-settings.php:150
|
72 |
+
msgid "Help Button"
|
73 |
+
msgstr "Hilfe Button"
|
74 |
+
|
75 |
+
#: classes/class-fl-builder-admin-settings.php:154
|
76 |
+
#: includes/admin-settings-uninstall.php:3
|
77 |
+
#: includes/admin-settings-uninstall.php:15
|
78 |
+
msgid "Uninstall"
|
79 |
+
msgstr "Deinstallieren"
|
80 |
+
|
81 |
+
# @ fl-builder
|
82 |
+
#: classes/class-fl-builder-admin-settings.php:376
|
83 |
+
msgid "Error! You must have at least one icon set enabled."
|
84 |
+
msgstr "Fehler! Sie müssen mindestens einen Symbolsatz aktiviert haben."
|
85 |
+
|
86 |
+
# @ fl-builder
|
87 |
+
#: classes/class-fl-builder-admin-settings.php:418
|
88 |
+
msgid "Error! Could not unzip file."
|
89 |
+
msgstr "Fehler! Konnte Datei nicht entpacken."
|
90 |
+
|
91 |
+
# @ fl-builder
|
92 |
+
#: classes/class-fl-builder-admin-settings.php:452
|
93 |
+
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
94 |
+
msgstr ""
|
95 |
+
"Fehler! Bitte laden Sie entweder ein Iconset von Icomoon oder Fontello."
|
96 |
+
|
97 |
+
# @ fl-builder
|
98 |
+
#: classes/class-fl-builder-admin-settings.php:566
|
99 |
+
msgid "Error! Please enter an iframe for the video embed code."
|
100 |
+
msgstr "Fehler! Bitte geben Sie ein Iframe für video Embed-Code ein."
|
101 |
+
|
102 |
+
# @ fl-builder
|
103 |
+
#: classes/class-fl-builder-admin-settings.php:584
|
104 |
+
msgid "Error! You must have at least one feature of the help button enabled."
|
105 |
+
msgstr ""
|
106 |
+
"Fehler! Sie müssen mindestens ein Feature des Hilfe Button aktiviert haben."
|
107 |
+
|
108 |
+
#: classes/class-fl-builder-admin.php:40
|
109 |
+
#, php-format
|
110 |
+
msgid ""
|
111 |
+
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
112 |
+
"with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
|
113 |
+
"of this plugin."
|
114 |
+
msgstr ""
|
115 |
+
"Diese Version des <strong>Page Builder</strong> Plugins ist nicht kompatibel "
|
116 |
+
"mit einer Multisite. <a%s>Bitte upgraden Sie.</a> zur Multisiteversion des "
|
117 |
+
"Plugins."
|
118 |
+
|
119 |
+
#: classes/class-fl-builder-admin.php:50
|
120 |
+
msgid ""
|
121 |
+
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
122 |
+
"greater. Please update WordPress before activating the plugin."
|
123 |
+
msgstr ""
|
124 |
+
"Der <strong>Page Builder</strong> benötigt WP 3.5 oder höher. Bitte "
|
125 |
+
"aktualisieren Sie WP bevor sie den PageBuilder aktivieren."
|
126 |
+
|
127 |
+
#: classes/class-fl-builder-admin.php:96
|
128 |
+
#, php-format
|
129 |
+
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
130 |
+
msgstr ""
|
131 |
+
"Page Builder aktiviert! <a%s> Klicken Sie hier</a> um Fernupdates zu "
|
132 |
+
"aktivieren."
|
133 |
+
|
134 |
+
#: classes/class-fl-builder-admin.php:191
|
135 |
+
msgctxt "Plugin action link label."
|
136 |
+
msgid "Upgrade"
|
137 |
+
msgstr "Upgrade"
|
138 |
+
|
139 |
+
#: classes/class-fl-builder-admin.php:202
|
140 |
+
#: classes/class-fl-builder-model.php:2594
|
141 |
+
msgid "Page Builder"
|
142 |
+
msgstr "Page Builder"
|
143 |
+
|
144 |
+
# @ fl-builder
|
145 |
+
#: classes/class-fl-builder-model.php:1385
|
146 |
+
#, php-format
|
147 |
+
msgctxt "%s stands for the module filename"
|
148 |
+
msgid ""
|
149 |
+
"A module with the filename %s.php already exists! Please namespace your "
|
150 |
+
"module filenames to ensure compatibility with Beaver Builder."
|
151 |
+
msgstr ""
|
152 |
+
"Ein Modul mit dem Dateinamen %s.php existiert bereits! Bitte benennen Sie "
|
153 |
+
"Ihre Modul-Dateinamen um die Kompatibilität mit dem Beaver-Builder sicher zu "
|
154 |
+
"stellen."
|
155 |
+
|
156 |
+
#: classes/class-fl-builder-model.php:1443
|
157 |
+
#: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
|
158 |
+
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
159 |
+
#: modules/separator/separator.php:16 modules/video/video.php:21
|
160 |
+
msgid "Basic Modules"
|
161 |
+
msgstr "Basismodule"
|
162 |
+
|
163 |
+
#: classes/class-fl-builder-model.php:1444
|
164 |
+
#: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
|
165 |
+
#: modules/button/button.php:16 modules/callout/callout.php:16
|
166 |
+
#: modules/contact-form/contact-form.php:16
|
167 |
+
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
168 |
+
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
169 |
+
#: modules/icon/icon.php:16 modules/icon-group/icon-group.php:16
|
170 |
+
#: modules/map/map.php:16 modules/post-grid/post-grid.php:16
|
171 |
+
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
172 |
+
#: modules/slideshow/slideshow.php:16
|
173 |
+
#: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
|
174 |
+
#: modules/testimonials/testimonials.php:16
|
175 |
+
#: modules/woocommerce/woocommerce.php:18
|
176 |
+
msgid "Advanced Modules"
|
177 |
+
msgstr "Erweiterte Module"
|
178 |
+
|
179 |
+
# @ fl-builder
|
180 |
+
#: classes/class-fl-builder-model.php:1445
|
181 |
+
#: classes/class-fl-builder-model.php:1499
|
182 |
+
msgid "Other Modules"
|
183 |
+
msgstr "Andere Module"
|
184 |
+
|
185 |
+
#: classes/class-fl-builder-model.php:1446
|
186 |
+
#: classes/class-fl-builder-model.php:1500 includes/ui.php:88
|
187 |
+
#: modules/widget/widget.php:16
|
188 |
+
msgid "WordPress Widgets"
|
189 |
+
msgstr "WP Widgets"
|
190 |
+
|
191 |
+
#: classes/class-fl-builder-model.php:2009
|
192 |
+
#, php-format
|
193 |
+
msgctxt "%s stands for post/page title."
|
194 |
+
msgid "Copy of %s"
|
195 |
+
msgstr "Kopie von %s"
|
196 |
+
|
197 |
+
#: classes/class-fl-builder-photo.php:75
|
198 |
+
msgctxt "Image size."
|
199 |
+
msgid "Full Size"
|
200 |
+
msgstr "Vollgröße"
|
201 |
+
|
202 |
+
#: classes/class-fl-builder-photo.php:76
|
203 |
+
msgctxt "Image size."
|
204 |
+
msgid "Large"
|
205 |
+
msgstr "Groß"
|
206 |
+
|
207 |
+
#: classes/class-fl-builder-photo.php:77
|
208 |
+
msgctxt "Image size."
|
209 |
+
msgid "Medium"
|
210 |
+
msgstr "Mittel"
|
211 |
+
|
212 |
+
#: classes/class-fl-builder-photo.php:78
|
213 |
+
msgctxt "Image size."
|
214 |
+
msgid "Thumbnail"
|
215 |
+
msgstr "Thumbnail"
|
216 |
+
|
217 |
+
#: classes/class-fl-builder.php:709
|
218 |
+
#, php-format
|
219 |
+
msgctxt "Field name to add."
|
220 |
+
msgid "Add %s"
|
221 |
+
msgstr "Hinzufügen %s"
|
222 |
+
|
223 |
+
#: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
|
224 |
+
msgctxt "Custom post type label."
|
225 |
+
msgid "Layout Templates"
|
226 |
+
msgstr "Layout-Vorlagen"
|
227 |
+
|
228 |
+
#: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
|
229 |
+
msgctxt "Custom post type label."
|
230 |
+
msgid "Layout Template"
|
231 |
+
msgstr "Layout-Vorlage"
|
232 |
+
|
233 |
+
#: classes/class-fl-builder.php:776
|
234 |
+
msgctxt "Custom post type label."
|
235 |
+
msgid "Add New"
|
236 |
+
msgstr "Neu hinzufügen"
|
237 |
+
|
238 |
+
#: classes/class-fl-builder.php:777
|
239 |
+
msgctxt "Custom post type label."
|
240 |
+
msgid "Add New Layout Template"
|
241 |
+
msgstr "Neue Layout-Vorlage hinzufügen"
|
242 |
+
|
243 |
+
#: classes/class-fl-builder.php:778
|
244 |
+
msgctxt "Custom post type label."
|
245 |
+
msgid "New Layout Template"
|
246 |
+
msgstr "Neue Layout-Vorlage"
|
247 |
+
|
248 |
+
#: classes/class-fl-builder.php:779
|
249 |
+
msgctxt "Custom post type label."
|
250 |
+
msgid "Edit Layout Template"
|
251 |
+
msgstr "Layout-Vorlage bearbeiten"
|
252 |
+
|
253 |
+
#: classes/class-fl-builder.php:780
|
254 |
+
msgctxt "Custom post type label."
|
255 |
+
msgid "View Layout Template"
|
256 |
+
msgstr "Layout-Vorlage betrachten"
|
257 |
+
|
258 |
+
#: classes/class-fl-builder.php:781
|
259 |
+
msgctxt "Custom post type label."
|
260 |
+
msgid "All Layout Templates"
|
261 |
+
msgstr "Alle Layout-Vorlagen"
|
262 |
+
|
263 |
+
#: classes/class-fl-builder.php:782
|
264 |
+
msgctxt "Custom post type label."
|
265 |
+
msgid "Search Layout Templates"
|
266 |
+
msgstr "Layout-Vorlagen durchsuchen"
|
267 |
+
|
268 |
+
#: classes/class-fl-builder.php:783
|
269 |
+
msgctxt "Custom post type label."
|
270 |
+
msgid "Parent Layout Templates:"
|
271 |
+
msgstr "Übergeordnete Layout-Vorlagen:"
|
272 |
+
|
273 |
+
#: classes/class-fl-builder.php:784
|
274 |
+
msgctxt "Custom post type label."
|
275 |
+
msgid "No layout templates found."
|
276 |
+
msgstr "Keine Layout-Vorlagen gefunden"
|
277 |
+
|
278 |
+
#: classes/class-fl-builder.php:785
|
279 |
+
msgctxt "Custom post type label."
|
280 |
+
msgid "No layout templates found in Trash."
|
281 |
+
msgstr "Keine Layout-Vorlagen im Papierkorb gefunden"
|
282 |
+
|
283 |
+
#: classes/class-fl-builder.php:1150 includes/js-config.php:66
|
284 |
+
#, php-format
|
285 |
+
msgctxt "%s stands for module name."
|
286 |
+
msgid "%s Settings"
|
287 |
+
msgstr "%s Einstellungen"
|
288 |
+
|
289 |
+
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
290 |
+
msgid "Text Editor"
|
291 |
+
msgstr "Texteditor"
|
292 |
+
|
293 |
+
#: includes/admin-posts.php:7
|
294 |
+
#, php-format
|
295 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
296 |
+
msgid "%s is currently active for this page."
|
297 |
+
msgstr "%s ist derzeit für die Seite aktiv."
|
298 |
+
|
299 |
+
#: includes/admin-posts.php:8
|
300 |
+
#, php-format
|
301 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
302 |
+
msgid "Launch %s"
|
303 |
+
msgstr "Starte %s"
|
304 |
+
|
305 |
+
# @ fl-builder
|
306 |
+
#: includes/admin-posts.php:15
|
307 |
+
#, php-format
|
308 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
309 |
+
msgid ""
|
310 |
+
"Switching to Text Editor mode will disable your %s layout until it is "
|
311 |
+
"enabled again. Any edits made while in Text Editor mode will not be made on "
|
312 |
+
"your %s layout. Do you want to continue?"
|
313 |
+
msgstr ""
|
314 |
+
"Das Umschalten auf den Text-Editor-Modus wird Ihr Layout %s deaktiviert, bis "
|
315 |
+
"es wieder aktiviert wird. Alle Bearbeitungen im Text-Editor-Modus werden "
|
316 |
+
"nicht auf Ihrem %s Layout gemacht werden. Möchten Sie fortfahren?"
|
317 |
+
|
318 |
+
#: includes/admin-settings-branding.php:7
|
319 |
+
msgid "White label the page builder by entering a custom name below."
|
320 |
+
msgstr ""
|
321 |
+
"White-Labeln Sie den Page Builder indem Sie unten einen eigenen Namen "
|
322 |
+
"eingeben."
|
323 |
+
|
324 |
+
#: includes/admin-settings-branding.php:10
|
325 |
+
msgid ""
|
326 |
+
"Additionally, you may also add a custom icon by entering the URL of an image "
|
327 |
+
"below. Leave the field blank if you do not wish to use an icon."
|
328 |
+
msgstr ""
|
329 |
+
"Zusätzlich können Sie ein eigenes Icon hinzufügen indem Sie unten die URL "
|
330 |
+
"eines Bildes eingeben. Lassen Sie das Feld frei wenn Sie kein Icon verwenden "
|
331 |
+
"wollen."
|
332 |
+
|
333 |
+
#: includes/admin-settings-branding.php:14
|
334 |
+
msgid "Save Branding"
|
335 |
+
msgstr "Branding speichern"
|
336 |
+
|
337 |
+
#: includes/admin-settings-editing.php:3
|
338 |
+
msgid "Editing Settings"
|
339 |
+
msgstr "Einstellungen bearbeiten"
|
340 |
+
|
341 |
+
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
342 |
+
#: includes/admin-settings-modules.php:10
|
343 |
+
#: includes/admin-settings-post-types.php:10
|
344 |
+
#: includes/admin-settings-templates.php:10
|
345 |
+
msgid "Override network settings?"
|
346 |
+
msgstr "Netzwerkeinstellungen überschreiben?"
|
347 |
+
|
348 |
+
#: includes/admin-settings-editing.php:16
|
349 |
+
#, php-format
|
350 |
+
msgid ""
|
351 |
+
"Set the <a%s>capability</a> required for users to access advanced builder "
|
352 |
+
"editing such as adding, deleting or moving modules."
|
353 |
+
msgstr ""
|
354 |
+
"Setze die <a%s> Berechtigung</a> die Benutzer benötigen um fortgeschrittene "
|
355 |
+
"Buildervorgänge, wie Module hinzufügen, löschen oder verschieben, "
|
356 |
+
"durchzuführen."
|
357 |
+
|
358 |
+
#: includes/admin-settings-editing.php:22
|
359 |
+
msgid "Save Editing Settings"
|
360 |
+
msgstr "Speichere Bearbeitungseinstellungen"
|
361 |
+
|
362 |
+
# @ fl-builder
|
363 |
+
#: includes/admin-settings-help-button.php:8
|
364 |
+
msgid "Help Button Settings"
|
365 |
+
msgstr "Hilfe-Button-Einstellungen"
|
366 |
+
|
367 |
+
# @ fl-builder
|
368 |
+
#: includes/admin-settings-help-button.php:17
|
369 |
+
msgid "Enable Help Button"
|
370 |
+
msgstr "Hilfe Button aktivieren"
|
371 |
+
|
372 |
+
# @ fl-builder
|
373 |
+
#: includes/admin-settings-help-button.php:23
|
374 |
+
msgid "Help Tour"
|
375 |
+
msgstr "Hilfe Tour"
|
376 |
+
|
377 |
+
# @ fl-builder
|
378 |
+
#: includes/admin-settings-help-button.php:27
|
379 |
+
msgid "Enable Help Tour"
|
380 |
+
msgstr "Hilfe Tour aktivieren"
|
381 |
+
|
382 |
+
# @ fl-builder
|
383 |
+
#: includes/admin-settings-help-button.php:31
|
384 |
+
msgid "Help Video"
|
385 |
+
msgstr "Hilfe-Video"
|
386 |
+
|
387 |
+
# @ fl-builder
|
388 |
+
#: includes/admin-settings-help-button.php:35
|
389 |
+
msgid "Enable Help Video"
|
390 |
+
msgstr "Hilfe Video aktivieren"
|
391 |
+
|
392 |
+
# @ fl-builder
|
393 |
+
#: includes/admin-settings-help-button.php:39
|
394 |
+
msgid "Help Video Embed Code"
|
395 |
+
msgstr "Hilfe Video Embed Code"
|
396 |
+
|
397 |
+
# @ fl-builder
|
398 |
+
#: includes/admin-settings-help-button.php:45
|
399 |
+
msgid "Knowledge Base"
|
400 |
+
msgstr "Wissensdatenbank"
|
401 |
+
|
402 |
+
# @ fl-builder
|
403 |
+
#: includes/admin-settings-help-button.php:49
|
404 |
+
msgid "Enable Knowledge Base"
|
405 |
+
msgstr "Wissensdatenbank aktivieren"
|
406 |
+
|
407 |
+
# @ fl-builder
|
408 |
+
#: includes/admin-settings-help-button.php:53
|
409 |
+
msgid "Knowledge Base URL"
|
410 |
+
msgstr "URL der Wissensdatenbank"
|
411 |
+
|
412 |
+
# @ fl-builder
|
413 |
+
#: includes/admin-settings-help-button.php:59
|
414 |
+
msgid "Forums"
|
415 |
+
msgstr "Foren"
|
416 |
+
|
417 |
+
# @ fl-builder
|
418 |
+
#: includes/admin-settings-help-button.php:63
|
419 |
+
msgid "Enable Forums"
|
420 |
+
msgstr "Foren aktivieren"
|
421 |
+
|
422 |
+
# @ fl-builder
|
423 |
+
#: includes/admin-settings-help-button.php:67
|
424 |
+
msgid "Forums URL"
|
425 |
+
msgstr "URL der Foren"
|
426 |
+
|
427 |
+
# @ fl-builder
|
428 |
+
#: includes/admin-settings-help-button.php:77
|
429 |
+
msgid "Save Help Button Settings"
|
430 |
+
msgstr "Hilfe-Button-Einstellungen speichern"
|
431 |
+
|
432 |
+
# @ fl-builder
|
433 |
+
#: includes/admin-settings-icons.php:3
|
434 |
+
msgid "Icon Settings"
|
435 |
+
msgstr "Symboleinstellungen"
|
436 |
+
|
437 |
+
# @ fl-builder
|
438 |
+
#: includes/admin-settings-icons.php:13
|
439 |
+
msgid "Icons for the main site must be managed in the network admin."
|
440 |
+
msgstr "Symbole für die Hauptseite müssen vom Netzwerkadmin verwaltet werden."
|
441 |
+
|
442 |
+
# @ fl-builder
|
443 |
+
#: includes/admin-settings-icons.php:33
|
444 |
+
#, php-format
|
445 |
+
msgid ""
|
446 |
+
"Enable or disable icon sets using the options below or upload a custom icon "
|
447 |
+
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
448 |
+
msgstr ""
|
449 |
+
"Aktivieren oder deaktivieren Sie die Icon-Sets durch die Optionen unten oder "
|
450 |
+
"laden Sie ein benutzerdefiniertes Iconset von <a%s>Icomoon</a> oder <a"
|
451 |
+
"%s>Fontello</a> hoch."
|
452 |
+
|
453 |
+
# @ fl-builder
|
454 |
+
#: includes/admin-settings-icons.php:48
|
455 |
+
msgctxt "Plugin setup page: Delete icon set."
|
456 |
+
msgid "Delete"
|
457 |
+
msgstr "Löschen"
|
458 |
+
|
459 |
+
# @ fl-builder
|
460 |
+
#: includes/admin-settings-icons.php:59
|
461 |
+
msgid "Upload Icon Set"
|
462 |
+
msgstr "Icon Set hochladen"
|
463 |
+
|
464 |
+
# @ fl-builder
|
465 |
+
#: includes/admin-settings-icons.php:60
|
466 |
+
msgid "Save Icon Settings"
|
467 |
+
msgstr "Icon Einstellungen speichern"
|
468 |
+
|
469 |
+
# @ fl-builder
|
470 |
+
#: includes/admin-settings-js-config.php:4
|
471 |
+
msgid "Select File"
|
472 |
+
msgstr "Datei auswählen"
|
473 |
+
|
474 |
+
#: includes/admin-settings-js-config.php:5
|
475 |
+
msgid ""
|
476 |
+
"Please type \"uninstall\" in the box below to confirm that you really want "
|
477 |
+
"to uninstall the page builder and all of its data."
|
478 |
+
msgstr ""
|
479 |
+
"Bitte tippen Sie \"uninstal\" in das Feld unten um zu bestätigen, dass sie "
|
480 |
+
"den Page Builder und all seine Daten löschen möchten."
|
481 |
+
|
482 |
+
#: includes/admin-settings-modules.php:3
|
483 |
+
msgid "Enabled Modules"
|
484 |
+
msgstr "Aktivierte Module"
|
485 |
+
|
486 |
+
#: includes/admin-settings-modules.php:16
|
487 |
+
msgid "Check or uncheck modules below to enable or disable them."
|
488 |
+
msgstr "Wählen Sie unten Module aus um sie zu aktivieren/deaktivieren."
|
489 |
+
|
490 |
+
#: includes/admin-settings-modules.php:25
|
491 |
+
msgctxt "Plugin setup page: Modules."
|
492 |
+
msgid "All"
|
493 |
+
msgstr "Alle"
|
494 |
+
|
495 |
+
#: includes/admin-settings-modules.php:43
|
496 |
+
msgid "Save Module Settings"
|
497 |
+
msgstr "Moduleinstellungen speichern"
|
498 |
+
|
499 |
+
#: includes/admin-settings-post-types.php:18
|
500 |
+
msgid ""
|
501 |
+
"Enter a comma separated list of the post types you would like the builder to "
|
502 |
+
"work with."
|
503 |
+
msgstr ""
|
504 |
+
"Geben Sie eine kommagetrennte Liste von Posttypen ein, mit denen der Builder "
|
505 |
+
"arbeiten soll."
|
506 |
+
|
507 |
+
#: includes/admin-settings-post-types.php:19
|
508 |
+
#: includes/admin-settings-post-types.php:39
|
509 |
+
msgid "NOTE: Not all custom post types may be supported."
|
510 |
+
msgstr ""
|
511 |
+
"ANMERKUNG: Es werden eventuell nicht alle benutzerdefinierten Posttypen "
|
512 |
+
"unterstützt."
|
513 |
+
|
514 |
+
#: includes/admin-settings-post-types.php:34
|
515 |
+
msgid "Example: page, post, product"
|
516 |
+
msgstr "Beispiel: Seite, Post, Produkt"
|
517 |
+
|
518 |
+
#: includes/admin-settings-post-types.php:38
|
519 |
+
msgid "Select the post types you would like the builder to work with."
|
520 |
+
msgstr "Wählen Sie die Posttypen aus mit denen der Builder arbeiten soll."
|
521 |
+
|
522 |
+
#: includes/admin-settings-post-types.php:70
|
523 |
+
msgid "Save Post Types"
|
524 |
+
msgstr "Posttypen speichern"
|
525 |
+
|
526 |
+
#: includes/admin-settings-templates.php:3
|
527 |
+
msgid "Template Settings"
|
528 |
+
msgstr "Vorlageneinstellungen"
|
529 |
+
|
530 |
+
#: includes/admin-settings-templates.php:16
|
531 |
+
msgid "Enable or disable templates using the options below."
|
532 |
+
msgstr "Aktivieren oder deaktivieren Sie Vorlagen mit den Optionen unten."
|
533 |
+
|
534 |
+
#: includes/admin-settings-templates.php:23
|
535 |
+
msgid "Enable All Templates"
|
536 |
+
msgstr "Alle Vorlagen aktivieren"
|
537 |
+
|
538 |
+
#: includes/admin-settings-templates.php:24
|
539 |
+
msgid "Enable Core Templates Only"
|
540 |
+
msgstr "Nur Kernvorlagen aktivieren"
|
541 |
+
|
542 |
+
#: includes/admin-settings-templates.php:25
|
543 |
+
msgid "Enable User Templates Only"
|
544 |
+
msgstr "Nur Benutzervorlagen aktivieren"
|
545 |
+
|
546 |
+
#: includes/admin-settings-templates.php:26
|
547 |
+
msgid "Disable All Templates"
|
548 |
+
msgstr "Alle Vorlagen deaktivieren"
|
549 |
+
|
550 |
+
#: includes/admin-settings-templates.php:30
|
551 |
+
msgid "Save Template Settings"
|
552 |
+
msgstr "Vorlageneinstellungen speichern"
|
553 |
+
|
554 |
+
#: includes/admin-settings-uninstall.php:5
|
555 |
+
msgid ""
|
556 |
+
"Clicking the button below will uninstall the page builder plugin and delete "
|
557 |
+
"all of the data associated with it. You can uninstall or deactivate the page "
|
558 |
+
"builder from the plugins page instead if you do not wish to delete the data."
|
559 |
+
msgstr ""
|
560 |
+
"Der Button unten deinstalliert den Page Builder und löscht alle mit ihm "
|
561 |
+
"verbundenen Daten. Sie können das Plugin stattdessen von der Pluginsite "
|
562 |
+
"deinstallieren oder deaktivieren, wenn Sie die Daten nicht löschen wollen."
|
563 |
+
|
564 |
+
#: includes/admin-settings-uninstall.php:7
|
565 |
+
#: includes/admin-settings-uninstall.php:10
|
566 |
+
#: includes/updater/includes/form.php:31
|
567 |
+
msgid "NOTE:"
|
568 |
+
msgstr "ANMERKUNG:"
|
569 |
+
|
570 |
+
#: includes/admin-settings-uninstall.php:7
|
571 |
+
msgid ""
|
572 |
+
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
573 |
+
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
574 |
+
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
575 |
+
"its data using those meta values."
|
576 |
+
msgstr ""
|
577 |
+
"Der Builder löscht nicht das Post-Meta <code>_fl_builder_data</code>, "
|
578 |
+
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> falls "
|
579 |
+
"sie es später neu installieren möchten. Wenn Sie das tun, wird der Builder "
|
580 |
+
"all seine Daten mit diesen Metawerden wiederherstellen."
|
581 |
+
|
582 |
+
#: includes/admin-settings-uninstall.php:10
|
583 |
+
#: includes/updater/includes/form.php:31
|
584 |
+
msgid "This applies to all sites on the network."
|
585 |
+
msgstr "Dies bezieht sich auf alle Seiten des Netzwerks."
|
586 |
+
|
587 |
+
#: includes/admin-settings-upgrade.php:5
|
588 |
+
msgid ""
|
589 |
+
"You are currently running the lite version of the Beaver Builder plugin. "
|
590 |
+
"Upgrade today for access to premium features such as advanced modules, "
|
591 |
+
"templates, support and more!"
|
592 |
+
msgstr ""
|
593 |
+
"Sie benutzen derzeit die Liteversion des BB. Upgraden Sie um Zugang zu "
|
594 |
+
"Premium-Features zu erhalten!"
|
595 |
+
|
596 |
+
#: includes/admin-settings-upgrade.php:7
|
597 |
+
msgid "Upgrade Now"
|
598 |
+
msgstr "Jetzt upgraden"
|
599 |
+
|
600 |
+
#: includes/admin-settings-upgrade.php:9
|
601 |
+
msgid "Learn More"
|
602 |
+
msgstr "Mehr erfahren"
|
603 |
+
|
604 |
+
#: includes/column-settings.php:4 includes/js-config.php:23
|
605 |
+
msgid "Column Settings"
|
606 |
+
msgstr "Spalteneinstellungen"
|
607 |
+
|
608 |
+
#: includes/column-settings.php:7 includes/module-settings.php:87
|
609 |
+
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
610 |
+
#: modules/button/button.php:108 modules/button/button.php:146
|
611 |
+
#: modules/button/button.php:150 modules/callout/callout.php:241
|
612 |
+
#: modules/callout/callout.php:543
|
613 |
+
#: modules/content-slider/content-slider.php:425
|
614 |
+
#: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
|
615 |
+
#: modules/cta/cta.php:299 modules/heading/heading.php:69
|
616 |
+
#: modules/icon/icon.php:75 modules/icon-group/icon-group.php:44
|
617 |
+
#: modules/pricing-table/pricing-table.php:43
|
618 |
+
#: modules/pricing-table/pricing-table.php:155
|
619 |
+
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
620 |
+
msgid "Style"
|
621 |
+
msgstr "Stil"
|
622 |
+
|
623 |
+
#: includes/column-settings.php:14
|
624 |
+
msgid "Column Width"
|
625 |
+
msgstr "Spaltenbreite"
|
626 |
+
|
627 |
+
#: includes/column-settings.php:26 includes/row-settings.php:48
|
628 |
+
#: modules/button/button.php:66 modules/callout/callout.php:225
|
629 |
+
#: modules/callout/callout.php:478 modules/callout/callout.php:494
|
630 |
+
#: modules/content-slider/content-slider.php:382
|
631 |
+
#: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
|
632 |
+
#: modules/cta/cta.php:221
|
633 |
+
msgid "Text"
|
634 |
+
msgstr "Text"
|
635 |
+
|
636 |
+
#: includes/column-settings.php:30 includes/column-settings.php:43
|
637 |
+
#: includes/column-settings.php:100 includes/row-settings.php:52
|
638 |
+
#: includes/row-settings.php:109 includes/row-settings.php:403
|
639 |
+
#: modules/callout/callout.php:391
|
640 |
+
#: modules/content-slider/content-slider.php:337 modules/icon/icon.php:82
|
641 |
+
#: modules/icon-group/icon-group.php:51 modules/separator/separator.php:34
|
642 |
+
msgid "Color"
|
643 |
+
msgstr "Farbe"
|
644 |
+
|
645 |
+
#: includes/column-settings.php:39 includes/row-settings.php:105
|
646 |
+
#: modules/button/button.php:115 modules/callout/callout.php:404
|
647 |
+
#: modules/callout/callout.php:508
|
648 |
+
#: modules/content-slider/content-slider.php:363
|
649 |
+
#: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
|
650 |
+
#: modules/cta/cta.php:264 modules/icon/icon.php:95
|
651 |
+
#: modules/icon-group/icon-group.php:64
|
652 |
+
msgid "Background Color"
|
653 |
+
msgstr "Hintergrundfarbe"
|
654 |
+
|
655 |
+
#: includes/column-settings.php:51 includes/column-settings.php:108
|
656 |
+
#: includes/row-settings.php:117 includes/row-settings.php:411
|
657 |
+
#: modules/separator/separator.php:44
|
658 |
+
msgid "Opacity"
|
659 |
+
msgstr "Durchsichtigkeit"
|
660 |
+
|
661 |
+
#: includes/column-settings.php:63 includes/row-settings.php:366
|
662 |
+
msgid "Border"
|
663 |
+
msgstr "Rahmen"
|
664 |
+
|
665 |
+
#: includes/column-settings.php:67 includes/row-settings.php:65
|
666 |
+
#: includes/row-settings.php:370 modules/callout/callout.php:474
|
667 |
+
#: modules/content-slider/content-slider.php:331
|
668 |
+
#: modules/content-slider/content-slider.php:378
|
669 |
+
#: modules/content-slider/content-slider.php:596
|
670 |
+
#: modules/content-slider/content-slider.php:729
|
671 |
+
#: modules/slideshow/slideshow.php:339
|
672 |
+
msgid "Type"
|
673 |
+
msgstr "Typ"
|
674 |
+
|
675 |
+
#: includes/column-settings.php:69 includes/row-settings.php:372
|
676 |
+
msgid ""
|
677 |
+
"The type of border to use. Double borders must have a width of at least 3px "
|
678 |
+
"to render properly."
|
679 |
+
msgstr ""
|
680 |
+
"Der zu verwendende Linientyp. Doppelrahmen müssen eine Breite von mindestens "
|
681 |
+
"3px haben um korrekt gerendert zu werden."
|
682 |
+
|
683 |
+
#: includes/column-settings.php:71 includes/row-settings.php:374
|
684 |
+
msgctxt "Border type."
|
685 |
+
msgid "None"
|
686 |
+
msgstr "Keiner"
|
687 |
+
|
688 |
+
#: includes/column-settings.php:72 includes/row-settings.php:375
|
689 |
+
#: modules/separator/separator.php:75
|
690 |
+
msgctxt "Border type."
|
691 |
+
msgid "Solid"
|
692 |
+
msgstr "Durchgehend"
|
693 |
+
|
694 |
+
#: includes/column-settings.php:73 includes/row-settings.php:376
|
695 |
+
#: modules/separator/separator.php:76
|
696 |
+
msgctxt "Border type."
|
697 |
+
msgid "Dashed"
|
698 |
+
msgstr "Gestrichelt"
|
699 |
+
|
700 |
+
#: includes/column-settings.php:74 includes/row-settings.php:377
|
701 |
+
#: modules/separator/separator.php:77
|
702 |
+
msgctxt "Border type."
|
703 |
+
msgid "Dotted"
|
704 |
+
msgstr "Gepunktet"
|
705 |
+
|
706 |
+
#: includes/column-settings.php:75 includes/row-settings.php:378
|
707 |
+
#: modules/separator/separator.php:78
|
708 |
+
msgctxt "Border type."
|
709 |
+
msgid "Double"
|
710 |
+
msgstr "Doppelt"
|
711 |
+
|
712 |
+
#: includes/column-settings.php:119 includes/row-settings.php:422
|
713 |
+
msgid "Top Width"
|
714 |
+
msgstr "Breite oben"
|
715 |
+
|
716 |
+
#: includes/column-settings.php:131 includes/row-settings.php:434
|
717 |
+
msgid "Bottom Width"
|
718 |
+
msgstr "Breite unten"
|
719 |
+
|
720 |
+
#: includes/column-settings.php:143 includes/row-settings.php:446
|
721 |
+
msgid "Left Width"
|
722 |
+
msgstr "Breite links"
|
723 |
+
|
724 |
+
#: includes/column-settings.php:155 includes/row-settings.php:458
|
725 |
+
msgid "Right Width"
|
726 |
+
msgstr "Breite rechts"
|
727 |
+
|
728 |
+
#: includes/column-settings.php:170 includes/module-settings.php:6
|
729 |
+
#: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
|
730 |
+
msgid "Advanced"
|
731 |
+
msgstr "Erweitert"
|
732 |
+
|
733 |
+
#: includes/column-settings.php:173 includes/global-settings.php:41
|
734 |
+
#: includes/global-settings.php:94 includes/module-settings.php:9
|
735 |
+
#: includes/row-settings.php:476
|
736 |
+
msgid "Margins"
|
737 |
+
msgstr "Abstand aussen"
|
738 |
+
|
739 |
+
#: includes/column-settings.php:177 includes/column-settings.php:230
|
740 |
+
#: includes/module-settings.php:13 includes/row-settings.php:480
|
741 |
+
#: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
|
742 |
+
msgid "Top"
|
743 |
+
msgstr "Oben"
|
744 |
+
|
745 |
+
#: includes/column-settings.php:189 includes/column-settings.php:242
|
746 |
+
#: includes/module-settings.php:25 includes/row-settings.php:492
|
747 |
+
#: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
|
748 |
+
msgid "Bottom"
|
749 |
+
msgstr "Unten"
|
750 |
+
|
751 |
+
#: includes/column-settings.php:201 includes/column-settings.php:254
|
752 |
+
#: includes/module-settings.php:37 includes/row-settings.php:504
|
753 |
+
#: includes/row-settings.php:557 modules/button/button.php:219
|
754 |
+
#: modules/callout/callout.php:252
|
755 |
+
#: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
|
756 |
+
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
757 |
+
#: modules/icon/icon.php:134 modules/icon-group/icon-group.php:111
|
758 |
+
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
759 |
+
msgid "Left"
|
760 |
+
msgstr "Links"
|
761 |
+
|
762 |
+
#: includes/column-settings.php:213 includes/column-settings.php:266
|
763 |
+
#: includes/module-settings.php:49 includes/row-settings.php:516
|
764 |
+
#: includes/row-settings.php:569 modules/button/button.php:220
|
765 |
+
#: modules/callout/callout.php:253
|
766 |
+
#: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
|
767 |
+
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
768 |
+
#: modules/icon/icon.php:135 modules/icon-group/icon-group.php:112
|
769 |
+
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
770 |
+
msgid "Right"
|
771 |
+
msgstr "Rechts"
|
772 |
+
|
773 |
+
#: includes/column-settings.php:226 includes/global-settings.php:49
|
774 |
+
#: includes/row-settings.php:529 modules/button/button.php:233
|
775 |
+
#: modules/callout/callout.php:598
|
776 |
+
#: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
|
777 |
+
msgid "Padding"
|
778 |
+
msgstr "Abstand innen"
|
779 |
+
|
780 |
+
#: includes/column-settings.php:279 includes/global-settings.php:103
|
781 |
+
#: includes/module-settings.php:62 includes/row-settings.php:582
|
782 |
+
msgid "Responsive Layout"
|
783 |
+
msgstr "Responsives Layout"
|
784 |
+
|
785 |
+
#: includes/column-settings.php:283 includes/module-settings.php:66
|
786 |
+
#: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
|
787 |
+
msgid "Display"
|
788 |
+
msgstr "Anzeigen"
|
789 |
+
|
790 |
+
#: includes/column-settings.php:285 includes/module-settings.php:68
|
791 |
+
#: includes/row-settings.php:588
|
792 |
+
msgid "Always"
|
793 |
+
msgstr "Immer"
|
794 |
+
|
795 |
+
#: includes/column-settings.php:286 includes/module-settings.php:69
|
796 |
+
#: includes/row-settings.php:589
|
797 |
+
msgid "Large Devices Only"
|
798 |
+
msgstr "Nur große Geräte"
|
799 |
+
|
800 |
+
#: includes/column-settings.php:287 includes/module-settings.php:70
|
801 |
+
#: includes/row-settings.php:590
|
802 |
+
msgid "Large & Medium Devices Only"
|
803 |
+
msgstr "Nur große & mittelgroße Geräte"
|
804 |
+
|
805 |
+
#: includes/column-settings.php:288 includes/module-settings.php:71
|
806 |
+
#: includes/row-settings.php:591
|
807 |
+
msgid "Medium Devices Only"
|
808 |
+
msgstr "Nur mittelgroße Geräte"
|
809 |
+
|
810 |
+
#: includes/column-settings.php:289 includes/module-settings.php:72
|
811 |
+
#: includes/row-settings.php:592
|
812 |
+
msgid "Medium & Small Devices Only"
|
813 |
+
msgstr "Nur mittelgroße & kleine Geräte"
|
814 |
+
|
815 |
+
#: includes/column-settings.php:290 includes/module-settings.php:73
|
816 |
+
#: includes/row-settings.php:593
|
817 |
+
msgid "Small Devices Only"
|
818 |
+
msgstr "Nur kleine Geräte"
|
819 |
+
|
820 |
+
#: includes/column-settings.php:292
|
821 |
+
msgid "Choose whether to show or hide this column at different device sizes."
|
822 |
+
msgstr ""
|
823 |
+
"Wählen Sie ob diese Spalte für verschiedene Gerätegrößen angezeigt oder "
|
824 |
+
"versteckt werden soll."
|
825 |
+
|
826 |
+
#: includes/column-settings.php:299
|
827 |
+
msgid "Medium Device Width"
|
828 |
+
msgstr "Breite für mittelgroße Geräte"
|
829 |
+
|
830 |
+
#: includes/column-settings.php:300
|
831 |
+
msgid "The width of this column on medium devices such as tablets."
|
832 |
+
msgstr "Die Breite dieser Spalte auf mittelgroßen Geräten wie Tablets."
|
833 |
+
|
834 |
+
#: includes/column-settings.php:302 includes/column-settings.php:330
|
835 |
+
#: modules/callout/callout.php:283
|
836 |
+
#: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
|
837 |
+
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
838 |
+
#: modules/heading/heading.php:174
|
839 |
+
msgid "Default"
|
840 |
+
msgstr "Default"
|
841 |
+
|
842 |
+
#: includes/column-settings.php:303 includes/column-settings.php:331
|
843 |
+
#: modules/button/button.php:193 modules/callout/callout.php:284
|
844 |
+
#: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
|
845 |
+
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
846 |
+
#: modules/heading/heading.php:175
|
847 |
+
#: modules/social-buttons/social-buttons.php:74
|
848 |
+
msgid "Custom"
|
849 |
+
msgstr "Benutzerdefiniert"
|
850 |
+
|
851 |
+
#: includes/column-settings.php:316
|
852 |
+
msgid "Custom Medium Device Width"
|
853 |
+
msgstr "Benutzerdefinierte Breite für mittelgroße Geräte"
|
854 |
+
|
855 |
+
#: includes/column-settings.php:327
|
856 |
+
msgid "Small Device Width"
|
857 |
+
msgstr "Breite für kleine Geräte"
|
858 |
+
|
859 |
+
#: includes/column-settings.php:328
|
860 |
+
msgid "The width of this column on small devices such as phones."
|
861 |
+
msgstr "Breite dieser Spalte auf kleinen Geräten wie Handys."
|
862 |
+
|
863 |
+
#: includes/column-settings.php:344
|
864 |
+
msgid "Custom Small Device Width"
|
865 |
+
msgstr "Benutzerdefinerte Breite für kleine Geräte"
|
866 |
+
|
867 |
+
# @ fl-builder
|
868 |
+
#: includes/column-settings.php:356 includes/module-settings.php:115
|
869 |
+
#: includes/row-settings.php:603
|
870 |
+
msgid "CSS Selectors"
|
871 |
+
msgstr "CSS-Selektoren"
|
872 |
+
|
873 |
+
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
874 |
+
#: includes/module-settings.php:119 includes/row-settings.php:607
|
875 |
+
msgid "ID"
|
876 |
+
msgstr "ID"
|
877 |
+
|
878 |
+
# @ fl-builder
|
879 |
+
#: includes/column-settings.php:361
|
880 |
+
msgid ""
|
881 |
+
"A unique ID that will be applied to this column's HTML. Must start with a "
|
882 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
883 |
+
msgstr ""
|
884 |
+
"Eine eindeutige ID, die auf das HTML dieser Spalte angewendet wird. Sie muss "
|
885 |
+
"mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
|
886 |
+
"oder Zahlen enthalten. Keine Leerzeichen."
|
887 |
+
|
888 |
+
#: includes/column-settings.php:368
|
889 |
+
msgid "CSS Class"
|
890 |
+
msgstr "CSS Klasse"
|
891 |
+
|
892 |
+
# @ fl-builder
|
893 |
+
#: includes/column-settings.php:369
|
894 |
+
msgid ""
|
895 |
+
"A class that will be applied to this column's HTML. Must start with a letter "
|
896 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
897 |
+
"classes with spaces."
|
898 |
+
msgstr ""
|
899 |
+
"Eine Klasse, die auf das HTML dieser Spalte angewendet wird. Sie muss mit "
|
900 |
+
"einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
|
901 |
+
"oder Zahlen enthalten. Keine Leerzeichen."
|
902 |
+
|
903 |
+
#: includes/field-form.php:28
|
904 |
+
#, php-format
|
905 |
+
msgctxt "%s stands for form field label."
|
906 |
+
msgid "Edit %s"
|
907 |
+
msgstr "Bearbeiten %s"
|
908 |
+
|
909 |
+
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
910 |
+
msgid "Select Icon"
|
911 |
+
msgstr "Icon auswählen"
|
912 |
+
|
913 |
+
#: includes/field-icon.php:5 includes/field-photo.php:13
|
914 |
+
msgid "Replace"
|
915 |
+
msgstr "Ersetzen"
|
916 |
+
|
917 |
+
#: includes/field-icon.php:7 includes/js-config.php:58
|
918 |
+
msgid "Remove"
|
919 |
+
msgstr "Löschen"
|
920 |
+
|
921 |
+
#: includes/field-link.php:3
|
922 |
+
msgid "Select"
|
923 |
+
msgstr "Auswählen"
|
924 |
+
|
925 |
+
#: includes/field-link.php:5
|
926 |
+
msgid "Enter a post title to search."
|
927 |
+
msgstr "Geben Sie den Posttitel ein, der gesucht werden soll."
|
928 |
+
|
929 |
+
#: includes/field-link.php:6 includes/field-suggest.php:7
|
930 |
+
msgid "Start typing..."
|
931 |
+
msgstr "Beginnen Sie zu tippen..."
|
932 |
+
|
933 |
+
#: includes/field-link.php:7 includes/icon-selector.php:28
|
934 |
+
#: includes/js-config.php:19 includes/settings.php:63
|
935 |
+
#: includes/template-selector.php:102 includes/ui.php:11
|
936 |
+
msgid "Cancel"
|
937 |
+
msgstr "Abbrechen"
|
938 |
+
|
939 |
+
#: includes/field-multiple-photos.php:8
|
940 |
+
#, php-format
|
941 |
+
msgid "1 Photo Selected"
|
942 |
+
msgid_plural "%d Photos Selected"
|
943 |
+
msgstr[0] "1 Foto ausgewählt"
|
944 |
+
msgstr[1] "%d Fotos ausgewählt"
|
945 |
+
|
946 |
+
#: includes/field-multiple-photos.php:13
|
947 |
+
msgid "Create Gallery"
|
948 |
+
msgstr "Galerie erstellen"
|
949 |
+
|
950 |
+
#: includes/field-multiple-photos.php:14
|
951 |
+
msgid "Edit Gallery"
|
952 |
+
msgstr "Galerie bearbeiten"
|
953 |
+
|
954 |
+
#: includes/field-multiple-photos.php:15
|
955 |
+
msgid "Add Photos"
|
956 |
+
msgstr "Fotos hinzufügen"
|
957 |
+
|
958 |
+
#: includes/field-photo.php:3 includes/js-config.php:63
|
959 |
+
msgid "Select Photo"
|
960 |
+
msgstr "Foto auswählen"
|
961 |
+
|
962 |
+
#: includes/field-photo.php:12 includes/template-selector.php:83
|
963 |
+
msgid "Edit"
|
964 |
+
msgstr "Bearbeiten"
|
965 |
+
|
966 |
+
#: includes/field-video.php:3 includes/js-config.php:65
|
967 |
+
msgid "Select Video"
|
968 |
+
msgstr "Video auswählen"
|
969 |
+
|
970 |
+
#: includes/field-video.php:17
|
971 |
+
msgid "Replace Video"
|
972 |
+
msgstr "Video ersetzen"
|
973 |
+
|
974 |
+
#: includes/global-settings.php:7 includes/user-template-settings.php:7
|
975 |
+
#: modules/accordion/accordion.php:110 modules/button/button.php:59
|
976 |
+
#: modules/callout/callout.php:209 modules/contact-form/contact-form.php:57
|
977 |
+
#: modules/content-slider/content-slider.php:190
|
978 |
+
#: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
|
979 |
+
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
980 |
+
#: modules/html/html.php:26 modules/icon/icon.php:27
|
981 |
+
#: modules/icon-group/icon-group.php:128 modules/map/map.php:26
|
982 |
+
#: modules/photo/photo.php:368 modules/pricing-table/pricing-table.php:87
|
983 |
+
#: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
|
984 |
+
#: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
|
985 |
+
#: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
|
986 |
+
#: modules/testimonials/testimonials.php:30
|
987 |
+
#: modules/testimonials/testimonials.php:200 modules/video/video.php:76
|
988 |
+
#: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
|
989 |
+
msgid "General"
|
990 |
+
msgstr "Allgemein"
|
991 |
+
|
992 |
+
#: includes/global-settings.php:8
|
993 |
+
msgid "Note: These settings apply to all posts and pages."
|
994 |
+
msgstr "Anmerkung: Diese Einstellungen gelten für alle Beiträge und Seiten."
|
995 |
+
|
996 |
+
#: includes/global-settings.php:11
|
997 |
+
msgid "Default Page Heading"
|
998 |
+
msgstr "Default Page Überschrift"
|
999 |
+
|
1000 |
+
#: includes/global-settings.php:15
|
1001 |
+
msgctxt ""
|
1002 |
+
"General settings form field label. Intended meaning: \"Show page heading?\""
|
1003 |
+
msgid "Show"
|
1004 |
+
msgstr "Anzeigen"
|
1005 |
+
|
1006 |
+
#: includes/global-settings.php:18 includes/global-settings.php:110
|
1007 |
+
#: includes/row-settings.php:307 modules/accordion/accordion.php:90
|
1008 |
+
#: modules/callout/callout.php:420
|
1009 |
+
#: modules/content-slider/content-slider.php:209
|
1010 |
+
#: modules/content-slider/content-slider.php:223
|
1011 |
+
#: modules/content-slider/content-slider.php:257
|
1012 |
+
#: modules/content-slider/content-slider.php:266
|
1013 |
+
#: modules/content-slider/content-slider.php:537 modules/icon/icon.php:111
|
1014 |
+
#: modules/icon-group/icon-group.php:80 modules/slideshow/slideshow.php:315
|
1015 |
+
#: modules/slideshow/slideshow.php:325 modules/slideshow/slideshow.php:376
|
1016 |
+
#: modules/slideshow/slideshow.php:417 modules/slideshow/slideshow.php:439
|
1017 |
+
#: modules/slideshow/slideshow.php:488 modules/slideshow/slideshow.php:497
|
1018 |
+
#: modules/slideshow/slideshow.php:506 modules/slideshow/slideshow.php:515
|
1019 |
+
#: modules/slideshow/slideshow.php:524 modules/slideshow/slideshow.php:533
|
1020 |
+
#: modules/slideshow/slideshow.php:542 modules/slideshow/slideshow.php:556
|
1021 |
+
#: modules/slideshow/slideshow.php:571 modules/slideshow/slideshow.php:606
|
1022 |
+
#: modules/slideshow/slideshow.php:618 modules/slideshow/slideshow.php:630
|
1023 |
+
#: modules/slideshow/slideshow.php:642
|
1024 |
+
#: modules/social-buttons/social-buttons.php:111
|
1025 |
+
#: modules/social-buttons/social-buttons.php:120
|
1026 |
+
#: modules/social-buttons/social-buttons.php:129
|
1027 |
+
#: modules/testimonials/testimonials.php:85
|
1028 |
+
#: modules/testimonials/testimonials.php:124
|
1029 |
+
#: modules/testimonials/testimonials.php:154 modules/video/video.php:111
|
1030 |
+
#: modules/video/video.php:123
|
1031 |
+
msgid "No"
|
1032 |
+
msgstr "Nein"
|
1033 |
+
|
1034 |
+
#: includes/global-settings.php:19 includes/global-settings.php:111
|
1035 |
+
#: includes/row-settings.php:308 modules/accordion/accordion.php:89
|
1036 |
+
#: modules/callout/callout.php:421
|
1037 |
+
#: modules/content-slider/content-slider.php:210
|
1038 |
+
#: modules/content-slider/content-slider.php:224
|
1039 |
+
#: modules/content-slider/content-slider.php:258
|
1040 |
+
#: modules/content-slider/content-slider.php:267
|
1041 |
+
#: modules/content-slider/content-slider.php:538 modules/icon/icon.php:112
|
1042 |
+
#: modules/icon-group/icon-group.php:81 modules/slideshow/slideshow.php:316
|
1043 |
+
#: modules/slideshow/slideshow.php:326 modules/slideshow/slideshow.php:377
|
1044 |
+
#: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:440
|
1045 |
+
#: modules/slideshow/slideshow.php:489 modules/slideshow/slideshow.php:498
|
1046 |
+
#: modules/slideshow/slideshow.php:507 modules/slideshow/slideshow.php:516
|
1047 |
+
#: modules/slideshow/slideshow.php:525 modules/slideshow/slideshow.php:534
|
1048 |
+
#: modules/slideshow/slideshow.php:543 modules/slideshow/slideshow.php:557
|
1049 |
+
#: modules/slideshow/slideshow.php:572 modules/slideshow/slideshow.php:607
|
1050 |
+
#: modules/slideshow/slideshow.php:619 modules/slideshow/slideshow.php:631
|
1051 |
+
#: modules/slideshow/slideshow.php:643
|
1052 |
+
#: modules/social-buttons/social-buttons.php:110
|
1053 |
+
#: modules/social-buttons/social-buttons.php:119
|
1054 |
+
#: modules/social-buttons/social-buttons.php:128
|
1055 |
+
#: modules/testimonials/testimonials.php:86
|
1056 |
+
#: modules/testimonials/testimonials.php:125
|
1057 |
+
#: modules/testimonials/testimonials.php:155 modules/video/video.php:112
|
1058 |
+
#: modules/video/video.php:124
|
1059 |
+
msgid "Yes"
|
1060 |
+
msgstr "Ja"
|
1061 |
+
|
1062 |
+
#: includes/global-settings.php:26
|
1063 |
+
msgid ""
|
1064 |
+
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
1065 |
+
"You will also be required to enter some basic CSS for this to work if you "
|
1066 |
+
"choose no."
|
1067 |
+
msgstr ""
|
1068 |
+
"Wenn Sie Nein wählen, wird das Default Theme Überschrift für den \"Page\" "
|
1069 |
+
"Posttyp nicht angezigt. Sie müssen grundlegendes CSS eingeben, damit die "
|
1070 |
+
"Einstellung Nein funktioniert."
|
1071 |
+
|
1072 |
+
#: includes/global-settings.php:30
|
1073 |
+
msgid "CSS Selector"
|
1074 |
+
msgstr "CSS-Selektor"
|
1075 |
+
|
1076 |
+
#: includes/global-settings.php:32
|
1077 |
+
msgid "Enter a CSS selector for the default page heading to hide it."
|
1078 |
+
msgstr ""
|
1079 |
+
"Geben Sie einen CSS-Selektor für das Default Page Überschrift ein, um es "
|
1080 |
+
"nicht anzuzeigen."
|
1081 |
+
|
1082 |
+
#: includes/global-settings.php:37
|
1083 |
+
msgid "Rows"
|
1084 |
+
msgstr "Zeilen"
|
1085 |
+
|
1086 |
+
#: includes/global-settings.php:57
|
1087 |
+
msgid "Max Width"
|
1088 |
+
msgstr "Maximale Breite"
|
1089 |
+
|
1090 |
+
#: includes/global-settings.php:62
|
1091 |
+
msgid ""
|
1092 |
+
"All rows will default to this width. You can override this and make a row "
|
1093 |
+
"full width in the settings for each row."
|
1094 |
+
msgstr ""
|
1095 |
+
"Alle Zeilen werden defaultmäßig diese Breite haben. Sie können sie "
|
1096 |
+
"überschreiben und für jede Reihe einzeln eine Zeilengesamtbreite angeben."
|
1097 |
+
|
1098 |
+
# @ fl-builder
|
1099 |
+
#: includes/global-settings.php:66
|
1100 |
+
msgid "Default Row Width"
|
1101 |
+
msgstr "Standard Zeilenbreite"
|
1102 |
+
|
1103 |
+
#: includes/global-settings.php:69 includes/global-settings.php:83
|
1104 |
+
#: includes/row-settings.php:19 includes/row-settings.php:37
|
1105 |
+
#: includes/row-settings.php:179
|
1106 |
+
msgid "Fixed"
|
1107 |
+
msgstr "Fest"
|
1108 |
+
|
1109 |
+
#: includes/global-settings.php:70 includes/global-settings.php:84
|
1110 |
+
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1111 |
+
#: modules/button/button.php:192 modules/callout/callout.php:585
|
1112 |
+
msgid "Full Width"
|
1113 |
+
msgstr "Vollgröße"
|
1114 |
+
|
1115 |
+
# @ fl-builder
|
1116 |
+
#: includes/global-settings.php:80
|
1117 |
+
msgid "Default Row Content Width"
|
1118 |
+
msgstr "Standard Zeilenbreite des Contents"
|
1119 |
+
|
1120 |
+
#: includes/global-settings.php:107
|
1121 |
+
msgctxt ""
|
1122 |
+
"General settings form field label. Intended meaning: \"Responsive layout "
|
1123 |
+
"enabled?\""
|
1124 |
+
msgid "Enabled"
|
1125 |
+
msgstr "Aktiviert"
|
1126 |
+
|
1127 |
+
#: includes/global-settings.php:121
|
1128 |
+
msgid "Medium Device Breakpoint"
|
1129 |
+
msgstr "Breakpoint für mittelgroße Geräte"
|
1130 |
+
|
1131 |
+
#: includes/global-settings.php:126
|
1132 |
+
msgid ""
|
1133 |
+
"The browser width at which the layout will adjust for medium devices such as "
|
1134 |
+
"tablets."
|
1135 |
+
msgstr ""
|
1136 |
+
"Die Browserbreite bei der sich das Layout für mittelgroße Geräte wie Tablets "
|
1137 |
+
"anpasst."
|
1138 |
+
|
1139 |
+
#: includes/global-settings.php:130
|
1140 |
+
msgid "Small Device Breakpoint"
|
1141 |
+
msgstr "Breakpoint für kleine Geräte"
|
1142 |
+
|
1143 |
+
#: includes/global-settings.php:135
|
1144 |
+
msgid ""
|
1145 |
+
"The browser width at which the layout will adjust for small devices such as "
|
1146 |
+
"phones."
|
1147 |
+
msgstr ""
|
1148 |
+
"Die Browserbreite bei der sich das Layout für kleine Geräte wie Handys "
|
1149 |
+
"anpasst."
|
1150 |
+
|
1151 |
+
# @ fl-builder
|
1152 |
+
#: includes/icon-selector.php:5
|
1153 |
+
msgctxt "Select option for showing all icon libraries."
|
1154 |
+
msgid "All Libraries"
|
1155 |
+
msgstr "Alle Bibliotheken"
|
1156 |
+
|
1157 |
+
#: includes/js-config.php:18
|
1158 |
+
msgid "What would you like to do?"
|
1159 |
+
msgstr "Was wollen Sie tun?"
|
1160 |
+
|
1161 |
+
#: includes/js-config.php:20
|
1162 |
+
msgid "Change Template"
|
1163 |
+
msgstr "Vorlage ändern"
|
1164 |
+
|
1165 |
+
#: includes/js-config.php:21
|
1166 |
+
msgid ""
|
1167 |
+
"Warning! Changing the template will replace your existing layout. Do you "
|
1168 |
+
"really want to do this?"
|
1169 |
+
msgstr ""
|
1170 |
+
"Achtung! Wenn Sie die Vorlage ändern wird ihr existierendes Layout ersetzt. "
|
1171 |
+
"Wollen Sie das wirklich tun?"
|
1172 |
+
|
1173 |
+
#: includes/js-config.php:22
|
1174 |
+
msgid "Column"
|
1175 |
+
msgstr "Spalte"
|
1176 |
+
|
1177 |
+
#: includes/js-config.php:24
|
1178 |
+
msgid ""
|
1179 |
+
"Please select either a background layout or content layout before submitting."
|
1180 |
+
msgstr ""
|
1181 |
+
"Bitte wählen Sie entweder ein Hintergrundlayout oder ein Inhaltslayout bevor "
|
1182 |
+
"Sie abschicken."
|
1183 |
+
|
1184 |
+
#: includes/js-config.php:25
|
1185 |
+
msgid "Do you really want to delete this item?"
|
1186 |
+
msgstr "Wollen Sie dieses Element wirklich löschen?"
|
1187 |
+
|
1188 |
+
#: includes/js-config.php:26
|
1189 |
+
msgid ""
|
1190 |
+
"Do you really want to delete this module? All content data will be "
|
1191 |
+
"permanently deleted."
|
1192 |
+
msgstr ""
|
1193 |
+
"Wollen Sie dieses Modul wirklich löschen? Alle Inhaltsdaten werden permanent "
|
1194 |
+
"gelöscht."
|
1195 |
+
|
1196 |
+
#: includes/js-config.php:27
|
1197 |
+
msgid ""
|
1198 |
+
"Do you really want to delete this row? All content data will be permanently "
|
1199 |
+
"deleted."
|
1200 |
+
msgstr ""
|
1201 |
+
"Wollen Sie diese Zeile wirklich löschen? Alle Inhaltsdaten werden permanent "
|
1202 |
+
"gelöscht."
|
1203 |
+
|
1204 |
+
#: includes/js-config.php:28
|
1205 |
+
msgid "Do you really want to delete this template?"
|
1206 |
+
msgstr "Wollen Sie diese Vorlage wirklich löschen?"
|
1207 |
+
|
1208 |
+
#: includes/js-config.php:29
|
1209 |
+
msgid "Discard Draft"
|
1210 |
+
msgstr "Entwurf verwerfen"
|
1211 |
+
|
1212 |
+
#: includes/js-config.php:30
|
1213 |
+
msgid ""
|
1214 |
+
"Do you really want to discard this draft? All of your changes that are not "
|
1215 |
+
"published will be lost."
|
1216 |
+
msgstr ""
|
1217 |
+
"Wollen Sie die Vorlage wirklich verwerfen? Alle Veränderungen, die nicht "
|
1218 |
+
"publiziert sind, gehen verloren."
|
1219 |
+
|
1220 |
+
#: includes/js-config.php:31 includes/ui.php:44
|
1221 |
+
msgid "Done"
|
1222 |
+
msgstr "Fertig"
|
1223 |
+
|
1224 |
+
#: includes/js-config.php:32
|
1225 |
+
msgid "Save Draft"
|
1226 |
+
msgstr "Entwurf speichern"
|
1227 |
+
|
1228 |
+
#: includes/js-config.php:33
|
1229 |
+
msgctxt "Duplicate page/post action label."
|
1230 |
+
msgid "Duplicate"
|
1231 |
+
msgstr "Duplizieren"
|
1232 |
+
|
1233 |
+
#: includes/js-config.php:34
|
1234 |
+
msgid "Duplicate This Page"
|
1235 |
+
msgstr "Diese Seite duplizieren"
|
1236 |
+
|
1237 |
+
#: includes/js-config.php:35
|
1238 |
+
msgid "Duplicate This Template"
|
1239 |
+
msgstr "Diese Vorlage duplizieren"
|
1240 |
+
|
1241 |
+
#: includes/js-config.php:36
|
1242 |
+
msgid "Edit Global Settings"
|
1243 |
+
msgstr "Globale Einstellungen bearbeiten"
|
1244 |
+
|
1245 |
+
#: includes/js-config.php:37
|
1246 |
+
msgid "Drop a row layout or module to get started!"
|
1247 |
+
msgstr "Wählen Sie ein Zeilenlayout oder Modul um loszulegen!"
|
1248 |
+
|
1249 |
+
# @ fl-builder
|
1250 |
+
#: includes/js-config.php:38
|
1251 |
+
msgid ""
|
1252 |
+
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1253 |
+
"not functioning as expected the cause is most likely this error. Please help "
|
1254 |
+
"us by disabling all plugins and testing Beaver Builder while reactivating "
|
1255 |
+
"each to determine if the issue is related to a third party plugin."
|
1256 |
+
msgstr ""
|
1257 |
+
"Beaver Builder erhielt den folgenden JavaScript-Fehler. Wenn Beaver Builde "
|
1258 |
+
"nicht wie erwartet funktioniert, ist die Ursache sehr wahrscheinlich dieser "
|
1259 |
+
"Fehle. Bitte helfen Sie uns, indem Sie alle Plugins deaktivieren und nach "
|
1260 |
+
"und nach wieder aktivieren um zu testen ob es an einem anderen Plugin liegt."
|
1261 |
+
|
1262 |
+
#: includes/js-config.php:39
|
1263 |
+
msgid "Full Size"
|
1264 |
+
msgstr "Vollgröße"
|
1265 |
+
|
1266 |
+
# @ fl-builder
|
1267 |
+
#: includes/js-config.php:40
|
1268 |
+
msgid "Get Help"
|
1269 |
+
msgstr "Hilfe holen"
|
1270 |
+
|
1271 |
+
# @ fl-builder
|
1272 |
+
#: includes/js-config.php:41
|
1273 |
+
msgid "Getting Started Video"
|
1274 |
+
msgstr "Erste Schritte-Video"
|
1275 |
+
|
1276 |
+
# @ fl-builder
|
1277 |
+
#: includes/js-config.php:42
|
1278 |
+
msgid "\"{message}\" on line {line} of {file}."
|
1279 |
+
msgstr "\"{message}\" in der Zeile {line} in {file}."
|
1280 |
+
|
1281 |
+
#: includes/js-config.php:43
|
1282 |
+
msgid "Insert"
|
1283 |
+
msgstr "Einfügen"
|
1284 |
+
|
1285 |
+
#: includes/js-config.php:44
|
1286 |
+
msgid "Large"
|
1287 |
+
msgstr "Groß"
|
1288 |
+
|
1289 |
+
#: includes/js-config.php:45
|
1290 |
+
msgid "Manage Templates"
|
1291 |
+
msgstr "Vorlagen verwalten"
|
1292 |
+
|
1293 |
+
#: includes/js-config.php:46
|
1294 |
+
msgid "Medium"
|
1295 |
+
msgstr "Mittel"
|
1296 |
+
|
1297 |
+
#: includes/js-config.php:47
|
1298 |
+
msgid "Module"
|
1299 |
+
msgstr "Modul"
|
1300 |
+
|
1301 |
+
#: includes/js-config.php:48
|
1302 |
+
msgid "Move"
|
1303 |
+
msgstr "Verschieben"
|
1304 |
+
|
1305 |
+
#: includes/js-config.php:49
|
1306 |
+
msgid "New Column"
|
1307 |
+
msgstr "Neue Spalte"
|
1308 |
+
|
1309 |
+
#: includes/js-config.php:50
|
1310 |
+
msgid "New Row"
|
1311 |
+
msgstr "Neue Zeile"
|
1312 |
+
|
1313 |
+
#: includes/js-config.php:51
|
1314 |
+
msgid "No results found."
|
1315 |
+
msgstr "Keine Ergebnisse gefunden."
|
1316 |
+
|
1317 |
+
# @ fl-builder
|
1318 |
+
#: includes/js-config.php:52
|
1319 |
+
msgid "No Thanks"
|
1320 |
+
msgstr "Nein, danke"
|
1321 |
+
|
1322 |
+
#: includes/js-config.php:53
|
1323 |
+
msgid "OK"
|
1324 |
+
msgstr "OK"
|
1325 |
+
|
1326 |
+
#: includes/js-config.php:54 modules/photo/photo.php:454
|
1327 |
+
msgid "Photo Page"
|
1328 |
+
msgstr "Fotoseite"
|
1329 |
+
|
1330 |
+
#: includes/js-config.php:55
|
1331 |
+
msgid "Photo Selected"
|
1332 |
+
msgstr "Ausgewähltes Foto"
|
1333 |
+
|
1334 |
+
#: includes/js-config.php:56
|
1335 |
+
msgid "Photos Selected"
|
1336 |
+
msgstr "Ausgewählte Fotos"
|
1337 |
+
|
1338 |
+
#: includes/js-config.php:57
|
1339 |
+
msgid "Publish Changes"
|
1340 |
+
msgstr "Änderungen publizieren"
|
1341 |
+
|
1342 |
+
#: includes/js-config.php:59
|
1343 |
+
msgid "Row"
|
1344 |
+
msgstr "Zeile"
|
1345 |
+
|
1346 |
+
#: includes/js-config.php:60 includes/row-settings.php:6
|
1347 |
+
msgid "Row Settings"
|
1348 |
+
msgstr "Zeileneinstellungen"
|
1349 |
+
|
1350 |
+
#: includes/js-config.php:61
|
1351 |
+
msgid "Save Core Template"
|
1352 |
+
msgstr "Kernvorlage speichern"
|
1353 |
+
|
1354 |
+
#: includes/js-config.php:62 includes/ui.php:10
|
1355 |
+
#: includes/user-template-settings.php:4
|
1356 |
+
msgid "Save Template"
|
1357 |
+
msgstr "Vorlage speichern"
|
1358 |
+
|
1359 |
+
#: includes/js-config.php:64
|
1360 |
+
msgid "Select Photos"
|
1361 |
+
msgstr "Fotos auswählen"
|
1362 |
+
|
1363 |
+
# @ fl-builder
|
1364 |
+
#: includes/js-config.php:67
|
1365 |
+
msgid "Take a Tour"
|
1366 |
+
msgstr "Machen Sie einen Rundgang"
|
1367 |
+
|
1368 |
+
#: includes/js-config.php:68
|
1369 |
+
msgid "Append New Layout"
|
1370 |
+
msgstr "Neues Layout hinzufügen"
|
1371 |
+
|
1372 |
+
#: includes/js-config.php:69
|
1373 |
+
msgid "Replace Existing Layout"
|
1374 |
+
msgstr "Existierendes Layout ersetzen"
|
1375 |
+
|
1376 |
+
#: includes/js-config.php:70
|
1377 |
+
msgid "Template Saved!"
|
1378 |
+
msgstr "Vorlage gespeichert!"
|
1379 |
+
|
1380 |
+
#: includes/js-config.php:71
|
1381 |
+
msgid "Thumbnail"
|
1382 |
+
msgstr "Thumbnail"
|
1383 |
+
|
1384 |
+
# @ fl-builder
|
1385 |
+
#: includes/js-config.php:72
|
1386 |
+
msgid "Next"
|
1387 |
+
msgstr "Weiter"
|
1388 |
+
|
1389 |
+
# @ fl-builder
|
1390 |
+
#: includes/js-config.php:73
|
1391 |
+
msgid "Get Started"
|
1392 |
+
msgstr "Erste Schritte"
|
1393 |
+
|
1394 |
+
# @ fl-builder
|
1395 |
+
#: includes/js-config.php:74
|
1396 |
+
msgid "Choose a Template"
|
1397 |
+
msgstr "Wählen Sie eine Vorlage"
|
1398 |
+
|
1399 |
+
# @ fl-builder
|
1400 |
+
#: includes/js-config.php:75
|
1401 |
+
msgid ""
|
1402 |
+
"Get started by choosing a layout template to customize, or build a page from "
|
1403 |
+
"scratch by selecting the blank layout template."
|
1404 |
+
msgstr ""
|
1405 |
+
"Beginnen Sie damit eine Layoutvorlage anzupassen oder erstellen Sie eine "
|
1406 |
+
"Seite von Grund auf neu, indem Sie die leere Layout-Vorlage auswählen."
|
1407 |
+
|
1408 |
+
# @ fl-builder
|
1409 |
+
#: includes/js-config.php:76
|
1410 |
+
msgid "Add Rows"
|
1411 |
+
msgstr "Zeilen hinzufügen"
|
1412 |
+
|
1413 |
+
# @ fl-builder
|
1414 |
+
#: includes/js-config.php:77
|
1415 |
+
msgid ""
|
1416 |
+
"Add mulit-column rows, adjust spacing, add backgrounds and more by dragging "
|
1417 |
+
"and dropping row layouts onto the page."
|
1418 |
+
msgstr ""
|
1419 |
+
"Fügen Sie mehre Spaleten und Zeilen hinzu, passen Sie des Abstands an, fügen "
|
1420 |
+
"Sie per Drag & Drop Hintergründe und mehr ein."
|
1421 |
+
|
1422 |
+
#: includes/js-config.php:78 includes/ui.php:49
|
1423 |
+
msgid "Add Content"
|
1424 |
+
msgstr "Inhalt hinzufügen"
|
1425 |
+
|
1426 |
+
# @ fl-builder
|
1427 |
+
#: includes/js-config.php:79
|
1428 |
+
msgid ""
|
1429 |
+
"Add new content by dragging and dropping modules or widgets into your row "
|
1430 |
+
"layouts or to create a new row layout."
|
1431 |
+
msgstr ""
|
1432 |
+
"Fürgen Sie neue Inhalte per Drag & Drop ein, indem Sie Module oder Widgets "
|
1433 |
+
"in die Zeilenlayouts hinzufügen oder ein neues Zeilen Layout erstellen. "
|
1434 |
+
|
1435 |
+
# @ fl-builder
|
1436 |
+
#: includes/js-config.php:80
|
1437 |
+
msgid "Edit Content"
|
1438 |
+
msgstr "Inhalt bearbeiten"
|
1439 |
+
|
1440 |
+
# @ fl-builder
|
1441 |
+
#: includes/js-config.php:81
|
1442 |
+
msgid ""
|
1443 |
+
"Move your mouse over rows, columns or modules to edit and interact with them."
|
1444 |
+
msgstr ""
|
1445 |
+
"Bewegen Sie Ihre Maus über die Zeilen, Spalten oder Module um sie zu "
|
1446 |
+
"bearbeiten und mit ihnen zu interagieren."
|
1447 |
+
|
1448 |
+
# @ fl-builder
|
1449 |
+
#: includes/js-config.php:82
|
1450 |
+
msgid ""
|
1451 |
+
"Use the action buttons to perform actions such as moving, editing, "
|
1452 |
+
"duplicating or deleting rows, columns and modules."
|
1453 |
+
msgstr ""
|
1454 |
+
"Verwenden Sie die Aktions-Buttons, z. B. verschieben, bearbeiten, kopieren "
|
1455 |
+
"oder löschen von Zeilen, Spalten und Module."
|
1456 |
+
|
1457 |
+
# @ fl-builder
|
1458 |
+
#: includes/js-config.php:83
|
1459 |
+
msgid "Add More Content"
|
1460 |
+
msgstr "Weitere Inhalte hinzufügen"
|
1461 |
+
|
1462 |
+
# @ fl-builder
|
1463 |
+
#: includes/js-config.php:84
|
1464 |
+
msgid ""
|
1465 |
+
"Use the Add Content button to open the content panel and add new row "
|
1466 |
+
"layouts, modules or widgets."
|
1467 |
+
msgstr ""
|
1468 |
+
"Verwenden Sie die Schaltfläche \"Inhalt hinzufügen\", um das Inhalts-"
|
1469 |
+
"Bedienfeld zu öffnen und neue Zeile-Layouts, Module oder Widgets "
|
1470 |
+
"hinzuzufügen."
|
1471 |
+
|
1472 |
+
# @ fl-builder
|
1473 |
+
#: includes/js-config.php:85
|
1474 |
+
msgid "Change Templates"
|
1475 |
+
msgstr "Vorlage ändern"
|
1476 |
+
|
1477 |
+
# @ fl-builder
|
1478 |
+
#: includes/js-config.php:86
|
1479 |
+
msgid ""
|
1480 |
+
"Use the Templates button to pick a new template or append one to your "
|
1481 |
+
"layout. Appending will insert a new template at the end of your existing "
|
1482 |
+
"page content."
|
1483 |
+
msgstr ""
|
1484 |
+
"Verwenden Sie die Schaltfläche \"Vorlagen\", wählen Sie eine neue Vorlage "
|
1485 |
+
"oder fügen Sie sie Ihrem bestehenden Layout hinzu. Die angehängte Vorlage "
|
1486 |
+
"wird am Ende des Inhalts Ihrer bestehenden Seite eingefügt."
|
1487 |
+
|
1488 |
+
# @ fl-builder
|
1489 |
+
#: includes/js-config.php:87
|
1490 |
+
msgid "Helpful Tools"
|
1491 |
+
msgstr "Hilfreiche Werkzeuge"
|
1492 |
+
|
1493 |
+
# @ fl-builder
|
1494 |
+
#: includes/js-config.php:88
|
1495 |
+
msgid ""
|
1496 |
+
"The Tools button lets you duplicate a page, save a template or edit the "
|
1497 |
+
"global settings."
|
1498 |
+
msgstr ""
|
1499 |
+
"Mit dem Tools Button können Sie eine Seite duplizieren, ein Template "
|
1500 |
+
"speichern oder die globalen Einstellungen editieren."
|
1501 |
+
|
1502 |
+
# @ fl-builder
|
1503 |
+
#: includes/js-config.php:89
|
1504 |
+
msgid "Publish Your Changes"
|
1505 |
+
msgstr "Änderungen veröffentlichen"
|
1506 |
+
|
1507 |
+
# @ fl-builder
|
1508 |
+
#: includes/js-config.php:90
|
1509 |
+
msgid ""
|
1510 |
+
"Once you're finished, click the Done button to publish your changes, save a "
|
1511 |
+
"draft or revert back to the last published state."
|
1512 |
+
msgstr ""
|
1513 |
+
"Sobald Sie fertig sind, klicken Sie auf den \"fertig\" Button um Ihre "
|
1514 |
+
"Änderungen zu veröffentlichen, den Entwurf zu speichern oder den "
|
1515 |
+
"ursprünglichen Zustand wiederherzustellen. "
|
1516 |
+
|
1517 |
+
# @ fl-builder
|
1518 |
+
#: includes/js-config.php:91
|
1519 |
+
msgid "Let's Get Building!"
|
1520 |
+
msgstr "Also los geht's!"
|
1521 |
+
|
1522 |
+
# @ fl-builder
|
1523 |
+
#: includes/js-config.php:92
|
1524 |
+
msgid ""
|
1525 |
+
"Now that you know the basics, you're ready to start building! If at any time "
|
1526 |
+
"you need help, click the help icon in the upper right corner to access the "
|
1527 |
+
"help menu. Happy building!"
|
1528 |
+
msgstr ""
|
1529 |
+
"Nun, da Sie die Grundlagen kennen, können Sie loslegen! Wenn Sie zu "
|
1530 |
+
"irgendeinem Zeitpunkt Hilfe benötigen, klicken Sie auf das Hilfe-Symbol in "
|
1531 |
+
"der oberen rechten Ecke, um das Hilfemenü aufzurufen. Viel Spaß beim "
|
1532 |
+
"Gestalter Ihrer Website!"
|
1533 |
+
|
1534 |
+
#: includes/js-config.php:93
|
1535 |
+
msgid ""
|
1536 |
+
"The settings you are currently editing will not be saved if you navigate "
|
1537 |
+
"away from this page."
|
1538 |
+
msgstr ""
|
1539 |
+
"Die Einstellungen die Sie gerade bearbeiten werden nicht gespeichert, wenn "
|
1540 |
+
"Sie diese Seite verlassen."
|
1541 |
+
|
1542 |
+
# @ fl-builder
|
1543 |
+
#: includes/js-config.php:94
|
1544 |
+
msgid "View the Knowledge Base"
|
1545 |
+
msgstr "Wissensdatenbank anzeigen"
|
1546 |
+
|
1547 |
+
# @ fl-builder
|
1548 |
+
#: includes/js-config.php:95
|
1549 |
+
msgid "Visit the Forums"
|
1550 |
+
msgstr "Forum besuchen"
|
1551 |
+
|
1552 |
+
# @ fl-builder
|
1553 |
+
#: includes/js-config.php:96
|
1554 |
+
msgid "Watch the Video"
|
1555 |
+
msgstr "Bideo anschauen"
|
1556 |
+
|
1557 |
+
# @ fl-builder
|
1558 |
+
#: includes/js-config.php:97
|
1559 |
+
msgid ""
|
1560 |
+
"Welcome! It looks like this might be your first time using the builder. "
|
1561 |
+
"Would you like to take a tour?"
|
1562 |
+
msgstr ""
|
1563 |
+
"Willkommen! Es sieht so aus, als würden Sie den Builder zum ersten Mal "
|
1564 |
+
"verwenden. Wollen Sie eine kleine Tour starten?"
|
1565 |
+
|
1566 |
+
# @ fl-builder
|
1567 |
+
#: includes/js-config.php:98
|
1568 |
+
msgid "Yes Please!"
|
1569 |
+
msgstr "Ja, danke."
|
1570 |
+
|
1571 |
+
#: includes/loop-settings.php:19
|
1572 |
+
msgid "Post Type"
|
1573 |
+
msgstr "Posttyp"
|
1574 |
+
|
1575 |
+
#: includes/loop-settings.php:25
|
1576 |
+
msgid "Order By"
|
1577 |
+
msgstr "Ordnen nach"
|
1578 |
+
|
1579 |
+
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1580 |
+
#: modules/woocommerce/woocommerce.php:189
|
1581 |
+
msgid "Date"
|
1582 |
+
msgstr "Datum"
|
1583 |
+
|
1584 |
+
#: includes/loop-settings.php:29
|
1585 |
+
msgid "Date Last Modified"
|
1586 |
+
msgstr "Letztes Änderungsdatum"
|
1587 |
+
|
1588 |
+
#: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
|
1589 |
+
#: modules/pricing-table/pricing-table.php:94
|
1590 |
+
msgid "Title"
|
1591 |
+
msgstr "Titel"
|
1592 |
+
|
1593 |
+
#: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
|
1594 |
+
msgid "Author"
|
1595 |
+
msgstr "Autor"
|
1596 |
+
|
1597 |
+
#: includes/loop-settings.php:32
|
1598 |
+
msgid "Comment Count"
|
1599 |
+
msgstr "Kommentarzähler"
|
1600 |
+
|
1601 |
+
#: includes/loop-settings.php:33
|
1602 |
+
msgid "Menu Order"
|
1603 |
+
msgstr "Menüreihenfolge"
|
1604 |
+
|
1605 |
+
#: includes/loop-settings.php:34
|
1606 |
+
msgid "Random"
|
1607 |
+
msgstr "Zufällig"
|
1608 |
+
|
1609 |
+
#: includes/loop-settings.php:41
|
1610 |
+
msgid "Order"
|
1611 |
+
msgstr "Geordnet"
|
1612 |
+
|
1613 |
+
#: includes/loop-settings.php:43
|
1614 |
+
msgid "Descending"
|
1615 |
+
msgstr "Absteigend"
|
1616 |
+
|
1617 |
+
#: includes/loop-settings.php:44
|
1618 |
+
msgid "Ascending"
|
1619 |
+
msgstr "Aufsteigend"
|
1620 |
+
|
1621 |
+
#: includes/loop-settings.php:52
|
1622 |
+
msgid "Filter"
|
1623 |
+
msgstr "Filter"
|
1624 |
+
|
1625 |
+
#: includes/loop-settings.php:63
|
1626 |
+
#, php-format
|
1627 |
+
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1628 |
+
msgstr ""
|
1629 |
+
"Geben Sie eine kommagetrennte Liste von %s ein. Nur diese %s werden "
|
1630 |
+
"angezeigt."
|
1631 |
+
|
1632 |
+
#: includes/loop-settings.php:76
|
1633 |
+
#, php-format
|
1634 |
+
msgid ""
|
1635 |
+
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1636 |
+
msgstr ""
|
1637 |
+
"Geben Sie eine kommagetrennte Liste von %s ein. Nur Beiträge mit diesen %s "
|
1638 |
+
"werden angezeigt."
|
1639 |
+
|
1640 |
+
#: includes/loop-settings.php:90
|
1641 |
+
msgid "Authors"
|
1642 |
+
msgstr "Autoren"
|
1643 |
+
|
1644 |
+
#: includes/loop-settings.php:91
|
1645 |
+
msgid ""
|
1646 |
+
"Enter a comma separated list of authors usernames. Only posts with these "
|
1647 |
+
"authors will be shown."
|
1648 |
+
msgstr ""
|
1649 |
+
"Geben Sie eine kommagetrennte Liste von %s ein. Nur Beiträge mit diesen "
|
1650 |
+
"Autoren werden angezeigt."
|
1651 |
+
|
1652 |
+
#: includes/module-settings.php:75
|
1653 |
+
msgid "Choose whether to show or hide this module at different device sizes."
|
1654 |
+
msgstr ""
|
1655 |
+
"Wählen Sie ob sie das Modul für verschiedene Gerätegrößen anzeigen möchten "
|
1656 |
+
"oder nicht."
|
1657 |
+
|
1658 |
+
#: includes/module-settings.php:83
|
1659 |
+
msgid "Animation"
|
1660 |
+
msgstr "Animation"
|
1661 |
+
|
1662 |
+
#: includes/module-settings.php:89
|
1663 |
+
msgctxt "Animation style."
|
1664 |
+
msgid "None"
|
1665 |
+
msgstr "Keine"
|
1666 |
+
|
1667 |
+
#: includes/module-settings.php:90
|
1668 |
+
msgctxt "Animation style."
|
1669 |
+
msgid "Fade In"
|
1670 |
+
msgstr "Fade In"
|
1671 |
+
|
1672 |
+
#: includes/module-settings.php:91
|
1673 |
+
msgctxt "Animation style."
|
1674 |
+
msgid "Slide Left"
|
1675 |
+
msgstr "Slide Left"
|
1676 |
+
|
1677 |
+
#: includes/module-settings.php:92
|
1678 |
+
msgctxt "Animation style."
|
1679 |
+
msgid "Slide Right"
|
1680 |
+
msgstr "Slide Right"
|
1681 |
+
|
1682 |
+
#: includes/module-settings.php:93
|
1683 |
+
msgctxt "Animation style."
|
1684 |
+
msgid "Slide Up"
|
1685 |
+
msgstr "Slide Up"
|
1686 |
+
|
1687 |
+
#: includes/module-settings.php:94
|
1688 |
+
msgctxt "Animation style."
|
1689 |
+
msgid "Slide Down"
|
1690 |
+
msgstr "Slide Down"
|
1691 |
+
|
1692 |
+
#: includes/module-settings.php:102
|
1693 |
+
#: modules/content-slider/content-slider.php:229
|
1694 |
+
#: modules/testimonials/testimonials.php:91
|
1695 |
+
msgid "Delay"
|
1696 |
+
msgstr "Verzögerung"
|
1697 |
+
|
1698 |
+
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1699 |
+
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
|
1700 |
+
#: modules/content-slider/content-slider.php:250
|
1701 |
+
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1702 |
+
#: modules/slideshow/slideshow.php:581
|
1703 |
+
#: modules/testimonials/testimonials.php:95
|
1704 |
+
#: modules/testimonials/testimonials.php:112
|
1705 |
+
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
1706 |
+
msgid "seconds"
|
1707 |
+
msgstr "Sekunden"
|
1708 |
+
|
1709 |
+
#: includes/module-settings.php:107
|
1710 |
+
msgid "The amount of time in seconds before this animation starts."
|
1711 |
+
msgstr "Die Zahl an Sekunden bevor diese Animation beginnt."
|
1712 |
+
|
1713 |
+
# @ fl-builder
|
1714 |
+
#: includes/module-settings.php:120
|
1715 |
+
msgid ""
|
1716 |
+
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1717 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1718 |
+
msgstr ""
|
1719 |
+
"Eine eindeutige ID, die auf das HTML dieses Moduls angewendet wird. Sie muss "
|
1720 |
+
"mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
|
1721 |
+
"oder Zahlen enthalten. Keine Leerzeichen."
|
1722 |
+
|
1723 |
+
# @ fl-builder
|
1724 |
+
#: includes/module-settings.php:127 includes/row-settings.php:615
|
1725 |
+
msgid "Class"
|
1726 |
+
msgstr "Klasse"
|
1727 |
+
|
1728 |
+
# @ fl-builder
|
1729 |
+
#: includes/module-settings.php:128
|
1730 |
+
msgid ""
|
1731 |
+
"A class that will be applied to this module's HTML. Must start with a letter "
|
1732 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1733 |
+
"classes with spaces."
|
1734 |
+
msgstr ""
|
1735 |
+
"Eine Klasse, die in HTML dieses Moduls angewendet wird. Sie muss mit einem "
|
1736 |
+
"Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben oder "
|
1737 |
+
"Zahlen enthalten. Keine Leerzeichen."
|
1738 |
+
|
1739 |
+
#: includes/row-settings.php:16 modules/button/button.php:188
|
1740 |
+
#: modules/content-slider/content-slider.php:483
|
1741 |
+
msgid "Width"
|
1742 |
+
msgstr "Breite"
|
1743 |
+
|
1744 |
+
#: includes/row-settings.php:27
|
1745 |
+
msgid ""
|
1746 |
+
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
1747 |
+
"no wider than the Row Max Width set in the Global Settings."
|
1748 |
+
msgstr ""
|
1749 |
+
"Zeilen mit voller Breite sind so breit wie die ganze Seite. Zeilen mit "
|
1750 |
+
"fester Breite sind nicht breiter als die in den globalen Einstellungen "
|
1751 |
+
"eingestellte maximale Zeilenbreite."
|
1752 |
+
|
1753 |
+
#: includes/row-settings.php:34
|
1754 |
+
msgid "Content Width"
|
1755 |
+
msgstr "Inhaltsbreite"
|
1756 |
+
|
1757 |
+
#: includes/row-settings.php:40
|
1758 |
+
msgid ""
|
1759 |
+
"Full width content spans the width of the page from edge to edge. Fixed "
|
1760 |
+
"content is no wider than the Row Max Width set in the Global Settings."
|
1761 |
+
msgstr ""
|
1762 |
+
"Inhalt mit voller Breite ist so breit wie die ganze Seite. Inhalt mit fester "
|
1763 |
+
"Breite sind nicht breiter als die in den globalen Einstellungen eingestellte "
|
1764 |
+
"maximale Inhaltsbreite."
|
1765 |
+
|
1766 |
+
#: includes/row-settings.php:61
|
1767 |
+
msgid "Background"
|
1768 |
+
msgstr "Hintergrund"
|
1769 |
+
|
1770 |
+
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
|
1771 |
+
msgctxt "Background type."
|
1772 |
+
msgid "None"
|
1773 |
+
msgstr "Keiner"
|
1774 |
+
|
1775 |
+
#: includes/row-settings.php:69
|
1776 |
+
msgctxt "Background type."
|
1777 |
+
msgid "Color"
|
1778 |
+
msgstr "Farbe"
|
1779 |
+
|
1780 |
+
#: includes/row-settings.php:70
|
1781 |
+
msgctxt "Background type."
|
1782 |
+
msgid "Photo"
|
1783 |
+
msgstr "Foto"
|
1784 |
+
|
1785 |
+
#: includes/row-settings.php:71
|
1786 |
+
msgctxt "Background type."
|
1787 |
+
msgid "Video"
|
1788 |
+
msgstr "Video"
|
1789 |
+
|
1790 |
+
#: includes/row-settings.php:73
|
1791 |
+
msgctxt "Background type."
|
1792 |
+
msgid "Slideshow"
|
1793 |
+
msgstr "Diashow"
|
1794 |
+
|
1795 |
+
#: includes/row-settings.php:77
|
1796 |
+
msgctxt "Background type."
|
1797 |
+
msgid "Parallax"
|
1798 |
+
msgstr "Parallax"
|
1799 |
+
|
1800 |
+
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
|
1801 |
+
msgid "Background Photo"
|
1802 |
+
msgstr "Hintergrundfoto"
|
1803 |
+
|
1804 |
+
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1805 |
+
#: modules/callout/callout.php:316 modules/callout/callout.php:332
|
1806 |
+
#: modules/callout/callout.php:336
|
1807 |
+
#: modules/content-slider/content-slider.php:335
|
1808 |
+
#: modules/content-slider/content-slider.php:404
|
1809 |
+
#: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
|
1810 |
+
#: modules/photo/photo.php:392
|
1811 |
+
msgid "Photo"
|
1812 |
+
msgstr "Foto"
|
1813 |
+
|
1814 |
+
#: includes/row-settings.php:140
|
1815 |
+
msgid "Repeat"
|
1816 |
+
msgstr "Wiederholen"
|
1817 |
+
|
1818 |
+
#: includes/row-settings.php:143
|
1819 |
+
msgctxt "Background repeat."
|
1820 |
+
msgid "None"
|
1821 |
+
msgstr "Nicht"
|
1822 |
+
|
1823 |
+
#: includes/row-settings.php:144
|
1824 |
+
msgctxt "Background repeat."
|
1825 |
+
msgid "Tile"
|
1826 |
+
msgstr "Tile"
|
1827 |
+
|
1828 |
+
#: includes/row-settings.php:145
|
1829 |
+
msgctxt "Background repeat."
|
1830 |
+
msgid "Horizontal"
|
1831 |
+
msgstr "Horizontal"
|
1832 |
+
|
1833 |
+
#: includes/row-settings.php:146
|
1834 |
+
msgctxt "Background repeat."
|
1835 |
+
msgid "Vertical"
|
1836 |
+
msgstr "Vertikal"
|
1837 |
+
|
1838 |
+
#: includes/row-settings.php:148
|
1839 |
+
msgid ""
|
1840 |
+
"Repeat applies to how the image should display in the row background. "
|
1841 |
+
"Choosing none will display the image as uploaded. Tile will repeat the image "
|
1842 |
+
"as many times as needed to fill the row horizontally and vertically. You can "
|
1843 |
+
"also specify the image to only repeat horizontally or vertically."
|
1844 |
+
msgstr ""
|
1845 |
+
"Wiederholen bezieht sich darauf, wie das Bild im Zeilenhintergrund angezeit "
|
1846 |
+
"wird. >Nicht< zeit das Bild so an, wie es hochgeladen wurde. >Tile< "
|
1847 |
+
"wiederholt das Bild sooft horizontal und vertikal, dass die gesamte Zeile "
|
1848 |
+
"ausgefüllt ist. Sie können auch angeben, dass das Bild nur horizontal oder "
|
1849 |
+
"vertikal wiederholt wird."
|
1850 |
+
|
1851 |
+
#: includes/row-settings.php:155 modules/callout/callout.php:353
|
1852 |
+
#: modules/callout/callout.php:373
|
1853 |
+
#: modules/content-slider/content-slider.php:472
|
1854 |
+
#: modules/post-grid/post-grid.php:127
|
1855 |
+
msgid "Position"
|
1856 |
+
msgstr "Position"
|
1857 |
+
|
1858 |
+
#: includes/row-settings.php:158
|
1859 |
+
msgid "Left Top"
|
1860 |
+
msgstr "Links oben"
|
1861 |
+
|
1862 |
+
#: includes/row-settings.php:159
|
1863 |
+
msgid "Left Center"
|
1864 |
+
msgstr "Links mitte"
|
1865 |
+
|
1866 |
+
#: includes/row-settings.php:160
|
1867 |
+
msgid "Left Bottom"
|
1868 |
+
msgstr "Links unten"
|
1869 |
+
|
1870 |
+
#: includes/row-settings.php:161
|
1871 |
+
msgid "Right Top"
|
1872 |
+
msgstr "Rechts oben"
|
1873 |
+
|
1874 |
+
#: includes/row-settings.php:162
|
1875 |
+
msgid "Right Center"
|
1876 |
+
msgstr "Rechts mitte"
|
1877 |
+
|
1878 |
+
#: includes/row-settings.php:163
|
1879 |
+
msgid "Right Bottom"
|
1880 |
+
msgstr "Rechts unten"
|
1881 |
+
|
1882 |
+
#: includes/row-settings.php:164
|
1883 |
+
msgid "Center Top"
|
1884 |
+
msgstr "Oben mitte"
|
1885 |
+
|
1886 |
+
#: includes/row-settings.php:165 modules/button/button.php:218
|
1887 |
+
#: modules/callout/callout.php:251
|
1888 |
+
#: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
|
1889 |
+
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1890 |
+
#: modules/icon/icon.php:133 modules/icon-group/icon-group.php:110
|
1891 |
+
#: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
|
1892 |
+
msgid "Center"
|
1893 |
+
msgstr "Mitte"
|
1894 |
+
|
1895 |
+
#: includes/row-settings.php:166
|
1896 |
+
msgid "Center Bottom"
|
1897 |
+
msgstr "Unten mitte"
|
1898 |
+
|
1899 |
+
#: includes/row-settings.php:168
|
1900 |
+
msgid "Position will tell the image where it should sit in the row background."
|
1901 |
+
msgstr "Die Position gibt an, wo sich das Bild im Zeilenhintergrund befindet."
|
1902 |
+
|
1903 |
+
#: includes/row-settings.php:175
|
1904 |
+
msgid "Attachment"
|
1905 |
+
msgstr "Attachment"
|
1906 |
+
|
1907 |
+
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1908 |
+
msgid "Scroll"
|
1909 |
+
msgstr "Scroll"
|
1910 |
+
|
1911 |
+
#: includes/row-settings.php:181
|
1912 |
+
msgid ""
|
1913 |
+
"Attachment will specify how the image reacts when scrolling a page. When "
|
1914 |
+
"scrolling is selected, the image will scroll with page scrolling. This is "
|
1915 |
+
"the default setting. Fixed will allow the image to scroll within the row "
|
1916 |
+
"background if fill is selected in the scale setting."
|
1917 |
+
msgstr ""
|
1918 |
+
"Attachment gibt an wie das Bild reagiert, wenn die Seite gescrollt wird. "
|
1919 |
+
"Wenn >Scrolling< ausgewählt ist, scrollt das Bild mit der Seite. Dies ist "
|
1920 |
+
"die Defaulteinstellung. >Fest< erlaubt, dass das Bild innerhalb des "
|
1921 |
+
"Zeilenhintergrunds scrollt, wenn >gefüllt< in den Skalierungseinstellungen "
|
1922 |
+
"ausgewählt wurde."
|
1923 |
+
|
1924 |
+
#: includes/row-settings.php:188
|
1925 |
+
msgid "Scale"
|
1926 |
+
msgstr "Skalierung"
|
1927 |
+
|
1928 |
+
#: includes/row-settings.php:191
|
1929 |
+
msgctxt "Background scale."
|
1930 |
+
msgid "None"
|
1931 |
+
msgstr "Keine"
|
1932 |
+
|
1933 |
+
#: includes/row-settings.php:192
|
1934 |
+
msgid "Fit"
|
1935 |
+
msgstr "Passend"
|
1936 |
+
|
1937 |
+
#: includes/row-settings.php:193
|
1938 |
+
msgid "Fill"
|
1939 |
+
msgstr "Gefüllt"
|
1940 |
+
|
1941 |
+
#: includes/row-settings.php:195
|
1942 |
+
msgid ""
|
1943 |
+
"Scale applies to how the image should display in the row background. You can "
|
1944 |
+
"select either fill or fit to the row background."
|
1945 |
+
msgstr ""
|
1946 |
+
">Skalierung< gibt an, wie das Bild im Zeilenhintergrund angezeigt wird. Sie "
|
1947 |
+
"können entweder >Gefüllt< oder >Passend< auswählen."
|
1948 |
+
|
1949 |
+
#: includes/row-settings.php:203
|
1950 |
+
msgid "Background Video"
|
1951 |
+
msgstr "Hintergrundvideo"
|
1952 |
+
|
1953 |
+
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
|
1954 |
+
#: modules/video/video.php:19 modules/video/video.php:100
|
1955 |
+
msgid "Video"
|
1956 |
+
msgstr "Video"
|
1957 |
+
|
1958 |
+
#: includes/row-settings.php:208
|
1959 |
+
msgid ""
|
1960 |
+
"An HTML5 video to use as the background of this row. Supported types are "
|
1961 |
+
"MP4, WebM and Ogg."
|
1962 |
+
msgstr ""
|
1963 |
+
"Ein HTML 5 - Video, das im Hintergrund dieser Zeile verwendet werden soll. "
|
1964 |
+
"Unterstützte Typen sind MP4, WebM und Ogg."
|
1965 |
+
|
1966 |
+
#: includes/row-settings.php:215
|
1967 |
+
msgid "Fallback Photo"
|
1968 |
+
msgstr "Fallback-Foto"
|
1969 |
+
|
1970 |
+
#: includes/row-settings.php:216
|
1971 |
+
msgid "A photo that will be displayed if the video fails to load."
|
1972 |
+
msgstr ""
|
1973 |
+
"Ein Foto, das angezeigt wird, wenn das Video nicht geladen werden kann."
|
1974 |
+
|
1975 |
+
#: includes/row-settings.php:224
|
1976 |
+
msgid "Background Slideshow"
|
1977 |
+
msgstr "Hintergrund-Diashow"
|
1978 |
+
|
1979 |
+
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
1980 |
+
#: modules/slideshow/slideshow.php:263
|
1981 |
+
msgid "Source"
|
1982 |
+
msgstr "Quelle"
|
1983 |
+
|
1984 |
+
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
1985 |
+
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
1986 |
+
#: modules/video/video.php:86
|
1987 |
+
msgid "Media Library"
|
1988 |
+
msgstr "Medienbibliothek"
|
1989 |
+
|
1990 |
+
#: includes/row-settings.php:234 modules/gallery/gallery.php:240
|
1991 |
+
#: modules/slideshow/slideshow.php:269
|
1992 |
+
msgid ""
|
1993 |
+
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
1994 |
+
"site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
|
1995 |
+
"accessed by using the get a link function in your SmugMug gallery."
|
1996 |
+
msgstr ""
|
1997 |
+
"Holen Sie Bilder von der WP Medienbibliothek oder ihrer SmugMug-Seite indem "
|
1998 |
+
"Sie die URL des RSS-Feed von SmugMug angeben."
|
1999 |
+
|
2000 |
+
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
2001 |
+
#: modules/slideshow/slideshow.php:281
|
2002 |
+
msgid "Photos"
|
2003 |
+
msgstr "Fotos"
|
2004 |
+
|
2005 |
+
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
2006 |
+
#: modules/slideshow/slideshow.php:285
|
2007 |
+
msgid "Feed URL"
|
2008 |
+
msgstr "Feed URL"
|
2009 |
+
|
2010 |
+
#: includes/row-settings.php:263 includes/row-settings.php:328
|
2011 |
+
#: modules/slideshow/slideshow.php:382
|
2012 |
+
msgid "Speed"
|
2013 |
+
msgstr "Geschwindigkeit"
|
2014 |
+
|
2015 |
+
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
|
2016 |
+
#: modules/slideshow/slideshow.php:389
|
2017 |
+
#: modules/testimonials/testimonials.php:99
|
2018 |
+
msgid "Transition"
|
2019 |
+
msgstr "Übergang"
|
2020 |
+
|
2021 |
+
#: includes/row-settings.php:276
|
2022 |
+
msgctxt "Slideshow transition type."
|
2023 |
+
msgid "None"
|
2024 |
+
msgstr "Keiner"
|
2025 |
+
|
2026 |
+
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
|
2027 |
+
#: modules/slideshow/slideshow.php:393
|
2028 |
+
#: modules/testimonials/testimonials.php:103
|
2029 |
+
msgid "Fade"
|
2030 |
+
msgstr "Fade"
|
2031 |
+
|
2032 |
+
#: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
|
2033 |
+
msgid "Ken Burns"
|
2034 |
+
msgstr "Ken Burns"
|
2035 |
+
|
2036 |
+
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
2037 |
+
msgid "Slide Horizontal"
|
2038 |
+
msgstr "Slide Horizontal"
|
2039 |
+
|
2040 |
+
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
2041 |
+
msgid "Slide Vertical"
|
2042 |
+
msgstr "Slide Vertikal"
|
2043 |
+
|
2044 |
+
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
2045 |
+
msgid "Blinds"
|
2046 |
+
msgstr "Fensterläden"
|
2047 |
+
|
2048 |
+
#: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
|
2049 |
+
msgid "Bars"
|
2050 |
+
msgstr "Balken"
|
2051 |
+
|
2052 |
+
#: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
|
2053 |
+
msgid "Random Bars"
|
2054 |
+
msgstr "Zufällige Balken"
|
2055 |
+
|
2056 |
+
#: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
|
2057 |
+
msgid "Boxes"
|
2058 |
+
msgstr "Boxen"
|
2059 |
+
|
2060 |
+
#: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
|
2061 |
+
msgid "Random Boxes"
|
2062 |
+
msgstr "Zufällige Boxen"
|
2063 |
+
|
2064 |
+
#: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
|
2065 |
+
msgid "Boxes Grow"
|
2066 |
+
msgstr "Wachsende Boxen"
|
2067 |
+
|
2068 |
+
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
|
2069 |
+
#: modules/slideshow/slideshow.php:407
|
2070 |
+
#: modules/testimonials/testimonials.php:108
|
2071 |
+
msgid "Transition Speed"
|
2072 |
+
msgstr "Übergangsgeschwindigkeit"
|
2073 |
+
|
2074 |
+
#: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
|
2075 |
+
msgid "Randomize Photos"
|
2076 |
+
msgstr "Zufällige Fotoreihenfolge"
|
2077 |
+
|
2078 |
+
#: includes/row-settings.php:317
|
2079 |
+
msgid "Background Parallax"
|
2080 |
+
msgstr "Hintergrund Parallax"
|
2081 |
+
|
2082 |
+
#: includes/row-settings.php:331
|
2083 |
+
msgid "Fast"
|
2084 |
+
msgstr "Schnell"
|
2085 |
+
|
2086 |
+
#: includes/row-settings.php:332
|
2087 |
+
msgctxt "Speed."
|
2088 |
+
msgid "Medium"
|
2089 |
+
msgstr "Mittel"
|
2090 |
+
|
2091 |
+
#: includes/row-settings.php:333
|
2092 |
+
msgid "Slow"
|
2093 |
+
msgstr "Langsam"
|
2094 |
+
|
2095 |
+
# @ fl-builder
|
2096 |
+
#: includes/row-settings.php:342
|
2097 |
+
msgid "Background Overlay"
|
2098 |
+
msgstr "Hintergrund Overlay"
|
2099 |
+
|
2100 |
+
# @ fl-builder
|
2101 |
+
#: includes/row-settings.php:346
|
2102 |
+
msgid "Overlay Color"
|
2103 |
+
msgstr "Overlay Maskenfarbe"
|
2104 |
+
|
2105 |
+
# @ fl-builder
|
2106 |
+
#: includes/row-settings.php:354
|
2107 |
+
msgid "Overlay Opacity"
|
2108 |
+
msgstr "Overlay Maskendeckkraft"
|
2109 |
+
|
2110 |
+
#: includes/row-settings.php:595
|
2111 |
+
msgid "Choose whether to show or hide this row at different device sizes."
|
2112 |
+
msgstr ""
|
2113 |
+
"Wählen Sie ob diese Zeile bei verschiedenen Gerätegrößen angezeigt werden "
|
2114 |
+
"soll oder nicht."
|
2115 |
+
|
2116 |
+
# @ fl-builder
|
2117 |
+
#: includes/row-settings.php:608
|
2118 |
+
msgid ""
|
2119 |
+
"A unique ID that will be applied to this row's HTML. Must start with a "
|
2120 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
2121 |
+
msgstr ""
|
2122 |
+
"Eine eindeutige ID, die auf das HTML dieser Zeile angewendet wird. Sie muss "
|
2123 |
+
"mit einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
|
2124 |
+
"oder Zahlen enthalten. Keine Leerzeichen."
|
2125 |
+
|
2126 |
+
# @ fl-builder
|
2127 |
+
#: includes/row-settings.php:616
|
2128 |
+
msgid ""
|
2129 |
+
"A class that will be applied to this row's HTML. Must start with a letter "
|
2130 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
2131 |
+
"classes with spaces."
|
2132 |
+
msgstr ""
|
2133 |
+
"Eine Klasse, die auf das HTML dieser Zeile angewendet wird. Sie muss mit "
|
2134 |
+
"einem Buchstaben beginnen und nur Bindestriche, Unterstriche, Buchstaben "
|
2135 |
+
"oder Zahlen enthalten. Keine Leerzeichen."
|
2136 |
+
|
2137 |
+
#: includes/settings.php:62
|
2138 |
+
msgid "Save"
|
2139 |
+
msgstr "Speichern"
|
2140 |
+
|
2141 |
+
#: includes/template-selector.php:3
|
2142 |
+
msgid "Layout Templates"
|
2143 |
+
msgstr "Layout-Vorlage"
|
2144 |
+
|
2145 |
+
#: includes/template-selector.php:8
|
2146 |
+
msgid "Home Pages"
|
2147 |
+
msgstr "Home-Seiten"
|
2148 |
+
|
2149 |
+
#: includes/template-selector.php:9
|
2150 |
+
msgid "Content Pages"
|
2151 |
+
msgstr "Inhalts-Seiten"
|
2152 |
+
|
2153 |
+
#: includes/template-selector.php:13
|
2154 |
+
msgid "Your Templates"
|
2155 |
+
msgstr "Ihre Vorlagen"
|
2156 |
+
|
2157 |
+
#: includes/template-selector.php:47 includes/template-selector.php:77
|
2158 |
+
msgctxt "Template name."
|
2159 |
+
msgid "Blank"
|
2160 |
+
msgstr "Leer"
|
2161 |
+
|
2162 |
+
#: includes/template-selector.php:72
|
2163 |
+
msgid ""
|
2164 |
+
"You haven't saved any templates yet! To do so, create a layout and save it "
|
2165 |
+
"as a template under <strong>Tools → Save Template</strong>."
|
2166 |
+
msgstr ""
|
2167 |
+
"Sie haben noch keine Vorlagen gespeichert! Um dies zu tun, erstellen Sie ein "
|
2168 |
+
"Layout und speichern es als Vorlage unter <strong>Werkzeuge → Vorlage "
|
2169 |
+
"speichern</strong>."
|
2170 |
+
|
2171 |
+
#: includes/template-selector.php:84
|
2172 |
+
msgid "Delete"
|
2173 |
+
msgstr "Löschen"
|
2174 |
+
|
2175 |
+
#: includes/ui.php:7
|
2176 |
+
#, php-format
|
2177 |
+
msgid "Template: %s"
|
2178 |
+
msgstr "Vorlage: %s"
|
2179 |
+
|
2180 |
+
#: includes/ui.php:23
|
2181 |
+
msgid "Page Builder Demo"
|
2182 |
+
msgstr "Page Builder Demo"
|
2183 |
+
|
2184 |
+
#: includes/ui.php:40
|
2185 |
+
msgid "Buy Now!"
|
2186 |
+
msgstr "Jetzt kaufen!"
|
2187 |
+
|
2188 |
+
#: includes/ui.php:42
|
2189 |
+
msgid "Upgrade!"
|
2190 |
+
msgstr "Upgraden!"
|
2191 |
+
|
2192 |
+
#: includes/ui.php:45
|
2193 |
+
msgid "Tools"
|
2194 |
+
msgstr "Werkzeuge"
|
2195 |
+
|
2196 |
+
#: includes/ui.php:67
|
2197 |
+
msgid "Row Layouts"
|
2198 |
+
msgstr "Zeilenlayouts"
|
2199 |
+
|
2200 |
+
#: includes/ui.php:71
|
2201 |
+
msgid "1 Column"
|
2202 |
+
msgstr "1 Spalte"
|
2203 |
+
|
2204 |
+
#: includes/ui.php:72
|
2205 |
+
msgid "2 Columns"
|
2206 |
+
msgstr "2 Spalten"
|
2207 |
+
|
2208 |
+
#: includes/ui.php:73
|
2209 |
+
msgid "3 Columns"
|
2210 |
+
msgstr "3 Spalten"
|
2211 |
+
|
2212 |
+
#: includes/ui.php:74
|
2213 |
+
msgid "4 Columns"
|
2214 |
+
msgstr "4 Spalten"
|
2215 |
+
|
2216 |
+
#: includes/ui.php:75
|
2217 |
+
msgid "5 Columns"
|
2218 |
+
msgstr "5 Spalten"
|
2219 |
+
|
2220 |
+
#: includes/ui.php:76
|
2221 |
+
msgid "6 Columns"
|
2222 |
+
msgstr "6 Spalten"
|
2223 |
+
|
2224 |
+
#: includes/ui.php:77
|
2225 |
+
msgid "Left Sidebar"
|
2226 |
+
msgstr "Linke Seitenleiste"
|
2227 |
+
|
2228 |
+
#: includes/ui.php:78
|
2229 |
+
msgid "Right Sidebar"
|
2230 |
+
msgstr "Rechte Seitenleiste"
|
2231 |
+
|
2232 |
+
#: includes/ui.php:79
|
2233 |
+
msgid "Left & Right Sidebar"
|
2234 |
+
msgstr "Linke & Rechte Seitenleiste"
|
2235 |
+
|
2236 |
+
#: includes/updater/classes/class-fl-updater.php:107
|
2237 |
+
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2238 |
+
msgstr "<strong>UPDATE NICHT VERFÜGBAR!</strong>"
|
2239 |
+
|
2240 |
+
#: includes/updater/classes/class-fl-updater.php:109
|
2241 |
+
msgid "Please subscribe to enable automatic updates for this plugin."
|
2242 |
+
msgstr ""
|
2243 |
+
"Bitte abonnieren Sie um automatische Updates für dieses Plugin zu aktivieren."
|
2244 |
+
|
2245 |
+
#: includes/updater/classes/class-fl-updater.php:111
|
2246 |
+
#: includes/updater/includes/form.php:6
|
2247 |
+
msgid "Subscribe Now"
|
2248 |
+
msgstr "Jetzt abonnieren"
|
2249 |
+
|
2250 |
+
#: includes/updater/includes/form.php:5
|
2251 |
+
msgid ""
|
2252 |
+
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
2253 |
+
"enable automatic updates."
|
2254 |
+
msgstr ""
|
2255 |
+
"UPDATES NICHT VERFÜGBAR! Bitte abonnieren Sie oder geben unten den "
|
2256 |
+
"Lizenzschlüssel ein um automatische Updates zu aktivieren."
|
2257 |
+
|
2258 |
+
#: includes/updater/includes/form.php:11
|
2259 |
+
msgid "Updates & Support Subscription"
|
2260 |
+
msgstr "Updates & Support - Abonnement"
|
2261 |
+
|
2262 |
+
#: includes/updater/includes/form.php:14
|
2263 |
+
msgid "Active!"
|
2264 |
+
msgstr "Aktiv!"
|
2265 |
+
|
2266 |
+
#: includes/updater/includes/form.php:16
|
2267 |
+
msgid "Not Active!"
|
2268 |
+
msgstr "Nicht aktiv!"
|
2269 |
+
|
2270 |
+
#: includes/updater/includes/form.php:22
|
2271 |
+
msgid "Email address saved!"
|
2272 |
+
msgstr "E-Mail Adresse gespeichert!"
|
2273 |
+
|
2274 |
+
#: includes/updater/includes/form.php:27
|
2275 |
+
#, php-format
|
2276 |
+
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
2277 |
+
msgstr ""
|
2278 |
+
"Geben Sie ihren <a%s>Lizenzschlüssel</a> ein um Fern-Updates und -Support zu "
|
2279 |
+
"aktivieren."
|
2280 |
+
|
2281 |
+
#: includes/updater/includes/form.php:39
|
2282 |
+
msgid "Save Subscription Settings"
|
2283 |
+
msgstr "Aboeinstellungen speichern"
|
2284 |
+
|
2285 |
+
#: includes/user-template-settings.php:8
|
2286 |
+
msgid ""
|
2287 |
+
"Save the current layout as a template that can be reused under "
|
2288 |
+
"<strong>Templates → Your Templates</strong>."
|
2289 |
+
msgstr ""
|
2290 |
+
"Das aktuelle Layout als Vorlage, die unter <strong>Vorlagen→ Ihre "
|
2291 |
+
"Vorlagen</strong> wiederverwendet werden kann, speichern."
|
2292 |
+
|
2293 |
+
#: includes/user-template-settings.php:15
|
2294 |
+
msgctxt "Template name."
|
2295 |
+
msgid "Name"
|
2296 |
+
msgstr "Name"
|
2297 |
+
|
2298 |
+
#: modules/accordion/accordion.php:14
|
2299 |
+
msgid "Accordion"
|
2300 |
+
msgstr "Akkordeon"
|
2301 |
+
|
2302 |
+
#: modules/accordion/accordion.php:15
|
2303 |
+
msgid "Display a collapsible accordion of items."
|
2304 |
+
msgstr "Ein einklappbares Akkordeon von Elements anzeigen."
|
2305 |
+
|
2306 |
+
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2307 |
+
msgid "Items"
|
2308 |
+
msgstr "Elements"
|
2309 |
+
|
2310 |
+
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
2311 |
+
msgid "Item"
|
2312 |
+
msgstr "Element"
|
2313 |
+
|
2314 |
+
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
2315 |
+
msgid "Border Color"
|
2316 |
+
msgstr "Rahmenfarbe"
|
2317 |
+
|
2318 |
+
#: modules/accordion/accordion.php:62
|
2319 |
+
msgid "Label Size"
|
2320 |
+
msgstr "Labelgröße"
|
2321 |
+
|
2322 |
+
#: modules/accordion/accordion.php:65
|
2323 |
+
msgctxt "Label size."
|
2324 |
+
msgid "Small"
|
2325 |
+
msgstr "Klein"
|
2326 |
+
|
2327 |
+
#: modules/accordion/accordion.php:66
|
2328 |
+
msgctxt "Label size."
|
2329 |
+
msgid "Medium"
|
2330 |
+
msgstr "Mittel"
|
2331 |
+
|
2332 |
+
#: modules/accordion/accordion.php:67
|
2333 |
+
msgctxt "Label size."
|
2334 |
+
msgid "Large"
|
2335 |
+
msgstr "Groß"
|
2336 |
+
|
2337 |
+
#: modules/accordion/accordion.php:75
|
2338 |
+
msgid "Item Spacing"
|
2339 |
+
msgstr "Element-Abstand"
|
2340 |
+
|
2341 |
+
#: modules/accordion/accordion.php:86
|
2342 |
+
msgid "Collapse Inactive"
|
2343 |
+
msgstr "Einklappen inaktiv"
|
2344 |
+
|
2345 |
+
#: modules/accordion/accordion.php:92
|
2346 |
+
msgid ""
|
2347 |
+
"Choosing yes will keep only one item open at a time. Choosing no will allow "
|
2348 |
+
"multiple items to be open at the same time."
|
2349 |
+
msgstr ""
|
2350 |
+
"Wenn Sie >Ja< wählen wird nur ein Element gleichzeitig offen gehalten. Wenn "
|
2351 |
+
"Sie >Nein< wählen, können mehrere Elements gleichzeitig offen sein."
|
2352 |
+
|
2353 |
+
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
2354 |
+
msgid "Add Item"
|
2355 |
+
msgstr "Element hinzufügen"
|
2356 |
+
|
2357 |
+
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
2358 |
+
msgid "Label"
|
2359 |
+
msgstr "Label"
|
2360 |
+
|
2361 |
+
#: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
|
2362 |
+
#: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
|
2363 |
+
#: modules/tabs/tabs.php:89
|
2364 |
+
msgid "Content"
|
2365 |
+
msgstr "Inhalt"
|
2366 |
+
|
2367 |
+
#: modules/button/button.php:14 modules/callout/callout.php:479
|
2368 |
+
#: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
|
2369 |
+
#: modules/pricing-table/pricing-table.php:129
|
2370 |
+
msgid "Button"
|
2371 |
+
msgstr "Button"
|
2372 |
+
|
2373 |
+
#: modules/button/button.php:15
|
2374 |
+
msgid "A simple call to action button."
|
2375 |
+
msgstr "Ein einfacher Aufrufbutton."
|
2376 |
+
|
2377 |
+
#: modules/button/button.php:67 modules/cta/cta.php:222
|
2378 |
+
msgid "Click Here"
|
2379 |
+
msgstr "Hier klicken"
|
2380 |
+
|
2381 |
+
#: modules/button/button.php:75 modules/callout/callout.php:317
|
2382 |
+
#: modules/callout/callout.php:365 modules/callout/callout.php:369
|
2383 |
+
#: modules/cta/cta.php:230 modules/icon/icon.php:14 modules/icon/icon.php:34
|
2384 |
+
#: modules/icon-group/icon-group.php:34 modules/icon-group/icon-group.php:135
|
2385 |
+
msgid "Icon"
|
2386 |
+
msgstr "Icon"
|
2387 |
+
|
2388 |
+
#: modules/button/button.php:81 modules/button/button.php:85
|
2389 |
+
#: modules/callout/callout.php:445 modules/callout/callout.php:449
|
2390 |
+
#: modules/content-slider/content-slider.php:573
|
2391 |
+
#: modules/content-slider/content-slider.php:577
|
2392 |
+
#: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
|
2393 |
+
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
2394 |
+
#: modules/icon/icon.php:43 modules/icon-group/icon-group.php:139
|
2395 |
+
#: modules/slideshow/slideshow.php:343
|
2396 |
+
msgid "Link"
|
2397 |
+
msgstr "Link"
|
2398 |
+
|
2399 |
+
#: modules/button/button.php:86
|
2400 |
+
msgid "http://www.example.com"
|
2401 |
+
msgstr "http://www.beispiel.com"
|
2402 |
+
|
2403 |
+
#: modules/button/button.php:93 modules/callout/callout.php:457
|
2404 |
+
#: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
|
2405 |
+
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
2406 |
+
#: modules/photo/photo.php:478
|
2407 |
+
msgid "Link Target"
|
2408 |
+
msgstr "Linkziel"
|
2409 |
+
|
2410 |
+
#: modules/button/button.php:96 modules/callout/callout.php:460
|
2411 |
+
#: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
|
2412 |
+
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
2413 |
+
#: modules/photo/photo.php:481
|
2414 |
+
msgid "Same Window"
|
2415 |
+
msgstr "Selbes Fenster"
|
2416 |
+
|
2417 |
+
#: modules/button/button.php:97 modules/callout/callout.php:461
|
2418 |
+
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
|
2419 |
+
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
2420 |
+
#: modules/photo/photo.php:482
|
2421 |
+
msgid "New Window"
|
2422 |
+
msgstr "Neues Fenster"
|
2423 |
+
|
2424 |
+
#: modules/button/button.php:111 modules/cta/cta.php:187
|
2425 |
+
#: modules/heading/heading.php:72 modules/icon/icon.php:78
|
2426 |
+
#: modules/icon-group/icon-group.php:47
|
2427 |
+
msgid "Colors"
|
2428 |
+
msgstr "Farben"
|
2429 |
+
|
2430 |
+
#: modules/button/button.php:121 modules/callout/callout.php:409
|
2431 |
+
#: modules/callout/callout.php:514
|
2432 |
+
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
2433 |
+
#: modules/icon/icon.php:100 modules/icon-group/icon-group.php:69
|
2434 |
+
msgid "Background Hover Color"
|
2435 |
+
msgstr "Hintergrund-Hoverfarbe"
|
2436 |
+
|
2437 |
+
#: modules/button/button.php:130 modules/callout/callout.php:523
|
2438 |
+
#: modules/content-slider/content-slider.php:528
|
2439 |
+
#: modules/content-slider/content-slider.php:641
|
2440 |
+
#: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
|
2441 |
+
#: modules/cta/cta.php:279 modules/heading/heading.php:77
|
2442 |
+
msgid "Text Color"
|
2443 |
+
msgstr "Textfarbe"
|
2444 |
+
|
2445 |
+
#: modules/button/button.php:136 modules/callout/callout.php:529
|
2446 |
+
#: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
|
2447 |
+
msgid "Text Hover Color"
|
2448 |
+
msgstr "Text-Hoverfarbe"
|
2449 |
+
|
2450 |
+
# @ fl-builder
|
2451 |
+
#: modules/button/button.php:153 modules/callout/callout.php:546
|
2452 |
+
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
|
2453 |
+
msgid "Flat"
|
2454 |
+
msgstr "Flach"
|
2455 |
+
|
2456 |
+
#: modules/button/button.php:154 modules/callout/callout.php:417
|
2457 |
+
#: modules/callout/callout.php:547
|
2458 |
+
#: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
|
2459 |
+
#: modules/icon/icon.php:108 modules/icon-group/icon-group.php:77
|
2460 |
+
msgid "Gradient"
|
2461 |
+
msgstr "Gradient"
|
2462 |
+
|
2463 |
+
# @ fl-builder
|
2464 |
+
#: modules/button/button.php:155 modules/callout/callout.php:548
|
2465 |
+
#: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
|
2466 |
+
msgid "Transparent"
|
2467 |
+
msgstr "Transparent"
|
2468 |
+
|
2469 |
+
#: modules/button/button.php:165 modules/callout/callout.php:558
|
2470 |
+
#: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
|
2471 |
+
#: modules/pricing-table/pricing-table.php:67
|
2472 |
+
msgid "Border Size"
|
2473 |
+
msgstr "Rahmengröße"
|
2474 |
+
|
2475 |
+
#: modules/button/button.php:174 modules/callout/callout.php:567
|
2476 |
+
#: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
|
2477 |
+
#: modules/cta/cta.php:323
|
2478 |
+
msgid "Background Opacity"
|
2479 |
+
msgstr "Hintergrundtransparenz"
|
2480 |
+
|
2481 |
+
#: modules/button/button.php:184 modules/callout/callout.php:244
|
2482 |
+
#: modules/cta/cta.php:104 modules/heading/heading.php:82
|
2483 |
+
#: modules/icon/icon.php:118 modules/icon-group/icon-group.php:87
|
2484 |
+
msgid "Structure"
|
2485 |
+
msgstr "Struktur"
|
2486 |
+
|
2487 |
+
#: modules/button/button.php:191 modules/callout/callout.php:584
|
2488 |
+
msgctxt "Width."
|
2489 |
+
msgid "Auto"
|
2490 |
+
msgstr "Auto"
|
2491 |
+
|
2492 |
+
#: modules/button/button.php:207
|
2493 |
+
msgid "Custom Width"
|
2494 |
+
msgstr "Benutzerdefinierte Breite"
|
2495 |
+
|
2496 |
+
#: modules/button/button.php:215 modules/cta/cta.php:122
|
2497 |
+
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2498 |
+
#: modules/icon/icon.php:130 modules/icon-group/icon-group.php:107
|
2499 |
+
#: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
|
2500 |
+
msgid "Alignment"
|
2501 |
+
msgstr "Ausrichtung"
|
2502 |
+
|
2503 |
+
#: modules/button/button.php:225 modules/callout/callout.php:590
|
2504 |
+
#: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
|
2505 |
+
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2506 |
+
msgid "Font Size"
|
2507 |
+
msgstr "Schriftgröße"
|
2508 |
+
|
2509 |
+
#: modules/button/button.php:241 modules/callout/callout.php:606
|
2510 |
+
#: modules/cta/cta.php:353
|
2511 |
+
msgid "Round Corners"
|
2512 |
+
msgstr "Runde Ecken"
|
2513 |
+
|
2514 |
+
#: modules/callout/callout.php:14
|
2515 |
+
msgid "Callout"
|
2516 |
+
msgstr "Textbox"
|
2517 |
+
|
2518 |
+
#: modules/callout/callout.php:15
|
2519 |
+
msgid "A heading and snippet of text with an optional link, icon and image."
|
2520 |
+
msgstr ""
|
2521 |
+
"Ein Überschrift und Textschnipsel mit einem optionalen Link, Icon und Bild."
|
2522 |
+
|
2523 |
+
#: modules/callout/callout.php:216
|
2524 |
+
#: modules/content-slider/content-slider.php:413
|
2525 |
+
#: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
|
2526 |
+
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
2527 |
+
#: modules/testimonials/testimonials.php:56
|
2528 |
+
#: modules/testimonials/testimonials.php:61
|
2529 |
+
msgid "Heading"
|
2530 |
+
msgstr "Überschrift"
|
2531 |
+
|
2532 |
+
#: modules/callout/callout.php:248
|
2533 |
+
msgid "Overall Alignment"
|
2534 |
+
msgstr "Gesamtausrichtung"
|
2535 |
+
|
2536 |
+
#: modules/callout/callout.php:255
|
2537 |
+
msgid "The alignment that will apply to all elements within the callout."
|
2538 |
+
msgstr "Die Ausrichtung für alle Elemente der Textbox."
|
2539 |
+
|
2540 |
+
#: modules/callout/callout.php:263 modules/cta/cta.php:147
|
2541 |
+
msgid "Heading Structure"
|
2542 |
+
msgstr "Überschriften"
|
2543 |
+
|
2544 |
+
#: modules/callout/callout.php:267
|
2545 |
+
#: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
|
2546 |
+
msgid "Heading Tag"
|
2547 |
+
msgstr "Überschrift 1-6"
|
2548 |
+
|
2549 |
+
#: modules/callout/callout.php:280
|
2550 |
+
#: modules/content-slider/content-slider.php:445
|
2551 |
+
#: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
|
2552 |
+
#: modules/testimonials/testimonials.php:69
|
2553 |
+
msgid "Heading Size"
|
2554 |
+
msgstr "Überschriftgröße"
|
2555 |
+
|
2556 |
+
#: modules/callout/callout.php:294 modules/cta/cta.php:178
|
2557 |
+
msgid "Heading Custom Size"
|
2558 |
+
msgstr "Überschrift-benutzerdefinierte Größe"
|
2559 |
+
|
2560 |
+
#: modules/callout/callout.php:305 modules/post-grid/post-grid.php:113
|
2561 |
+
msgid "Image"
|
2562 |
+
msgstr "Bild"
|
2563 |
+
|
2564 |
+
#: modules/callout/callout.php:312
|
2565 |
+
msgid "Image Type"
|
2566 |
+
msgstr "Bildtyp"
|
2567 |
+
|
2568 |
+
#: modules/callout/callout.php:315
|
2569 |
+
msgctxt "Image type."
|
2570 |
+
msgid "None"
|
2571 |
+
msgstr "Kein"
|
2572 |
+
|
2573 |
+
#: modules/callout/callout.php:340 modules/photo/photo.php:401
|
2574 |
+
#: modules/slideshow/slideshow.php:312
|
2575 |
+
msgid "Crop"
|
2576 |
+
msgstr "Zugeschnitten"
|
2577 |
+
|
2578 |
+
#: modules/callout/callout.php:343
|
2579 |
+
msgctxt "Crop"
|
2580 |
+
msgid "None"
|
2581 |
+
msgstr "Kein"
|
2582 |
+
|
2583 |
+
#: modules/callout/callout.php:344 modules/photo/photo.php:405
|
2584 |
+
msgid "Landscape"
|
2585 |
+
msgstr "Landschaft"
|
2586 |
+
|
2587 |
+
#: modules/callout/callout.php:345 modules/photo/photo.php:406
|
2588 |
+
msgid "Panorama"
|
2589 |
+
msgstr "Panorama"
|
2590 |
+
|
2591 |
+
#: modules/callout/callout.php:346 modules/photo/photo.php:407
|
2592 |
+
msgid "Portrait"
|
2593 |
+
msgstr "Portrait"
|
2594 |
+
|
2595 |
+
#: modules/callout/callout.php:347 modules/photo/photo.php:408
|
2596 |
+
msgid "Square"
|
2597 |
+
msgstr "Quadrat"
|
2598 |
+
|
2599 |
+
#: modules/callout/callout.php:348 modules/photo/photo.php:409
|
2600 |
+
msgid "Circle"
|
2601 |
+
msgstr "Kreis"
|
2602 |
+
|
2603 |
+
#: modules/callout/callout.php:356 modules/callout/callout.php:376
|
2604 |
+
msgid "Above Heading"
|
2605 |
+
msgstr "Über Überschrift"
|
2606 |
+
|
2607 |
+
#: modules/callout/callout.php:357 modules/callout/callout.php:377
|
2608 |
+
msgid "Below Heading"
|
2609 |
+
msgstr "Unter Überschrift"
|
2610 |
+
|
2611 |
+
#: modules/callout/callout.php:358 modules/callout/callout.php:380
|
2612 |
+
msgid "Left of Text and Heading"
|
2613 |
+
msgstr "Links von Text und Überschrift"
|
2614 |
+
|
2615 |
+
#: modules/callout/callout.php:359 modules/callout/callout.php:381
|
2616 |
+
msgid "Right of Text and Heading"
|
2617 |
+
msgstr "Rechts von Text und Überschrift"
|
2618 |
+
|
2619 |
+
#: modules/callout/callout.php:378
|
2620 |
+
msgid "Left of Heading"
|
2621 |
+
msgstr "Links von Überschrift"
|
2622 |
+
|
2623 |
+
#: modules/callout/callout.php:379
|
2624 |
+
msgid "Right of Heading"
|
2625 |
+
msgstr "Rechts von Überschrift"
|
2626 |
+
|
2627 |
+
#: modules/callout/callout.php:387
|
2628 |
+
msgid "Icon Colors"
|
2629 |
+
msgstr "Iconfarben"
|
2630 |
+
|
2631 |
+
#: modules/callout/callout.php:396 modules/icon/icon.php:87
|
2632 |
+
#: modules/icon-group/icon-group.php:56
|
2633 |
+
msgid "Hover Color"
|
2634 |
+
msgstr "Hoverfarbe"
|
2635 |
+
|
2636 |
+
#: modules/callout/callout.php:427
|
2637 |
+
msgid "Icon Structure"
|
2638 |
+
msgstr "Iconstruktur"
|
2639 |
+
|
2640 |
+
#: modules/callout/callout.php:431 modules/icon/icon.php:122
|
2641 |
+
#: modules/icon-group/icon-group.php:91 modules/post-grid/post-grid.php:136
|
2642 |
+
msgid "Size"
|
2643 |
+
msgstr "Größe"
|
2644 |
+
|
2645 |
+
#: modules/callout/callout.php:442
|
2646 |
+
#: modules/content-slider/content-slider.php:570
|
2647 |
+
msgid "Call To Action"
|
2648 |
+
msgstr "Aufruf"
|
2649 |
+
|
2650 |
+
#: modules/callout/callout.php:450
|
2651 |
+
msgid ""
|
2652 |
+
"The link applies to the entire module. If choosing a call to action type "
|
2653 |
+
"below, this link will also be used for the text or button."
|
2654 |
+
msgstr ""
|
2655 |
+
"Der Link bezieht sich auf das gesamte Modul. Wenn Sie unten einen Aufruftyp "
|
2656 |
+
"wählen, wird dieser Link auch für den Text oder Button benutzt."
|
2657 |
+
|
2658 |
+
#: modules/callout/callout.php:470
|
2659 |
+
#: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
|
2660 |
+
msgid "Call to Action"
|
2661 |
+
msgstr "Aufruf"
|
2662 |
+
|
2663 |
+
#: modules/callout/callout.php:477
|
2664 |
+
#: modules/content-slider/content-slider.php:599
|
2665 |
+
msgctxt "Call to action."
|
2666 |
+
msgid "None"
|
2667 |
+
msgstr "Kein"
|
2668 |
+
|
2669 |
+
#: modules/callout/callout.php:498
|
2670 |
+
#: modules/content-slider/content-slider.php:620
|
2671 |
+
msgid "Button Icon"
|
2672 |
+
msgstr "Button-Icon"
|
2673 |
+
|
2674 |
+
#: modules/callout/callout.php:504
|
2675 |
+
#: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
|
2676 |
+
msgid "Button Colors"
|
2677 |
+
msgstr "Button-Farbe"
|
2678 |
+
|
2679 |
+
# @ fl-builder
|
2680 |
+
#: modules/callout/callout.php:539
|
2681 |
+
#: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
|
2682 |
+
msgid "Button Style"
|
2683 |
+
msgstr "Stil des Buttons"
|
2684 |
+
|
2685 |
+
#: modules/callout/callout.php:577
|
2686 |
+
#: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
|
2687 |
+
msgid "Button Structure"
|
2688 |
+
msgstr "Button-Struktur"
|
2689 |
+
|
2690 |
+
#: modules/callout/callout.php:581
|
2691 |
+
msgid "Button Width"
|
2692 |
+
msgstr "Button-Breite"
|
2693 |
+
|
2694 |
+
#: modules/contact-form/contact-form.php:14
|
2695 |
+
msgid "Contact Form"
|
2696 |
+
msgstr "Kontaktformular"
|
2697 |
+
|
2698 |
+
#: modules/contact-form/contact-form.php:15
|
2699 |
+
msgid "A very simple contact form."
|
2700 |
+
msgstr "Ein einfaches Kontaktformular."
|
2701 |
+
|
2702 |
+
#: modules/contact-form/contact-form.php:36
|
2703 |
+
msgid "Contact Form Submission"
|
2704 |
+
msgstr "Kontaktformular abschicken"
|
2705 |
+
|
2706 |
+
#: modules/contact-form/contact-form.php:64
|
2707 |
+
msgid "Send To Email"
|
2708 |
+
msgstr "An Email schicken"
|
2709 |
+
|
2710 |
+
#: modules/contact-form/contact-form.php:66
|
2711 |
+
msgid "example@mail.com"
|
2712 |
+
msgstr "beispiel@mail.com"
|
2713 |
+
|
2714 |
+
#: modules/contact-form/contact-form.php:67
|
2715 |
+
msgid "The contact form will send to this e-mail"
|
2716 |
+
msgstr "Das Kontaktformular sendet an diese Emailadresse"
|
2717 |
+
|
2718 |
+
#: modules/contact-form/includes/frontend.php:4
|
2719 |
+
msgctxt "Contact form field label."
|
2720 |
+
msgid "Name"
|
2721 |
+
msgstr "Name"
|
2722 |
+
|
2723 |
+
#: modules/contact-form/includes/frontend.php:5
|
2724 |
+
msgid "Please enter your name."
|
2725 |
+
msgstr "Bitte geben Sie ihren Namen ein."
|
2726 |
+
|
2727 |
+
#: modules/contact-form/includes/frontend.php:6
|
2728 |
+
msgid "Your name"
|
2729 |
+
msgstr "Ihr Name"
|
2730 |
+
|
2731 |
+
#: modules/contact-form/includes/frontend.php:10
|
2732 |
+
msgid "Email"
|
2733 |
+
msgstr "Email"
|
2734 |
+
|
2735 |
+
#: modules/contact-form/includes/frontend.php:11
|
2736 |
+
msgid "Please enter a valid email."
|
2737 |
+
msgstr "Bitte geben Sie eine gültige Email-Adresse ein"
|
2738 |
+
|
2739 |
+
#: modules/contact-form/includes/frontend.php:12
|
2740 |
+
msgid "Your email"
|
2741 |
+
msgstr "Ihre Email-Adresse"
|
2742 |
+
|
2743 |
+
#: modules/contact-form/includes/frontend.php:16
|
2744 |
+
msgid "Your Message"
|
2745 |
+
msgstr "Ihre Nachricht"
|
2746 |
+
|
2747 |
+
#: modules/contact-form/includes/frontend.php:17
|
2748 |
+
msgid "Please enter a message."
|
2749 |
+
msgstr "Bitte geben Sie eine Nachricht ein."
|
2750 |
+
|
2751 |
+
#: modules/contact-form/includes/frontend.php:18
|
2752 |
+
msgid "Your message"
|
2753 |
+
msgstr "Ihre Nachricht"
|
2754 |
+
|
2755 |
+
#: modules/contact-form/includes/frontend.php:23
|
2756 |
+
msgid "Send"
|
2757 |
+
msgstr "Senden"
|
2758 |
+
|
2759 |
+
#: modules/contact-form/includes/frontend.php:24
|
2760 |
+
msgid "Message Sent!"
|
2761 |
+
msgstr "Nachricht gesendet!"
|
2762 |
+
|
2763 |
+
#: modules/contact-form/includes/frontend.php:25
|
2764 |
+
msgid "Message failed. Please try again."
|
2765 |
+
msgstr ""
|
2766 |
+
"Nachricht senden fehlgeschlagen. Bitte versuchen Sie es später noch einmal."
|
2767 |
+
|
2768 |
+
#: modules/content-slider/content-slider.php:14
|
2769 |
+
msgid "Content Slider"
|
2770 |
+
msgstr "Inhalts-Slider"
|
2771 |
+
|
2772 |
+
#: modules/content-slider/content-slider.php:15
|
2773 |
+
msgid "Displays multiple slides with an optional heading and call to action."
|
2774 |
+
msgstr "Zeigt mehrere Slides mit einem optionalen Überschrift und Aufruf."
|
2775 |
+
|
2776 |
+
#: modules/content-slider/content-slider.php:197 modules/map/map.php:41
|
2777 |
+
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2778 |
+
msgid "Height"
|
2779 |
+
msgstr "Höhe"
|
2780 |
+
|
2781 |
+
#: modules/content-slider/content-slider.php:202
|
2782 |
+
msgid ""
|
2783 |
+
"This setting is the minimum height of the content slider. Content will "
|
2784 |
+
"expand the height automatically."
|
2785 |
+
msgstr ""
|
2786 |
+
"Diese Einstellung gibt die minimale Höhe des Content Sliders an. Inhalt wird "
|
2787 |
+
"die Höhe automatisch vergrößern."
|
2788 |
+
|
2789 |
+
#: modules/content-slider/content-slider.php:206
|
2790 |
+
#: modules/slideshow/slideshow.php:373
|
2791 |
+
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
2792 |
+
msgid "Auto Play"
|
2793 |
+
msgstr "Auto Play"
|
2794 |
+
|
2795 |
+
#: modules/content-slider/content-slider.php:220
|
2796 |
+
msgid "Show Play/Pause"
|
2797 |
+
msgstr "Play/Pause anzeigen"
|
2798 |
+
|
2799 |
+
#: modules/content-slider/content-slider.php:240
|
2800 |
+
#: modules/testimonials/testimonials.php:102
|
2801 |
+
msgctxt "Transition type."
|
2802 |
+
msgid "Slide"
|
2803 |
+
msgstr "Slide"
|
2804 |
+
|
2805 |
+
#: modules/content-slider/content-slider.php:254
|
2806 |
+
#: modules/testimonials/testimonials.php:121
|
2807 |
+
msgid "Show Arrows"
|
2808 |
+
msgstr "Pfeile anzeigen"
|
2809 |
+
|
2810 |
+
#: modules/content-slider/content-slider.php:263
|
2811 |
+
#: modules/testimonials/testimonials.php:151
|
2812 |
+
msgid "Show Dots"
|
2813 |
+
msgstr "Punkte anzeigen"
|
2814 |
+
|
2815 |
+
#: modules/content-slider/content-slider.php:277
|
2816 |
+
msgid "Max Content Width"
|
2817 |
+
msgstr "Maximale Inhaltsbreite"
|
2818 |
+
|
2819 |
+
#: modules/content-slider/content-slider.php:282
|
2820 |
+
msgid "The max width that the content area will be within your slides."
|
2821 |
+
msgstr ""
|
2822 |
+
"Die maximale Breite, die die Fläche für den Inhalt in ihren Slides annimmt."
|
2823 |
+
|
2824 |
+
#: modules/content-slider/content-slider.php:289
|
2825 |
+
msgid "Slides"
|
2826 |
+
msgstr "Slides"
|
2827 |
+
|
2828 |
+
#: modules/content-slider/content-slider.php:296
|
2829 |
+
msgid "Slide"
|
2830 |
+
msgstr "Slide"
|
2831 |
+
|
2832 |
+
#: modules/content-slider/content-slider.php:311
|
2833 |
+
msgid "Slide Settings"
|
2834 |
+
msgstr "Slideeinstellungen"
|
2835 |
+
|
2836 |
+
#: modules/content-slider/content-slider.php:321
|
2837 |
+
msgid "Slide Label"
|
2838 |
+
msgstr "Slidelabel"
|
2839 |
+
|
2840 |
+
#: modules/content-slider/content-slider.php:322
|
2841 |
+
msgid ""
|
2842 |
+
"A label to identify this slide on the Slides tab of the Content Slider "
|
2843 |
+
"settings."
|
2844 |
+
msgstr ""
|
2845 |
+
"Ein Label um diese Slide im Slide Tab der Content Slider - Einstellungen zu "
|
2846 |
+
"identifizieren."
|
2847 |
+
|
2848 |
+
#: modules/content-slider/content-slider.php:327
|
2849 |
+
msgid "Background Layout"
|
2850 |
+
msgstr "Hintergrund Layout"
|
2851 |
+
|
2852 |
+
#: modules/content-slider/content-slider.php:333
|
2853 |
+
msgid "This setting is for the entire background of your slide."
|
2854 |
+
msgstr "Diese Einstellung gilt für den gesamten Hintergrund ihrer Slide."
|
2855 |
+
|
2856 |
+
#: modules/content-slider/content-slider.php:368
|
2857 |
+
msgid "Background Video Code"
|
2858 |
+
msgstr "Hintergrundvideocode"
|
2859 |
+
|
2860 |
+
#: modules/content-slider/content-slider.php:374
|
2861 |
+
msgid "Content Layout"
|
2862 |
+
msgstr "Inhaltslayout"
|
2863 |
+
|
2864 |
+
#: modules/content-slider/content-slider.php:380
|
2865 |
+
msgid ""
|
2866 |
+
"This allows you to add content over or in addition to the background "
|
2867 |
+
"selection above. The location of the content layout can be selected in the "
|
2868 |
+
"style tab."
|
2869 |
+
msgstr ""
|
2870 |
+
"Dies erlaubt es Ihnen Inhalt überhalb oder zusätzlich zur Hintergrundauswahl "
|
2871 |
+
"hinzuzufügen. Die Platzierung des Inhaltslayouts kann im Stil-Tab ausgewählt "
|
2872 |
+
"werden."
|
2873 |
+
|
2874 |
+
#: modules/content-slider/content-slider.php:383
|
2875 |
+
msgid "Text & Photo"
|
2876 |
+
msgstr "Text & Foto"
|
2877 |
+
|
2878 |
+
#: modules/content-slider/content-slider.php:384
|
2879 |
+
msgid "Text & Video"
|
2880 |
+
msgstr "Text & Video"
|
2881 |
+
|
2882 |
+
#: modules/content-slider/content-slider.php:385
|
2883 |
+
msgctxt "Content type."
|
2884 |
+
msgid "None"
|
2885 |
+
msgstr "Nichts"
|
2886 |
+
|
2887 |
+
#: modules/content-slider/content-slider.php:408 modules/video/video.php:132
|
2888 |
+
msgid "Video Embed Code"
|
2889 |
+
msgstr "Video Embed Code"
|
2890 |
+
|
2891 |
+
#: modules/content-slider/content-slider.php:468
|
2892 |
+
msgid "Text Position"
|
2893 |
+
msgstr "Textposition"
|
2894 |
+
|
2895 |
+
#: modules/content-slider/content-slider.php:474
|
2896 |
+
msgid ""
|
2897 |
+
"The position will move the content layout selections left, right or center "
|
2898 |
+
"over the background of the slide."
|
2899 |
+
msgstr ""
|
2900 |
+
"Die Position gibt an ob das Inhaltslayout links, rechts oder mittig über dem "
|
2901 |
+
"Hintergrund der Slide platziert wird."
|
2902 |
+
|
2903 |
+
#: modules/content-slider/content-slider.php:491
|
2904 |
+
msgid "Top Margin"
|
2905 |
+
msgstr "Abstand aussen oben"
|
2906 |
+
|
2907 |
+
#: modules/content-slider/content-slider.php:499
|
2908 |
+
msgid "Bottom Margin"
|
2909 |
+
msgstr "Abstand aussen unten"
|
2910 |
+
|
2911 |
+
#: modules/content-slider/content-slider.php:507
|
2912 |
+
msgid "Left Margin"
|
2913 |
+
msgstr "Abstand aussen links"
|
2914 |
+
|
2915 |
+
#: modules/content-slider/content-slider.php:515
|
2916 |
+
msgid "Right Margin"
|
2917 |
+
msgstr "Abstand aussen rechts"
|
2918 |
+
|
2919 |
+
#: modules/content-slider/content-slider.php:524
|
2920 |
+
msgid "Text Colors"
|
2921 |
+
msgstr "Textfarben"
|
2922 |
+
|
2923 |
+
#: modules/content-slider/content-slider.php:534
|
2924 |
+
msgid "Text Shadow"
|
2925 |
+
msgstr "Textschatten"
|
2926 |
+
|
2927 |
+
#: modules/content-slider/content-slider.php:543
|
2928 |
+
#: modules/content-slider/content-slider.php:760
|
2929 |
+
msgid "Text Background Color"
|
2930 |
+
msgstr "Texthintergrundfarbe"
|
2931 |
+
|
2932 |
+
#: modules/content-slider/content-slider.php:544
|
2933 |
+
msgid ""
|
2934 |
+
"The color applies to the overlay behind text over the background selections."
|
2935 |
+
msgstr ""
|
2936 |
+
"Die Farbe bezieht sich auf den Overlay hinter dem Text überhalb der "
|
2937 |
+
"Hintergrundauswahl."
|
2938 |
+
|
2939 |
+
#: modules/content-slider/content-slider.php:549
|
2940 |
+
msgid "Text Background Opacity"
|
2941 |
+
msgstr "Texthintergrunddurchsichtigkeit"
|
2942 |
+
|
2943 |
+
#: modules/content-slider/content-slider.php:557
|
2944 |
+
msgid "Text Background Height"
|
2945 |
+
msgstr "Texthintergrundhöhe"
|
2946 |
+
|
2947 |
+
#: modules/content-slider/content-slider.php:559
|
2948 |
+
msgid ""
|
2949 |
+
"Auto will allow the overlay to fit however long the text content is. 100% "
|
2950 |
+
"will fit the overlay to the top and bottom of the slide."
|
2951 |
+
msgstr ""
|
2952 |
+
"Bei >Auto< passt sich der Overlay der Länge des Textes an. 100% passt den "
|
2953 |
+
"Overlay oben und unten an die Slide an."
|
2954 |
+
|
2955 |
+
#: modules/content-slider/content-slider.php:561
|
2956 |
+
msgctxt "Background height."
|
2957 |
+
msgid "Auto"
|
2958 |
+
msgstr "Auto"
|
2959 |
+
|
2960 |
+
#: modules/content-slider/content-slider.php:578
|
2961 |
+
msgid ""
|
2962 |
+
"The link applies to the entire slide. If choosing a call to action type "
|
2963 |
+
"below, this link will also be used for the text or button."
|
2964 |
+
msgstr ""
|
2965 |
+
"Der Link bezieht sich auf die ganze Slide. Wenn Sie unten einen Aufruftyp "
|
2966 |
+
"auswählen, gilt dieser Link auch für den Text oder Button."
|
2967 |
+
|
2968 |
+
#: modules/content-slider/content-slider.php:711
|
2969 |
+
msgid "Border Radius"
|
2970 |
+
msgstr "Rahmenradius"
|
2971 |
+
|
2972 |
+
#: modules/content-slider/content-slider.php:722
|
2973 |
+
msgctxt "Module settings form tab. Display on mobile devices."
|
2974 |
+
msgid "Mobile"
|
2975 |
+
msgstr "Mobil"
|
2976 |
+
|
2977 |
+
#: modules/content-slider/content-slider.php:725
|
2978 |
+
msgid "Mobile Photo"
|
2979 |
+
msgstr "Mobil-Foto"
|
2980 |
+
|
2981 |
+
#: modules/content-slider/content-slider.php:731
|
2982 |
+
msgid ""
|
2983 |
+
"You can choose a different photo that the slide will change to on mobile "
|
2984 |
+
"devices or no photo if desired."
|
2985 |
+
msgstr ""
|
2986 |
+
"Sie können auswählen, dass die Slide auf Handys ein anderes oder gar kein "
|
2987 |
+
"Foto anzeigt."
|
2988 |
+
|
2989 |
+
#: modules/content-slider/content-slider.php:733
|
2990 |
+
msgid "Use Main Photo"
|
2991 |
+
msgstr "Hauptfoto benutzen"
|
2992 |
+
|
2993 |
+
#: modules/content-slider/content-slider.php:734
|
2994 |
+
msgid "Choose Another Photo"
|
2995 |
+
msgstr "Ein andere Foto auswählen"
|
2996 |
+
|
2997 |
+
#: modules/content-slider/content-slider.php:735
|
2998 |
+
msgid "No Photo"
|
2999 |
+
msgstr "Kein Foto"
|
3000 |
+
|
3001 |
+
#: modules/content-slider/content-slider.php:750
|
3002 |
+
msgid "Mobile Text Colors"
|
3003 |
+
msgstr "Mobile Textfarben"
|
3004 |
+
|
3005 |
+
#: modules/cta/cta.php:15
|
3006 |
+
msgid "Display a heading, subheading and a button."
|
3007 |
+
msgstr "Überschrift, Subheading und Button anzeigen"
|
3008 |
+
|
3009 |
+
#: modules/cta/cta.php:75
|
3010 |
+
msgid "Ready to find out more?"
|
3011 |
+
msgstr "Sind Sie bereit mehr herauszufinden?"
|
3012 |
+
|
3013 |
+
#: modules/cta/cta.php:90
|
3014 |
+
msgid "Drop us a line today for a free quote!"
|
3015 |
+
msgstr "Schicken Sie uns heute eine Textzeile für ein freies Zitat!"
|
3016 |
+
|
3017 |
+
#: modules/cta/cta.php:108 modules/gallery/gallery.php:220
|
3018 |
+
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
3019 |
+
#: modules/testimonials/testimonials.php:37
|
3020 |
+
#: modules/woocommerce/woocommerce.php:57
|
3021 |
+
msgid "Layout"
|
3022 |
+
msgstr "Layout"
|
3023 |
+
|
3024 |
+
#: modules/cta/cta.php:111
|
3025 |
+
msgid "Inline"
|
3026 |
+
msgstr "Inline"
|
3027 |
+
|
3028 |
+
#: modules/cta/cta.php:112
|
3029 |
+
msgid "Stacked"
|
3030 |
+
msgstr "Gestapelt"
|
3031 |
+
|
3032 |
+
#: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
|
3033 |
+
msgid "Spacing"
|
3034 |
+
msgstr "Abstand"
|
3035 |
+
|
3036 |
+
#: modules/cta/cta.php:236
|
3037 |
+
msgid "Button Link"
|
3038 |
+
msgstr "Button Link"
|
3039 |
+
|
3040 |
+
#: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
|
3041 |
+
msgid "Gallery"
|
3042 |
+
msgstr "Galerie"
|
3043 |
+
|
3044 |
+
#: modules/gallery/gallery.php:15
|
3045 |
+
msgid "Display multiple photos in a gallery view."
|
3046 |
+
msgstr "Zeige mehrere Fotos in einer Galerieansicht."
|
3047 |
+
|
3048 |
+
#: modules/gallery/gallery.php:223
|
3049 |
+
msgid "Collage"
|
3050 |
+
msgstr "Collage"
|
3051 |
+
|
3052 |
+
#: modules/gallery/gallery.php:224
|
3053 |
+
msgctxt "Gallery layout: thumbnails."
|
3054 |
+
msgid "Thumbs"
|
3055 |
+
msgstr "Thumbs"
|
3056 |
+
|
3057 |
+
#: modules/gallery/gallery.php:260
|
3058 |
+
msgid "Photo Size"
|
3059 |
+
msgstr "Fotogröße"
|
3060 |
+
|
3061 |
+
#: modules/gallery/gallery.php:263
|
3062 |
+
msgctxt "Photo size."
|
3063 |
+
msgid "Small"
|
3064 |
+
msgstr "Klein"
|
3065 |
+
|
3066 |
+
#: modules/gallery/gallery.php:264
|
3067 |
+
msgctxt "Photo size."
|
3068 |
+
msgid "Medium"
|
3069 |
+
msgstr "Mittel"
|
3070 |
+
|
3071 |
+
#: modules/gallery/gallery.php:265
|
3072 |
+
msgctxt "Photo size."
|
3073 |
+
msgid "Large"
|
3074 |
+
msgstr "Groß"
|
3075 |
+
|
3076 |
+
#: modules/gallery/gallery.php:270
|
3077 |
+
msgid "Photo Spacing"
|
3078 |
+
msgstr "Fotoabstand"
|
3079 |
+
|
3080 |
+
#: modules/gallery/gallery.php:278
|
3081 |
+
msgid "Show Captions"
|
3082 |
+
msgstr "Zeige Bildunterschriften"
|
3083 |
+
|
3084 |
+
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
3085 |
+
msgid "Never"
|
3086 |
+
msgstr "Nie"
|
3087 |
+
|
3088 |
+
#: modules/gallery/gallery.php:282 modules/photo/photo.php:433
|
3089 |
+
msgid "On Hover"
|
3090 |
+
msgstr "Bei Hover"
|
3091 |
+
|
3092 |
+
#: modules/gallery/gallery.php:283 modules/photo/photo.php:434
|
3093 |
+
msgid "Below Photo"
|
3094 |
+
msgstr "Unter Foto"
|
3095 |
+
|
3096 |
+
#: modules/gallery/gallery.php:285
|
3097 |
+
msgid ""
|
3098 |
+
"The caption pulls from whatever text you put in the caption area in the "
|
3099 |
+
"media manager for each image. The caption is also pulled directly from "
|
3100 |
+
"SmugMug if you have captions set in your gallery."
|
3101 |
+
msgstr ""
|
3102 |
+
"Als Bildunterschrift wird der Text verwendet, den Sie in das "
|
3103 |
+
"Bildunterschriftfeld im Media Manager eingeben."
|
3104 |
+
|
3105 |
+
#: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
|
3106 |
+
msgid "Click Action"
|
3107 |
+
msgstr "Aktion bei Klick"
|
3108 |
+
|
3109 |
+
#: modules/gallery/gallery.php:292
|
3110 |
+
msgctxt "Click action."
|
3111 |
+
msgid "None"
|
3112 |
+
msgstr "Keine"
|
3113 |
+
|
3114 |
+
#: modules/gallery/gallery.php:293 modules/photo/photo.php:452
|
3115 |
+
msgid "Lightbox"
|
3116 |
+
msgstr "Lightbox"
|
3117 |
+
|
3118 |
+
#: modules/gallery/gallery.php:294
|
3119 |
+
msgid "Photo Link"
|
3120 |
+
msgstr "Fotolink"
|
3121 |
+
|
3122 |
+
#: modules/heading/heading.php:15
|
3123 |
+
msgid "Display a title/page heading."
|
3124 |
+
msgstr "Titel/Seiten-Überschrift anzeigen"
|
3125 |
+
|
3126 |
+
#: modules/heading/heading.php:101
|
3127 |
+
msgid "HTML Tag"
|
3128 |
+
msgstr "HTML Tag"
|
3129 |
+
|
3130 |
+
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
3131 |
+
msgid "Custom Font Size"
|
3132 |
+
msgstr "Benutzerdefinierte Schriftgröße"
|
3133 |
+
|
3134 |
+
#: modules/heading/heading.php:137
|
3135 |
+
msgid "Mobile Structure"
|
3136 |
+
msgstr "Mobile Struktur"
|
3137 |
+
|
3138 |
+
#: modules/heading/heading.php:158
|
3139 |
+
msgid "Custom Alignment"
|
3140 |
+
msgstr "Benutzerdefinierte Ausrichtung"
|
3141 |
+
|
3142 |
+
#: modules/html/html.php:14
|
3143 |
+
msgid "HTML"
|
3144 |
+
msgstr "HTML"
|
3145 |
+
|
3146 |
+
#: modules/html/html.php:15
|
3147 |
+
msgid "Display raw HTML code."
|
3148 |
+
msgstr "Rohen HTML-Code anzeigen"
|
3149 |
+
|
3150 |
+
#: modules/icon/icon.php:15
|
3151 |
+
msgid "Display an icon and optional title."
|
3152 |
+
msgstr "Zeige ein Icon und einen optionalen Titel an."
|
3153 |
+
|
3154 |
+
#: modules/icon-group/icon-group.php:14
|
3155 |
+
msgid "Icon Group"
|
3156 |
+
msgstr "Icongruppe"
|
3157 |
+
|
3158 |
+
#: modules/icon-group/icon-group.php:15
|
3159 |
+
msgid "Display a group of linked Font Awesome icons."
|
3160 |
+
msgstr "Zeige eine Gruppe von verknüpften Font Awesome Icons"
|
3161 |
+
|
3162 |
+
#: modules/icon-group/icon-group.php:125
|
3163 |
+
msgid "Add Icon"
|
3164 |
+
msgstr "Icon hinzufügen"
|
3165 |
+
|
3166 |
+
#: modules/map/map.php:14
|
3167 |
+
msgid "Map"
|
3168 |
+
msgstr "Karte"
|
3169 |
+
|
3170 |
+
#: modules/map/map.php:15
|
3171 |
+
msgid "Display a Google map."
|
3172 |
+
msgstr "Zeige eine Google Map an."
|
3173 |
+
|
3174 |
+
#: modules/map/map.php:33
|
3175 |
+
msgid "Address"
|
3176 |
+
msgstr "Adresse"
|
3177 |
+
|
3178 |
+
#: modules/map/map.php:34
|
3179 |
+
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
3180 |
+
msgstr "Beispielstraße 21, 93047 Regensburg"
|
3181 |
+
|
3182 |
+
#: modules/photo/photo.php:26
|
3183 |
+
msgid "Upload a photo or display one from the media library."
|
3184 |
+
msgstr "Ein Foto hochladen oder eines von der Medienbibliothek anzeigen."
|
3185 |
+
|
3186 |
+
#: modules/photo/photo.php:375
|
3187 |
+
msgid "Photo Source"
|
3188 |
+
msgstr "Fotoquelle"
|
3189 |
+
|
3190 |
+
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
3191 |
+
msgid "URL"
|
3192 |
+
msgstr "URL"
|
3193 |
+
|
3194 |
+
#: modules/photo/photo.php:396
|
3195 |
+
msgid "Photo URL"
|
3196 |
+
msgstr "Foto URL"
|
3197 |
+
|
3198 |
+
#: modules/photo/photo.php:397
|
3199 |
+
msgid "http://www.example.com/my-photo.jpg"
|
3200 |
+
msgstr "http://www.beispiel.de/mein-foto.jpg"
|
3201 |
+
|
3202 |
+
#: modules/photo/photo.php:404
|
3203 |
+
msgctxt "Crop."
|
3204 |
+
msgid "None"
|
3205 |
+
msgstr "Kein"
|
3206 |
+
|
3207 |
+
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
3208 |
+
msgid "Caption"
|
3209 |
+
msgstr "Bildunterschrift"
|
3210 |
+
|
3211 |
+
#: modules/photo/photo.php:429
|
3212 |
+
msgid "Show Caption"
|
3213 |
+
msgstr "Bildunterschrift anzeigen"
|
3214 |
+
|
3215 |
+
#: modules/photo/photo.php:448
|
3216 |
+
msgid "Link Type"
|
3217 |
+
msgstr "Linktyp"
|
3218 |
+
|
3219 |
+
#: modules/photo/photo.php:450
|
3220 |
+
msgctxt "Link type."
|
3221 |
+
msgid "None"
|
3222 |
+
msgstr "Keiner"
|
3223 |
+
|
3224 |
+
#: modules/photo/photo.php:453
|
3225 |
+
msgid "Photo File"
|
3226 |
+
msgstr "Fotodatei"
|
3227 |
+
|
3228 |
+
#: modules/photo/photo.php:464
|
3229 |
+
msgid ""
|
3230 |
+
"Link type applies to how the image should be linked on click. You can choose "
|
3231 |
+
"a specific URL, the individual photo or a separate page with the photo."
|
3232 |
+
msgstr ""
|
3233 |
+
"Der Linktyp gibt an wie das Bild bei Klick verlinkt wird. Sie können eine "
|
3234 |
+
"URL, ein individuelles Foto oder eine separate Seite mit dem Foto wählen."
|
3235 |
+
|
3236 |
+
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
3237 |
+
msgid "Link URL"
|
3238 |
+
msgstr "Link URL"
|
3239 |
+
|
3240 |
+
#: modules/post-grid/includes/frontend.php:41
|
3241 |
+
msgid "No posts found."
|
3242 |
+
msgstr "Keine Beiträge gefunden."
|
3243 |
+
|
3244 |
+
#: modules/post-grid/includes/post-feed.php:14
|
3245 |
+
#: modules/post-grid/includes/post-grid.php:24
|
3246 |
+
#, php-format
|
3247 |
+
msgctxt "%s stands for author name."
|
3248 |
+
msgid "By %s"
|
3249 |
+
msgstr "Von %s"
|
3250 |
+
|
3251 |
+
#: modules/post-grid/post-grid.php:14
|
3252 |
+
msgid "Posts"
|
3253 |
+
msgstr "Beiträge"
|
3254 |
+
|
3255 |
+
#: modules/post-grid/post-grid.php:15
|
3256 |
+
msgid "Display a grid of your WordPress posts."
|
3257 |
+
msgstr "Zeigt ein Raster ihrer WordPress Beiträge."
|
3258 |
+
|
3259 |
+
#: modules/post-grid/post-grid.php:51
|
3260 |
+
msgid "Layout Style"
|
3261 |
+
msgstr "Layout Stil"
|
3262 |
+
|
3263 |
+
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
3264 |
+
msgid "Grid"
|
3265 |
+
msgstr "Raster"
|
3266 |
+
|
3267 |
+
#: modules/post-grid/post-grid.php:56
|
3268 |
+
msgid "Feed"
|
3269 |
+
msgstr "Feed"
|
3270 |
+
|
3271 |
+
#: modules/post-grid/post-grid.php:71
|
3272 |
+
msgid "Pagination Style"
|
3273 |
+
msgstr "Nummerierungsstil"
|
3274 |
+
|
3275 |
+
#: modules/post-grid/post-grid.php:74
|
3276 |
+
msgid "Numbers"
|
3277 |
+
msgstr "Nummern"
|
3278 |
+
|
3279 |
+
#: modules/post-grid/post-grid.php:76
|
3280 |
+
msgctxt "Pagination style."
|
3281 |
+
msgid "None"
|
3282 |
+
msgstr "Keine"
|
3283 |
+
|
3284 |
+
#: modules/post-grid/post-grid.php:81
|
3285 |
+
msgid "Posts Per Page"
|
3286 |
+
msgstr "Beiträge pro Seite"
|
3287 |
+
|
3288 |
+
#: modules/post-grid/post-grid.php:92
|
3289 |
+
msgid "Post Width"
|
3290 |
+
msgstr "Postbreite"
|
3291 |
+
|
3292 |
+
#: modules/post-grid/post-grid.php:100
|
3293 |
+
msgid "Post Spacing"
|
3294 |
+
msgstr "Postabstand"
|
3295 |
+
|
3296 |
+
#: modules/post-grid/post-grid.php:109
|
3297 |
+
msgid "Featured Image"
|
3298 |
+
msgstr "Featured Image"
|
3299 |
+
|
3300 |
+
#: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
|
3301 |
+
#: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
|
3302 |
+
#: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
|
3303 |
+
msgid "Show"
|
3304 |
+
msgstr "Zeigen"
|
3305 |
+
|
3306 |
+
#: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
|
3307 |
+
#: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
|
3308 |
+
#: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
|
3309 |
+
msgid "Hide"
|
3310 |
+
msgstr "Verstecken"
|
3311 |
+
|
3312 |
+
#: modules/post-grid/post-grid.php:130
|
3313 |
+
msgid "Above Text"
|
3314 |
+
msgstr "Über Text"
|
3315 |
+
|
3316 |
+
#: modules/post-grid/post-grid.php:131
|
3317 |
+
msgid "Beside Text"
|
3318 |
+
msgstr "Neben Text"
|
3319 |
+
|
3320 |
+
#: modules/post-grid/post-grid.php:142
|
3321 |
+
msgid "Post Info"
|
3322 |
+
msgstr "Postinfo"
|
3323 |
+
|
3324 |
+
#: modules/post-grid/post-grid.php:169
|
3325 |
+
msgid "Date Format"
|
3326 |
+
msgstr "Datumsformat"
|
3327 |
+
|
3328 |
+
#: modules/post-grid/post-grid.php:185
|
3329 |
+
msgid "Comments"
|
3330 |
+
msgstr "Kommentare"
|
3331 |
+
|
3332 |
+
#: modules/post-grid/post-grid.php:213
|
3333 |
+
msgid "More Link"
|
3334 |
+
msgstr "Mehr Link"
|
3335 |
+
|
3336 |
+
#: modules/post-grid/post-grid.php:227
|
3337 |
+
msgid "More Link Text"
|
3338 |
+
msgstr "Mehr Link-Text"
|
3339 |
+
|
3340 |
+
#: modules/post-grid/post-grid.php:228
|
3341 |
+
msgid "Read More"
|
3342 |
+
msgstr "Mehr Lesen"
|
3343 |
+
|
3344 |
+
#: modules/pricing-table/pricing-table.php:14
|
3345 |
+
msgid "Pricing Table"
|
3346 |
+
msgstr "Preisliste"
|
3347 |
+
|
3348 |
+
#: modules/pricing-table/pricing-table.php:15
|
3349 |
+
msgid "A simple pricing table generator."
|
3350 |
+
msgstr "Ein einfacher Preislistengenerator."
|
3351 |
+
|
3352 |
+
#: modules/pricing-table/pricing-table.php:26
|
3353 |
+
msgid "Pricing Boxes"
|
3354 |
+
msgstr "Preisboxen"
|
3355 |
+
|
3356 |
+
#: modules/pricing-table/pricing-table.php:33
|
3357 |
+
msgid "Pricing Box"
|
3358 |
+
msgstr "Preisbox"
|
3359 |
+
|
3360 |
+
#: modules/pricing-table/pricing-table.php:50
|
3361 |
+
msgid "Box Spacing"
|
3362 |
+
msgstr "Boxabstand"
|
3363 |
+
|
3364 |
+
#: modules/pricing-table/pricing-table.php:53
|
3365 |
+
#: modules/testimonials/testimonials.php:40
|
3366 |
+
msgid "Wide"
|
3367 |
+
msgstr "Weit"
|
3368 |
+
|
3369 |
+
#: modules/pricing-table/pricing-table.php:54
|
3370 |
+
msgid "Tight"
|
3371 |
+
msgstr "Eng"
|
3372 |
+
|
3373 |
+
#: modules/pricing-table/pricing-table.php:59
|
3374 |
+
msgid "Features Min Height"
|
3375 |
+
msgstr "Minimale Höhe Features"
|
3376 |
+
|
3377 |
+
#: modules/pricing-table/pricing-table.php:63
|
3378 |
+
msgid ""
|
3379 |
+
"Use this to normalize the height of your boxes when they have different "
|
3380 |
+
"numbers of features."
|
3381 |
+
msgstr ""
|
3382 |
+
"Benutzen Sei dies um die Höhe ihrer Boxen zu Normalisieren, wenn sie "
|
3383 |
+
"unterschiedliche Anzahlen an Features haben."
|
3384 |
+
|
3385 |
+
#: modules/pricing-table/pricing-table.php:70
|
3386 |
+
msgctxt "Border size."
|
3387 |
+
msgid "Wide"
|
3388 |
+
msgstr "Weit"
|
3389 |
+
|
3390 |
+
#: modules/pricing-table/pricing-table.php:71
|
3391 |
+
msgctxt "Border size."
|
3392 |
+
msgid "Tight"
|
3393 |
+
msgstr "Eng"
|
3394 |
+
|
3395 |
+
#: modules/pricing-table/pricing-table.php:84
|
3396 |
+
msgid "Add Pricing Box"
|
3397 |
+
msgstr "Preisbox hinzufügen"
|
3398 |
+
|
3399 |
+
#: modules/pricing-table/pricing-table.php:98
|
3400 |
+
msgid "Title Size"
|
3401 |
+
msgstr "Titelgröße"
|
3402 |
+
|
3403 |
+
#: modules/pricing-table/pricing-table.php:107
|
3404 |
+
msgid "Price Box"
|
3405 |
+
msgstr "Preisbox"
|
3406 |
+
|
3407 |
+
#: modules/pricing-table/pricing-table.php:111
|
3408 |
+
msgid "Price"
|
3409 |
+
msgstr "Preis"
|
3410 |
+
|
3411 |
+
#: modules/pricing-table/pricing-table.php:115
|
3412 |
+
msgid "Duration"
|
3413 |
+
msgstr "Dauer"
|
3414 |
+
|
3415 |
+
#: modules/pricing-table/pricing-table.php:116
|
3416 |
+
msgid "per Year"
|
3417 |
+
msgstr "pro Jahr"
|
3418 |
+
|
3419 |
+
#: modules/pricing-table/pricing-table.php:120
|
3420 |
+
msgid "Price Size"
|
3421 |
+
msgstr "Preishöhe"
|
3422 |
+
|
3423 |
+
#: modules/pricing-table/pricing-table.php:133
|
3424 |
+
msgid "Button Text"
|
3425 |
+
msgstr "Buttontext"
|
3426 |
+
|
3427 |
+
#: modules/pricing-table/pricing-table.php:137
|
3428 |
+
msgid "Button URL"
|
3429 |
+
msgstr "Button URL"
|
3430 |
+
|
3431 |
+
#: modules/pricing-table/pricing-table.php:142
|
3432 |
+
msgctxt "Price features displayed in pricing box."
|
3433 |
+
msgid "Features"
|
3434 |
+
msgstr "Features"
|
3435 |
+
|
3436 |
+
#: modules/pricing-table/pricing-table.php:147
|
3437 |
+
msgid "One feature per line. HTML is okay."
|
3438 |
+
msgstr "Ein Feature pro Zeile. HTML ist erlaubt."
|
3439 |
+
|
3440 |
+
#: modules/pricing-table/pricing-table.php:162
|
3441 |
+
msgid "Box Background"
|
3442 |
+
msgstr "Boxhintergrund"
|
3443 |
+
|
3444 |
+
#: modules/pricing-table/pricing-table.php:167
|
3445 |
+
msgid "Box Foreground"
|
3446 |
+
msgstr "Boxvordergrund"
|
3447 |
+
|
3448 |
+
#: modules/pricing-table/pricing-table.php:173
|
3449 |
+
msgid "Accent Color"
|
3450 |
+
msgstr "Akzentfarbe"
|
3451 |
+
|
3452 |
+
#: modules/pricing-table/pricing-table.php:178
|
3453 |
+
msgid "Accent Text Color"
|
3454 |
+
msgstr "Akzenttextfarbe"
|
3455 |
+
|
3456 |
+
#: modules/pricing-table/pricing-table.php:182
|
3457 |
+
msgid "Box Top Margin"
|
3458 |
+
msgstr "Box Abstand aussen oben"
|
3459 |
+
|
3460 |
+
#: modules/rich-text/rich-text.php:15
|
3461 |
+
msgid "A WYSIWYG text editor."
|
3462 |
+
msgstr "Ein WYSIWYG (What you see is what you get) Texteditor."
|
3463 |
+
|
3464 |
+
#: modules/separator/separator.php:14
|
3465 |
+
msgid "Separator"
|
3466 |
+
msgstr "Separator"
|
3467 |
+
|
3468 |
+
#: modules/separator/separator.php:15
|
3469 |
+
msgid "A divider line to separate content."
|
3470 |
+
msgstr "Eine Trennline um Inhalt zu trennen."
|
3471 |
+
|
3472 |
+
#: modules/separator/separator.php:85
|
3473 |
+
msgid ""
|
3474 |
+
"The type of border to use. Double borders must have a height of at least 3px "
|
3475 |
+
"to render properly."
|
3476 |
+
msgstr ""
|
3477 |
+
"Der zu benutzende Rahmentyp. Doppelte Rahmen müssen mindestens eine Höhe von "
|
3478 |
+
"3px haben um korrekt dargestellt zu werden."
|
3479 |
+
|
3480 |
+
#: modules/sidebar/includes/settings-general.php:5
|
3481 |
+
#: modules/sidebar/sidebar.php:14
|
3482 |
+
msgid "Sidebar"
|
3483 |
+
msgstr "Seitenleiste"
|
3484 |
+
|
3485 |
+
#: modules/sidebar/sidebar.php:15
|
3486 |
+
msgid ""
|
3487 |
+
"Display a WordPress sidebar that has been registered by the current theme."
|
3488 |
+
msgstr ""
|
3489 |
+
"Zeige eine WordPress Seitenleiste die vom aktuellen Theme registriert wurde."
|
3490 |
+
|
3491 |
+
#: modules/slideshow/slideshow.php:14
|
3492 |
+
msgid "Slideshow"
|
3493 |
+
msgstr "Diashow"
|
3494 |
+
|
3495 |
+
#: modules/slideshow/slideshow.php:15
|
3496 |
+
msgid "Display multiple photos in a slideshow view."
|
3497 |
+
msgstr "Zeige mehrere Fotos in einer Diashow."
|
3498 |
+
|
3499 |
+
#: modules/slideshow/slideshow.php:302
|
3500 |
+
msgid "Skin Color"
|
3501 |
+
msgstr "Hautfarbe"
|
3502 |
+
|
3503 |
+
#: modules/slideshow/slideshow.php:305
|
3504 |
+
msgctxt "Color."
|
3505 |
+
msgid "Light"
|
3506 |
+
msgstr "Hell"
|
3507 |
+
|
3508 |
+
#: modules/slideshow/slideshow.php:306
|
3509 |
+
msgctxt "Color."
|
3510 |
+
msgid "Dark"
|
3511 |
+
msgstr "Dunkel"
|
3512 |
+
|
3513 |
+
#: modules/slideshow/slideshow.php:308
|
3514 |
+
msgid ""
|
3515 |
+
"If your overall theme/images are lighter in color, light will display "
|
3516 |
+
"buttons in a darker color scheme and vice versa for dark."
|
3517 |
+
msgstr ""
|
3518 |
+
"Wenn Ihr/e Theme/Bilder insgesamt eher in einer hellen Farbe ist/sind, wird "
|
3519 |
+
">Dunkel< die Buttons in einem dunkleren Farbschema darstellen (und "
|
3520 |
+
"umgekehrt)."
|
3521 |
+
|
3522 |
+
#: modules/slideshow/slideshow.php:318
|
3523 |
+
msgid ""
|
3524 |
+
"Crop set to no will fit the slideshow images to the height you specify and "
|
3525 |
+
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
3526 |
+
"images to all sides of the content area while cropping the left and right to "
|
3527 |
+
"fit the height you specify."
|
3528 |
+
msgstr ""
|
3529 |
+
"Wenn >Zugeschnitten< nicht ausgewählt wurde, passt die Diashow Bilder an die "
|
3530 |
+
"angegebene Höhe an und hält die Proportionen zur Breite ein. Wenn "
|
3531 |
+
">Zugeschnitten< ausgewählt wurde werden alle Bilder des Inhaltsfeldes links "
|
3532 |
+
"und rechts abgeschnitten, damit die angegebene Höhe erreicht wird."
|
3533 |
+
|
3534 |
+
#: modules/slideshow/slideshow.php:322
|
3535 |
+
msgid "Disable Right-Click"
|
3536 |
+
msgstr "Rechtsklick deaktivieren"
|
3537 |
+
|
3538 |
+
#: modules/slideshow/slideshow.php:342
|
3539 |
+
msgctxt "Click action type."
|
3540 |
+
msgid "None"
|
3541 |
+
msgstr "Kein"
|
3542 |
+
|
3543 |
+
#: modules/slideshow/slideshow.php:366
|
3544 |
+
msgid "Playback"
|
3545 |
+
msgstr "Playback"
|
3546 |
+
|
3547 |
+
#: modules/slideshow/slideshow.php:392
|
3548 |
+
msgctxt "Slideshow transition."
|
3549 |
+
msgid "None"
|
3550 |
+
msgstr "Kein"
|
3551 |
+
|
3552 |
+
#: modules/slideshow/slideshow.php:429
|
3553 |
+
msgid "Controls"
|
3554 |
+
msgstr "Steuerung"
|
3555 |
+
|
3556 |
+
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3557 |
+
msgid "Navigation Arrows"
|
3558 |
+
msgstr "Navigationspfeile"
|
3559 |
+
|
3560 |
+
#: modules/slideshow/slideshow.php:442
|
3561 |
+
msgid ""
|
3562 |
+
"Navigational arrows allow the visitor to freely move through the images in "
|
3563 |
+
"your slideshow. These are larger arrows that overlay your slideshow images "
|
3564 |
+
"and are separate from the control bar navigational arrows."
|
3565 |
+
msgstr ""
|
3566 |
+
"Navigationspfeile erlauben es dem Nutzer sich frei durch die Bilder der "
|
3567 |
+
"Diashow zu bewegen. Es handelt sich dabei um größere Pfeile, die ihre "
|
3568 |
+
"Diashow überlagern und nicht bin den Navigationspfeilen der Steuerleiste zu "
|
3569 |
+
"verwechseln sind."
|
3570 |
+
|
3571 |
+
#: modules/slideshow/slideshow.php:447
|
3572 |
+
msgid "Control Bar"
|
3573 |
+
msgstr "Steuerleiste"
|
3574 |
+
|
3575 |
+
#: modules/slideshow/slideshow.php:451
|
3576 |
+
msgid "Nav Type"
|
3577 |
+
msgstr "Nav-Typ"
|
3578 |
+
|
3579 |
+
#: modules/slideshow/slideshow.php:454
|
3580 |
+
msgctxt "Nav type."
|
3581 |
+
msgid "None"
|
3582 |
+
msgstr "Kein"
|
3583 |
+
|
3584 |
+
#: modules/slideshow/slideshow.php:455
|
3585 |
+
msgid "Buttons"
|
3586 |
+
msgstr "Buttons"
|
3587 |
+
|
3588 |
+
#: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
|
3589 |
+
msgid "Thumbs"
|
3590 |
+
msgstr "Thumbs"
|
3591 |
+
|
3592 |
+
#: modules/slideshow/slideshow.php:471
|
3593 |
+
msgid "Nav Position"
|
3594 |
+
msgstr "Nav-Position"
|
3595 |
+
|
3596 |
+
#: modules/slideshow/slideshow.php:481
|
3597 |
+
msgid "Control Bar Buttons"
|
3598 |
+
msgstr "Steuerleisten-Buttons"
|
3599 |
+
|
3600 |
+
#: modules/slideshow/slideshow.php:494
|
3601 |
+
msgid "Play Button"
|
3602 |
+
msgstr "Play-Button"
|
3603 |
+
|
3604 |
+
#: modules/slideshow/slideshow.php:503
|
3605 |
+
msgid "Fullscreen Button"
|
3606 |
+
msgstr "Vollbildmodus-Button"
|
3607 |
+
|
3608 |
+
#: modules/slideshow/slideshow.php:512
|
3609 |
+
msgid "Photo Count"
|
3610 |
+
msgstr "Fotozähler"
|
3611 |
+
|
3612 |
+
#: modules/slideshow/slideshow.php:521
|
3613 |
+
msgid "Thumbs Button"
|
3614 |
+
msgstr "Thumbs-Button"
|
3615 |
+
|
3616 |
+
#: modules/slideshow/slideshow.php:530
|
3617 |
+
msgid "Caption Button"
|
3618 |
+
msgstr "Bildunterschrift-Button"
|
3619 |
+
|
3620 |
+
#: modules/slideshow/slideshow.php:539
|
3621 |
+
msgid "Social Button"
|
3622 |
+
msgstr "Social Button"
|
3623 |
+
|
3624 |
+
#: modules/slideshow/slideshow.php:549
|
3625 |
+
msgid "Control Bar Overlay"
|
3626 |
+
msgstr "Steuerleisten-Overlay"
|
3627 |
+
|
3628 |
+
#: modules/slideshow/slideshow.php:553
|
3629 |
+
msgid "Overlay Enabled"
|
3630 |
+
msgstr "Overlay aktiviert"
|
3631 |
+
|
3632 |
+
#: modules/slideshow/slideshow.php:564
|
3633 |
+
msgid ""
|
3634 |
+
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
3635 |
+
"your slideshow images or site below the slideshow completely."
|
3636 |
+
msgstr ""
|
3637 |
+
"Steuerbar-Overlay gibt an, ob die gewählten Steuerleisten-Buttons unterhalb "
|
3638 |
+
"der Diashow die Diashowbilder vollständig überlagern."
|
3639 |
+
|
3640 |
+
#: modules/slideshow/slideshow.php:568
|
3641 |
+
msgid "Overlay Hide"
|
3642 |
+
msgstr "Overlay verstecken"
|
3643 |
+
|
3644 |
+
#: modules/slideshow/slideshow.php:574
|
3645 |
+
msgid ""
|
3646 |
+
"Overlay hide will hide the control bar after however many seconds you "
|
3647 |
+
"specify below. They will reappear upon mouse over."
|
3648 |
+
msgstr ""
|
3649 |
+
">Overlay verstecken< versteckt die Steuerleiste nach der unten angegebenen "
|
3650 |
+
"Anzahl an Sekunden. Die Leiste erscheint wieder, wenn Sie mit der Maus "
|
3651 |
+
"darüber fahren."
|
3652 |
+
|
3653 |
+
#: modules/slideshow/slideshow.php:578
|
3654 |
+
msgid "Overlay Hide Delay"
|
3655 |
+
msgstr "Overlay verstecken - Delay"
|
3656 |
+
|
3657 |
+
#: modules/slideshow/slideshow.php:590
|
3658 |
+
msgid "Thumbs Size"
|
3659 |
+
msgstr "Thumbs-Größe"
|
3660 |
+
|
3661 |
+
#: modules/slideshow/slideshow.php:599
|
3662 |
+
msgid "Social"
|
3663 |
+
msgstr "Social"
|
3664 |
+
|
3665 |
+
#: modules/slideshow/slideshow.php:603
|
3666 |
+
msgid "Facebook Button"
|
3667 |
+
msgstr "Facebook-Button"
|
3668 |
+
|
3669 |
+
#: modules/slideshow/slideshow.php:615
|
3670 |
+
msgid "Twitter Button"
|
3671 |
+
msgstr "Twitter-Button"
|
3672 |
+
|
3673 |
+
#: modules/slideshow/slideshow.php:627
|
3674 |
+
msgid "Google Plus Button"
|
3675 |
+
msgstr "Google Plus-Button"
|
3676 |
+
|
3677 |
+
#: modules/slideshow/slideshow.php:639
|
3678 |
+
msgid "Pinterest Button"
|
3679 |
+
msgstr "Pinterest-Button"
|
3680 |
+
|
3681 |
+
#: modules/social-buttons/social-buttons.php:14
|
3682 |
+
msgid "Social Buttons"
|
3683 |
+
msgstr "Social Buttons"
|
3684 |
+
|
3685 |
+
#: modules/social-buttons/social-buttons.php:15
|
3686 |
+
msgid "Displays social buttons."
|
3687 |
+
msgstr "Social Buttons anzeigen"
|
3688 |
+
|
3689 |
+
#: modules/social-buttons/social-buttons.php:71
|
3690 |
+
msgid "Target URL"
|
3691 |
+
msgstr "Ziel-URL"
|
3692 |
+
|
3693 |
+
#: modules/social-buttons/social-buttons.php:75
|
3694 |
+
msgid "Current Page"
|
3695 |
+
msgstr "Aktuelle Seite"
|
3696 |
+
|
3697 |
+
#: modules/social-buttons/social-buttons.php:82
|
3698 |
+
msgid ""
|
3699 |
+
"The Target URL field correlates to the page you would like your social icons "
|
3700 |
+
"to interface with. For example, if you show Facebook, the user will \"Like\" "
|
3701 |
+
"whatever you put in this field."
|
3702 |
+
msgstr ""
|
3703 |
+
"Das Ziel-URL-Feld entspricht der Seite mit der die Social Icons "
|
3704 |
+
"zusammenabeiten. Zum Beispiel, wenn Sie Facebook angeben, wird der Nutzer "
|
3705 |
+
"Liken, was Sie in dieses Feld stellen."
|
3706 |
+
|
3707 |
+
#: modules/social-buttons/social-buttons.php:89
|
3708 |
+
msgid "Custom URL"
|
3709 |
+
msgstr "Benutzerdefinierte URL"
|
3710 |
+
|
3711 |
+
#: modules/social-buttons/social-buttons.php:107
|
3712 |
+
msgid "Show Facebook"
|
3713 |
+
msgstr "Facebook anzeigen"
|
3714 |
+
|
3715 |
+
#: modules/social-buttons/social-buttons.php:116
|
3716 |
+
msgid "Show Twitter"
|
3717 |
+
msgstr "Twitter anzeigen"
|
3718 |
+
|
3719 |
+
#: modules/social-buttons/social-buttons.php:125
|
3720 |
+
msgid "Show Google+"
|
3721 |
+
msgstr "Google+ anzeigen"
|
3722 |
+
|
3723 |
+
#: modules/tabs/tabs.php:14
|
3724 |
+
msgid "Tabs"
|
3725 |
+
msgstr "Tabs"
|
3726 |
+
|
3727 |
+
#: modules/tabs/tabs.php:15
|
3728 |
+
msgid "Display a collection of tabbed content."
|
3729 |
+
msgstr "Eine Sammlung von Inhalten mit Tabs anzeigen."
|
3730 |
+
|
3731 |
+
#: modules/tabs/tabs.php:55
|
3732 |
+
msgid "Horizontal"
|
3733 |
+
msgstr "Horizontal"
|
3734 |
+
|
3735 |
+
#: modules/tabs/tabs.php:56
|
3736 |
+
msgid "Vertical"
|
3737 |
+
msgstr "Vertikal"
|
3738 |
+
|
3739 |
+
#: modules/testimonials/testimonials.php:14
|
3740 |
+
#: modules/testimonials/testimonials.php:60
|
3741 |
+
#: modules/testimonials/testimonials.php:174
|
3742 |
+
msgid "Testimonials"
|
3743 |
+
msgstr "Empfehlungen"
|
3744 |
+
|
3745 |
+
#: modules/testimonials/testimonials.php:15
|
3746 |
+
msgid "An animated tesimonials area."
|
3747 |
+
msgstr "Ein animiertes Feld für Empfehlungen."
|
3748 |
+
|
3749 |
+
#: modules/testimonials/testimonials.php:41
|
3750 |
+
msgid "Compact"
|
3751 |
+
msgstr "Kompakt"
|
3752 |
+
|
3753 |
+
#: modules/testimonials/testimonials.php:51
|
3754 |
+
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
3755 |
+
msgstr "Weit steht für 1-spaltige Zeilen, Kompakt für mehrspaltige Zeilen."
|
3756 |
+
|
3757 |
+
#: modules/testimonials/testimonials.php:78
|
3758 |
+
msgid "Slider Settings"
|
3759 |
+
msgstr "Slidereinstellungen"
|
3760 |
+
|
3761 |
+
#: modules/testimonials/testimonials.php:135
|
3762 |
+
msgid "Arrow Color"
|
3763 |
+
msgstr "Pfeilfarbe"
|
3764 |
+
|
3765 |
+
#: modules/testimonials/testimonials.php:165
|
3766 |
+
msgid "Dot Color"
|
3767 |
+
msgstr "Punktfarbe"
|
3768 |
+
|
3769 |
+
#: modules/testimonials/testimonials.php:181
|
3770 |
+
msgid "Testimonial"
|
3771 |
+
msgstr "Empfehlung"
|
3772 |
+
|
3773 |
+
#: modules/testimonials/testimonials.php:197
|
3774 |
+
msgid "Add Testimonial"
|
3775 |
+
msgstr "Empfehlung hinzufügen"
|
3776 |
+
|
3777 |
+
#: modules/video/video.php:20
|
3778 |
+
msgid "Render a WordPress or embedable video."
|
3779 |
+
msgstr "Ein eingebettetes Video rendern"
|
3780 |
+
|
3781 |
+
#: modules/video/video.php:83
|
3782 |
+
msgid "Video Type"
|
3783 |
+
msgstr "Videotyp"
|
3784 |
+
|
3785 |
+
#: modules/video/video.php:87
|
3786 |
+
msgid "Embed"
|
3787 |
+
msgstr "Einbetten"
|
3788 |
+
|
3789 |
+
#: modules/video/video.php:104
|
3790 |
+
msgctxt "Video preview/fallback image."
|
3791 |
+
msgid "Poster"
|
3792 |
+
msgstr "Poster"
|
3793 |
+
|
3794 |
+
#: modules/video/video.php:120
|
3795 |
+
msgid "Loop"
|
3796 |
+
msgstr "Schleife"
|
3797 |
+
|
3798 |
+
#: modules/widget/includes/frontend.php:35
|
3799 |
+
#: modules/widget/includes/settings-general.php:44
|
3800 |
+
#, php-format
|
3801 |
+
msgctxt "%s stands for widget slug."
|
3802 |
+
msgid "%s no longer exists."
|
3803 |
+
msgstr "%s existiert nicht mehr."
|
3804 |
+
|
3805 |
+
#: modules/widget/widget.php:14
|
3806 |
+
msgid "Widget"
|
3807 |
+
msgstr "Widget"
|
3808 |
+
|
3809 |
+
#: modules/widget/widget.php:15
|
3810 |
+
msgid "Display a WordPress widget."
|
3811 |
+
msgstr "Ein WP-Widget anzeigen."
|
3812 |
+
|
3813 |
+
#: modules/woocommerce/woocommerce.php:16
|
3814 |
+
msgid "WooCommerce"
|
3815 |
+
msgstr "WooCommerce"
|
3816 |
+
|
3817 |
+
#: modules/woocommerce/woocommerce.php:17
|
3818 |
+
msgid "Display products or categories from your WooCommerce store."
|
3819 |
+
msgstr "Produkte oder Kategorien von WooCommerce anzeigen."
|
3820 |
+
|
3821 |
+
#: modules/woocommerce/woocommerce.php:60
|
3822 |
+
msgid "Choose..."
|
3823 |
+
msgstr "Wählen Sie..."
|
3824 |
+
|
3825 |
+
#: modules/woocommerce/woocommerce.php:61
|
3826 |
+
msgid "Single Product"
|
3827 |
+
msgstr "Einzelprodukt"
|
3828 |
+
|
3829 |
+
#: modules/woocommerce/woocommerce.php:62
|
3830 |
+
#: modules/woocommerce/woocommerce.php:113
|
3831 |
+
msgid "Multiple Products"
|
3832 |
+
msgstr "Mehrere Produkte"
|
3833 |
+
|
3834 |
+
#: modules/woocommerce/woocommerce.php:63
|
3835 |
+
msgid "\"Add to Cart\" Button"
|
3836 |
+
msgstr "\"Zum Einkaufswagen hinzufügen\" Button"
|
3837 |
+
|
3838 |
+
#: modules/woocommerce/woocommerce.php:64
|
3839 |
+
msgid "Categories"
|
3840 |
+
msgstr "Kategorien"
|
3841 |
+
|
3842 |
+
#: modules/woocommerce/woocommerce.php:65
|
3843 |
+
msgid "Cart"
|
3844 |
+
msgstr "Einkaufswagen"
|
3845 |
+
|
3846 |
+
#: modules/woocommerce/woocommerce.php:66
|
3847 |
+
msgid "Checkout"
|
3848 |
+
msgstr "Kasse"
|
3849 |
+
|
3850 |
+
#: modules/woocommerce/woocommerce.php:67
|
3851 |
+
msgid "Order Tracking"
|
3852 |
+
msgstr "Bestellverfolgung"
|
3853 |
+
|
3854 |
+
#: modules/woocommerce/woocommerce.php:68
|
3855 |
+
msgid "My Account"
|
3856 |
+
msgstr "Mein Konto"
|
3857 |
+
|
3858 |
+
#: modules/woocommerce/woocommerce.php:87
|
3859 |
+
msgid "Product ID"
|
3860 |
+
msgstr "Produkt-ID"
|
3861 |
+
|
3862 |
+
#: modules/woocommerce/woocommerce.php:90
|
3863 |
+
msgid ""
|
3864 |
+
"As you add products in the WooCommerce Products area, each will be assigned "
|
3865 |
+
"a unique ID. You can find this unique product ID by visiting the Products "
|
3866 |
+
"area and rolling over the product. The unique ID will be the first attribute."
|
3867 |
+
msgstr ""
|
3868 |
+
"Wenn Sie WooCommerce-Produkte hinzufügen, bekommt jedes eine einzigartige "
|
3869 |
+
"ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
|
3870 |
+
|
3871 |
+
#: modules/woocommerce/woocommerce.php:94
|
3872 |
+
msgid "Parent Category ID"
|
3873 |
+
msgstr "ID der übergeordneten Kategorie"
|
3874 |
+
|
3875 |
+
#: modules/woocommerce/woocommerce.php:97
|
3876 |
+
msgid ""
|
3877 |
+
"As you add product categories in the WooCommerce Products area, each will be "
|
3878 |
+
"assigned a unique ID. This ID can be found by hovering on the category in "
|
3879 |
+
"the categories area under Products and looking in the URL that is displayed "
|
3880 |
+
"in your browser. The ID will be the only number value in the URL."
|
3881 |
+
msgstr ""
|
3882 |
+
"Wenn Sie WooCommerce-Kategorien hinzufügen, bekommt jede eine einzigartige "
|
3883 |
+
"ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
|
3884 |
+
|
3885 |
+
#: modules/woocommerce/woocommerce.php:101
|
3886 |
+
#: modules/woocommerce/woocommerce.php:172
|
3887 |
+
msgid "Columns"
|
3888 |
+
msgstr "Spalten"
|
3889 |
+
|
3890 |
+
#: modules/woocommerce/woocommerce.php:117
|
3891 |
+
msgid "Products Source"
|
3892 |
+
msgstr "Produktquellen"
|
3893 |
+
|
3894 |
+
#: modules/woocommerce/woocommerce.php:120
|
3895 |
+
msgid "Products IDs"
|
3896 |
+
msgstr "Produkt-IDs"
|
3897 |
+
|
3898 |
+
#: modules/woocommerce/woocommerce.php:121
|
3899 |
+
msgid "Product Category"
|
3900 |
+
msgstr "Produktkategorie"
|
3901 |
+
|
3902 |
+
#: modules/woocommerce/woocommerce.php:122
|
3903 |
+
msgid "Recent Products"
|
3904 |
+
msgstr "Letzte Produkte"
|
3905 |
+
|
3906 |
+
#: modules/woocommerce/woocommerce.php:123
|
3907 |
+
msgid "Featured Products"
|
3908 |
+
msgstr "Enthaltene Produkte"
|
3909 |
+
|
3910 |
+
#: modules/woocommerce/woocommerce.php:124
|
3911 |
+
msgid "Sale Products"
|
3912 |
+
msgstr "Verkaufsprodukte"
|
3913 |
+
|
3914 |
+
#: modules/woocommerce/woocommerce.php:125
|
3915 |
+
msgid "Best Selling Products"
|
3916 |
+
msgstr "Verkaufsschlager"
|
3917 |
+
|
3918 |
+
#: modules/woocommerce/woocommerce.php:126
|
3919 |
+
msgid "Top Rated Products"
|
3920 |
+
msgstr "Am besten bewertete Produkte"
|
3921 |
+
|
3922 |
+
#: modules/woocommerce/woocommerce.php:154
|
3923 |
+
msgid "Product IDs"
|
3924 |
+
msgstr "Produkt-IDs"
|
3925 |
+
|
3926 |
+
#: modules/woocommerce/woocommerce.php:156
|
3927 |
+
msgid ""
|
3928 |
+
"As you add products in the WooCommerce Products area, each will be assigned "
|
3929 |
+
"a unique ID. You can find this unique product ID by visiting the Products "
|
3930 |
+
"area and rolling over the product. The unique ID will be the first attribute "
|
3931 |
+
"and you can add several here separated by a comma."
|
3932 |
+
msgstr ""
|
3933 |
+
"Wenn Sie WooCommerce-Produkte hinzufügen, bekommt jedes eine einzigartige "
|
3934 |
+
"ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
|
3935 |
+
|
3936 |
+
#: modules/woocommerce/woocommerce.php:160
|
3937 |
+
msgid "Category Slug"
|
3938 |
+
msgstr "Kategorieschlag"
|
3939 |
+
|
3940 |
+
#: modules/woocommerce/woocommerce.php:162
|
3941 |
+
msgid ""
|
3942 |
+
"As you add product categories in the WooCommerce Products area, each will be "
|
3943 |
+
"assigned a unique slug or you can edit and add your own. These slugs can be "
|
3944 |
+
"found in the Categories area under WooCommerce Products. Several can be "
|
3945 |
+
"added here separated by a comma."
|
3946 |
+
msgstr ""
|
3947 |
+
"Wenn Sie WooCommerce-Kategorien hinzufügen, bekommt jede eine einzigartige "
|
3948 |
+
"ID. Diese können Sie finden, wenn Sie die Produktseite besuchen."
|
3949 |
+
|
3950 |
+
#: modules/woocommerce/woocommerce.php:166
|
3951 |
+
msgid "Number of Products"
|
3952 |
+
msgstr "Produktanzahl"
|
3953 |
+
|
3954 |
+
#: modules/woocommerce/woocommerce.php:183
|
3955 |
+
msgid "Sort By"
|
3956 |
+
msgstr "Sortieren nach"
|
3957 |
+
|
3958 |
+
#: modules/woocommerce/woocommerce.php:186
|
3959 |
+
msgctxt "Sort by."
|
3960 |
+
msgid "Default"
|
3961 |
+
msgstr "Default"
|
3962 |
+
|
3963 |
+
#: modules/woocommerce/woocommerce.php:187
|
3964 |
+
msgid "Popularity"
|
3965 |
+
msgstr "Beliebtheit"
|
3966 |
+
|
3967 |
+
#: modules/woocommerce/woocommerce.php:188
|
3968 |
+
msgid "Rating"
|
3969 |
+
msgstr "Bewertung"
|
3970 |
+
|
3971 |
+
#: modules/woocommerce/woocommerce.php:190
|
3972 |
+
msgid "Price: Low to High"
|
3973 |
+
msgstr "Preis: Aufsteigend"
|
3974 |
+
|
3975 |
+
#: modules/woocommerce/woocommerce.php:191
|
3976 |
+
msgid "Price: High to Low"
|
3977 |
+
msgstr "Preis: Absteigend"
|
3978 |
+
|
3979 |
+
#~ msgid "Page Builder Templates"
|
3980 |
+
#~ msgstr "Page Builder-Vorlagen"
|
3981 |
+
|
3982 |
+
#~ msgid "Edit Template"
|
3983 |
+
#~ msgstr "Vorlage bearbeiten"
|
3984 |
+
|
3985 |
+
#~ msgctxt "Template edit form field label. Template name."
|
3986 |
+
#~ msgid "Name"
|
3987 |
+
#~ msgstr "Name"
|
3988 |
+
|
3989 |
+
#~ msgctxt "Template edit form field label. Is template premium one?"
|
3990 |
+
#~ msgid "Premium"
|
3991 |
+
#~ msgstr "Premium"
|
3992 |
+
|
3993 |
+
#~ msgid "Category"
|
3994 |
+
#~ msgstr "Kategorie"
|
3995 |
+
|
3996 |
+
#~ msgctxt "Templates category label."
|
3997 |
+
#~ msgid "Landing Pages"
|
3998 |
+
#~ msgstr "Zielseite"
|
3999 |
+
|
4000 |
+
#~ msgctxt "Templates category label."
|
4001 |
+
#~ msgid "Company Info"
|
4002 |
+
#~ msgstr "Firmeninfo"
|
4003 |
+
|
4004 |
+
#~ msgid "Update Template"
|
4005 |
+
#~ msgstr "Vorlage aktualisieren"
|
4006 |
+
|
4007 |
+
#~ msgid "Page Builder Template"
|
4008 |
+
#~ msgstr "Page Builder Vorlage"
|
4009 |
+
|
4010 |
+
#~ msgctxt "Templates list column label."
|
4011 |
+
#~ msgid "Name"
|
4012 |
+
#~ msgstr "Name"
|
4013 |
+
|
4014 |
+
#~ msgctxt "Templates list column label."
|
4015 |
+
#~ msgid "Category"
|
4016 |
+
#~ msgstr "Kategorie"
|
4017 |
+
|
4018 |
+
#~ msgctxt "Templates list column label. Is template premium one?"
|
4019 |
+
#~ msgid "Premium"
|
4020 |
+
#~ msgstr "Premium"
|
4021 |
+
|
4022 |
+
#~ msgid ""
|
4023 |
+
#~ "A custom CSS class that will be applied to this column. Spaces only, no "
|
4024 |
+
#~ "dots."
|
4025 |
+
#~ msgstr ""
|
4026 |
+
#~ "Eine benutzerdefinierte CSS-Klasse wird auf diese Spalte angewandt. Nur "
|
4027 |
+
#~ "Leerzeichen, keine Punkte."
|
4028 |
+
|
4029 |
+
#~ msgid "Filter: "
|
4030 |
+
#~ msgstr "Filter:"
|
4031 |
+
|
4032 |
+
#~ msgid ""
|
4033 |
+
#~ "A custom CSS class that will be applied to this module. Spaces only, no "
|
4034 |
+
#~ "dots."
|
4035 |
+
#~ msgstr ""
|
4036 |
+
#~ "Eine benutzerdefinierte CSS-Klasse, die für dieses Modul verwendet wird. "
|
4037 |
+
#~ "Nur Leerzeichen, keine Punkte."
|
4038 |
+
|
4039 |
+
#~ msgid ""
|
4040 |
+
#~ "Add a custom CSS selector here to apply additional styling to this row."
|
4041 |
+
#~ msgstr ""
|
4042 |
+
#~ "Fügen Sie hier einen benutzerdefinierten CSS-Selektor hinzu um "
|
4043 |
+
#~ "zusätzliches Styling für diese Zeile anzuwenden."
|
4044 |
+
|
4045 |
+
#~ msgid "Image Filename"
|
4046 |
+
#~ msgstr "Bild-Dateiname"
|
4047 |
+
|
4048 |
+
#~ msgid ""
|
4049 |
+
#~ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
|
4050 |
+
#~ "templates/\" directory."
|
4051 |
+
#~ msgstr ""
|
4052 |
+
#~ "Der Dateiname des Bildes (z.B. \"thumb.jpg\") das im \"img/templates/\" "
|
4053 |
+
#~ "Verzeichnis liegt."
|
languages/fr_FR.mo
CHANGED
Binary file
|
languages/fr_FR.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date: 2015-01
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Gérard Godin <Gerard@getgointernetcoaching.com>\n"
|
7 |
-
"Language-Team:
|
8 |
-
"Language:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -15,11 +15,92 @@ msgstr ""
|
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: classes/class-fl-builder-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
#, php-format
|
24 |
msgid ""
|
25 |
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
@@ -27,36 +108,80 @@ msgid ""
|
|
27 |
"of this plugin."
|
28 |
msgstr ""
|
29 |
"Cette version de l'extension <strong>Beaver Builder</strong> n'est pas "
|
30 |
-
"compatible avec WordPress
|
31 |
-
"vers la version multisite de
|
32 |
|
33 |
-
#: classes/class-fl-builder-admin.php:
|
34 |
msgid ""
|
35 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
36 |
"greater. Please update WordPress before activating the plugin."
|
37 |
msgstr ""
|
38 |
-
"
|
39 |
-
"
|
40 |
-
"plugin."
|
41 |
|
42 |
-
#: classes/class-fl-builder-admin.php:
|
43 |
#, php-format
|
44 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
45 |
msgstr ""
|
46 |
-
"Beaver Builder activ
|
47 |
-
"
|
48 |
|
49 |
-
#: classes/class-fl-builder-admin.php:
|
50 |
msgctxt "Plugin action link label."
|
51 |
msgid "Upgrade"
|
52 |
-
msgstr "
|
53 |
|
54 |
-
#: classes/class-fl-builder-admin.php:
|
55 |
-
#: classes/class-fl-builder-model.php:
|
56 |
msgid "Page Builder"
|
57 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
#: classes/class-fl-builder-model.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
#, php-format
|
61 |
msgctxt "%s stands for post/page title."
|
62 |
msgid "Copy of %s"
|
@@ -65,7 +190,7 @@ msgstr "Copie de %s"
|
|
65 |
#: classes/class-fl-builder-photo.php:75
|
66 |
msgctxt "Image size."
|
67 |
msgid "Full Size"
|
68 |
-
msgstr "Pleine
|
69 |
|
70 |
#: classes/class-fl-builder-photo.php:76
|
71 |
msgctxt "Image size."
|
@@ -82,77 +207,81 @@ msgctxt "Image size."
|
|
82 |
msgid "Thumbnail"
|
83 |
msgstr "Vignette"
|
84 |
|
85 |
-
#: classes/class-fl-builder.php:
|
|
|
|
|
|
|
|
|
86 |
#, php-format
|
87 |
msgctxt "Field name to add."
|
88 |
msgid "Add %s"
|
89 |
-
msgstr "
|
90 |
|
91 |
-
#: classes/class-fl-builder.php:
|
92 |
msgctxt "Custom post type label."
|
93 |
msgid "Layout Templates"
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#: classes/class-fl-builder.php:
|
97 |
msgctxt "Custom post type label."
|
98 |
msgid "Layout Template"
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#: classes/class-fl-builder.php:
|
102 |
msgctxt "Custom post type label."
|
103 |
msgid "Add New"
|
104 |
msgstr "Ajouter"
|
105 |
|
106 |
-
#: classes/class-fl-builder.php:
|
107 |
msgctxt "Custom post type label."
|
108 |
msgid "Add New Layout Template"
|
109 |
-
msgstr "Ajouter un nouveau
|
110 |
|
111 |
-
#: classes/class-fl-builder.php:
|
112 |
msgctxt "Custom post type label."
|
113 |
msgid "New Layout Template"
|
114 |
-
msgstr "Nouveau
|
115 |
|
116 |
-
#: classes/class-fl-builder.php:
|
117 |
msgctxt "Custom post type label."
|
118 |
msgid "Edit Layout Template"
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#: classes/class-fl-builder.php:
|
122 |
msgctxt "Custom post type label."
|
123 |
msgid "View Layout Template"
|
124 |
-
msgstr "Visualiser le
|
125 |
|
126 |
-
#: classes/class-fl-builder.php:
|
127 |
msgctxt "Custom post type label."
|
128 |
msgid "All Layout Templates"
|
129 |
-
msgstr "Tous les
|
130 |
|
131 |
-
#: classes/class-fl-builder.php:
|
132 |
msgctxt "Custom post type label."
|
133 |
msgid "Search Layout Templates"
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#: classes/class-fl-builder.php:
|
137 |
msgctxt "Custom post type label."
|
138 |
msgid "Parent Layout Templates:"
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#: classes/class-fl-builder.php:
|
142 |
msgctxt "Custom post type label."
|
143 |
msgid "No layout templates found."
|
144 |
-
msgstr "Aucun
|
145 |
|
146 |
-
#: classes/class-fl-builder.php:
|
147 |
msgctxt "Custom post type label."
|
148 |
msgid "No layout templates found in Trash."
|
149 |
-
msgstr "Aucun
|
150 |
|
151 |
-
#: classes/class-fl-builder.php:
|
152 |
#, php-format
|
153 |
msgctxt "%s stands for module name."
|
154 |
msgid "%s Settings"
|
155 |
-
msgstr "
|
156 |
|
157 |
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
158 |
msgid "Text Editor"
|
@@ -162,7 +291,7 @@ msgstr "Éditeur de texte"
|
|
162 |
#, php-format
|
163 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
164 |
msgid "%s is currently active for this page."
|
165 |
-
msgstr "%s est
|
166 |
|
167 |
#: includes/admin-posts.php:8
|
168 |
#, php-format
|
@@ -170,168 +299,257 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
|
|
170 |
msgid "Launch %s"
|
171 |
msgstr "Lancer %s"
|
172 |
|
173 |
-
#: includes/admin-
|
174 |
#, php-format
|
175 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
176 |
-
msgid "
|
177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
|
179 |
-
#: includes/admin-settings.php:
|
180 |
-
msgid "
|
181 |
-
msgstr "
|
182 |
|
183 |
-
#: includes/admin-settings.php:
|
184 |
-
msgid "
|
185 |
-
|
|
|
|
|
|
|
|
|
|
|
186 |
|
187 |
-
#: includes/admin-settings
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
|
191 |
-
#: includes/admin-settings
|
192 |
-
msgid "
|
193 |
-
msgstr "
|
194 |
|
195 |
-
#: includes/admin-settings.php:
|
196 |
-
|
197 |
-
|
|
|
|
|
|
|
198 |
|
199 |
-
#: includes/admin-settings
|
200 |
-
|
201 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
|
203 |
-
#: includes/admin-settings.php:
|
204 |
-
msgid "Editing"
|
205 |
-
msgstr "
|
206 |
|
207 |
-
#: includes/admin-settings.php:
|
208 |
-
msgid "
|
209 |
-
msgstr "
|
210 |
|
211 |
-
#: includes/admin-settings
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
|
216 |
-
#: includes/admin-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
msgid ""
|
218 |
-
"
|
219 |
-
"
|
220 |
-
"templates, support and more!"
|
221 |
msgstr ""
|
222 |
-
"
|
223 |
-
"
|
224 |
-
"
|
225 |
|
226 |
-
#: includes/admin-settings.php:
|
227 |
-
|
228 |
-
|
|
|
229 |
|
230 |
-
#: includes/admin-settings.php:
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
|
234 |
-
#: includes/admin-settings.php:
|
235 |
-
msgid "
|
236 |
-
msgstr "
|
237 |
|
238 |
-
#: includes/admin-settings
|
239 |
-
|
240 |
-
|
241 |
-
msgstr "Remplacer les paramètres de réseau?"
|
242 |
|
243 |
-
#: includes/admin-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
msgid "Check or uncheck modules below to enable or disable them."
|
245 |
msgstr ""
|
246 |
-
"
|
|
|
247 |
|
248 |
-
#: includes/admin-settings.php:
|
249 |
msgctxt "Plugin setup page: Modules."
|
250 |
msgid "All"
|
251 |
msgstr "Tous"
|
252 |
|
253 |
-
#: includes/admin-settings.php:
|
254 |
msgid "Save Module Settings"
|
255 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
|
257 |
-
#: includes/admin-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgid "Template Settings"
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: includes/admin-settings.php:
|
262 |
msgid "Enable or disable templates using the options below."
|
263 |
-
msgstr "
|
|
|
264 |
|
265 |
-
#: includes/admin-settings.php:
|
266 |
msgid "Enable All Templates"
|
267 |
-
msgstr "Activer tous
|
268 |
|
269 |
-
#: includes/admin-settings.php:
|
270 |
msgid "Enable Core Templates Only"
|
271 |
-
msgstr "Activer les
|
272 |
|
273 |
-
#: includes/admin-settings.php:
|
274 |
msgid "Enable User Templates Only"
|
275 |
-
msgstr "Activer les
|
276 |
|
277 |
-
#: includes/admin-settings.php:
|
278 |
msgid "Disable All Templates"
|
279 |
-
msgstr "Désactiver tous les
|
280 |
|
281 |
-
#: includes/admin-settings.php:
|
282 |
msgid "Save Template Settings"
|
283 |
-
msgstr "
|
284 |
-
|
285 |
-
#: includes/admin-settings.php:176
|
286 |
-
msgid "Select the post types you would like the builder to work with."
|
287 |
-
msgstr ""
|
288 |
-
"Sélectionnez les types d'article que vous souhaitez utilisez avec \"Beaver "
|
289 |
-
"Builder\"."
|
290 |
-
|
291 |
-
#: includes/admin-settings.php:177
|
292 |
-
msgid "NOTE: Not all custom post types may be supported."
|
293 |
-
msgstr ""
|
294 |
-
"REMARQUE: Tous les types de poste personnalisé peuvent être pris en charge."
|
295 |
-
|
296 |
-
#: includes/admin-settings.php:205
|
297 |
-
msgid "Save Post Types"
|
298 |
-
msgstr "Enregistrer les types de poste"
|
299 |
|
300 |
-
#: includes/admin-settings.php:
|
301 |
-
msgid "Editing Settings"
|
302 |
-
msgstr "En modification des réglages"
|
303 |
-
|
304 |
-
#: includes/admin-settings.php:228
|
305 |
-
#, php-format
|
306 |
-
msgid ""
|
307 |
-
"Set the <a%s>capability</a> required for users to access advanced builder "
|
308 |
-
"editing such as adding, deleting or moving modules."
|
309 |
-
msgstr ""
|
310 |
-
"Réglez le <a%s> capacité requise</a> pour les utilisateurs d'accéder à "
|
311 |
-
"l'édition de constructeur de pointe telles que l'ajout, la suppression ou le "
|
312 |
-
"déplacement des modules."
|
313 |
-
|
314 |
-
#: includes/admin-settings.php:234
|
315 |
-
msgid "Save Editing Settings"
|
316 |
-
msgstr "Enregistrer les paramètres de modification"
|
317 |
-
|
318 |
-
#: includes/admin-settings.php:252
|
319 |
msgid ""
|
320 |
"Clicking the button below will uninstall the page builder plugin and delete "
|
321 |
"all of the data associated with it. You can uninstall or deactivate the page "
|
322 |
"builder from the plugins page instead if you do not wish to delete the data."
|
323 |
msgstr ""
|
324 |
-
"
|
325 |
-
"
|
326 |
-
"ou
|
327 |
-
"
|
328 |
|
329 |
-
#: includes/admin-settings
|
|
|
330 |
#: includes/updater/includes/form.php:31
|
331 |
msgid "NOTE:"
|
332 |
-
msgstr "
|
333 |
|
334 |
-
#: includes/admin-settings.php:
|
335 |
msgid ""
|
336 |
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
337 |
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
@@ -344,30 +562,179 @@ msgstr ""
|
|
344 |
"faites, le constructeur va rebâtir l'ensemble de ses données à l'aide de ces "
|
345 |
"valeurs méta."
|
346 |
|
347 |
-
#: includes/admin-settings.php:
|
|
|
348 |
msgid "This applies to all sites on the network."
|
349 |
-
msgstr "Ceci s'applique à tous les sites du réseau
|
350 |
|
351 |
-
|
352 |
-
#: includes/admin-settings.php:276
|
353 |
msgid ""
|
354 |
-
"
|
355 |
-
"
|
|
|
356 |
msgstr ""
|
357 |
-
"
|
358 |
-
"
|
359 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
|
361 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
msgid "Column Settings"
|
363 |
-
msgstr "
|
364 |
|
365 |
-
#: includes/column-settings.php:7 includes/module-settings.php:
|
366 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
367 |
-
#: modules/button/button.php:
|
368 |
-
#: modules/
|
369 |
-
#: modules/
|
370 |
-
#: modules/
|
|
|
|
|
|
|
|
|
371 |
#: modules/pricing-table/pricing-table.php:155
|
372 |
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
373 |
msgid "Style"
|
@@ -375,267 +742,289 @@ msgstr "Style"
|
|
375 |
|
376 |
#: includes/column-settings.php:14
|
377 |
msgid "Column Width"
|
378 |
-
msgstr "Largeur de
|
379 |
|
380 |
#: includes/column-settings.php:26 includes/row-settings.php:48
|
381 |
-
#: modules/button/button.php:
|
382 |
-
#: modules/callout/callout.php:
|
383 |
-
#: modules/content-slider/content-slider.php:
|
384 |
-
#: modules/content-slider/content-slider.php:
|
385 |
-
#: modules/cta/cta.php:
|
386 |
msgid "Text"
|
387 |
msgstr "Texte"
|
388 |
|
389 |
#: includes/column-settings.php:30 includes/column-settings.php:43
|
390 |
#: includes/column-settings.php:100 includes/row-settings.php:52
|
391 |
-
#: includes/row-settings.php:109 includes/row-settings.php:
|
392 |
-
#: modules/callout/callout.php:
|
393 |
-
#: modules/content-slider/content-slider.php:
|
394 |
#: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
|
395 |
#: modules/separator/separator.php:34
|
396 |
msgid "Color"
|
397 |
msgstr "Couleur"
|
398 |
|
399 |
#: includes/column-settings.php:39 includes/row-settings.php:105
|
400 |
-
#: modules/button/button.php:
|
401 |
-
#: modules/callout/callout.php:
|
402 |
-
#: modules/content-slider/content-slider.php:
|
403 |
-
#: modules/content-slider/content-slider.php:
|
404 |
-
#: modules/cta/cta.php:
|
405 |
#: modules/icon/icon.php:95
|
406 |
msgid "Background Color"
|
407 |
-
msgstr "Couleur
|
408 |
|
409 |
#: includes/column-settings.php:51 includes/column-settings.php:108
|
410 |
-
#: includes/row-settings.php:117 includes/row-settings.php:
|
411 |
#: modules/separator/separator.php:44
|
412 |
msgid "Opacity"
|
413 |
msgstr "Opacité"
|
414 |
|
415 |
-
#: includes/column-settings.php:63 includes/row-settings.php:
|
416 |
msgid "Border"
|
417 |
msgstr "Bordure"
|
418 |
|
419 |
#: includes/column-settings.php:67 includes/row-settings.php:65
|
420 |
-
#: includes/row-settings.php:
|
421 |
-
#: modules/content-slider/content-slider.php:
|
422 |
-
#: modules/content-slider/content-slider.php:
|
423 |
-
#: modules/content-slider/content-slider.php:
|
424 |
-
#: modules/content-slider/content-slider.php:
|
425 |
#: modules/slideshow/slideshow.php:339
|
426 |
msgid "Type"
|
427 |
msgstr "Type"
|
428 |
|
429 |
-
#: includes/column-settings.php:69 includes/row-settings.php:
|
430 |
msgid ""
|
431 |
"The type of border to use. Double borders must have a width of at least 3px "
|
432 |
"to render properly."
|
433 |
msgstr ""
|
434 |
-
"Le type de bordure à utiliser.
|
435 |
-
"afin
|
436 |
|
437 |
-
#: includes/column-settings.php:71 includes/row-settings.php:
|
438 |
msgctxt "Border type."
|
439 |
msgid "None"
|
440 |
-
msgstr "
|
441 |
|
442 |
-
#: includes/column-settings.php:72 includes/row-settings.php:
|
443 |
#: modules/separator/separator.php:75
|
444 |
msgctxt "Border type."
|
445 |
msgid "Solid"
|
446 |
msgstr "Solide"
|
447 |
|
448 |
-
#: includes/column-settings.php:73 includes/row-settings.php:
|
449 |
#: modules/separator/separator.php:76
|
450 |
msgctxt "Border type."
|
451 |
msgid "Dashed"
|
452 |
msgstr "Tirets"
|
453 |
|
454 |
-
#: includes/column-settings.php:74 includes/row-settings.php:
|
455 |
#: modules/separator/separator.php:77
|
456 |
msgctxt "Border type."
|
457 |
msgid "Dotted"
|
458 |
-
msgstr "
|
459 |
|
460 |
-
#: includes/column-settings.php:75 includes/row-settings.php:
|
461 |
#: modules/separator/separator.php:78
|
462 |
msgctxt "Border type."
|
463 |
msgid "Double"
|
464 |
msgstr "Double"
|
465 |
|
466 |
-
#: includes/column-settings.php:119 includes/row-settings.php:
|
467 |
msgid "Top Width"
|
468 |
msgstr "Largeur du haut"
|
469 |
|
470 |
-
#: includes/column-settings.php:131 includes/row-settings.php:
|
471 |
msgid "Bottom Width"
|
472 |
msgstr "Largeur du bas"
|
473 |
|
474 |
-
#: includes/column-settings.php:143 includes/row-settings.php:
|
475 |
msgid "Left Width"
|
476 |
msgstr "Largeur gauche"
|
477 |
|
478 |
-
#: includes/column-settings.php:155 includes/row-settings.php:
|
479 |
msgid "Right Width"
|
480 |
msgstr "Largeur droite"
|
481 |
|
482 |
#: includes/column-settings.php:170 includes/module-settings.php:6
|
483 |
-
#: includes/row-settings.php:
|
484 |
msgid "Advanced"
|
485 |
msgstr "Avancé"
|
486 |
|
487 |
-
#: includes/column-settings.php:
|
488 |
-
#: includes/
|
489 |
-
|
490 |
-
|
|
|
491 |
|
492 |
-
#: includes/column-settings.php:
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
"seulement, pas de points."
|
498 |
|
499 |
-
#: includes/column-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Responsive Layout"
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#: includes/column-settings.php:
|
504 |
-
#: includes/row-settings.php:
|
505 |
msgid "Display"
|
506 |
-
msgstr "
|
507 |
|
508 |
-
#: includes/column-settings.php:
|
509 |
-
#: includes/row-settings.php:
|
510 |
msgid "Always"
|
511 |
msgstr "Toujours"
|
512 |
|
513 |
-
#: includes/column-settings.php:
|
514 |
-
#: includes/row-settings.php:
|
515 |
msgid "Large Devices Only"
|
516 |
-
msgstr "
|
517 |
|
518 |
-
#: includes/column-settings.php:
|
519 |
-
#: includes/row-settings.php:
|
520 |
msgid "Large & Medium Devices Only"
|
521 |
-
msgstr "
|
522 |
|
523 |
-
#: includes/column-settings.php:
|
524 |
-
#: includes/row-settings.php:
|
525 |
msgid "Medium Devices Only"
|
526 |
-
msgstr "
|
527 |
|
528 |
-
#: includes/column-settings.php:
|
529 |
-
#: includes/row-settings.php:
|
530 |
msgid "Medium & Small Devices Only"
|
531 |
-
msgstr "
|
532 |
|
533 |
-
#: includes/column-settings.php:
|
534 |
-
#: includes/row-settings.php:
|
535 |
msgid "Small Devices Only"
|
536 |
-
msgstr "
|
537 |
|
538 |
-
#: includes/column-settings.php:
|
539 |
msgid "Choose whether to show or hide this column at different device sizes."
|
540 |
msgstr ""
|
541 |
-
"
|
542 |
-
"
|
543 |
|
544 |
-
#: includes/column-settings.php:
|
545 |
msgid "Medium Device Width"
|
546 |
-
msgstr "Largeur
|
547 |
|
548 |
-
#: includes/column-settings.php:
|
549 |
msgid "The width of this column on medium devices such as tablets."
|
550 |
-
msgstr ""
|
551 |
-
"La largeur de cette colonne sur des appareils moyens tels que des tablettes."
|
552 |
|
553 |
-
#: includes/column-settings.php:
|
554 |
-
#: modules/callout/callout.php:
|
555 |
-
#: modules/content-slider/content-slider.php:
|
556 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
557 |
#: modules/heading/heading.php:174
|
558 |
msgid "Default"
|
559 |
msgstr "Par défaut"
|
560 |
|
561 |
-
#: includes/column-settings.php:
|
562 |
-
#: modules/button/button.php:
|
563 |
-
#: modules/content-slider/content-slider.php:
|
564 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
565 |
#: modules/heading/heading.php:175
|
566 |
#: modules/social-buttons/social-buttons.php:74
|
567 |
msgid "Custom"
|
568 |
msgstr "Personalisé"
|
569 |
|
570 |
-
#: includes/column-settings.php:
|
571 |
msgid "Custom Medium Device Width"
|
572 |
-
msgstr "Largeur personalisée
|
573 |
|
574 |
-
#: includes/column-settings.php:
|
575 |
msgid "Small Device Width"
|
576 |
-
msgstr "Largeur
|
577 |
|
578 |
-
#: includes/column-settings.php:
|
579 |
msgid "The width of this column on small devices such as phones."
|
580 |
msgstr ""
|
581 |
-
"La largeur de cette colonne sur
|
582 |
|
583 |
-
#: includes/column-settings.php:
|
584 |
msgid "Custom Small Device Width"
|
585 |
-
msgstr "
|
586 |
|
587 |
-
#: includes/column-settings.php:
|
588 |
-
#: includes/
|
589 |
-
|
590 |
-
|
591 |
-
msgstr "Marges"
|
592 |
-
|
593 |
-
#: includes/column-settings.php:267 includes/column-settings.php:320
|
594 |
-
#: includes/module-settings.php:42 includes/row-settings.php:485
|
595 |
-
#: includes/row-settings.php:538 modules/slideshow/slideshow.php:475
|
596 |
-
msgid "Top"
|
597 |
-
msgstr "Haut"
|
598 |
|
599 |
-
#: includes/column-settings.php:
|
600 |
-
#: includes/module-settings.php:
|
601 |
-
|
602 |
-
|
603 |
-
msgstr "Bas"
|
604 |
|
605 |
-
#: includes/column-settings.php:
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
msgid "Left"
|
614 |
-
msgstr "Gauche"
|
615 |
|
616 |
-
#: includes/column-settings.php:
|
617 |
-
|
618 |
-
|
619 |
-
#: modules/callout/callout.php:251
|
620 |
-
#: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
|
621 |
-
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
622 |
-
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
623 |
-
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
624 |
-
msgid "Right"
|
625 |
-
msgstr "Droite"
|
626 |
|
627 |
-
#: includes/column-settings.php:
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
msgstr "
|
|
|
|
|
|
|
|
|
633 |
|
634 |
-
#: includes/field-form.php:
|
635 |
#, php-format
|
636 |
msgctxt "%s stands for form field label."
|
637 |
msgid "Edit %s"
|
638 |
-
msgstr "
|
639 |
|
640 |
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
641 |
msgid "Select Icon"
|
@@ -645,24 +1034,24 @@ msgstr "Choisir une icône"
|
|
645 |
msgid "Replace"
|
646 |
msgstr "Remplacer"
|
647 |
|
648 |
-
#: includes/field-icon.php:7 includes/js-config.php:
|
649 |
msgid "Remove"
|
650 |
-
msgstr "
|
651 |
|
652 |
#: includes/field-link.php:3
|
653 |
msgid "Select"
|
654 |
-
msgstr "
|
655 |
|
656 |
#: includes/field-link.php:5
|
657 |
msgid "Enter a post title to search."
|
658 |
-
msgstr "
|
659 |
|
660 |
#: includes/field-link.php:6 includes/field-suggest.php:7
|
661 |
msgid "Start typing..."
|
662 |
-
msgstr "Commencez à taper
|
663 |
|
664 |
#: includes/field-link.php:7 includes/icon-selector.php:28
|
665 |
-
#: includes/js-config.php:
|
666 |
#: includes/template-selector.php:102 includes/ui.php:11
|
667 |
msgid "Cancel"
|
668 |
msgstr "Annuler"
|
@@ -671,7 +1060,7 @@ msgstr "Annuler"
|
|
671 |
#, php-format
|
672 |
msgid "1 Photo Selected"
|
673 |
msgid_plural "%d Photos Selected"
|
674 |
-
msgstr[0] "
|
675 |
msgstr[1] "%d photos sélectionnées"
|
676 |
|
677 |
#: includes/field-multiple-photos.php:13
|
@@ -680,33 +1069,30 @@ msgstr "Créer une galerie"
|
|
680 |
|
681 |
#: includes/field-multiple-photos.php:14
|
682 |
msgid "Edit Gallery"
|
683 |
-
msgstr "
|
684 |
|
685 |
#: includes/field-multiple-photos.php:15
|
686 |
msgid "Add Photos"
|
687 |
msgstr "Ajouter des photos"
|
688 |
|
689 |
-
#: includes/field-photo.php:3 includes/js-config.php:
|
690 |
msgid "Select Photo"
|
691 |
msgstr "Sélectionner la photo"
|
692 |
|
693 |
-
#: includes/field-
|
694 |
-
msgid "Edit"
|
695 |
-
msgstr "Modifier"
|
696 |
-
|
697 |
-
#: includes/field-video.php:3 includes/js-config.php:57
|
698 |
msgid "Select Video"
|
699 |
-
msgstr "
|
700 |
|
701 |
#: includes/field-video.php:17
|
702 |
msgid "Replace Video"
|
703 |
-
msgstr "Remplacer vidéo"
|
704 |
-
|
705 |
-
#: includes/global-settings.php:7 includes/
|
706 |
-
#:
|
707 |
-
#: modules/
|
708 |
-
#: modules/
|
709 |
-
#: modules/content-slider/content-slider.php:
|
|
|
710 |
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
711 |
#: modules/html/html.php:26 modules/icon-group/icon-group.php:128
|
712 |
#: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
|
@@ -722,11 +1108,11 @@ msgstr "Général"
|
|
722 |
|
723 |
#: includes/global-settings.php:8
|
724 |
msgid "Note: These settings apply to all posts and pages."
|
725 |
-
msgstr "
|
726 |
|
727 |
#: includes/global-settings.php:11
|
728 |
msgid "Default Page Heading"
|
729 |
-
msgstr "
|
730 |
|
731 |
#: includes/global-settings.php:15
|
732 |
msgctxt ""
|
@@ -734,75 +1120,16 @@ msgctxt ""
|
|
734 |
msgid "Show"
|
735 |
msgstr "Montrer"
|
736 |
|
737 |
-
#: includes/global-settings.php:18 includes/global-settings.php:87
|
738 |
-
#: includes/row-settings.php:307 modules/accordion/accordion.php:90
|
739 |
-
#: modules/button/button.php:135 modules/callout/callout.php:418
|
740 |
-
#: modules/callout/callout.php:539
|
741 |
-
#: modules/content-slider/content-slider.php:203
|
742 |
-
#: modules/content-slider/content-slider.php:217
|
743 |
-
#: modules/content-slider/content-slider.php:251
|
744 |
-
#: modules/content-slider/content-slider.php:260
|
745 |
-
#: modules/content-slider/content-slider.php:531
|
746 |
-
#: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
|
747 |
-
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
748 |
-
#: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
|
749 |
-
#: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
|
750 |
-
#: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
|
751 |
-
#: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
|
752 |
-
#: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
|
753 |
-
#: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
|
754 |
-
#: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
|
755 |
-
#: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
|
756 |
-
#: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
|
757 |
-
#: modules/social-buttons/social-buttons.php:111
|
758 |
-
#: modules/social-buttons/social-buttons.php:120
|
759 |
-
#: modules/social-buttons/social-buttons.php:129
|
760 |
-
#: modules/testimonials/testimonials.php:85
|
761 |
-
#: modules/testimonials/testimonials.php:124
|
762 |
-
#: modules/testimonials/testimonials.php:154 modules/video/video.php:111
|
763 |
-
#: modules/video/video.php:123
|
764 |
-
msgid "No"
|
765 |
-
msgstr "Non"
|
766 |
-
|
767 |
-
#: includes/global-settings.php:19 includes/global-settings.php:88
|
768 |
-
#: includes/row-settings.php:308 modules/accordion/accordion.php:89
|
769 |
-
#: modules/button/button.php:136 modules/callout/callout.php:419
|
770 |
-
#: modules/callout/callout.php:540
|
771 |
-
#: modules/content-slider/content-slider.php:204
|
772 |
-
#: modules/content-slider/content-slider.php:218
|
773 |
-
#: modules/content-slider/content-slider.php:252
|
774 |
-
#: modules/content-slider/content-slider.php:261
|
775 |
-
#: modules/content-slider/content-slider.php:532
|
776 |
-
#: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
|
777 |
-
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
778 |
-
#: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
|
779 |
-
#: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
|
780 |
-
#: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
|
781 |
-
#: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
|
782 |
-
#: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
|
783 |
-
#: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
|
784 |
-
#: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
|
785 |
-
#: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
|
786 |
-
#: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
|
787 |
-
#: modules/social-buttons/social-buttons.php:110
|
788 |
-
#: modules/social-buttons/social-buttons.php:119
|
789 |
-
#: modules/social-buttons/social-buttons.php:128
|
790 |
-
#: modules/testimonials/testimonials.php:86
|
791 |
-
#: modules/testimonials/testimonials.php:125
|
792 |
-
#: modules/testimonials/testimonials.php:155 modules/video/video.php:112
|
793 |
-
#: modules/video/video.php:124
|
794 |
-
msgid "Yes"
|
795 |
-
msgstr "Oui"
|
796 |
-
|
797 |
#: includes/global-settings.php:26
|
798 |
msgid ""
|
799 |
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
800 |
"You will also be required to enter some basic CSS for this to work if you "
|
801 |
"choose no."
|
802 |
msgstr ""
|
803 |
-
"Sélectionner Non
|
804 |
-
"
|
805 |
-
"fonctionner ceci si vous sélectionnez
|
|
|
806 |
|
807 |
#: includes/global-settings.php:30
|
808 |
msgid "CSS Selector"
|
@@ -810,7 +1137,9 @@ msgstr "Sélecteur CSS"
|
|
810 |
|
811 |
#: includes/global-settings.php:32
|
812 |
msgid "Enter a CSS selector for the default page heading to hide it."
|
813 |
-
msgstr "
|
|
|
|
|
814 |
|
815 |
#: includes/global-settings.php:37
|
816 |
msgid "Rows"
|
@@ -818,7 +1147,7 @@ msgstr "Rangées"
|
|
818 |
|
819 |
#: includes/global-settings.php:57
|
820 |
msgid "Max Width"
|
821 |
-
msgstr "Largeur
|
822 |
|
823 |
#: includes/global-settings.php:62
|
824 |
msgid ""
|
@@ -829,251 +1158,459 @@ msgstr ""
|
|
829 |
"et sélectionner une rangée pleine largeur dans les réglages pour chaque "
|
830 |
"ligne individuellement."
|
831 |
|
832 |
-
#: includes/global-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
msgctxt ""
|
834 |
"General settings form field label. Intended meaning: \"Responsive layout "
|
835 |
"enabled?\""
|
836 |
msgid "Enabled"
|
837 |
msgstr "Activé"
|
838 |
|
839 |
-
#: includes/global-settings.php:
|
840 |
msgid "Medium Device Breakpoint"
|
841 |
-
msgstr "Point
|
842 |
|
843 |
-
#: includes/global-settings.php:
|
844 |
msgid ""
|
845 |
"The browser width at which the layout will adjust for medium devices such as "
|
846 |
"tablets."
|
847 |
msgstr ""
|
848 |
-
"La largeur du navigateur
|
849 |
-
"
|
850 |
|
851 |
-
#: includes/global-settings.php:
|
852 |
msgid "Small Device Breakpoint"
|
853 |
-
msgstr "Point
|
854 |
|
855 |
-
#: includes/global-settings.php:
|
856 |
msgid ""
|
857 |
"The browser width at which the layout will adjust for small devices such as "
|
858 |
"phones."
|
859 |
msgstr ""
|
860 |
-
"La largeur du navigateur
|
861 |
-
"
|
862 |
|
863 |
#: includes/icon-selector.php:5
|
864 |
msgctxt "Select option for showing all icon libraries."
|
865 |
msgid "All Libraries"
|
866 |
msgstr "Toutes les bibliothèques"
|
867 |
|
868 |
-
#: includes/js-config.php:
|
869 |
msgid "What would you like to do?"
|
870 |
-
msgstr "Que
|
871 |
|
872 |
-
#: includes/js-config.php:
|
873 |
msgid "Change Template"
|
874 |
-
msgstr "Changer
|
875 |
|
876 |
-
#: includes/js-config.php:
|
877 |
msgid ""
|
878 |
"Warning! Changing the template will replace your existing layout. Do you "
|
879 |
"really want to do this?"
|
880 |
msgstr ""
|
881 |
-
"
|
882 |
-
"
|
883 |
|
884 |
-
#: includes/js-config.php:
|
885 |
msgid "Column"
|
886 |
msgstr "Colonne"
|
887 |
|
888 |
-
#: includes/js-config.php:
|
889 |
msgid ""
|
890 |
"Please select either a background layout or content layout before submitting."
|
891 |
msgstr ""
|
892 |
-
"
|
893 |
-
"de
|
894 |
|
895 |
-
#: includes/js-config.php:
|
896 |
msgid "Do you really want to delete this item?"
|
897 |
-
msgstr "
|
898 |
|
899 |
-
#: includes/js-config.php:
|
900 |
msgid ""
|
901 |
"Do you really want to delete this module? All content data will be "
|
902 |
"permanently deleted."
|
903 |
msgstr ""
|
904 |
-
"Voulez-vous vraiment supprimer
|
905 |
-
"
|
906 |
|
907 |
-
#: includes/js-config.php:
|
908 |
msgid ""
|
909 |
"Do you really want to delete this row? All content data will be permanently "
|
910 |
"deleted."
|
911 |
msgstr ""
|
912 |
-
"Voulez-vous vraiment
|
913 |
-
"
|
914 |
-
|
915 |
-
#: includes/js-config.php:26
|
916 |
-
msgid "Do you really want to delete this template?"
|
917 |
-
msgstr "Souhaitez-vous réellement supprimer ce modèle ?"
|
918 |
|
919 |
-
#: includes/js-config.php:
|
920 |
msgid "Discard Draft"
|
921 |
-
msgstr "
|
922 |
|
923 |
-
#: includes/js-config.php:
|
924 |
msgid ""
|
925 |
"Do you really want to discard this draft? All of your changes that are not "
|
926 |
"published will be lost."
|
927 |
msgstr ""
|
928 |
-
"Voulez-vous vraiment supprimer ce brouillon
|
929 |
-
"
|
930 |
|
931 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
932 |
msgid "Save Draft"
|
933 |
-
msgstr "
|
934 |
|
935 |
-
#: includes/js-config.php:
|
936 |
msgctxt "Duplicate page/post action label."
|
937 |
msgid "Duplicate"
|
938 |
-
msgstr "
|
939 |
|
940 |
-
#: includes/js-config.php:
|
941 |
msgid "Duplicate This Page"
|
942 |
-
msgstr "
|
943 |
|
944 |
-
#: includes/js-config.php:
|
945 |
msgid "Duplicate This Template"
|
946 |
-
msgstr "
|
947 |
|
948 |
-
#: includes/js-config.php:
|
949 |
msgid "Edit Global Settings"
|
950 |
-
msgstr "
|
951 |
|
952 |
-
#: includes/js-config.php:
|
953 |
msgid "Drop a row layout or module to get started!"
|
954 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
955 |
|
956 |
-
#: includes/js-config.php:
|
957 |
-
msgid "
|
958 |
-
msgstr "
|
959 |
|
960 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
961 |
msgid "Insert"
|
962 |
msgstr "Insérer"
|
963 |
|
964 |
-
#: includes/js-config.php:
|
965 |
msgid "Large"
|
966 |
-
msgstr "
|
967 |
|
968 |
-
#: includes/js-config.php:
|
969 |
msgid "Manage Templates"
|
970 |
-
msgstr "Gérer les
|
971 |
|
972 |
-
#: includes/js-config.php:
|
973 |
msgid "Medium"
|
974 |
-
msgstr "
|
975 |
|
976 |
-
#: includes/js-config.php:
|
977 |
msgid "Module"
|
978 |
-
msgstr "
|
979 |
|
980 |
-
#: includes/js-config.php:
|
981 |
msgid "Move"
|
982 |
msgstr "Déplacer"
|
983 |
|
984 |
-
#: includes/js-config.php:
|
985 |
msgid "New Column"
|
986 |
msgstr "Nouvelle colonne"
|
987 |
|
988 |
-
#: includes/js-config.php:
|
989 |
msgid "New Row"
|
990 |
msgstr "Nouvelle rangée"
|
991 |
|
992 |
-
#: includes/js-config.php:
|
993 |
msgid "No results found."
|
994 |
-
msgstr "
|
995 |
|
996 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
997 |
msgid "OK"
|
998 |
-
msgstr "
|
999 |
|
1000 |
-
#: includes/js-config.php:
|
1001 |
msgid "Photo Page"
|
1002 |
msgstr "Page photos"
|
1003 |
|
1004 |
-
#: includes/js-config.php:
|
1005 |
msgid "Photo Selected"
|
1006 |
msgstr "Photo sélectionnée"
|
1007 |
|
1008 |
-
#: includes/js-config.php:
|
1009 |
msgid "Photos Selected"
|
1010 |
msgstr "Photos sélectionnées"
|
1011 |
|
1012 |
-
#: includes/js-config.php:
|
1013 |
msgid "Publish Changes"
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
-
#: includes/js-config.php:
|
1017 |
msgid "Row"
|
1018 |
msgstr "Rangée"
|
1019 |
|
1020 |
-
#: includes/js-config.php:
|
1021 |
msgid "Row Settings"
|
1022 |
-
msgstr "
|
1023 |
|
1024 |
-
#: includes/js-config.php:
|
1025 |
msgid "Save Core Template"
|
1026 |
-
msgstr "
|
1027 |
|
1028 |
-
#: includes/js-config.php:
|
1029 |
#: includes/user-template-settings.php:4
|
1030 |
msgid "Save Template"
|
1031 |
-
msgstr "
|
1032 |
|
1033 |
-
#: includes/js-config.php:
|
1034 |
msgid "Select Photos"
|
1035 |
-
msgstr "
|
1036 |
|
1037 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
1038 |
msgid "Append New Layout"
|
1039 |
-
msgstr "Ajouter une autre
|
1040 |
|
1041 |
-
#: includes/js-config.php:
|
1042 |
msgid "Replace Existing Layout"
|
1043 |
-
msgstr "Remplacer
|
1044 |
|
1045 |
-
#: includes/js-config.php:
|
1046 |
msgid "Template Saved!"
|
1047 |
-
msgstr "
|
1048 |
|
1049 |
-
#: includes/js-config.php:
|
1050 |
msgid "Thumbnail"
|
1051 |
msgstr "Vignette"
|
1052 |
|
1053 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
msgid ""
|
1055 |
"The settings you are currently editing will not be saved if you navigate "
|
1056 |
"away from this page."
|
1057 |
msgstr ""
|
1058 |
-
"Les
|
1059 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1060 |
|
1061 |
#: includes/loop-settings.php:19
|
1062 |
msgid "Post Type"
|
1063 |
-
msgstr "Type
|
1064 |
|
1065 |
#: includes/loop-settings.php:25
|
1066 |
msgid "Order By"
|
1067 |
-
msgstr "
|
1068 |
-
|
1069 |
-
#: includes/loop-settings.php:27
|
1070 |
-
msgid "ID"
|
1071 |
-
msgstr "ID"
|
1072 |
|
1073 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1074 |
#: modules/woocommerce/woocommerce.php:189
|
1075 |
msgid "Date"
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
#: includes/loop-settings.php:29
|
1079 |
msgid "Date Last Modified"
|
@@ -1090,7 +1627,7 @@ msgstr "Auteur"
|
|
1090 |
|
1091 |
#: includes/loop-settings.php:32
|
1092 |
msgid "Comment Count"
|
1093 |
-
msgstr "
|
1094 |
|
1095 |
#: includes/loop-settings.php:33
|
1096 |
msgid "Menu Order"
|
@@ -1120,20 +1657,20 @@ msgstr "Filtre"
|
|
1120 |
#, php-format
|
1121 |
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1122 |
msgstr ""
|
1123 |
-
"Entrez une liste
|
1124 |
-
"
|
1125 |
|
1126 |
#: includes/loop-settings.php:76
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1130 |
msgstr ""
|
1131 |
-
"Entrez une liste
|
1132 |
-
"%s seront montrés."
|
1133 |
|
1134 |
#: includes/loop-settings.php:90
|
1135 |
msgid "Authors"
|
1136 |
-
msgstr "
|
1137 |
|
1138 |
#: includes/loop-settings.php:91
|
1139 |
msgid ""
|
@@ -1141,64 +1678,57 @@ msgid ""
|
|
1141 |
"authors will be shown."
|
1142 |
msgstr ""
|
1143 |
"Entrez une liste séparée par des virgules des noms d'auteurs. Seuls les "
|
1144 |
-
"
|
1145 |
-
|
1146 |
-
#: includes/module-settings.php:14
|
1147 |
-
msgid ""
|
1148 |
-
"A custom CSS class that will be applied to this module. Spaces only, no dots."
|
1149 |
-
msgstr ""
|
1150 |
-
"Une classe CSS personnalisée sera appliquée à ce module. Espaces seulement, "
|
1151 |
-
"pas de points."
|
1152 |
|
1153 |
-
#: includes/module-settings.php:
|
1154 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1155 |
msgstr ""
|
1156 |
-
"
|
1157 |
-
"
|
1158 |
|
1159 |
-
#: includes/module-settings.php:
|
1160 |
msgid "Animation"
|
1161 |
msgstr "Animation"
|
1162 |
|
1163 |
-
#: includes/module-settings.php:
|
1164 |
msgctxt "Animation style."
|
1165 |
msgid "None"
|
1166 |
msgstr "Aucune"
|
1167 |
|
1168 |
-
#: includes/module-settings.php:
|
1169 |
msgctxt "Animation style."
|
1170 |
msgid "Fade In"
|
1171 |
msgstr "Ouverture en fondu"
|
1172 |
|
1173 |
-
#: includes/module-settings.php:
|
1174 |
msgctxt "Animation style."
|
1175 |
msgid "Slide Left"
|
1176 |
-
msgstr "Glissement
|
1177 |
|
1178 |
-
#: includes/module-settings.php:
|
1179 |
msgctxt "Animation style."
|
1180 |
msgid "Slide Right"
|
1181 |
-
msgstr "Glissement
|
1182 |
|
1183 |
-
#: includes/module-settings.php:
|
1184 |
msgctxt "Animation style."
|
1185 |
msgid "Slide Up"
|
1186 |
msgstr "Glissement vers le haut"
|
1187 |
|
1188 |
-
#: includes/module-settings.php:
|
1189 |
msgctxt "Animation style."
|
1190 |
msgid "Slide Down"
|
1191 |
msgstr "Glissement vers le bas"
|
1192 |
|
1193 |
-
#: includes/module-settings.php:
|
1194 |
-
#: modules/content-slider/content-slider.php:
|
1195 |
#: modules/testimonials/testimonials.php:91
|
1196 |
msgid "Delay"
|
1197 |
-
msgstr "
|
1198 |
|
1199 |
-
#: includes/module-settings.php:
|
1200 |
-
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:
|
1201 |
-
#: modules/content-slider/content-slider.php:
|
1202 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1203 |
#: modules/slideshow/slideshow.php:581
|
1204 |
#: modules/testimonials/testimonials.php:95
|
@@ -1207,37 +1737,51 @@ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
|
1207 |
msgid "seconds"
|
1208 |
msgstr "secondes"
|
1209 |
|
1210 |
-
#: includes/module-settings.php:
|
1211 |
msgid "The amount of time in seconds before this animation starts."
|
1212 |
-
msgstr "
|
1213 |
|
1214 |
-
#: includes/
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
|
|
|
|
|
|
|
|
1218 |
|
1219 |
-
#: includes/
|
1220 |
-
|
1221 |
-
|
1222 |
-
msgstr "Fixe"
|
1223 |
|
1224 |
-
#: includes/
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1228 |
|
1229 |
#: includes/row-settings.php:27
|
1230 |
msgid ""
|
1231 |
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
1232 |
"no wider than the Row Max Width set in the Global Settings."
|
1233 |
msgstr ""
|
1234 |
-
"Rangées pleine largeur couvrent
|
1235 |
-
"rangées fixes ne sont pas plus larges que la valeur
|
1236 |
-
"définie dans les paramètres globaux."
|
1237 |
|
1238 |
#: includes/row-settings.php:34
|
1239 |
msgid "Content Width"
|
1240 |
-
msgstr "Largeur contenu"
|
1241 |
|
1242 |
#: includes/row-settings.php:40
|
1243 |
msgid ""
|
@@ -1245,17 +1789,17 @@ msgid ""
|
|
1245 |
"content is no wider than the Row Max Width set in the Global Settings."
|
1246 |
msgstr ""
|
1247 |
"Les rangées pleine largeur couvrent l'étendue de la page, de bord à bord. "
|
1248 |
-
"Les rangées fixes ne sont pas plus larges que la valeur
|
1249 |
-
"définie dans les réglages globaux."
|
1250 |
|
1251 |
#: includes/row-settings.php:61
|
1252 |
msgid "Background"
|
1253 |
msgstr "Arrière-plan"
|
1254 |
|
1255 |
-
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:
|
1256 |
msgctxt "Background type."
|
1257 |
msgid "None"
|
1258 |
-
msgstr "
|
1259 |
|
1260 |
#: includes/row-settings.php:69
|
1261 |
msgctxt "Background type."
|
@@ -1282,16 +1826,16 @@ msgctxt "Background type."
|
|
1282 |
msgid "Parallax"
|
1283 |
msgstr "Parallaxe"
|
1284 |
|
1285 |
-
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:
|
1286 |
msgid "Background Photo"
|
1287 |
-
msgstr "
|
1288 |
|
1289 |
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1290 |
-
#: modules/callout/callout.php:
|
1291 |
-
#: modules/callout/callout.php:
|
1292 |
-
#: modules/content-slider/content-slider.php:
|
1293 |
-
#: modules/content-slider/content-slider.php:
|
1294 |
-
#: modules/content-slider/content-slider.php:
|
1295 |
#: modules/photo/photo.php:392
|
1296 |
msgid "Photo"
|
1297 |
msgstr "Photo"
|
@@ -1303,12 +1847,12 @@ msgstr "Répéter"
|
|
1303 |
#: includes/row-settings.php:143
|
1304 |
msgctxt "Background repeat."
|
1305 |
msgid "None"
|
1306 |
-
msgstr "
|
1307 |
|
1308 |
#: includes/row-settings.php:144
|
1309 |
msgctxt "Background repeat."
|
1310 |
msgid "Tile"
|
1311 |
-
msgstr "
|
1312 |
|
1313 |
#: includes/row-settings.php:145
|
1314 |
msgctxt "Background repeat."
|
@@ -1333,16 +1877,9 @@ msgstr ""
|
|
1333 |
"rangée horizontalement et verticalement. Vous pouvez également spécifier que "
|
1334 |
"l'image ne se répète que horizontalement ou verticalement."
|
1335 |
|
1336 |
-
#: includes/row-settings.php:155 modules/callout/callout.php:351
|
1337 |
-
#: modules/callout/callout.php:371
|
1338 |
-
#: modules/content-slider/content-slider.php:466
|
1339 |
-
#: modules/post-grid/post-grid.php:127
|
1340 |
-
msgid "Position"
|
1341 |
-
msgstr "Position"
|
1342 |
-
|
1343 |
#: includes/row-settings.php:158
|
1344 |
msgid "Left Top"
|
1345 |
-
msgstr "
|
1346 |
|
1347 |
#: includes/row-settings.php:159
|
1348 |
msgid "Left Center"
|
@@ -1354,7 +1891,7 @@ msgstr "Gauche bas"
|
|
1354 |
|
1355 |
#: includes/row-settings.php:161
|
1356 |
msgid "Right Top"
|
1357 |
-
msgstr "
|
1358 |
|
1359 |
#: includes/row-settings.php:162
|
1360 |
msgid "Right Center"
|
@@ -1368,9 +1905,9 @@ msgstr "Droite bas"
|
|
1368 |
msgid "Center Top"
|
1369 |
msgstr "Centre haut"
|
1370 |
|
1371 |
-
#: includes/row-settings.php:165 modules/button/button.php:
|
1372 |
-
#: modules/callout/callout.php:
|
1373 |
-
#: modules/content-slider/content-slider.php:
|
1374 |
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1375 |
#: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
|
1376 |
#: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
|
@@ -1384,8 +1921,8 @@ msgstr "Centre bas"
|
|
1384 |
#: includes/row-settings.php:168
|
1385 |
msgid "Position will tell the image where it should sit in the row background."
|
1386 |
msgstr ""
|
1387 |
-
"
|
1388 |
-
"la rangée."
|
1389 |
|
1390 |
#: includes/row-settings.php:175
|
1391 |
msgid "Attachment"
|
@@ -1393,7 +1930,7 @@ msgstr "Fixation"
|
|
1393 |
|
1394 |
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1395 |
msgid "Scroll"
|
1396 |
-
msgstr "
|
1397 |
|
1398 |
#: includes/row-settings.php:181
|
1399 |
msgid ""
|
@@ -1410,37 +1947,35 @@ msgstr ""
|
|
1410 |
|
1411 |
#: includes/row-settings.php:188
|
1412 |
msgid "Scale"
|
1413 |
-
msgstr "
|
1414 |
|
1415 |
#: includes/row-settings.php:191
|
1416 |
msgctxt "Background scale."
|
1417 |
msgid "None"
|
1418 |
-
msgstr "
|
1419 |
|
1420 |
-
# Not sure…
|
1421 |
#: includes/row-settings.php:192
|
1422 |
msgid "Fit"
|
1423 |
-
msgstr "
|
1424 |
|
1425 |
#: includes/row-settings.php:193
|
1426 |
msgid "Fill"
|
1427 |
msgstr "Remplissage"
|
1428 |
|
1429 |
#: includes/row-settings.php:195
|
1430 |
-
#, fuzzy
|
1431 |
msgid ""
|
1432 |
"Scale applies to how the image should display in the row background. You can "
|
1433 |
"select either fill or fit to the row background."
|
1434 |
msgstr ""
|
1435 |
-
"
|
1436 |
-
"plan de la rangée. Vous pouvez
|
1437 |
-
"l'arrière plan."
|
1438 |
|
1439 |
#: includes/row-settings.php:203
|
1440 |
msgid "Background Video"
|
1441 |
-
msgstr "
|
1442 |
|
1443 |
-
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:
|
1444 |
#: modules/video/video.php:19 modules/video/video.php:100
|
1445 |
msgid "Video"
|
1446 |
msgstr "Vidéo"
|
@@ -1450,12 +1985,12 @@ msgid ""
|
|
1450 |
"An HTML5 video to use as the background of this row. Supported types are "
|
1451 |
"MP4, WebM and Ogg."
|
1452 |
msgstr ""
|
1453 |
-
"
|
1454 |
-
"
|
1455 |
|
1456 |
#: includes/row-settings.php:215
|
1457 |
msgid "Fallback Photo"
|
1458 |
-
msgstr "Photo
|
1459 |
|
1460 |
#: includes/row-settings.php:216
|
1461 |
msgid "A photo that will be displayed if the video fails to load."
|
@@ -1463,12 +1998,12 @@ msgstr "Une photo qui sera affichée si la vidéo ne se charge pas."
|
|
1463 |
|
1464 |
#: includes/row-settings.php:224
|
1465 |
msgid "Background Slideshow"
|
1466 |
-
msgstr "Diaporama d'
|
1467 |
|
1468 |
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
1469 |
#: modules/slideshow/slideshow.php:263
|
1470 |
msgid "Source"
|
1471 |
-
msgstr "
|
1472 |
|
1473 |
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
1474 |
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
@@ -1485,8 +2020,8 @@ msgid ""
|
|
1485 |
msgstr ""
|
1486 |
"Obtenez vos images à partir de la médiathèque de WordPress, ou d'une galerie "
|
1487 |
"sur SmugMug en insérant le lien de son flux RSS. Le lien du flux RSS peut "
|
1488 |
-
"être obtenu en utilisant la fonction
|
1489 |
-
"SmugMug."
|
1490 |
|
1491 |
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
1492 |
#: modules/slideshow/slideshow.php:281
|
@@ -1496,14 +2031,14 @@ msgstr "Photos"
|
|
1496 |
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
1497 |
#: modules/slideshow/slideshow.php:285
|
1498 |
msgid "Feed URL"
|
1499 |
-
msgstr "
|
1500 |
|
1501 |
#: includes/row-settings.php:263 includes/row-settings.php:328
|
1502 |
#: modules/slideshow/slideshow.php:382
|
1503 |
msgid "Speed"
|
1504 |
msgstr "Vitesse"
|
1505 |
|
1506 |
-
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:
|
1507 |
#: modules/slideshow/slideshow.php:389
|
1508 |
#: modules/testimonials/testimonials.php:99
|
1509 |
msgid "Transition"
|
@@ -1512,9 +2047,9 @@ msgstr "Transition"
|
|
1512 |
#: includes/row-settings.php:276
|
1513 |
msgctxt "Slideshow transition type."
|
1514 |
msgid "None"
|
1515 |
-
msgstr "
|
1516 |
|
1517 |
-
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:
|
1518 |
#: modules/slideshow/slideshow.php:393
|
1519 |
#: modules/testimonials/testimonials.php:103
|
1520 |
msgid "Fade"
|
@@ -1526,11 +2061,11 @@ msgstr "Ken Burns"
|
|
1526 |
|
1527 |
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
1528 |
msgid "Slide Horizontal"
|
1529 |
-
msgstr "
|
1530 |
|
1531 |
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
1532 |
msgid "Slide Vertical"
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
1536 |
msgid "Blinds"
|
@@ -1556,7 +2091,7 @@ msgstr "Boîtes aléatoires"
|
|
1556 |
msgid "Boxes Grow"
|
1557 |
msgstr "Boîtes qui croissent"
|
1558 |
|
1559 |
-
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:
|
1560 |
#: modules/slideshow/slideshow.php:407
|
1561 |
#: modules/testimonials/testimonials.php:108
|
1562 |
msgid "Transition Speed"
|
@@ -1568,7 +2103,7 @@ msgstr "Photos en mode aléatoire"
|
|
1568 |
|
1569 |
#: includes/row-settings.php:317
|
1570 |
msgid "Background Parallax"
|
1571 |
-
msgstr "
|
1572 |
|
1573 |
#: includes/row-settings.php:331
|
1574 |
msgid "Fast"
|
@@ -1577,31 +2112,57 @@ msgstr "Rapide"
|
|
1577 |
#: includes/row-settings.php:332
|
1578 |
msgctxt "Speed."
|
1579 |
msgid "Medium"
|
1580 |
-
msgstr "
|
1581 |
|
1582 |
#: includes/row-settings.php:333
|
1583 |
msgid "Slow"
|
1584 |
-
msgstr "
|
1585 |
|
1586 |
-
#: includes/row-settings.php:
|
1587 |
-
msgid "
|
1588 |
-
msgstr ""
|
1589 |
-
"Ajouter un sélecteur CSS personnalisé pour appliquer un style supplémentaire "
|
1590 |
-
"pour cette rangée."
|
1591 |
|
1592 |
-
#: includes/row-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1593 |
msgid "Choose whether to show or hide this row at different device sizes."
|
1594 |
msgstr ""
|
1595 |
"Choisissez si vous voulez afficher ou masquer cette colonne à des tailles "
|
1596 |
"différentes d'appareils."
|
1597 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1598 |
#: includes/settings.php:62
|
1599 |
msgid "Save"
|
1600 |
-
msgstr "
|
1601 |
|
1602 |
#: includes/template-selector.php:3
|
1603 |
msgid "Layout Templates"
|
1604 |
-
msgstr "
|
1605 |
|
1606 |
#: includes/template-selector.php:8
|
1607 |
msgid "Home Pages"
|
@@ -1613,7 +2174,7 @@ msgstr "Pages de contenu"
|
|
1613 |
|
1614 |
#: includes/template-selector.php:13
|
1615 |
msgid "Your Templates"
|
1616 |
-
msgstr "Vos
|
1617 |
|
1618 |
#: includes/template-selector.php:47 includes/template-selector.php:77
|
1619 |
msgctxt "Template name."
|
@@ -1625,87 +2186,88 @@ msgid ""
|
|
1625 |
"You haven't saved any templates yet! To do so, create a layout and save it "
|
1626 |
"as a template under <strong>Tools → Save Template</strong>."
|
1627 |
msgstr ""
|
1628 |
-
"Vous n'avez pas
|
1629 |
-
"
|
1630 |
-
"
|
1631 |
|
1632 |
-
#: includes/template-
|
1633 |
-
|
1634 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1635 |
|
1636 |
#: includes/ui.php:7
|
1637 |
#, php-format
|
1638 |
msgid "Template: %s"
|
1639 |
-
msgstr "
|
1640 |
|
1641 |
#: includes/ui.php:23
|
1642 |
msgid "Page Builder Demo"
|
1643 |
-
msgstr "Démo du
|
1644 |
|
1645 |
-
#: includes/ui.php:
|
1646 |
msgid "Buy Now!"
|
1647 |
-
msgstr "
|
1648 |
|
1649 |
-
#: includes/ui.php:
|
1650 |
msgid "Upgrade!"
|
1651 |
-
msgstr "
|
1652 |
-
|
1653 |
-
#: includes/ui.php:41
|
1654 |
-
msgid "Done"
|
1655 |
-
msgstr "Terminé"
|
1656 |
|
1657 |
-
#: includes/ui.php:
|
1658 |
msgid "Tools"
|
1659 |
msgstr "Outils"
|
1660 |
|
1661 |
-
#: includes/ui.php:
|
1662 |
-
msgid "Add Content"
|
1663 |
-
msgstr "Ajouter du contenu"
|
1664 |
-
|
1665 |
-
#: includes/ui.php:64
|
1666 |
msgid "Row Layouts"
|
1667 |
-
msgstr "
|
1668 |
|
1669 |
-
#: includes/ui.php:
|
1670 |
msgid "1 Column"
|
1671 |
msgstr "1 colonne"
|
1672 |
|
1673 |
-
#: includes/ui.php:
|
1674 |
msgid "2 Columns"
|
1675 |
msgstr "2 colonnes"
|
1676 |
|
1677 |
-
#: includes/ui.php:
|
1678 |
msgid "3 Columns"
|
1679 |
msgstr "3 colonnes"
|
1680 |
|
1681 |
-
#: includes/ui.php:
|
1682 |
msgid "4 Columns"
|
1683 |
msgstr "4 colonnes"
|
1684 |
|
1685 |
-
#: includes/ui.php:
|
1686 |
msgid "5 Columns"
|
1687 |
msgstr "5 colonnes"
|
1688 |
|
1689 |
-
#: includes/ui.php:
|
1690 |
msgid "6 Columns"
|
1691 |
msgstr "6 colonnes"
|
1692 |
|
1693 |
-
#: includes/ui.php:
|
1694 |
msgid "Left Sidebar"
|
1695 |
msgstr "Barre latérale de gauche"
|
1696 |
|
1697 |
-
#: includes/ui.php:
|
1698 |
msgid "Right Sidebar"
|
1699 |
msgstr "Barre latérale de droite"
|
1700 |
|
1701 |
-
#: includes/ui.php:
|
1702 |
msgid "Left & Right Sidebar"
|
1703 |
msgstr "Barre latérale de gauche et droite"
|
1704 |
|
1705 |
-
#: includes/ui.php:85 modules/widget/widget.php:16
|
1706 |
-
msgid "WordPress Widgets"
|
1707 |
-
msgstr "Widgets WordPress"
|
1708 |
-
|
1709 |
#: includes/updater/classes/class-fl-updater.php:107
|
1710 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
1711 |
msgstr "<strong>MISE À JOUR NON DISPONIBLE !</strong>"
|
@@ -1719,55 +2281,50 @@ msgstr ""
|
|
1719 |
#: includes/updater/classes/class-fl-updater.php:111
|
1720 |
#: includes/updater/includes/form.php:6
|
1721 |
msgid "Subscribe Now"
|
1722 |
-
msgstr "Abonnez
|
1723 |
|
1724 |
#: includes/updater/includes/form.php:5
|
1725 |
msgid ""
|
1726 |
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
1727 |
"enable automatic updates."
|
1728 |
msgstr ""
|
1729 |
-
"
|
1730 |
-
"
|
1731 |
|
1732 |
#: includes/updater/includes/form.php:11
|
1733 |
msgid "Updates & Support Subscription"
|
1734 |
-
msgstr "
|
1735 |
|
1736 |
#: includes/updater/includes/form.php:14
|
1737 |
msgid "Active!"
|
1738 |
-
msgstr "
|
1739 |
|
1740 |
#: includes/updater/includes/form.php:16
|
1741 |
msgid "Not Active!"
|
1742 |
-
msgstr "
|
1743 |
|
1744 |
#: includes/updater/includes/form.php:22
|
1745 |
msgid "Email address saved!"
|
1746 |
-
msgstr "Adresse
|
1747 |
|
1748 |
#: includes/updater/includes/form.php:27
|
1749 |
#, php-format
|
1750 |
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
1751 |
msgstr ""
|
1752 |
-
"Entrez votre <a%s>clé de licence</a>
|
1753 |
-
"automatique et le soutien."
|
1754 |
|
1755 |
#: includes/updater/includes/form.php:39
|
1756 |
msgid "Save Subscription Settings"
|
1757 |
-
msgstr "
|
1758 |
|
1759 |
#: includes/user-template-settings.php:8
|
1760 |
msgid ""
|
1761 |
"Save the current layout as a template that can be reused under "
|
1762 |
"<strong>Templates → Your Templates</strong>."
|
1763 |
msgstr ""
|
1764 |
-
"Enregistrer la
|
1765 |
-
"sous <strong>
|
1766 |
-
|
1767 |
-
#: includes/user-template-settings.php:15
|
1768 |
-
msgctxt "Template name."
|
1769 |
-
msgid "Name"
|
1770 |
-
msgstr "Nom"
|
1771 |
|
1772 |
#: modules/accordion/accordion.php:14
|
1773 |
msgid "Accordion"
|
@@ -1775,37 +2332,23 @@ msgstr "Accordéon"
|
|
1775 |
|
1776 |
#: modules/accordion/accordion.php:15
|
1777 |
msgid "Display a collapsible accordion of items."
|
1778 |
-
msgstr "
|
1779 |
-
|
1780 |
-
#: modules/accordion/accordion.php:16 modules/button/button.php:16
|
1781 |
-
#: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
|
1782 |
-
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
1783 |
-
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
1784 |
-
#: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
|
1785 |
-
#: modules/map/map.php:16 modules/post-grid/post-grid.php:16
|
1786 |
-
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
1787 |
-
#: modules/slideshow/slideshow.php:16
|
1788 |
-
#: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
|
1789 |
-
#: modules/testimonials/testimonials.php:16
|
1790 |
-
#: modules/woocommerce/woocommerce.php:18
|
1791 |
-
msgid "Advanced Modules"
|
1792 |
-
msgstr "Modules avancées"
|
1793 |
|
1794 |
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
1795 |
msgid "Items"
|
1796 |
-
msgstr "
|
1797 |
|
1798 |
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
1799 |
msgid "Item"
|
1800 |
-
msgstr "
|
1801 |
|
1802 |
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
1803 |
msgid "Border Color"
|
1804 |
-
msgstr "Couleur
|
1805 |
|
1806 |
#: modules/accordion/accordion.php:62
|
1807 |
msgid "Label Size"
|
1808 |
-
msgstr "
|
1809 |
|
1810 |
#: modules/accordion/accordion.php:65
|
1811 |
msgctxt "Label size."
|
@@ -1815,7 +2358,7 @@ msgstr "Petite"
|
|
1815 |
#: modules/accordion/accordion.php:66
|
1816 |
msgctxt "Label size."
|
1817 |
msgid "Medium"
|
1818 |
-
msgstr "Moyen"
|
1819 |
|
1820 |
#: modules/accordion/accordion.php:67
|
1821 |
msgctxt "Label size."
|
@@ -1824,7 +2367,7 @@ msgstr "Grand"
|
|
1824 |
|
1825 |
#: modules/accordion/accordion.php:75
|
1826 |
msgid "Item Spacing"
|
1827 |
-
msgstr "Espacement de l'
|
1828 |
|
1829 |
#: modules/accordion/accordion.php:86
|
1830 |
msgid "Collapse Inactive"
|
@@ -1840,7 +2383,7 @@ msgstr ""
|
|
1840 |
|
1841 |
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
1842 |
msgid "Add Item"
|
1843 |
-
msgstr "Ajouter
|
1844 |
|
1845 |
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
1846 |
msgid "Label"
|
@@ -1852,303 +2395,326 @@ msgstr "Étiquette"
|
|
1852 |
msgid "Content"
|
1853 |
msgstr "Contenu"
|
1854 |
|
1855 |
-
#: modules/button/button.php:14 modules/callout/callout.php:
|
1856 |
-
#: modules/content-slider/content-slider.php:
|
1857 |
#: modules/pricing-table/pricing-table.php:129
|
1858 |
msgid "Button"
|
1859 |
msgstr "Bouton"
|
1860 |
|
1861 |
#: modules/button/button.php:15
|
1862 |
msgid "A simple call to action button."
|
1863 |
-
msgstr "Un simple bouton d'appel à l'action
|
1864 |
|
1865 |
-
#: modules/button/button.php:
|
1866 |
msgid "Click Here"
|
1867 |
msgstr "Cliquez ici"
|
1868 |
|
1869 |
-
#: modules/button/button.php:
|
1870 |
-
#: modules/callout/callout.php:
|
1871 |
-
#: modules/cta/cta.php:
|
1872 |
#: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
|
1873 |
#: modules/icon/icon.php:34
|
1874 |
msgid "Icon"
|
1875 |
msgstr "Icône"
|
1876 |
|
1877 |
-
#: modules/button/button.php:
|
1878 |
-
#: modules/callout/callout.php:
|
1879 |
-
#: modules/content-slider/content-slider.php:
|
1880 |
-
#: modules/content-slider/content-slider.php:
|
1881 |
-
#: modules/content-slider/content-slider.php:
|
1882 |
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
1883 |
#: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
|
1884 |
#: modules/slideshow/slideshow.php:343
|
1885 |
msgid "Link"
|
1886 |
msgstr "Lien"
|
1887 |
|
1888 |
-
#: modules/button/button.php:
|
1889 |
msgid "http://www.example.com"
|
1890 |
-
msgstr "http://www.exemple.com
|
1891 |
|
1892 |
-
#: modules/button/button.php:
|
1893 |
-
#: modules/content-slider/content-slider.php:
|
1894 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
1895 |
#: modules/photo/photo.php:478
|
1896 |
msgid "Link Target"
|
1897 |
msgstr "Cible du lien"
|
1898 |
|
1899 |
-
#: modules/button/button.php:
|
1900 |
-
#: modules/content-slider/content-slider.php:
|
1901 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
1902 |
#: modules/photo/photo.php:481
|
1903 |
msgid "Same Window"
|
1904 |
msgstr "Même fenêtre"
|
1905 |
|
1906 |
-
#: modules/button/button.php:
|
1907 |
-
#: modules/content-slider/content-slider.php:
|
1908 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
1909 |
#: modules/photo/photo.php:482
|
1910 |
msgid "New Window"
|
1911 |
msgstr "Nouvelle fenêtre"
|
1912 |
|
1913 |
-
#: modules/button/button.php:
|
1914 |
#: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
|
1915 |
#: modules/icon/icon.php:78
|
1916 |
msgid "Colors"
|
1917 |
msgstr "Couleurs"
|
1918 |
|
1919 |
-
#: modules/button/button.php:
|
1920 |
-
#: modules/callout/callout.php:
|
1921 |
-
#: modules/content-slider/content-slider.php:
|
1922 |
#: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
|
1923 |
msgid "Background Hover Color"
|
1924 |
-
msgstr "Couleur
|
1925 |
|
1926 |
-
#: modules/button/button.php:
|
1927 |
-
#: modules/content-slider/content-slider.php:
|
1928 |
-
#: modules/content-slider/content-slider.php:
|
1929 |
-
#: modules/content-slider/content-slider.php:
|
1930 |
-
#: modules/cta/cta.php:
|
1931 |
msgid "Text Color"
|
1932 |
msgstr "Couleur du texte"
|
1933 |
|
1934 |
-
#: modules/button/button.php:
|
1935 |
-
#: modules/content-slider/content-slider.php:
|
1936 |
msgid "Text Hover Color"
|
1937 |
-
msgstr "Couleur
|
|
|
|
|
|
|
|
|
|
|
1938 |
|
1939 |
-
#: modules/button/button.php:
|
1940 |
-
#: modules/callout/callout.php:
|
1941 |
-
#: modules/content-slider/content-slider.php:
|
1942 |
#: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
|
1943 |
msgid "Gradient"
|
1944 |
-
msgstr "Dégradé de
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1945 |
|
1946 |
-
#: modules/button/button.php:
|
1947 |
-
#: modules/cta/cta.php:
|
1948 |
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
1949 |
msgid "Structure"
|
1950 |
msgstr "Structure"
|
1951 |
|
1952 |
-
#: modules/button/button.php:
|
1953 |
msgctxt "Width."
|
1954 |
msgid "Auto"
|
1955 |
-
msgstr "
|
1956 |
|
1957 |
-
#: modules/button/button.php:
|
1958 |
msgid "Custom Width"
|
1959 |
-
msgstr "Largeur
|
1960 |
|
1961 |
-
#: modules/button/button.php:
|
1962 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
1963 |
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
1964 |
#: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
|
1965 |
msgid "Alignment"
|
1966 |
msgstr "Alignement"
|
1967 |
|
1968 |
-
#: modules/button/button.php:
|
1969 |
-
#: modules/content-slider/content-slider.php:
|
1970 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
1971 |
msgid "Font Size"
|
1972 |
-
msgstr "
|
1973 |
|
1974 |
-
#: modules/button/button.php:
|
1975 |
-
#: modules/cta/cta.php:
|
1976 |
msgid "Round Corners"
|
1977 |
-
msgstr "Coins
|
1978 |
|
1979 |
#: modules/callout/callout.php:14
|
1980 |
msgid "Callout"
|
1981 |
-
msgstr "
|
1982 |
|
1983 |
#: modules/callout/callout.php:15
|
1984 |
msgid "A heading and snippet of text with an optional link, icon and image."
|
1985 |
-
msgstr "Un titre et extrait de texte avec l'option
|
1986 |
|
1987 |
-
#: modules/callout/callout.php:
|
1988 |
-
#: modules/content-slider/content-slider.php:
|
1989 |
-
#: modules/content-slider/content-slider.php:
|
1990 |
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
1991 |
#: modules/testimonials/testimonials.php:56
|
1992 |
#: modules/testimonials/testimonials.php:61
|
1993 |
msgid "Heading"
|
1994 |
-
msgstr "
|
1995 |
|
1996 |
-
#: modules/callout/callout.php:
|
1997 |
msgid "Overall Alignment"
|
1998 |
msgstr "Alignement général"
|
1999 |
|
2000 |
-
#: modules/callout/callout.php:
|
2001 |
msgid "The alignment that will apply to all elements within the callout."
|
2002 |
msgstr "L'alignement qui s'appliquera à tous les éléments dans la légende."
|
2003 |
|
2004 |
-
#: modules/callout/callout.php:
|
2005 |
msgid "Heading Structure"
|
2006 |
msgstr "Structure du titre"
|
2007 |
|
2008 |
-
#: modules/callout/callout.php:
|
2009 |
-
#: modules/content-slider/content-slider.php:
|
2010 |
msgid "Heading Tag"
|
2011 |
msgstr "Balise titre"
|
2012 |
|
2013 |
-
#: modules/callout/callout.php:
|
2014 |
-
#: modules/content-slider/content-slider.php:
|
2015 |
-
#: modules/content-slider/content-slider.php:
|
2016 |
#: modules/testimonials/testimonials.php:69
|
2017 |
msgid "Heading Size"
|
2018 |
-
msgstr "
|
2019 |
|
2020 |
-
#: modules/callout/callout.php:
|
2021 |
msgid "Heading Custom Size"
|
2022 |
-
msgstr "
|
2023 |
-
|
2024 |
-
#: modules/callout/callout.php:303 modules/post-grid/post-grid.php:113
|
2025 |
-
msgid "Image"
|
2026 |
-
msgstr "Image"
|
2027 |
|
2028 |
-
#: modules/callout/callout.php:
|
2029 |
msgid "Image Type"
|
2030 |
msgstr "Type d'image"
|
2031 |
|
2032 |
-
#: modules/callout/callout.php:
|
2033 |
msgctxt "Image type."
|
2034 |
msgid "None"
|
2035 |
-
msgstr "
|
2036 |
|
2037 |
-
#: modules/callout/callout.php:
|
2038 |
#: modules/slideshow/slideshow.php:312
|
2039 |
msgid "Crop"
|
2040 |
msgstr "Recâdrage"
|
2041 |
|
2042 |
-
#: modules/callout/callout.php:
|
2043 |
msgctxt "Crop"
|
2044 |
msgid "None"
|
2045 |
-
msgstr "
|
2046 |
|
2047 |
-
#: modules/callout/callout.php:
|
2048 |
msgid "Landscape"
|
2049 |
msgstr "Paysage"
|
2050 |
|
2051 |
-
#: modules/callout/callout.php:
|
2052 |
msgid "Panorama"
|
2053 |
msgstr "Panorama"
|
2054 |
|
2055 |
-
#: modules/callout/callout.php:
|
2056 |
msgid "Portrait"
|
2057 |
msgstr "Portrait"
|
2058 |
|
2059 |
-
#: modules/callout/callout.php:
|
2060 |
msgid "Square"
|
2061 |
msgstr "Carré"
|
2062 |
|
2063 |
-
#: modules/callout/callout.php:
|
2064 |
msgid "Circle"
|
2065 |
msgstr "Cercle"
|
2066 |
|
2067 |
-
#: modules/callout/callout.php:
|
2068 |
msgid "Above Heading"
|
2069 |
-
msgstr "
|
2070 |
|
2071 |
-
#: modules/callout/callout.php:
|
2072 |
msgid "Below Heading"
|
2073 |
-
msgstr "
|
2074 |
|
2075 |
-
#: modules/callout/callout.php:
|
2076 |
msgid "Left of Text and Heading"
|
2077 |
-
msgstr "
|
2078 |
|
2079 |
-
#: modules/callout/callout.php:
|
2080 |
msgid "Right of Text and Heading"
|
2081 |
-
msgstr "
|
2082 |
|
2083 |
-
#: modules/callout/callout.php:
|
2084 |
msgid "Left of Heading"
|
2085 |
-
msgstr "
|
2086 |
|
2087 |
-
#: modules/callout/callout.php:
|
2088 |
msgid "Right of Heading"
|
2089 |
-
msgstr "
|
2090 |
|
2091 |
-
#: modules/callout/callout.php:
|
2092 |
msgid "Icon Colors"
|
2093 |
msgstr "Couleurs de l'icône"
|
2094 |
|
2095 |
-
#: modules/callout/callout.php:
|
2096 |
#: modules/icon/icon.php:87
|
2097 |
msgid "Hover Color"
|
2098 |
msgstr "Couleur lors du survol"
|
2099 |
|
2100 |
-
#: modules/callout/callout.php:
|
2101 |
msgid "Icon Structure"
|
2102 |
msgstr "Structure de l'icône"
|
2103 |
|
2104 |
-
#: modules/callout/callout.php:
|
2105 |
#: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
|
2106 |
msgid "Size"
|
2107 |
-
msgstr "
|
2108 |
|
2109 |
-
#: modules/callout/callout.php:
|
2110 |
-
#: modules/content-slider/content-slider.php:
|
2111 |
msgid "Call To Action"
|
2112 |
msgstr "Appel à l'action"
|
2113 |
|
2114 |
-
#: modules/callout/callout.php:
|
2115 |
msgid ""
|
2116 |
"The link applies to the entire module. If choosing a call to action type "
|
2117 |
"below, this link will also be used for the text or button."
|
2118 |
msgstr ""
|
2119 |
-
"Le lien s'applique à
|
2120 |
"d'appel à l'action ci-dessous, ce lien servira également pour le texte ou le "
|
2121 |
"bouton."
|
2122 |
|
2123 |
-
#: modules/callout/callout.php:
|
2124 |
-
#: modules/content-slider/content-slider.php:
|
2125 |
msgid "Call to Action"
|
2126 |
msgstr "Appel à l'action"
|
2127 |
|
2128 |
-
#: modules/callout/callout.php:
|
2129 |
-
#: modules/content-slider/content-slider.php:
|
2130 |
msgctxt "Call to action."
|
2131 |
msgid "None"
|
2132 |
-
msgstr "
|
2133 |
|
2134 |
-
#: modules/callout/callout.php:
|
2135 |
-
#: modules/content-slider/content-slider.php:
|
2136 |
msgid "Button Icon"
|
2137 |
msgstr "Icône du bouton"
|
2138 |
|
2139 |
-
#: modules/callout/callout.php:
|
2140 |
-
#: modules/content-slider/content-slider.php:
|
2141 |
msgid "Button Colors"
|
2142 |
msgstr "Couleurs du bouton"
|
2143 |
|
2144 |
-
#: modules/callout/callout.php:
|
2145 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
|
|
|
|
|
|
2146 |
msgid "Button Structure"
|
2147 |
msgstr "Structure du bouton"
|
2148 |
|
2149 |
-
#: modules/callout/callout.php:
|
2150 |
msgid "Button Width"
|
2151 |
-
msgstr "
|
2152 |
|
2153 |
#: modules/contact-form/contact-form.php:14
|
2154 |
msgid "Contact Form"
|
@@ -2172,7 +2738,7 @@ msgstr "exemple@courriel.com"
|
|
2172 |
|
2173 |
#: modules/contact-form/contact-form.php:67
|
2174 |
msgid "The contact form will send to this e-mail"
|
2175 |
-
msgstr "Le formulaire de contact enverra à
|
2176 |
|
2177 |
#: modules/contact-form/includes/frontend.php:4
|
2178 |
msgctxt "Contact form field label."
|
@@ -2181,7 +2747,7 @@ msgstr "Nom"
|
|
2181 |
|
2182 |
#: modules/contact-form/includes/frontend.php:5
|
2183 |
msgid "Please enter your name."
|
2184 |
-
msgstr "
|
2185 |
|
2186 |
#: modules/contact-form/includes/frontend.php:6
|
2187 |
msgid "Your name"
|
@@ -2193,7 +2759,7 @@ msgstr "Courriel"
|
|
2193 |
|
2194 |
#: modules/contact-form/includes/frontend.php:11
|
2195 |
msgid "Please enter a valid email."
|
2196 |
-
msgstr "
|
2197 |
|
2198 |
#: modules/contact-form/includes/frontend.php:12
|
2199 |
msgid "Your email"
|
@@ -2205,7 +2771,7 @@ msgstr "Votre message"
|
|
2205 |
|
2206 |
#: modules/contact-form/includes/frontend.php:17
|
2207 |
msgid "Please enter a message."
|
2208 |
-
msgstr "
|
2209 |
|
2210 |
#: modules/contact-form/includes/frontend.php:18
|
2211 |
msgid "Your message"
|
@@ -2217,27 +2783,27 @@ msgstr "Envoyer"
|
|
2217 |
|
2218 |
#: modules/contact-form/includes/frontend.php:24
|
2219 |
msgid "Message Sent!"
|
2220 |
-
msgstr "Message
|
2221 |
|
2222 |
#: modules/contact-form/includes/frontend.php:25
|
2223 |
msgid "Message failed. Please try again."
|
2224 |
-
msgstr "L'envoi du message a échouée. Merci
|
2225 |
|
2226 |
#: modules/content-slider/content-slider.php:14
|
2227 |
msgid "Content Slider"
|
2228 |
-
msgstr "Diaporama
|
2229 |
|
2230 |
#: modules/content-slider/content-slider.php:15
|
2231 |
msgid "Displays multiple slides with an optional heading and call to action."
|
2232 |
msgstr ""
|
2233 |
"Affiche plusieurs diapositives avec un titre facultatif et appel à l'action."
|
2234 |
|
2235 |
-
#: modules/content-slider/content-slider.php:
|
2236 |
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2237 |
msgid "Height"
|
2238 |
msgstr "Hauteur"
|
2239 |
|
2240 |
-
#: modules/content-slider/content-slider.php:
|
2241 |
msgid ""
|
2242 |
"This setting is the minimum height of the content slider. Content will "
|
2243 |
"expand the height automatically."
|
@@ -2245,57 +2811,57 @@ msgstr ""
|
|
2245 |
"Ce réglage est la hauteur minimale du diaporama de contenu. Le contenu "
|
2246 |
"s'étendra automatiquement à la hauteur maximale."
|
2247 |
|
2248 |
-
#: modules/content-slider/content-slider.php:
|
2249 |
#: modules/slideshow/slideshow.php:373
|
2250 |
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
2251 |
msgid "Auto Play"
|
2252 |
msgstr "Lecture automatique"
|
2253 |
|
2254 |
-
#: modules/content-slider/content-slider.php:
|
2255 |
msgid "Show Play/Pause"
|
2256 |
msgstr "Afficher Lecture / Pause"
|
2257 |
|
2258 |
-
#: modules/content-slider/content-slider.php:
|
2259 |
#: modules/testimonials/testimonials.php:102
|
2260 |
msgctxt "Transition type."
|
2261 |
msgid "Slide"
|
2262 |
-
msgstr "
|
2263 |
|
2264 |
-
#: modules/content-slider/content-slider.php:
|
2265 |
#: modules/testimonials/testimonials.php:121
|
2266 |
msgid "Show Arrows"
|
2267 |
msgstr "Afficher les flèches"
|
2268 |
|
2269 |
-
#: modules/content-slider/content-slider.php:
|
2270 |
#: modules/testimonials/testimonials.php:151
|
2271 |
msgid "Show Dots"
|
2272 |
msgstr "Afficher les points"
|
2273 |
|
2274 |
-
#: modules/content-slider/content-slider.php:
|
2275 |
msgid "Max Content Width"
|
2276 |
msgstr "Largeur maximale du contenu"
|
2277 |
|
2278 |
-
#: modules/content-slider/content-slider.php:
|
2279 |
msgid "The max width that the content area will be within your slides."
|
2280 |
msgstr "La largeur maximale de la zone de contenu dans vos diapositives."
|
2281 |
|
2282 |
-
#: modules/content-slider/content-slider.php:
|
2283 |
msgid "Slides"
|
2284 |
msgstr "Diapositives"
|
2285 |
|
2286 |
-
#: modules/content-slider/content-slider.php:
|
2287 |
msgid "Slide"
|
2288 |
msgstr "Diapositive"
|
2289 |
|
2290 |
-
#: modules/content-slider/content-slider.php:
|
2291 |
msgid "Slide Settings"
|
2292 |
-
msgstr "
|
2293 |
|
2294 |
-
#: modules/content-slider/content-slider.php:
|
2295 |
msgid "Slide Label"
|
2296 |
msgstr "Étiquette de la diapositive"
|
2297 |
|
2298 |
-
#: modules/content-slider/content-slider.php:
|
2299 |
msgid ""
|
2300 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
2301 |
"settings."
|
@@ -2303,106 +2869,106 @@ msgstr ""
|
|
2303 |
"Une étiquette pour identifier cette diapositive sous l'onglet diapositives "
|
2304 |
"des réglages du diaporama de contenu."
|
2305 |
|
2306 |
-
#: modules/content-slider/content-slider.php:
|
2307 |
msgid "Background Layout"
|
2308 |
-
msgstr "
|
2309 |
|
2310 |
-
#: modules/content-slider/content-slider.php:
|
2311 |
msgid "This setting is for the entire background of your slide."
|
2312 |
msgstr "Ce réglage est pour l'arrière-plan complet de votre diapositive."
|
2313 |
|
2314 |
-
#: modules/content-slider/content-slider.php:
|
2315 |
msgid "Background Video Code"
|
2316 |
-
msgstr "Code
|
2317 |
|
2318 |
-
#: modules/content-slider/content-slider.php:
|
2319 |
msgid "Content Layout"
|
2320 |
-
msgstr "
|
2321 |
|
2322 |
-
#: modules/content-slider/content-slider.php:
|
2323 |
msgid ""
|
2324 |
"This allows you to add content over or in addition to the background "
|
2325 |
"selection above. The location of the content layout can be selected in the "
|
2326 |
"style tab."
|
2327 |
msgstr ""
|
2328 |
-
"Ceci permet d'ajouter au contenu en cours, ou en plus du choix de
|
2329 |
-
"dessus. L'emplacement de la
|
2330 |
-
"dans l'onglet style."
|
2331 |
|
2332 |
-
#: modules/content-slider/content-slider.php:
|
2333 |
msgid "Text & Photo"
|
2334 |
-
msgstr "Texte
|
2335 |
|
2336 |
-
#: modules/content-slider/content-slider.php:
|
2337 |
msgid "Text & Video"
|
2338 |
-
msgstr "Texte
|
2339 |
|
2340 |
-
#: modules/content-slider/content-slider.php:
|
2341 |
msgctxt "Content type."
|
2342 |
msgid "None"
|
2343 |
-
msgstr "
|
2344 |
|
2345 |
-
#: modules/content-slider/content-slider.php:
|
2346 |
msgid "Video Embed Code"
|
2347 |
-
msgstr "Code d'
|
2348 |
|
2349 |
-
#: modules/content-slider/content-slider.php:
|
2350 |
msgid "Text Position"
|
2351 |
msgstr "Position du texte"
|
2352 |
|
2353 |
-
#: modules/content-slider/content-slider.php:
|
2354 |
msgid ""
|
2355 |
"The position will move the content layout selections left, right or center "
|
2356 |
"over the background of the slide."
|
2357 |
msgstr ""
|
2358 |
-
"La position déplacera les sélections de
|
2359 |
-
"centrée sur l'arrière-plan de la diapositive."
|
2360 |
|
2361 |
-
#: modules/content-slider/content-slider.php:
|
2362 |
msgid "Top Margin"
|
2363 |
-
msgstr "
|
2364 |
|
2365 |
-
#: modules/content-slider/content-slider.php:
|
2366 |
msgid "Bottom Margin"
|
2367 |
msgstr "Marge du bas"
|
2368 |
|
2369 |
-
#: modules/content-slider/content-slider.php:
|
2370 |
msgid "Left Margin"
|
2371 |
-
msgstr "Marge
|
2372 |
|
2373 |
-
#: modules/content-slider/content-slider.php:
|
2374 |
msgid "Right Margin"
|
2375 |
msgstr "Marge de droite"
|
2376 |
|
2377 |
-
#: modules/content-slider/content-slider.php:
|
2378 |
msgid "Text Colors"
|
2379 |
-
msgstr "Couleurs
|
2380 |
|
2381 |
-
#: modules/content-slider/content-slider.php:
|
2382 |
msgid "Text Shadow"
|
2383 |
msgstr "Ombre du texte"
|
2384 |
|
2385 |
-
#: modules/content-slider/content-slider.php:
|
2386 |
-
#: modules/content-slider/content-slider.php:
|
2387 |
msgid "Text Background Color"
|
2388 |
msgstr "Couleur d'arrière-plan du texte"
|
2389 |
|
2390 |
-
#: modules/content-slider/content-slider.php:
|
2391 |
msgid ""
|
2392 |
"The color applies to the overlay behind text over the background selections."
|
2393 |
msgstr ""
|
2394 |
"La couleur s'applique à la superposition derrière le texte sur les "
|
2395 |
-
"sélections
|
2396 |
|
2397 |
-
#: modules/content-slider/content-slider.php:
|
2398 |
msgid "Text Background Opacity"
|
2399 |
-
msgstr "Opacité de
|
2400 |
|
2401 |
-
#: modules/content-slider/content-slider.php:
|
2402 |
msgid "Text Background Height"
|
2403 |
-
msgstr "Hauteur de
|
2404 |
|
2405 |
-
#: modules/content-slider/content-slider.php:
|
2406 |
msgid ""
|
2407 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
2408 |
"will fit the overlay to the top and bottom of the slide."
|
@@ -2411,12 +2977,12 @@ msgstr ""
|
|
2411 |
"contenu de texte. Un réglage à 100 % adaptera la superposition au haut et au "
|
2412 |
"bas de la diapositive."
|
2413 |
|
2414 |
-
#: modules/content-slider/content-slider.php:
|
2415 |
msgctxt "Background height."
|
2416 |
msgid "Auto"
|
2417 |
-
msgstr "
|
2418 |
|
2419 |
-
#: modules/content-slider/content-slider.php:
|
2420 |
msgid ""
|
2421 |
"The link applies to the entire slide. If choosing a call to action type "
|
2422 |
"below, this link will also be used for the text or button."
|
@@ -2425,20 +2991,20 @@ msgstr ""
|
|
2425 |
"appel à l'action ci-dessous, ce lien servira également pour le texte ou le "
|
2426 |
"bouton."
|
2427 |
|
2428 |
-
#: modules/content-slider/content-slider.php:
|
2429 |
msgid "Border Radius"
|
2430 |
msgstr "Coins arrondis de la bordure"
|
2431 |
|
2432 |
-
#: modules/content-slider/content-slider.php:
|
2433 |
msgctxt "Module settings form tab. Display on mobile devices."
|
2434 |
msgid "Mobile"
|
2435 |
msgstr "Portable"
|
2436 |
|
2437 |
-
#: modules/content-slider/content-slider.php:
|
2438 |
msgid "Mobile Photo"
|
2439 |
msgstr "Photo à partir du portable"
|
2440 |
|
2441 |
-
#: modules/content-slider/content-slider.php:
|
2442 |
msgid ""
|
2443 |
"You can choose a different photo that the slide will change to on mobile "
|
2444 |
"devices or no photo if desired."
|
@@ -2446,19 +3012,19 @@ msgstr ""
|
|
2446 |
"Vous pouvez choisir une photo différente pour la diapositive sur différents "
|
2447 |
"appareils mobiles, ou pas de photo si vous le souhaitez."
|
2448 |
|
2449 |
-
#: modules/content-slider/content-slider.php:
|
2450 |
msgid "Use Main Photo"
|
2451 |
msgstr "Utiliser la Photo principale"
|
2452 |
|
2453 |
-
#: modules/content-slider/content-slider.php:
|
2454 |
msgid "Choose Another Photo"
|
2455 |
-
msgstr "Sélectionner une autre
|
2456 |
|
2457 |
-
#: modules/content-slider/content-slider.php:
|
2458 |
msgid "No Photo"
|
2459 |
-
msgstr "
|
2460 |
|
2461 |
-
#: modules/content-slider/content-slider.php:
|
2462 |
msgid "Mobile Text Colors"
|
2463 |
msgstr "Couleurs de texte pour mobile"
|
2464 |
|
@@ -2466,38 +3032,34 @@ msgstr "Couleurs de texte pour mobile"
|
|
2466 |
msgid "Display a heading, subheading and a button."
|
2467 |
msgstr "Afficher un titre, sous-titre et un bouton."
|
2468 |
|
2469 |
-
#: modules/cta/cta.php:
|
2470 |
msgid "Ready to find out more?"
|
2471 |
-
msgstr "Prêt à en
|
2472 |
|
2473 |
-
#: modules/cta/cta.php:
|
2474 |
msgid "Drop us a line today for a free quote!"
|
2475 |
msgstr "Écrivez-nous aujourd'hui pour un devis gratuit !"
|
2476 |
|
2477 |
-
#: modules/cta/cta.php:
|
2478 |
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
2479 |
#: modules/testimonials/testimonials.php:37
|
2480 |
#: modules/woocommerce/woocommerce.php:57
|
2481 |
msgid "Layout"
|
2482 |
-
msgstr "
|
2483 |
|
2484 |
-
#: modules/cta/cta.php:
|
2485 |
msgid "Inline"
|
2486 |
msgstr "En ligne"
|
2487 |
|
2488 |
-
#: modules/cta/cta.php:
|
2489 |
msgid "Stacked"
|
2490 |
msgstr "Empilé"
|
2491 |
|
2492 |
-
#: modules/cta/cta.php:
|
2493 |
msgid "Spacing"
|
2494 |
msgstr "Espacement"
|
2495 |
|
2496 |
-
#: modules/cta/cta.php:
|
2497 |
-
msgid "Background Opacity"
|
2498 |
-
msgstr "Opacité de l'arrière-plan"
|
2499 |
-
|
2500 |
-
#: modules/cta/cta.php:234
|
2501 |
msgid "Button Link"
|
2502 |
msgstr "Lien du bouton"
|
2503 |
|
@@ -2507,7 +3069,7 @@ msgstr "Galerie"
|
|
2507 |
|
2508 |
#: modules/gallery/gallery.php:15
|
2509 |
msgid "Display multiple photos in a gallery view."
|
2510 |
-
msgstr "Afficher plusieurs photos dans un affichage
|
2511 |
|
2512 |
#: modules/gallery/gallery.php:223
|
2513 |
msgid "Collage"
|
@@ -2520,7 +3082,7 @@ msgstr "Miniatures"
|
|
2520 |
|
2521 |
#: modules/gallery/gallery.php:260
|
2522 |
msgid "Photo Size"
|
2523 |
-
msgstr "
|
2524 |
|
2525 |
#: modules/gallery/gallery.php:263
|
2526 |
msgctxt "Photo size."
|
@@ -2530,20 +3092,20 @@ msgstr "Petite"
|
|
2530 |
#: modules/gallery/gallery.php:264
|
2531 |
msgctxt "Photo size."
|
2532 |
msgid "Medium"
|
2533 |
-
msgstr "
|
2534 |
|
2535 |
#: modules/gallery/gallery.php:265
|
2536 |
msgctxt "Photo size."
|
2537 |
msgid "Large"
|
2538 |
-
msgstr "
|
2539 |
|
2540 |
#: modules/gallery/gallery.php:270
|
2541 |
msgid "Photo Spacing"
|
2542 |
-
msgstr "Espacement de photo"
|
2543 |
|
2544 |
#: modules/gallery/gallery.php:278
|
2545 |
msgid "Show Captions"
|
2546 |
-
msgstr "
|
2547 |
|
2548 |
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
2549 |
msgid "Never"
|
@@ -2558,7 +3120,6 @@ msgid "Below Photo"
|
|
2558 |
msgstr "Sous la photo"
|
2559 |
|
2560 |
#: modules/gallery/gallery.php:285
|
2561 |
-
#, fuzzy
|
2562 |
msgid ""
|
2563 |
"The caption pulls from whatever text you put in the caption area in the "
|
2564 |
"media manager for each image. The caption is also pulled directly from "
|
@@ -2587,21 +3148,15 @@ msgstr "Lien photo"
|
|
2587 |
|
2588 |
#: modules/heading/heading.php:15
|
2589 |
msgid "Display a title/page heading."
|
2590 |
-
msgstr "
|
2591 |
-
|
2592 |
-
#: modules/heading/heading.php:16 modules/photo/photo.php:27
|
2593 |
-
#: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
|
2594 |
-
#: modules/video/video.php:21
|
2595 |
-
msgid "Basic Modules"
|
2596 |
-
msgstr "Modules de base"
|
2597 |
|
2598 |
#: modules/heading/heading.php:101
|
2599 |
msgid "HTML Tag"
|
2600 |
-
msgstr "
|
2601 |
|
2602 |
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
2603 |
msgid "Custom Font Size"
|
2604 |
-
msgstr "
|
2605 |
|
2606 |
#: modules/heading/heading.php:137
|
2607 |
msgid "Mobile Structure"
|
@@ -2609,7 +3164,7 @@ msgstr "Structure pour mobile"
|
|
2609 |
|
2610 |
#: modules/heading/heading.php:158
|
2611 |
msgid "Custom Alignment"
|
2612 |
-
msgstr "Alignement
|
2613 |
|
2614 |
#: modules/html/html.php:14
|
2615 |
msgid "HTML"
|
@@ -2617,27 +3172,23 @@ msgstr "HTML"
|
|
2617 |
|
2618 |
#: modules/html/html.php:15
|
2619 |
msgid "Display raw HTML code."
|
2620 |
-
msgstr "
|
2621 |
|
2622 |
#: modules/icon-group/icon-group.php:14
|
2623 |
msgid "Icon Group"
|
2624 |
-
msgstr "
|
2625 |
|
2626 |
#: modules/icon-group/icon-group.php:15
|
2627 |
msgid "Display a group of linked Font Awesome icons."
|
2628 |
-
msgstr "
|
2629 |
-
|
2630 |
-
#: modules/icon-group/icon-group.php:27
|
2631 |
-
msgid "Icons"
|
2632 |
-
msgstr "Icônes"
|
2633 |
|
2634 |
#: modules/icon-group/icon-group.php:125
|
2635 |
msgid "Add Icon"
|
2636 |
-
msgstr "Ajouter
|
2637 |
|
2638 |
#: modules/icon/icon.php:15
|
2639 |
msgid "Display an icon and optional title."
|
2640 |
-
msgstr "
|
2641 |
|
2642 |
#: modules/map/map.php:14
|
2643 |
msgid "Map"
|
@@ -2645,7 +3196,7 @@ msgstr "Carte"
|
|
2645 |
|
2646 |
#: modules/map/map.php:15
|
2647 |
msgid "Display a Google map."
|
2648 |
-
msgstr "
|
2649 |
|
2650 |
#: modules/map/map.php:33
|
2651 |
msgid "Address"
|
@@ -2653,23 +3204,23 @@ msgstr "Adresse"
|
|
2653 |
|
2654 |
#: modules/map/map.php:34
|
2655 |
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
2656 |
-
msgstr "1865 Winchester
|
2657 |
|
2658 |
#: modules/photo/photo.php:26
|
2659 |
msgid "Upload a photo or display one from the media library."
|
2660 |
-
msgstr "Téléchargez une photo ou en
|
2661 |
|
2662 |
#: modules/photo/photo.php:375
|
2663 |
msgid "Photo Source"
|
2664 |
-
msgstr "
|
2665 |
|
2666 |
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
2667 |
msgid "URL"
|
2668 |
-
msgstr "Lien
|
2669 |
|
2670 |
#: modules/photo/photo.php:396
|
2671 |
msgid "Photo URL"
|
2672 |
-
msgstr "Lien
|
2673 |
|
2674 |
#: modules/photo/photo.php:397
|
2675 |
msgid "http://www.example.com/my-photo.jpg"
|
@@ -2678,15 +3229,15 @@ msgstr "http://www.exemple.com/ma-photo.jpg"
|
|
2678 |
#: modules/photo/photo.php:404
|
2679 |
msgctxt "Crop."
|
2680 |
msgid "None"
|
2681 |
-
msgstr "
|
2682 |
|
2683 |
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
2684 |
msgid "Caption"
|
2685 |
-
msgstr "
|
2686 |
|
2687 |
#: modules/photo/photo.php:429
|
2688 |
msgid "Show Caption"
|
2689 |
-
msgstr "
|
2690 |
|
2691 |
#: modules/photo/photo.php:448
|
2692 |
msgid "Link Type"
|
@@ -2695,7 +3246,7 @@ msgstr "Type de lien"
|
|
2695 |
#: modules/photo/photo.php:450
|
2696 |
msgctxt "Link type."
|
2697 |
msgid "None"
|
2698 |
-
msgstr "
|
2699 |
|
2700 |
#: modules/photo/photo.php:453
|
2701 |
msgid "Photo File"
|
@@ -2712,11 +3263,11 @@ msgstr ""
|
|
2712 |
|
2713 |
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
2714 |
msgid "Link URL"
|
2715 |
-
msgstr "
|
2716 |
|
2717 |
#: modules/post-grid/includes/frontend.php:41
|
2718 |
msgid "No posts found."
|
2719 |
-
msgstr "
|
2720 |
|
2721 |
#: modules/post-grid/includes/post-feed.php:14
|
2722 |
#: modules/post-grid/includes/post-grid.php:24
|
@@ -2731,11 +3282,11 @@ msgstr "Articles"
|
|
2731 |
|
2732 |
#: modules/post-grid/post-grid.php:15
|
2733 |
msgid "Display a grid of your WordPress posts."
|
2734 |
-
msgstr "
|
2735 |
|
2736 |
#: modules/post-grid/post-grid.php:51
|
2737 |
msgid "Layout Style"
|
2738 |
-
msgstr "Style de
|
2739 |
|
2740 |
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
2741 |
msgid "Grid"
|
@@ -2764,7 +3315,7 @@ msgstr "Articles par page"
|
|
2764 |
|
2765 |
#: modules/post-grid/post-grid.php:92
|
2766 |
msgid "Post Width"
|
2767 |
-
msgstr "Largeur de l'
|
2768 |
|
2769 |
#: modules/post-grid/post-grid.php:100
|
2770 |
msgid "Post Spacing"
|
@@ -2772,13 +3323,13 @@ msgstr "Espacement de l'article"
|
|
2772 |
|
2773 |
#: modules/post-grid/post-grid.php:109
|
2774 |
msgid "Featured Image"
|
2775 |
-
msgstr "Image
|
2776 |
|
2777 |
#: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
|
2778 |
#: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
|
2779 |
#: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
|
2780 |
msgid "Show"
|
2781 |
-
msgstr "
|
2782 |
|
2783 |
#: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
|
2784 |
#: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
|
@@ -2788,11 +3339,11 @@ msgstr "Cacher"
|
|
2788 |
|
2789 |
#: modules/post-grid/post-grid.php:130
|
2790 |
msgid "Above Text"
|
2791 |
-
msgstr "Au
|
2792 |
|
2793 |
#: modules/post-grid/post-grid.php:131
|
2794 |
msgid "Beside Text"
|
2795 |
-
msgstr "
|
2796 |
|
2797 |
#: modules/post-grid/post-grid.php:142
|
2798 |
msgid "Post Info"
|
@@ -2800,7 +3351,7 @@ msgstr "Info de l'article"
|
|
2800 |
|
2801 |
#: modules/post-grid/post-grid.php:169
|
2802 |
msgid "Date Format"
|
2803 |
-
msgstr "Format de
|
2804 |
|
2805 |
#: modules/post-grid/post-grid.php:185
|
2806 |
msgid "Comments"
|
@@ -2808,37 +3359,35 @@ msgstr "Commentaires"
|
|
2808 |
|
2809 |
#: modules/post-grid/post-grid.php:213
|
2810 |
msgid "More Link"
|
2811 |
-
msgstr "
|
2812 |
|
2813 |
#: modules/post-grid/post-grid.php:227
|
2814 |
msgid "More Link Text"
|
2815 |
-
msgstr "
|
2816 |
|
2817 |
#: modules/post-grid/post-grid.php:228
|
2818 |
msgid "Read More"
|
2819 |
-
msgstr "Lire
|
2820 |
|
2821 |
#: modules/pricing-table/pricing-table.php:14
|
2822 |
msgid "Pricing Table"
|
2823 |
-
msgstr "Tableau
|
2824 |
|
2825 |
#: modules/pricing-table/pricing-table.php:15
|
2826 |
msgid "A simple pricing table generator."
|
2827 |
-
msgstr "Un
|
2828 |
|
2829 |
-
# Boîte?
|
2830 |
#: modules/pricing-table/pricing-table.php:26
|
2831 |
msgid "Pricing Boxes"
|
2832 |
msgstr "Boîtes de prix"
|
2833 |
|
2834 |
-
# Boîte?
|
2835 |
#: modules/pricing-table/pricing-table.php:33
|
2836 |
msgid "Pricing Box"
|
2837 |
msgstr "Boîte de prix"
|
2838 |
|
2839 |
#: modules/pricing-table/pricing-table.php:50
|
2840 |
msgid "Box Spacing"
|
2841 |
-
msgstr "Espacement
|
2842 |
|
2843 |
#: modules/pricing-table/pricing-table.php:53
|
2844 |
#: modules/testimonials/testimonials.php:40
|
@@ -2847,7 +3396,7 @@ msgstr "Large"
|
|
2847 |
|
2848 |
#: modules/pricing-table/pricing-table.php:54
|
2849 |
msgid "Tight"
|
2850 |
-
msgstr "
|
2851 |
|
2852 |
#: modules/pricing-table/pricing-table.php:59
|
2853 |
msgid "Features Min Height"
|
@@ -2858,13 +3407,9 @@ msgid ""
|
|
2858 |
"Use this to normalize the height of your boxes when they have different "
|
2859 |
"numbers of features."
|
2860 |
msgstr ""
|
2861 |
-
"Utiliser ceci afin de normaliser la hauteur de vos boîtes,
|
2862 |
"un nombre différent de caractéristiques."
|
2863 |
|
2864 |
-
#: modules/pricing-table/pricing-table.php:67
|
2865 |
-
msgid "Border Size"
|
2866 |
-
msgstr "Taille de la bordure"
|
2867 |
-
|
2868 |
#: modules/pricing-table/pricing-table.php:70
|
2869 |
msgctxt "Border size."
|
2870 |
msgid "Wide"
|
@@ -2873,7 +3418,7 @@ msgstr "Large"
|
|
2873 |
#: modules/pricing-table/pricing-table.php:71
|
2874 |
msgctxt "Border size."
|
2875 |
msgid "Tight"
|
2876 |
-
msgstr "
|
2877 |
|
2878 |
#: modules/pricing-table/pricing-table.php:84
|
2879 |
msgid "Add Pricing Box"
|
@@ -2881,7 +3426,7 @@ msgstr "Ajouter une boîte de prix"
|
|
2881 |
|
2882 |
#: modules/pricing-table/pricing-table.php:98
|
2883 |
msgid "Title Size"
|
2884 |
-
msgstr "
|
2885 |
|
2886 |
#: modules/pricing-table/pricing-table.php:107
|
2887 |
msgid "Price Box"
|
@@ -2897,11 +3442,11 @@ msgstr "Durée"
|
|
2897 |
|
2898 |
#: modules/pricing-table/pricing-table.php:116
|
2899 |
msgid "per Year"
|
2900 |
-
msgstr "par
|
2901 |
|
2902 |
#: modules/pricing-table/pricing-table.php:120
|
2903 |
msgid "Price Size"
|
2904 |
-
msgstr "
|
2905 |
|
2906 |
#: modules/pricing-table/pricing-table.php:133
|
2907 |
msgid "Button Text"
|
@@ -2909,7 +3454,7 @@ msgstr "Texte du bouton"
|
|
2909 |
|
2910 |
#: modules/pricing-table/pricing-table.php:137
|
2911 |
msgid "Button URL"
|
2912 |
-
msgstr "Lien
|
2913 |
|
2914 |
#: modules/pricing-table/pricing-table.php:142
|
2915 |
msgctxt "Price features displayed in pricing box."
|
@@ -2918,7 +3463,7 @@ msgstr "Caractéristiques"
|
|
2918 |
|
2919 |
#: modules/pricing-table/pricing-table.php:147
|
2920 |
msgid "One feature per line. HTML is okay."
|
2921 |
-
msgstr "Une caractéristique par ligne. HTML est
|
2922 |
|
2923 |
#: modules/pricing-table/pricing-table.php:162
|
2924 |
msgid "Box Background"
|
@@ -2930,19 +3475,19 @@ msgstr "Avant-plan de la boîte"
|
|
2930 |
|
2931 |
#: modules/pricing-table/pricing-table.php:173
|
2932 |
msgid "Accent Color"
|
2933 |
-
msgstr "Couleur d'
|
2934 |
|
2935 |
#: modules/pricing-table/pricing-table.php:178
|
2936 |
msgid "Accent Text Color"
|
2937 |
-
msgstr "Couleur d'
|
2938 |
|
2939 |
#: modules/pricing-table/pricing-table.php:182
|
2940 |
msgid "Box Top Margin"
|
2941 |
-
msgstr "
|
2942 |
|
2943 |
#: modules/rich-text/rich-text.php:15
|
2944 |
msgid "A WYSIWYG text editor."
|
2945 |
-
msgstr "
|
2946 |
|
2947 |
#: modules/separator/separator.php:14
|
2948 |
msgid "Separator"
|
@@ -2950,15 +3495,15 @@ msgstr "Séparateur"
|
|
2950 |
|
2951 |
#: modules/separator/separator.php:15
|
2952 |
msgid "A divider line to separate content."
|
2953 |
-
msgstr "Une ligne
|
2954 |
|
2955 |
#: modules/separator/separator.php:85
|
2956 |
msgid ""
|
2957 |
"The type of border to use. Double borders must have a height of at least 3px "
|
2958 |
"to render properly."
|
2959 |
msgstr ""
|
2960 |
-
"Le type de bordure à utiliser.
|
2961 |
-
"afin
|
2962 |
|
2963 |
#: modules/sidebar/includes/settings-general.php:5
|
2964 |
#: modules/sidebar/sidebar.php:14
|
@@ -2999,22 +3544,22 @@ msgid ""
|
|
2999 |
"If your overall theme/images are lighter in color, light will display "
|
3000 |
"buttons in a darker color scheme and vice versa for dark."
|
3001 |
msgstr ""
|
3002 |
-
"Si votre thème
|
3003 |
-
"
|
3004 |
-
"
|
3005 |
|
3006 |
#: modules/slideshow/slideshow.php:318
|
3007 |
-
#, fuzzy
|
3008 |
msgid ""
|
3009 |
"Crop set to no will fit the slideshow images to the height you specify and "
|
3010 |
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
3011 |
"images to all sides of the content area while cropping the left and right to "
|
3012 |
"fit the height you specify."
|
3013 |
msgstr ""
|
3014 |
-
"Le recâdrage mis à
|
3015 |
-
"avez spécifié et gardera sa largeur en proportion.
|
3016 |
-
"afin qu'elle se rende aux quatre côtés du
|
3017 |
-
"les côtés gauche et droit
|
|
|
3018 |
|
3019 |
#: modules/slideshow/slideshow.php:322
|
3020 |
msgid "Disable Right-Click"
|
@@ -3023,7 +3568,7 @@ msgstr "Désactiver le clic droit"
|
|
3023 |
#: modules/slideshow/slideshow.php:342
|
3024 |
msgctxt "Click action type."
|
3025 |
msgid "None"
|
3026 |
-
msgstr "
|
3027 |
|
3028 |
#: modules/slideshow/slideshow.php:366
|
3029 |
msgid "Playback"
|
@@ -3040,10 +3585,9 @@ msgstr "Contrôles"
|
|
3040 |
|
3041 |
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3042 |
msgid "Navigation Arrows"
|
3043 |
-
msgstr "
|
3044 |
|
3045 |
#: modules/slideshow/slideshow.php:442
|
3046 |
-
#, fuzzy
|
3047 |
msgid ""
|
3048 |
"Navigational arrows allow the visitor to freely move through the images in "
|
3049 |
"your slideshow. These are larger arrows that overlay your slideshow images "
|
@@ -3089,11 +3633,11 @@ msgstr "Bouton de lecture"
|
|
3089 |
|
3090 |
#: modules/slideshow/slideshow.php:503
|
3091 |
msgid "Fullscreen Button"
|
3092 |
-
msgstr "Bouton
|
3093 |
|
3094 |
#: modules/slideshow/slideshow.php:512
|
3095 |
msgid "Photo Count"
|
3096 |
-
msgstr "
|
3097 |
|
3098 |
#: modules/slideshow/slideshow.php:521
|
3099 |
msgid "Thumbs Button"
|
@@ -3101,11 +3645,11 @@ msgstr "Bouton des miniatures"
|
|
3101 |
|
3102 |
#: modules/slideshow/slideshow.php:530
|
3103 |
msgid "Caption Button"
|
3104 |
-
msgstr "Bouton de
|
3105 |
|
3106 |
#: modules/slideshow/slideshow.php:539
|
3107 |
msgid "Social Button"
|
3108 |
-
msgstr "Bouton
|
3109 |
|
3110 |
#: modules/slideshow/slideshow.php:549
|
3111 |
msgid "Control Bar Overlay"
|
@@ -3116,7 +3660,6 @@ msgid "Overlay Enabled"
|
|
3116 |
msgstr "Superposition activée"
|
3117 |
|
3118 |
#: modules/slideshow/slideshow.php:564
|
3119 |
-
#, fuzzy
|
3120 |
msgid ""
|
3121 |
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
3122 |
"your slideshow images or site below the slideshow completely."
|
@@ -3130,14 +3673,13 @@ msgid "Overlay Hide"
|
|
3130 |
msgstr "Cacher la superposition"
|
3131 |
|
3132 |
#: modules/slideshow/slideshow.php:574
|
3133 |
-
#, fuzzy
|
3134 |
msgid ""
|
3135 |
"Overlay hide will hide the control bar after however many seconds you "
|
3136 |
"specify below. They will reappear upon mouse over."
|
3137 |
msgstr ""
|
3138 |
-
"
|
3139 |
-
"secondes spécifiées plus bas. Un survol de la souris fera
|
3140 |
-
"tout."
|
3141 |
|
3142 |
#: modules/slideshow/slideshow.php:578
|
3143 |
msgid "Overlay Hide Delay"
|
@@ -3145,7 +3687,7 @@ msgstr "Différer la disparition de la superposition"
|
|
3145 |
|
3146 |
#: modules/slideshow/slideshow.php:590
|
3147 |
msgid "Thumbs Size"
|
3148 |
-
msgstr "
|
3149 |
|
3150 |
#: modules/slideshow/slideshow.php:599
|
3151 |
msgid "Social"
|
@@ -3157,11 +3699,11 @@ msgstr "Bouton Facebook"
|
|
3157 |
|
3158 |
#: modules/slideshow/slideshow.php:615
|
3159 |
msgid "Twitter Button"
|
3160 |
-
msgstr "Bouton Twitter
|
3161 |
|
3162 |
#: modules/slideshow/slideshow.php:627
|
3163 |
msgid "Google Plus Button"
|
3164 |
-
msgstr "Bouton Google
|
3165 |
|
3166 |
#: modules/slideshow/slideshow.php:639
|
3167 |
msgid "Pinterest Button"
|
@@ -3169,7 +3711,7 @@ msgstr "Bouton Pinterest"
|
|
3169 |
|
3170 |
#: modules/social-buttons/social-buttons.php:14
|
3171 |
msgid "Social Buttons"
|
3172 |
-
msgstr "Boutons de
|
3173 |
|
3174 |
#: modules/social-buttons/social-buttons.php:15
|
3175 |
msgid "Displays social buttons."
|
@@ -3177,11 +3719,11 @@ msgstr "Affiche les boutons sociaux."
|
|
3177 |
|
3178 |
#: modules/social-buttons/social-buttons.php:71
|
3179 |
msgid "Target URL"
|
3180 |
-
msgstr "Lien cible
|
3181 |
|
3182 |
#: modules/social-buttons/social-buttons.php:75
|
3183 |
msgid "Current Page"
|
3184 |
-
msgstr "Page
|
3185 |
|
3186 |
#: modules/social-buttons/social-buttons.php:82
|
3187 |
msgid ""
|
@@ -3191,23 +3733,23 @@ msgid ""
|
|
3191 |
msgstr ""
|
3192 |
"Correspond à la page que vous souhaitez référencer avec vos icônes de "
|
3193 |
"réseaux sociaux. Par exemple, si vous montrez Facebook, l'utilisateur fera "
|
3194 |
-
"un
|
3195 |
|
3196 |
#: modules/social-buttons/social-buttons.php:89
|
3197 |
msgid "Custom URL"
|
3198 |
-
msgstr "Lien
|
3199 |
|
3200 |
#: modules/social-buttons/social-buttons.php:107
|
3201 |
msgid "Show Facebook"
|
3202 |
-
msgstr "
|
3203 |
|
3204 |
#: modules/social-buttons/social-buttons.php:116
|
3205 |
msgid "Show Twitter"
|
3206 |
-
msgstr "
|
3207 |
|
3208 |
#: modules/social-buttons/social-buttons.php:125
|
3209 |
msgid "Show Google+"
|
3210 |
-
msgstr "
|
3211 |
|
3212 |
#: modules/tabs/tabs.php:14
|
3213 |
msgid "Tabs"
|
@@ -3215,7 +3757,7 @@ msgstr "Onglets"
|
|
3215 |
|
3216 |
#: modules/tabs/tabs.php:15
|
3217 |
msgid "Display a collection of tabbed content."
|
3218 |
-
msgstr "
|
3219 |
|
3220 |
#: modules/tabs/tabs.php:55
|
3221 |
msgid "Horizontal"
|
@@ -3233,11 +3775,11 @@ msgstr "Témoignages"
|
|
3233 |
|
3234 |
#: modules/testimonials/testimonials.php:15
|
3235 |
msgid "An animated tesimonials area."
|
3236 |
-
msgstr "Une
|
3237 |
|
3238 |
#: modules/testimonials/testimonials.php:41
|
3239 |
msgid "Compact"
|
3240 |
-
msgstr "
|
3241 |
|
3242 |
#: modules/testimonials/testimonials.php:51
|
3243 |
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
@@ -3247,7 +3789,7 @@ msgstr ""
|
|
3247 |
|
3248 |
#: modules/testimonials/testimonials.php:78
|
3249 |
msgid "Slider Settings"
|
3250 |
-
msgstr "
|
3251 |
|
3252 |
#: modules/testimonials/testimonials.php:135
|
3253 |
msgid "Arrow Color"
|
@@ -3267,7 +3809,7 @@ msgstr "Ajouter un témoignage"
|
|
3267 |
|
3268 |
#: modules/video/video.php:20
|
3269 |
msgid "Render a WordPress or embedable video."
|
3270 |
-
msgstr "
|
3271 |
|
3272 |
#: modules/video/video.php:83
|
3273 |
msgid "Video Type"
|
@@ -3275,7 +3817,7 @@ msgstr "Type de vidéo"
|
|
3275 |
|
3276 |
#: modules/video/video.php:87
|
3277 |
msgid "Embed"
|
3278 |
-
msgstr "
|
3279 |
|
3280 |
#: modules/video/video.php:104
|
3281 |
msgctxt "Video preview/fallback image."
|
@@ -3299,7 +3841,7 @@ msgstr "Widget"
|
|
3299 |
|
3300 |
#: modules/widget/widget.php:15
|
3301 |
msgid "Display a WordPress widget."
|
3302 |
-
msgstr "
|
3303 |
|
3304 |
#: modules/woocommerce/woocommerce.php:16
|
3305 |
msgid "WooCommerce"
|
@@ -3307,15 +3849,15 @@ msgstr "WooCommerce"
|
|
3307 |
|
3308 |
#: modules/woocommerce/woocommerce.php:17
|
3309 |
msgid "Display products or categories from your WooCommerce store."
|
3310 |
-
msgstr "
|
3311 |
|
3312 |
#: modules/woocommerce/woocommerce.php:60
|
3313 |
msgid "Choose..."
|
3314 |
-
msgstr "
|
3315 |
|
3316 |
#: modules/woocommerce/woocommerce.php:61
|
3317 |
msgid "Single Product"
|
3318 |
-
msgstr "
|
3319 |
|
3320 |
#: modules/woocommerce/woocommerce.php:62
|
3321 |
#: modules/woocommerce/woocommerce.php:113
|
@@ -3324,7 +3866,7 @@ msgstr "Produits multiples"
|
|
3324 |
|
3325 |
#: modules/woocommerce/woocommerce.php:63
|
3326 |
msgid "\"Add to Cart\" Button"
|
3327 |
-
msgstr "Bouton
|
3328 |
|
3329 |
#: modules/woocommerce/woocommerce.php:64
|
3330 |
msgid "Categories"
|
@@ -3336,11 +3878,11 @@ msgstr "Panier"
|
|
3336 |
|
3337 |
#: modules/woocommerce/woocommerce.php:66
|
3338 |
msgid "Checkout"
|
3339 |
-
msgstr "
|
3340 |
|
3341 |
#: modules/woocommerce/woocommerce.php:67
|
3342 |
msgid "Order Tracking"
|
3343 |
-
msgstr "Suivi de
|
3344 |
|
3345 |
#: modules/woocommerce/woocommerce.php:68
|
3346 |
msgid "My Account"
|
@@ -3348,7 +3890,7 @@ msgstr "Mon compte"
|
|
3348 |
|
3349 |
#: modules/woocommerce/woocommerce.php:87
|
3350 |
msgid "Product ID"
|
3351 |
-
msgstr "ID
|
3352 |
|
3353 |
#: modules/woocommerce/woocommerce.php:90
|
3354 |
msgid ""
|
@@ -3363,7 +3905,7 @@ msgstr ""
|
|
3363 |
|
3364 |
#: modules/woocommerce/woocommerce.php:94
|
3365 |
msgid "Parent Category ID"
|
3366 |
-
msgstr "ID
|
3367 |
|
3368 |
#: modules/woocommerce/woocommerce.php:97
|
3369 |
msgid ""
|
@@ -3385,23 +3927,23 @@ msgstr "Colonnes"
|
|
3385 |
|
3386 |
#: modules/woocommerce/woocommerce.php:117
|
3387 |
msgid "Products Source"
|
3388 |
-
msgstr "
|
3389 |
|
3390 |
#: modules/woocommerce/woocommerce.php:120
|
3391 |
msgid "Products IDs"
|
3392 |
-
msgstr "IDs
|
3393 |
|
3394 |
#: modules/woocommerce/woocommerce.php:121
|
3395 |
msgid "Product Category"
|
3396 |
-
msgstr "Catégorie
|
3397 |
|
3398 |
#: modules/woocommerce/woocommerce.php:122
|
3399 |
msgid "Recent Products"
|
3400 |
-
msgstr "Produits
|
3401 |
|
3402 |
#: modules/woocommerce/woocommerce.php:123
|
3403 |
msgid "Featured Products"
|
3404 |
-
msgstr "Produits
|
3405 |
|
3406 |
#: modules/woocommerce/woocommerce.php:124
|
3407 |
msgid "Sale Products"
|
@@ -3409,15 +3951,15 @@ msgstr "Produits en vente"
|
|
3409 |
|
3410 |
#: modules/woocommerce/woocommerce.php:125
|
3411 |
msgid "Best Selling Products"
|
3412 |
-
msgstr "Produits
|
3413 |
|
3414 |
#: modules/woocommerce/woocommerce.php:126
|
3415 |
msgid "Top Rated Products"
|
3416 |
-
msgstr "Les produits les
|
3417 |
|
3418 |
#: modules/woocommerce/woocommerce.php:154
|
3419 |
msgid "Product IDs"
|
3420 |
-
msgstr "IDs
|
3421 |
|
3422 |
#: modules/woocommerce/woocommerce.php:156
|
3423 |
msgid ""
|
@@ -3426,17 +3968,16 @@ msgid ""
|
|
3426 |
"area and rolling over the product. The unique ID will be the first attribute "
|
3427 |
"and you can add several here separated by a comma."
|
3428 |
msgstr ""
|
3429 |
-
"
|
3430 |
-
"
|
3431 |
-
"produit unique en visitant la zone produits et planant sur le produit.
|
3432 |
-
"unique sera le premier attribut, et vous pouvez
|
3433 |
-
"séparés par
|
3434 |
|
3435 |
#: modules/woocommerce/woocommerce.php:160
|
3436 |
msgid "Category Slug"
|
3437 |
msgstr "Identifiant (slug) de catégorie"
|
3438 |
|
3439 |
-
# slug?
|
3440 |
#: modules/woocommerce/woocommerce.php:162
|
3441 |
msgid ""
|
3442 |
"As you add product categories in the WooCommerce Products area, each will be "
|
@@ -3446,9 +3987,9 @@ msgid ""
|
|
3446 |
msgstr ""
|
3447 |
"Lorsque vous ajoutez des catégories de produits dans le domaine des produits "
|
3448 |
"WooCommerce, chacun sera assigné un identifiant (slug) unique, ou vous "
|
3449 |
-
"pouvez modifier et ajouter les vôtres. Ces
|
3450 |
-
"zone de catégories sous les produits WooCommerce. Plusieurs peuvent
|
3451 |
-
"ajoutés ici séparés par une virgule."
|
3452 |
|
3453 |
#: modules/woocommerce/woocommerce.php:166
|
3454 |
msgid "Number of Products"
|
@@ -3456,7 +3997,7 @@ msgstr "Nombre de produits"
|
|
3456 |
|
3457 |
#: modules/woocommerce/woocommerce.php:183
|
3458 |
msgid "Sort By"
|
3459 |
-
msgstr "
|
3460 |
|
3461 |
#: modules/woocommerce/woocommerce.php:186
|
3462 |
msgctxt "Sort by."
|
@@ -3469,12 +4010,32 @@ msgstr "Popularité"
|
|
3469 |
|
3470 |
#: modules/woocommerce/woocommerce.php:188
|
3471 |
msgid "Rating"
|
3472 |
-
msgstr "
|
3473 |
|
3474 |
#: modules/woocommerce/woocommerce.php:190
|
3475 |
msgid "Price: Low to High"
|
3476 |
-
msgstr "Prix :
|
3477 |
|
3478 |
#: modules/woocommerce/woocommerce.php:191
|
3479 |
msgid "Price: High to Low"
|
3480 |
-
msgstr "Prix :
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
+
"POT-Creation-Date: 2015-03-01 14:02-0800\n"
|
5 |
+
"PO-Revision-Date: 2015-03-03 19:21-0500\n"
|
6 |
"Last-Translator: Gérard Godin <Gerard@getgointernetcoaching.com>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
21 |
+
#: classes/class-fl-builder-admin-settings.php:93
|
22 |
+
#: includes/global-settings.php:4
|
23 |
+
#, php-format
|
24 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
25 |
+
msgid "%s Settings"
|
26 |
+
msgstr "Paramètres pour %s"
|
27 |
+
|
28 |
+
#: classes/class-fl-builder-admin-settings.php:107
|
29 |
+
msgid "Settings updated!"
|
30 |
+
msgstr "Paramètres mis à jour!"
|
31 |
+
|
32 |
+
#: classes/class-fl-builder-admin-settings.php:118
|
33 |
+
msgid "License"
|
34 |
+
msgstr "Licence"
|
35 |
+
|
36 |
+
#: classes/class-fl-builder-admin-settings.php:122
|
37 |
+
#: includes/admin-settings-upgrade.php:3
|
38 |
+
msgid "Upgrade"
|
39 |
+
msgstr "Mise à niveau"
|
40 |
+
|
41 |
+
#: classes/class-fl-builder-admin-settings.php:126
|
42 |
+
#: includes/global-settings.php:90
|
43 |
+
msgid "Modules"
|
44 |
+
msgstr "Modules"
|
45 |
+
|
46 |
+
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
|
47 |
+
msgid "Templates"
|
48 |
+
msgstr "Gabarit"
|
49 |
+
|
50 |
+
#: classes/class-fl-builder-admin-settings.php:134
|
51 |
+
#: includes/admin-settings-post-types.php:3
|
52 |
+
msgid "Post Types"
|
53 |
+
msgstr "Post Types"
|
54 |
+
|
55 |
+
#: classes/class-fl-builder-admin-settings.php:138
|
56 |
+
#: modules/icon-group/icon-group.php:27
|
57 |
+
msgid "Icons"
|
58 |
+
msgstr "Icônes"
|
59 |
+
|
60 |
+
#: classes/class-fl-builder-admin-settings.php:142
|
61 |
+
msgid "Editing"
|
62 |
+
msgstr "Édition"
|
63 |
+
|
64 |
+
#: classes/class-fl-builder-admin-settings.php:146
|
65 |
+
#: includes/admin-settings-branding.php:3
|
66 |
+
msgid "Branding"
|
67 |
+
msgstr "Branding (Image de marque)"
|
68 |
+
|
69 |
+
#: classes/class-fl-builder-admin-settings.php:150
|
70 |
+
msgid "Help Button"
|
71 |
+
msgstr "Bouton d'aide"
|
72 |
+
|
73 |
+
#: classes/class-fl-builder-admin-settings.php:154
|
74 |
+
#: includes/admin-settings-uninstall.php:3
|
75 |
+
#: includes/admin-settings-uninstall.php:15
|
76 |
+
msgid "Uninstall"
|
77 |
+
msgstr "Désinstaller"
|
78 |
+
|
79 |
+
#: classes/class-fl-builder-admin-settings.php:376
|
80 |
+
msgid "Error! You must have at least one icon set enabled."
|
81 |
+
msgstr "Erreur! Vous devez avoir au moins un ensemble d'icônes actif."
|
82 |
+
|
83 |
+
#: classes/class-fl-builder-admin-settings.php:418
|
84 |
+
msgid "Error! Could not unzip file."
|
85 |
+
msgstr "Erreur! Incapable de décompresser le fichier."
|
86 |
+
|
87 |
+
#: classes/class-fl-builder-admin-settings.php:452
|
88 |
+
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
89 |
+
msgstr ""
|
90 |
+
"Erreur! Téléchargez un ensemble d'icônes à partir de Icomoon ou Fontello."
|
91 |
+
|
92 |
+
#: classes/class-fl-builder-admin-settings.php:566
|
93 |
+
msgid "Error! Please enter an iframe for the video embed code."
|
94 |
+
msgstr ""
|
95 |
+
"Erreur! Entrez un « iframe » pour le code d'encastrage du vidéo"
|
96 |
+
|
97 |
+
#: classes/class-fl-builder-admin-settings.php:584
|
98 |
+
msgid "Error! You must have at least one feature of the help button enabled."
|
99 |
+
msgstr ""
|
100 |
+
"Erreur! Vous devez avoir au moins une des caractéristiques du bouton d'aide "
|
101 |
+
"active."
|
102 |
+
|
103 |
+
#: classes/class-fl-builder-admin.php:40
|
104 |
#, php-format
|
105 |
msgid ""
|
106 |
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
108 |
"of this plugin."
|
109 |
msgstr ""
|
110 |
"Cette version de l'extension <strong>Beaver Builder</strong> n'est pas "
|
111 |
+
"compatible avec WordPress Multisite. <a%s>S'il vous plaît, mettez à niveau</"
|
112 |
+
"a> vers la version multisite de l'extension."
|
113 |
|
114 |
+
#: classes/class-fl-builder-admin.php:50
|
115 |
msgid ""
|
116 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
117 |
"greater. Please update WordPress before activating the plugin."
|
118 |
msgstr ""
|
119 |
+
"<strong>Beaver Builder</strong> requiert WordPress version 3.5 ou plus. "
|
120 |
+
"Mettez à niveau votre version de WordPress avant d'activer l'extension."
|
|
|
121 |
|
122 |
+
#: classes/class-fl-builder-admin.php:96
|
123 |
#, php-format
|
124 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
125 |
msgstr ""
|
126 |
+
"Beaver Builder est activé. <a%s>Cliquez ici</a> afin de permettre les mises "
|
127 |
+
"à jour à distance."
|
128 |
|
129 |
+
#: classes/class-fl-builder-admin.php:191
|
130 |
msgctxt "Plugin action link label."
|
131 |
msgid "Upgrade"
|
132 |
+
msgstr "Mise à niveau"
|
133 |
|
134 |
+
#: classes/class-fl-builder-admin.php:202
|
135 |
+
#: classes/class-fl-builder-model.php:2594
|
136 |
msgid "Page Builder"
|
137 |
+
msgstr "Constructeur de page"
|
138 |
+
|
139 |
+
#: classes/class-fl-builder-model.php:1385
|
140 |
+
#, php-format
|
141 |
+
msgctxt "%s stands for the module filename"
|
142 |
+
msgid ""
|
143 |
+
"A module with the filename %s.php already exists! Please namespace your "
|
144 |
+
"module filenames to ensure compatibility with Beaver Builder."
|
145 |
+
msgstr ""
|
146 |
+
"Un module nommé %s.php existe déjà! Vous devez utiliser des noms de votre "
|
147 |
+
"espace de nommage (namespace) pour les fichiers de votre module afin "
|
148 |
+
"d'assurer la compatibilité avec Beaver Builder."
|
149 |
+
|
150 |
+
#: classes/class-fl-builder-model.php:1443
|
151 |
+
#: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
|
152 |
+
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
153 |
+
#: modules/separator/separator.php:16 modules/video/video.php:21
|
154 |
+
msgid "Basic Modules"
|
155 |
+
msgstr "Extensions de base"
|
156 |
+
|
157 |
+
#: classes/class-fl-builder-model.php:1444
|
158 |
+
#: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
|
159 |
+
#: modules/button/button.php:16 modules/callout/callout.php:16
|
160 |
+
#: modules/contact-form/contact-form.php:16
|
161 |
+
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
162 |
+
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
163 |
+
#: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
|
164 |
+
#: modules/map/map.php:16 modules/post-grid/post-grid.php:16
|
165 |
+
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
166 |
+
#: modules/slideshow/slideshow.php:16
|
167 |
+
#: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
|
168 |
+
#: modules/testimonials/testimonials.php:16
|
169 |
+
#: modules/woocommerce/woocommerce.php:18
|
170 |
+
msgid "Advanced Modules"
|
171 |
+
msgstr "Extensions avancées"
|
172 |
+
|
173 |
+
#: classes/class-fl-builder-model.php:1445
|
174 |
+
#: classes/class-fl-builder-model.php:1499
|
175 |
+
msgid "Other Modules"
|
176 |
+
msgstr "Autres modules"
|
177 |
|
178 |
+
#: classes/class-fl-builder-model.php:1446
|
179 |
+
#: classes/class-fl-builder-model.php:1500 includes/ui.php:88
|
180 |
+
#: modules/widget/widget.php:16
|
181 |
+
msgid "WordPress Widgets"
|
182 |
+
msgstr "Widgets de WordPress"
|
183 |
+
|
184 |
+
#: classes/class-fl-builder-model.php:2009
|
185 |
#, php-format
|
186 |
msgctxt "%s stands for post/page title."
|
187 |
msgid "Copy of %s"
|
190 |
#: classes/class-fl-builder-photo.php:75
|
191 |
msgctxt "Image size."
|
192 |
msgid "Full Size"
|
193 |
+
msgstr "Pleine grandeur"
|
194 |
|
195 |
#: classes/class-fl-builder-photo.php:76
|
196 |
msgctxt "Image size."
|
207 |
msgid "Thumbnail"
|
208 |
msgstr "Vignette"
|
209 |
|
210 |
+
#: classes/class-fl-builder-templates.php:28
|
211 |
+
msgid "Page Builder Templates"
|
212 |
+
msgstr "Gabarits de Beaver Builder"
|
213 |
+
|
214 |
+
#: classes/class-fl-builder.php:709
|
215 |
#, php-format
|
216 |
msgctxt "Field name to add."
|
217 |
msgid "Add %s"
|
218 |
+
msgstr "Ajout %s"
|
219 |
|
220 |
+
#: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
|
221 |
msgctxt "Custom post type label."
|
222 |
msgid "Layout Templates"
|
223 |
+
msgstr "Gabarits de présentation"
|
224 |
|
225 |
+
#: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
|
226 |
msgctxt "Custom post type label."
|
227 |
msgid "Layout Template"
|
228 |
+
msgstr "Gabarit de présentation"
|
229 |
|
230 |
+
#: classes/class-fl-builder.php:776
|
231 |
msgctxt "Custom post type label."
|
232 |
msgid "Add New"
|
233 |
msgstr "Ajouter"
|
234 |
|
235 |
+
#: classes/class-fl-builder.php:777
|
236 |
msgctxt "Custom post type label."
|
237 |
msgid "Add New Layout Template"
|
238 |
+
msgstr "Ajouter un nouveau gabarit de présentation"
|
239 |
|
240 |
+
#: classes/class-fl-builder.php:778
|
241 |
msgctxt "Custom post type label."
|
242 |
msgid "New Layout Template"
|
243 |
+
msgstr "Nouveau gabarit de présentation"
|
244 |
|
245 |
+
#: classes/class-fl-builder.php:779
|
246 |
msgctxt "Custom post type label."
|
247 |
msgid "Edit Layout Template"
|
248 |
+
msgstr "Éditer le gabarit de présentation"
|
249 |
|
250 |
+
#: classes/class-fl-builder.php:780
|
251 |
msgctxt "Custom post type label."
|
252 |
msgid "View Layout Template"
|
253 |
+
msgstr "Visualiser le gabarit de présentation"
|
254 |
|
255 |
+
#: classes/class-fl-builder.php:781
|
256 |
msgctxt "Custom post type label."
|
257 |
msgid "All Layout Templates"
|
258 |
+
msgstr "Tous les gabarits de présentation"
|
259 |
|
260 |
+
#: classes/class-fl-builder.php:782
|
261 |
msgctxt "Custom post type label."
|
262 |
msgid "Search Layout Templates"
|
263 |
+
msgstr "Recherche dans les gabarits de présentation"
|
264 |
|
265 |
+
#: classes/class-fl-builder.php:783
|
266 |
msgctxt "Custom post type label."
|
267 |
msgid "Parent Layout Templates:"
|
268 |
+
msgstr "Gabarit de présentation parent"
|
269 |
|
270 |
+
#: classes/class-fl-builder.php:784
|
271 |
msgctxt "Custom post type label."
|
272 |
msgid "No layout templates found."
|
273 |
+
msgstr "Aucun gabarit de présentation trouvé."
|
274 |
|
275 |
+
#: classes/class-fl-builder.php:785
|
276 |
msgctxt "Custom post type label."
|
277 |
msgid "No layout templates found in Trash."
|
278 |
+
msgstr "Aucun gabarit de présentation trouvé dans la poubelle"
|
279 |
|
280 |
+
#: classes/class-fl-builder.php:1150 includes/js-config.php:66
|
281 |
#, php-format
|
282 |
msgctxt "%s stands for module name."
|
283 |
msgid "%s Settings"
|
284 |
+
msgstr "Paramètres pour %s"
|
285 |
|
286 |
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
287 |
msgid "Text Editor"
|
291 |
#, php-format
|
292 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
293 |
msgid "%s is currently active for this page."
|
294 |
+
msgstr "%s est présentement activé pour cette page."
|
295 |
|
296 |
#: includes/admin-posts.php:8
|
297 |
#, php-format
|
299 |
msgid "Launch %s"
|
300 |
msgstr "Lancer %s"
|
301 |
|
302 |
+
#: includes/admin-posts.php:15
|
303 |
#, php-format
|
304 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
305 |
+
msgid ""
|
306 |
+
"Switching to Text Editor mode will disable your %s layout until it is "
|
307 |
+
"enabled again. Any edits made while in Text Editor mode will not be made on "
|
308 |
+
"your %s layout. Do you want to continue?"
|
309 |
+
msgstr ""
|
310 |
+
"Passer au mode « Éditeur de texte » va désactiver votre gabarit "
|
311 |
+
"%s jusqu'à ce qu'il soit réactivé à nouveau. Tout édition en mode Éditeur de "
|
312 |
+
"texte ne sera pas visible dans votre gabarit %s. Voulez-vous vraiment "
|
313 |
+
"continuer?"
|
314 |
|
315 |
+
#: includes/admin-settings-branding.php:7
|
316 |
+
msgid "White label the page builder by entering a custom name below."
|
317 |
+
msgstr "Personalisez la marque en entrant un autre nom à votre choix."
|
318 |
|
319 |
+
#: includes/admin-settings-branding.php:10
|
320 |
+
msgid ""
|
321 |
+
"Additionally, you may also add a custom icon by entering the URL of an image "
|
322 |
+
"below. Leave the field blank if you do not wish to use an icon."
|
323 |
+
msgstr ""
|
324 |
+
"De plus, vous pouvez aussi ajouter une icône personalisée en entrant ici "
|
325 |
+
"l'adresse web (URL) son image. Laissez le champ vide si vous ne désirez pas "
|
326 |
+
"utiliser d'icône."
|
327 |
|
328 |
+
#: includes/admin-settings-branding.php:14
|
329 |
+
msgid "Save Branding"
|
330 |
+
msgstr "Sauvegarder le branding"
|
331 |
|
332 |
+
#: includes/admin-settings-editing.php:3
|
333 |
+
msgid "Editing Settings"
|
334 |
+
msgstr "En édition des paramètres"
|
335 |
|
336 |
+
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
337 |
+
#: includes/admin-settings-modules.php:10
|
338 |
+
#: includes/admin-settings-post-types.php:10
|
339 |
+
#: includes/admin-settings-templates.php:10
|
340 |
+
msgid "Override network settings?"
|
341 |
+
msgstr "Outrepasser les paramètres de réseau?"
|
342 |
|
343 |
+
#: includes/admin-settings-editing.php:16
|
344 |
+
#, php-format
|
345 |
+
msgid ""
|
346 |
+
"Set the <a%s>capability</a> required for users to access advanced builder "
|
347 |
+
"editing such as adding, deleting or moving modules."
|
348 |
+
msgstr ""
|
349 |
+
"Ajuster les <a%s>permissions</a> requises afin de permettre l'accès aux "
|
350 |
+
"usagers aux fonctions avancées du constructeur, tel que l'ajout, la "
|
351 |
+
"suppression, ou le déplacement des extensions."
|
352 |
|
353 |
+
#: includes/admin-settings-editing.php:22
|
354 |
+
msgid "Save Editing Settings"
|
355 |
+
msgstr "Sauvegarder les paramètres d'édition"
|
356 |
|
357 |
+
#: includes/admin-settings-help-button.php:8
|
358 |
+
msgid "Help Button Settings"
|
359 |
+
msgstr "Paramètres du bouton d'aide"
|
360 |
|
361 |
+
#: includes/admin-settings-help-button.php:17
|
362 |
+
msgid "Enable Help Button"
|
363 |
+
msgstr "Activer le bouton d'aide"
|
364 |
+
|
365 |
+
#: includes/admin-settings-help-button.php:23
|
366 |
+
msgid "Help Tour"
|
367 |
+
msgstr "Visite guidée"
|
368 |
+
|
369 |
+
#: includes/admin-settings-help-button.php:27
|
370 |
+
msgid "Enable Help Tour"
|
371 |
+
msgstr "Activer la visite guidée"
|
372 |
+
|
373 |
+
#: includes/admin-settings-help-button.php:31
|
374 |
+
msgid "Help Video"
|
375 |
+
msgstr "Vidéo d'assistance"
|
376 |
+
|
377 |
+
#: includes/admin-settings-help-button.php:35
|
378 |
+
msgid "Enable Help Video"
|
379 |
+
msgstr "Activer les vidéos d'assistance"
|
380 |
+
|
381 |
+
#: includes/admin-settings-help-button.php:39
|
382 |
+
msgid "Help Video Embed Code"
|
383 |
+
msgstr "Code d'encastrage du vidéo"
|
384 |
+
|
385 |
+
#: includes/admin-settings-help-button.php:45
|
386 |
+
msgid "Knowledge Base"
|
387 |
+
msgstr "Base des connaissances"
|
388 |
+
|
389 |
+
#: includes/admin-settings-help-button.php:49
|
390 |
+
msgid "Enable Knowledge Base"
|
391 |
+
msgstr "Activer la base de connaissances"
|
392 |
+
|
393 |
+
#: includes/admin-settings-help-button.php:53
|
394 |
+
msgid "Knowledge Base URL"
|
395 |
+
msgstr "Lien de la base des connaissances"
|
396 |
+
|
397 |
+
#: includes/admin-settings-help-button.php:59
|
398 |
+
msgid "Forums"
|
399 |
+
msgstr "Forums"
|
400 |
+
|
401 |
+
#: includes/admin-settings-help-button.php:63
|
402 |
+
msgid "Enable Forums"
|
403 |
+
msgstr "Activer les forums"
|
404 |
+
|
405 |
+
#: includes/admin-settings-help-button.php:67
|
406 |
+
msgid "Forums URL"
|
407 |
+
msgstr "Liens des forums"
|
408 |
+
|
409 |
+
#: includes/admin-settings-help-button.php:77
|
410 |
+
msgid "Save Help Button Settings"
|
411 |
+
msgstr "Sauvegarder les paramètres du bouton d'aide"
|
412 |
+
|
413 |
+
#: includes/admin-settings-icons.php:3
|
414 |
+
msgid "Icon Settings"
|
415 |
+
msgstr "Paramètres des icônes"
|
416 |
|
417 |
+
#: includes/admin-settings-icons.php:13
|
418 |
+
msgid "Icons for the main site must be managed in the network admin."
|
419 |
+
msgstr ""
|
420 |
+
"Les icônes pour le site principal sont gérés dans la section « "
|
421 |
+
"administration du réseau »."
|
422 |
+
|
423 |
+
#: includes/admin-settings-icons.php:33
|
424 |
+
#, php-format
|
425 |
msgid ""
|
426 |
+
"Enable or disable icon sets using the options below or upload a custom icon "
|
427 |
+
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
|
|
428 |
msgstr ""
|
429 |
+
"Activer ou désactiver les ensembles d'icônes en utilisant les options plus "
|
430 |
+
"bas, ou télécharger un ensemble d'icônes à partir d'<a %s>Icomoon</a> ou <a"
|
431 |
+
"%s>Fontello</a>."
|
432 |
|
433 |
+
#: includes/admin-settings-icons.php:48
|
434 |
+
msgctxt "Plugin setup page: Delete icon set."
|
435 |
+
msgid "Delete"
|
436 |
+
msgstr "Effacer"
|
437 |
|
438 |
+
#: includes/admin-settings-icons.php:59
|
439 |
+
msgid "Upload Icon Set"
|
440 |
+
msgstr "Télécharger l'ensemble d'icônes"
|
441 |
|
442 |
+
#: includes/admin-settings-icons.php:60
|
443 |
+
msgid "Save Icon Settings"
|
444 |
+
msgstr "Sauvegarder les paramètres de l'icône"
|
445 |
|
446 |
+
#: includes/admin-settings-js-config.php:4
|
447 |
+
msgid "Select File"
|
448 |
+
msgstr "Sélectionner le fichier"
|
|
|
449 |
|
450 |
+
#: includes/admin-settings-js-config.php:5
|
451 |
+
msgid ""
|
452 |
+
"Please type \"uninstall\" in the box below to confirm that you really want "
|
453 |
+
"to uninstall the page builder and all of its data."
|
454 |
+
msgstr ""
|
455 |
+
"Prière de taper « uninstall » dans la boîte afin de confirmer "
|
456 |
+
"que vous voulez vraiment désinstaller Beaver Builder et toutes ces données."
|
457 |
+
|
458 |
+
#: includes/admin-settings-modules.php:3
|
459 |
+
msgid "Enabled Modules"
|
460 |
+
msgstr "Activer les modules"
|
461 |
+
|
462 |
+
#: includes/admin-settings-modules.php:16
|
463 |
msgid "Check or uncheck modules below to enable or disable them."
|
464 |
msgstr ""
|
465 |
+
"Tout Cocher/Tout Décocher les extensions ci-dessous afin de les activer ou "
|
466 |
+
"désactiver."
|
467 |
|
468 |
+
#: includes/admin-settings-modules.php:25
|
469 |
msgctxt "Plugin setup page: Modules."
|
470 |
msgid "All"
|
471 |
msgstr "Tous"
|
472 |
|
473 |
+
#: includes/admin-settings-modules.php:43
|
474 |
msgid "Save Module Settings"
|
475 |
+
msgstr "Sauvegarder les paramètres de module"
|
476 |
+
|
477 |
+
#: includes/admin-settings-post-types.php:18
|
478 |
+
msgid ""
|
479 |
+
"Enter a comma separated list of the post types you would like the builder to "
|
480 |
+
"work with."
|
481 |
+
msgstr ""
|
482 |
+
"Entrez une liste séparés par des virgules des » post types « que "
|
483 |
+
"vous voulez utiliser avec le constructeur de page."
|
484 |
+
|
485 |
+
#: includes/admin-settings-post-types.php:19
|
486 |
+
#: includes/admin-settings-post-types.php:39
|
487 |
+
msgid "NOTE: Not all custom post types may be supported."
|
488 |
+
msgstr ""
|
489 |
+
"NOTE: Tous les « custom post types » ne sont pas nécessairement "
|
490 |
+
"valides"
|
491 |
|
492 |
+
#: includes/admin-settings-post-types.php:34
|
493 |
+
msgid "Example: page, post, product"
|
494 |
+
msgstr "Exemple : page, article, produit"
|
495 |
+
|
496 |
+
#: includes/admin-settings-post-types.php:38
|
497 |
+
msgid "Select the post types you would like the builder to work with."
|
498 |
+
msgstr ""
|
499 |
+
"Choisir le « post type » que vous aimeriez utiliser avec le "
|
500 |
+
"Beaver Builder."
|
501 |
+
|
502 |
+
#: includes/admin-settings-post-types.php:70
|
503 |
+
msgid "Save Post Types"
|
504 |
+
msgstr "Sauvegarder les « Post Types »"
|
505 |
+
|
506 |
+
#: includes/admin-settings-templates.php:3 includes/template-settings.php:4
|
507 |
msgid "Template Settings"
|
508 |
+
msgstr "Paramètres de gabarit"
|
509 |
|
510 |
+
#: includes/admin-settings-templates.php:16
|
511 |
msgid "Enable or disable templates using the options below."
|
512 |
+
msgstr ""
|
513 |
+
"Activer ou désactiver les gabarits en utilisant les options ci-dessous."
|
514 |
|
515 |
+
#: includes/admin-settings-templates.php:23
|
516 |
msgid "Enable All Templates"
|
517 |
+
msgstr "Activer tous ls gabarits"
|
518 |
|
519 |
+
#: includes/admin-settings-templates.php:24
|
520 |
msgid "Enable Core Templates Only"
|
521 |
+
msgstr "Activer les gabarits de base seulement"
|
522 |
|
523 |
+
#: includes/admin-settings-templates.php:25
|
524 |
msgid "Enable User Templates Only"
|
525 |
+
msgstr "Activer les gabarits personnel seulement"
|
526 |
|
527 |
+
#: includes/admin-settings-templates.php:26
|
528 |
msgid "Disable All Templates"
|
529 |
+
msgstr "Désactiver tous les gabarits"
|
530 |
|
531 |
+
#: includes/admin-settings-templates.php:30
|
532 |
msgid "Save Template Settings"
|
533 |
+
msgstr "Sauvegarder les paramètres de gabarit"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
534 |
|
535 |
+
#: includes/admin-settings-uninstall.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
536 |
msgid ""
|
537 |
"Clicking the button below will uninstall the page builder plugin and delete "
|
538 |
"all of the data associated with it. You can uninstall or deactivate the page "
|
539 |
"builder from the plugins page instead if you do not wish to delete the data."
|
540 |
msgstr ""
|
541 |
+
"L'utilisation du bouton suivant va supprimer l'extension de constructeur de "
|
542 |
+
"page ET effacer toutes les données qui y sont rattachées. Vous pouvez aussi "
|
543 |
+
"désactiver ou désinstaller le constructeur de page à partir de la page des "
|
544 |
+
"extensions si vous préférez ne pas effacer ses données."
|
545 |
|
546 |
+
#: includes/admin-settings-uninstall.php:7
|
547 |
+
#: includes/admin-settings-uninstall.php:10
|
548 |
#: includes/updater/includes/form.php:31
|
549 |
msgid "NOTE:"
|
550 |
+
msgstr "Note: "
|
551 |
|
552 |
+
#: includes/admin-settings-uninstall.php:7
|
553 |
msgid ""
|
554 |
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
555 |
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
562 |
"faites, le constructeur va rebâtir l'ensemble de ses données à l'aide de ces "
|
563 |
"valeurs méta."
|
564 |
|
565 |
+
#: includes/admin-settings-uninstall.php:10
|
566 |
+
#: includes/updater/includes/form.php:31
|
567 |
msgid "This applies to all sites on the network."
|
568 |
+
msgstr "Ceci s'applique à tous les sites du réseau"
|
569 |
|
570 |
+
#: includes/admin-settings-upgrade.php:5
|
|
|
571 |
msgid ""
|
572 |
+
"You are currently running the lite version of the Beaver Builder plugin. "
|
573 |
+
"Upgrade today for access to premium features such as advanced modules, "
|
574 |
+
"templates, support and more!"
|
575 |
msgstr ""
|
576 |
+
"Vous utilisez présentement la version allégée de l'extension Beaver Builder. "
|
577 |
+
"Mettez à niveau aujourd'hui vers la version Pro ou Agence, selon vos besoin, "
|
578 |
+
"afin d'accéder à la fonctionnalité haut de gamme tel que les extension "
|
579 |
+
"avancées, les gabarits, le soutien technique, et bien plus! "
|
580 |
+
|
581 |
+
#: includes/admin-settings-upgrade.php:7
|
582 |
+
msgid "Upgrade Now"
|
583 |
+
msgstr "Mettre à niveau maintenant"
|
584 |
+
|
585 |
+
#: includes/admin-settings-upgrade.php:9
|
586 |
+
msgid "Learn More"
|
587 |
+
msgstr "Apprenez en plus "
|
588 |
+
|
589 |
+
#: includes/admin-templates-edit.php:3
|
590 |
+
msgid "Edit Template"
|
591 |
+
msgstr "Éditer le gabarit"
|
592 |
+
|
593 |
+
#: includes/admin-templates-edit.php:8
|
594 |
+
msgctxt "Template edit form field label. Template name."
|
595 |
+
msgid "Name"
|
596 |
+
msgstr "Nom"
|
597 |
+
|
598 |
+
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
|
599 |
+
#: modules/post-grid/post-grid.php:113
|
600 |
+
msgid "Image"
|
601 |
+
msgstr "Image"
|
602 |
+
|
603 |
+
#: includes/admin-templates-edit.php:16 includes/row-settings.php:155
|
604 |
+
#: includes/template-settings.php:23 modules/callout/callout.php:353
|
605 |
+
#: modules/callout/callout.php:373
|
606 |
+
#: modules/content-slider/content-slider.php:472
|
607 |
+
#: modules/post-grid/post-grid.php:127
|
608 |
+
msgid "Position"
|
609 |
+
msgstr "Position"
|
610 |
+
|
611 |
+
#: includes/admin-templates-edit.php:20 includes/template-settings.php:28
|
612 |
+
msgctxt "Template edit form field label. Is template premium one?"
|
613 |
+
msgid "Premium"
|
614 |
+
msgstr "Haut de gamme"
|
615 |
|
616 |
+
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
617 |
+
#: includes/global-settings.php:18 includes/global-settings.php:110
|
618 |
+
#: includes/row-settings.php:307 includes/template-settings.php:31
|
619 |
+
#: modules/accordion/accordion.php:90 modules/callout/callout.php:420
|
620 |
+
#: modules/content-slider/content-slider.php:209
|
621 |
+
#: modules/content-slider/content-slider.php:223
|
622 |
+
#: modules/content-slider/content-slider.php:257
|
623 |
+
#: modules/content-slider/content-slider.php:266
|
624 |
+
#: modules/content-slider/content-slider.php:537
|
625 |
+
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
626 |
+
#: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
|
627 |
+
#: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
|
628 |
+
#: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
|
629 |
+
#: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
|
630 |
+
#: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
|
631 |
+
#: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
|
632 |
+
#: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
|
633 |
+
#: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
|
634 |
+
#: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
|
635 |
+
#: modules/social-buttons/social-buttons.php:111
|
636 |
+
#: modules/social-buttons/social-buttons.php:120
|
637 |
+
#: modules/social-buttons/social-buttons.php:129
|
638 |
+
#: modules/testimonials/testimonials.php:85
|
639 |
+
#: modules/testimonials/testimonials.php:124
|
640 |
+
#: modules/testimonials/testimonials.php:154 modules/video/video.php:111
|
641 |
+
#: modules/video/video.php:123
|
642 |
+
msgid "No"
|
643 |
+
msgstr "Non"
|
644 |
+
|
645 |
+
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
646 |
+
#: includes/global-settings.php:19 includes/global-settings.php:111
|
647 |
+
#: includes/row-settings.php:308 includes/template-settings.php:32
|
648 |
+
#: modules/accordion/accordion.php:89 modules/callout/callout.php:421
|
649 |
+
#: modules/content-slider/content-slider.php:210
|
650 |
+
#: modules/content-slider/content-slider.php:224
|
651 |
+
#: modules/content-slider/content-slider.php:258
|
652 |
+
#: modules/content-slider/content-slider.php:267
|
653 |
+
#: modules/content-slider/content-slider.php:538
|
654 |
+
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
655 |
+
#: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
|
656 |
+
#: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
|
657 |
+
#: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
|
658 |
+
#: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
|
659 |
+
#: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
|
660 |
+
#: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
|
661 |
+
#: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
|
662 |
+
#: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
|
663 |
+
#: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
|
664 |
+
#: modules/social-buttons/social-buttons.php:110
|
665 |
+
#: modules/social-buttons/social-buttons.php:119
|
666 |
+
#: modules/social-buttons/social-buttons.php:128
|
667 |
+
#: modules/testimonials/testimonials.php:86
|
668 |
+
#: modules/testimonials/testimonials.php:125
|
669 |
+
#: modules/testimonials/testimonials.php:155 modules/video/video.php:112
|
670 |
+
#: modules/video/video.php:124
|
671 |
+
msgid "Yes"
|
672 |
+
msgstr "Oui"
|
673 |
+
|
674 |
+
#: includes/admin-templates-edit.php:29 includes/template-settings.php:37
|
675 |
+
msgid "Category"
|
676 |
+
msgstr "Catégorie"
|
677 |
+
|
678 |
+
#: includes/admin-templates-edit.php:32 includes/template-settings.php:40
|
679 |
+
msgctxt "Templates category label."
|
680 |
+
msgid "Landing Pages"
|
681 |
+
msgstr "Pages de renvoi"
|
682 |
+
|
683 |
+
#: includes/admin-templates-edit.php:33 includes/template-settings.php:41
|
684 |
+
msgctxt "Templates category label."
|
685 |
+
msgid "Company Info"
|
686 |
+
msgstr "Info de la compagnie"
|
687 |
+
|
688 |
+
#: includes/admin-templates-edit.php:40
|
689 |
+
msgid "Update Template"
|
690 |
+
msgstr "Mettre à jour le gabarit"
|
691 |
+
|
692 |
+
#: includes/admin-templates.php:3
|
693 |
+
msgid "Page Builder Template"
|
694 |
+
msgstr "Gabarit du Beaver Builder"
|
695 |
+
|
696 |
+
#: includes/admin-templates.php:10
|
697 |
+
msgctxt "Templates list column label."
|
698 |
+
msgid "Name"
|
699 |
+
msgstr "Nom"
|
700 |
+
|
701 |
+
#: includes/admin-templates.php:11
|
702 |
+
msgctxt "Templates list column label."
|
703 |
+
msgid "Category"
|
704 |
+
msgstr "Catégorie"
|
705 |
+
|
706 |
+
#: includes/admin-templates.php:12
|
707 |
+
msgctxt "Templates list column label. Is template premium one?"
|
708 |
+
msgid "Premium"
|
709 |
+
msgstr "Haut de gamme"
|
710 |
+
|
711 |
+
#: includes/admin-templates.php:25 includes/field-photo.php:12
|
712 |
+
#: includes/template-selector.php:83
|
713 |
+
msgid "Edit"
|
714 |
+
msgstr "Éditer"
|
715 |
+
|
716 |
+
#: includes/admin-templates.php:27 includes/template-selector.php:84
|
717 |
+
msgid "Delete"
|
718 |
+
msgstr "Effacer"
|
719 |
+
|
720 |
+
#: includes/admin-templates.php:40 includes/js-config.php:28
|
721 |
+
msgid "Do you really want to delete this template?"
|
722 |
+
msgstr "Voulez-vous vraiment effacer ce gabarit?"
|
723 |
+
|
724 |
+
#: includes/column-settings.php:4 includes/js-config.php:23
|
725 |
msgid "Column Settings"
|
726 |
+
msgstr "Paramètres de colonne"
|
727 |
|
728 |
+
#: includes/column-settings.php:7 includes/module-settings.php:87
|
729 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
730 |
+
#: modules/button/button.php:108 modules/button/button.php:146
|
731 |
+
#: modules/button/button.php:150 modules/callout/callout.php:241
|
732 |
+
#: modules/callout/callout.php:543
|
733 |
+
#: modules/content-slider/content-slider.php:425
|
734 |
+
#: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
|
735 |
+
#: modules/cta/cta.php:299 modules/heading/heading.php:69
|
736 |
+
#: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
|
737 |
+
#: modules/pricing-table/pricing-table.php:43
|
738 |
#: modules/pricing-table/pricing-table.php:155
|
739 |
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
740 |
msgid "Style"
|
742 |
|
743 |
#: includes/column-settings.php:14
|
744 |
msgid "Column Width"
|
745 |
+
msgstr "Largeur de colonne"
|
746 |
|
747 |
#: includes/column-settings.php:26 includes/row-settings.php:48
|
748 |
+
#: modules/button/button.php:66 modules/callout/callout.php:225
|
749 |
+
#: modules/callout/callout.php:478 modules/callout/callout.php:494
|
750 |
+
#: modules/content-slider/content-slider.php:382
|
751 |
+
#: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
|
752 |
+
#: modules/cta/cta.php:221
|
753 |
msgid "Text"
|
754 |
msgstr "Texte"
|
755 |
|
756 |
#: includes/column-settings.php:30 includes/column-settings.php:43
|
757 |
#: includes/column-settings.php:100 includes/row-settings.php:52
|
758 |
+
#: includes/row-settings.php:109 includes/row-settings.php:403
|
759 |
+
#: modules/callout/callout.php:391
|
760 |
+
#: modules/content-slider/content-slider.php:337
|
761 |
#: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
|
762 |
#: modules/separator/separator.php:34
|
763 |
msgid "Color"
|
764 |
msgstr "Couleur"
|
765 |
|
766 |
#: includes/column-settings.php:39 includes/row-settings.php:105
|
767 |
+
#: modules/button/button.php:115 modules/callout/callout.php:404
|
768 |
+
#: modules/callout/callout.php:508
|
769 |
+
#: modules/content-slider/content-slider.php:363
|
770 |
+
#: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
|
771 |
+
#: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
|
772 |
#: modules/icon/icon.php:95
|
773 |
msgid "Background Color"
|
774 |
+
msgstr "Couleur d'arrière-plan"
|
775 |
|
776 |
#: includes/column-settings.php:51 includes/column-settings.php:108
|
777 |
+
#: includes/row-settings.php:117 includes/row-settings.php:411
|
778 |
#: modules/separator/separator.php:44
|
779 |
msgid "Opacity"
|
780 |
msgstr "Opacité"
|
781 |
|
782 |
+
#: includes/column-settings.php:63 includes/row-settings.php:366
|
783 |
msgid "Border"
|
784 |
msgstr "Bordure"
|
785 |
|
786 |
#: includes/column-settings.php:67 includes/row-settings.php:65
|
787 |
+
#: includes/row-settings.php:370 modules/callout/callout.php:474
|
788 |
+
#: modules/content-slider/content-slider.php:331
|
789 |
+
#: modules/content-slider/content-slider.php:378
|
790 |
+
#: modules/content-slider/content-slider.php:596
|
791 |
+
#: modules/content-slider/content-slider.php:729
|
792 |
#: modules/slideshow/slideshow.php:339
|
793 |
msgid "Type"
|
794 |
msgstr "Type"
|
795 |
|
796 |
+
#: includes/column-settings.php:69 includes/row-settings.php:372
|
797 |
msgid ""
|
798 |
"The type of border to use. Double borders must have a width of at least 3px "
|
799 |
"to render properly."
|
800 |
msgstr ""
|
801 |
+
"Le type de bordure à utiliser. Les bordures doubles doivent avoir une "
|
802 |
+
"largeur d'au moins 3 px afin d'être présentées convenablement."
|
803 |
|
804 |
+
#: includes/column-settings.php:71 includes/row-settings.php:374
|
805 |
msgctxt "Border type."
|
806 |
msgid "None"
|
807 |
+
msgstr "Aucune"
|
808 |
|
809 |
+
#: includes/column-settings.php:72 includes/row-settings.php:375
|
810 |
#: modules/separator/separator.php:75
|
811 |
msgctxt "Border type."
|
812 |
msgid "Solid"
|
813 |
msgstr "Solide"
|
814 |
|
815 |
+
#: includes/column-settings.php:73 includes/row-settings.php:376
|
816 |
#: modules/separator/separator.php:76
|
817 |
msgctxt "Border type."
|
818 |
msgid "Dashed"
|
819 |
msgstr "Tirets"
|
820 |
|
821 |
+
#: includes/column-settings.php:74 includes/row-settings.php:377
|
822 |
#: modules/separator/separator.php:77
|
823 |
msgctxt "Border type."
|
824 |
msgid "Dotted"
|
825 |
+
msgstr "Pointillée"
|
826 |
|
827 |
+
#: includes/column-settings.php:75 includes/row-settings.php:378
|
828 |
#: modules/separator/separator.php:78
|
829 |
msgctxt "Border type."
|
830 |
msgid "Double"
|
831 |
msgstr "Double"
|
832 |
|
833 |
+
#: includes/column-settings.php:119 includes/row-settings.php:422
|
834 |
msgid "Top Width"
|
835 |
msgstr "Largeur du haut"
|
836 |
|
837 |
+
#: includes/column-settings.php:131 includes/row-settings.php:434
|
838 |
msgid "Bottom Width"
|
839 |
msgstr "Largeur du bas"
|
840 |
|
841 |
+
#: includes/column-settings.php:143 includes/row-settings.php:446
|
842 |
msgid "Left Width"
|
843 |
msgstr "Largeur gauche"
|
844 |
|
845 |
+
#: includes/column-settings.php:155 includes/row-settings.php:458
|
846 |
msgid "Right Width"
|
847 |
msgstr "Largeur droite"
|
848 |
|
849 |
#: includes/column-settings.php:170 includes/module-settings.php:6
|
850 |
+
#: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
|
851 |
msgid "Advanced"
|
852 |
msgstr "Avancé"
|
853 |
|
854 |
+
#: includes/column-settings.php:173 includes/global-settings.php:41
|
855 |
+
#: includes/global-settings.php:94 includes/module-settings.php:9
|
856 |
+
#: includes/row-settings.php:476
|
857 |
+
msgid "Margins"
|
858 |
+
msgstr "Marges"
|
859 |
|
860 |
+
#: includes/column-settings.php:177 includes/column-settings.php:230
|
861 |
+
#: includes/module-settings.php:13 includes/row-settings.php:480
|
862 |
+
#: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
|
863 |
+
msgid "Top"
|
864 |
+
msgstr "Haut"
|
|
|
865 |
|
866 |
+
#: includes/column-settings.php:189 includes/column-settings.php:242
|
867 |
+
#: includes/module-settings.php:25 includes/row-settings.php:492
|
868 |
+
#: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
|
869 |
+
msgid "Bottom"
|
870 |
+
msgstr "Bas"
|
871 |
+
|
872 |
+
#: includes/column-settings.php:201 includes/column-settings.php:254
|
873 |
+
#: includes/module-settings.php:37 includes/row-settings.php:504
|
874 |
+
#: includes/row-settings.php:557 modules/button/button.php:219
|
875 |
+
#: modules/callout/callout.php:252
|
876 |
+
#: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
|
877 |
+
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
878 |
+
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
879 |
+
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
880 |
+
msgid "Left"
|
881 |
+
msgstr "Gauche"
|
882 |
+
|
883 |
+
#: includes/column-settings.php:213 includes/column-settings.php:266
|
884 |
+
#: includes/module-settings.php:49 includes/row-settings.php:516
|
885 |
+
#: includes/row-settings.php:569 modules/button/button.php:220
|
886 |
+
#: modules/callout/callout.php:253
|
887 |
+
#: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
|
888 |
+
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
889 |
+
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
890 |
+
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
891 |
+
msgid "Right"
|
892 |
+
msgstr "Droit(e)"
|
893 |
+
|
894 |
+
#: includes/column-settings.php:226 includes/global-settings.php:49
|
895 |
+
#: includes/row-settings.php:529 modules/button/button.php:233
|
896 |
+
#: modules/callout/callout.php:598
|
897 |
+
#: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
|
898 |
+
msgid "Padding"
|
899 |
+
msgstr "Padding"
|
900 |
+
|
901 |
+
#: includes/column-settings.php:279 includes/global-settings.php:103
|
902 |
+
#: includes/module-settings.php:62 includes/row-settings.php:582
|
903 |
msgid "Responsive Layout"
|
904 |
+
msgstr "Présentation adaptative (Responsive layout)"
|
905 |
|
906 |
+
#: includes/column-settings.php:283 includes/module-settings.php:66
|
907 |
+
#: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
|
908 |
msgid "Display"
|
909 |
+
msgstr "Écran"
|
910 |
|
911 |
+
#: includes/column-settings.php:285 includes/module-settings.php:68
|
912 |
+
#: includes/row-settings.php:588
|
913 |
msgid "Always"
|
914 |
msgstr "Toujours"
|
915 |
|
916 |
+
#: includes/column-settings.php:286 includes/module-settings.php:69
|
917 |
+
#: includes/row-settings.php:589
|
918 |
msgid "Large Devices Only"
|
919 |
+
msgstr "Grands appareils seulement"
|
920 |
|
921 |
+
#: includes/column-settings.php:287 includes/module-settings.php:70
|
922 |
+
#: includes/row-settings.php:590
|
923 |
msgid "Large & Medium Devices Only"
|
924 |
+
msgstr "Grand & moyens appareils seulement"
|
925 |
|
926 |
+
#: includes/column-settings.php:288 includes/module-settings.php:71
|
927 |
+
#: includes/row-settings.php:591
|
928 |
msgid "Medium Devices Only"
|
929 |
+
msgstr "Moyens appareils seulement"
|
930 |
|
931 |
+
#: includes/column-settings.php:289 includes/module-settings.php:72
|
932 |
+
#: includes/row-settings.php:592
|
933 |
msgid "Medium & Small Devices Only"
|
934 |
+
msgstr "Moyen et petit appareils seulement"
|
935 |
|
936 |
+
#: includes/column-settings.php:290 includes/module-settings.php:73
|
937 |
+
#: includes/row-settings.php:593
|
938 |
msgid "Small Devices Only"
|
939 |
+
msgstr "Petits appareils seulement"
|
940 |
|
941 |
+
#: includes/column-settings.php:292
|
942 |
msgid "Choose whether to show or hide this column at different device sizes."
|
943 |
msgstr ""
|
944 |
+
"Choisir de montrer ou cacher cette colonne pour différents format "
|
945 |
+
"d'appareils."
|
946 |
|
947 |
+
#: includes/column-settings.php:299
|
948 |
msgid "Medium Device Width"
|
949 |
+
msgstr "Largeur d'appareil moyen"
|
950 |
|
951 |
+
#: includes/column-settings.php:300
|
952 |
msgid "The width of this column on medium devices such as tablets."
|
953 |
+
msgstr "La largeur de cette colonne sur des appareils moyens (ex: tablettes)"
|
|
|
954 |
|
955 |
+
#: includes/column-settings.php:302 includes/column-settings.php:330
|
956 |
+
#: modules/callout/callout.php:283
|
957 |
+
#: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
|
958 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
959 |
#: modules/heading/heading.php:174
|
960 |
msgid "Default"
|
961 |
msgstr "Par défaut"
|
962 |
|
963 |
+
#: includes/column-settings.php:303 includes/column-settings.php:331
|
964 |
+
#: modules/button/button.php:193 modules/callout/callout.php:284
|
965 |
+
#: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
|
966 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
967 |
#: modules/heading/heading.php:175
|
968 |
#: modules/social-buttons/social-buttons.php:74
|
969 |
msgid "Custom"
|
970 |
msgstr "Personalisé"
|
971 |
|
972 |
+
#: includes/column-settings.php:316
|
973 |
msgid "Custom Medium Device Width"
|
974 |
+
msgstr "Largeur personalisée de petit appareil"
|
975 |
|
976 |
+
#: includes/column-settings.php:327
|
977 |
msgid "Small Device Width"
|
978 |
+
msgstr "Largeur de petit appareil"
|
979 |
|
980 |
+
#: includes/column-settings.php:328
|
981 |
msgid "The width of this column on small devices such as phones."
|
982 |
msgstr ""
|
983 |
+
"La largeur de cette colonne sur de petits appareils tels les téléphones."
|
984 |
|
985 |
+
#: includes/column-settings.php:344
|
986 |
msgid "Custom Small Device Width"
|
987 |
+
msgstr "largeur personalisée de petit appareil"
|
988 |
|
989 |
+
#: includes/column-settings.php:356 includes/module-settings.php:115
|
990 |
+
#: includes/row-settings.php:603
|
991 |
+
msgid "CSS Selectors"
|
992 |
+
msgstr "Sélecteur CSS"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
993 |
|
994 |
+
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
995 |
+
#: includes/module-settings.php:119 includes/row-settings.php:607
|
996 |
+
msgid "ID"
|
997 |
+
msgstr "ID"
|
|
|
998 |
|
999 |
+
#: includes/column-settings.php:361
|
1000 |
+
msgid ""
|
1001 |
+
"A unique ID that will be applied to this column's HTML. Must start with a "
|
1002 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1003 |
+
msgstr ""
|
1004 |
+
"Un identifiant unique qui sera appliquée au HTML de cette rangée. Le nom "
|
1005 |
+
"doit commencer par une lettre et ne doit contenir que des tirets, des traits "
|
1006 |
+
"de soulignement, des lettres ou des chiffres. Aucun espace."
|
|
|
|
|
1007 |
|
1008 |
+
#: includes/column-settings.php:368
|
1009 |
+
msgid "CSS Class"
|
1010 |
+
msgstr "Classe CSS"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
|
1012 |
+
#: includes/column-settings.php:369
|
1013 |
+
msgid ""
|
1014 |
+
"A class that will be applied to this column's HTML. Must start with a letter "
|
1015 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1016 |
+
"classes with spaces."
|
1017 |
+
msgstr ""
|
1018 |
+
"Une classe qui sera appliquée au HTML de cette colonne. Le nom doit "
|
1019 |
+
"commencer par une lettre et ne doit contenir que des tirets, des traits de "
|
1020 |
+
"soulignement, des lettres ou des chiffres. Séparer des classes multiples "
|
1021 |
+
"avec des espaces."
|
1022 |
|
1023 |
+
#: includes/field-form.php:28
|
1024 |
#, php-format
|
1025 |
msgctxt "%s stands for form field label."
|
1026 |
msgid "Edit %s"
|
1027 |
+
msgstr "Éditer %s"
|
1028 |
|
1029 |
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
1030 |
msgid "Select Icon"
|
1034 |
msgid "Replace"
|
1035 |
msgstr "Remplacer"
|
1036 |
|
1037 |
+
#: includes/field-icon.php:7 includes/js-config.php:58
|
1038 |
msgid "Remove"
|
1039 |
+
msgstr "Enlever"
|
1040 |
|
1041 |
#: includes/field-link.php:3
|
1042 |
msgid "Select"
|
1043 |
+
msgstr "Choisir"
|
1044 |
|
1045 |
#: includes/field-link.php:5
|
1046 |
msgid "Enter a post title to search."
|
1047 |
+
msgstr "Entrer un titre d'article à chercher"
|
1048 |
|
1049 |
#: includes/field-link.php:6 includes/field-suggest.php:7
|
1050 |
msgid "Start typing..."
|
1051 |
+
msgstr "Commencez à taper"
|
1052 |
|
1053 |
#: includes/field-link.php:7 includes/icon-selector.php:28
|
1054 |
+
#: includes/js-config.php:19 includes/settings.php:63
|
1055 |
#: includes/template-selector.php:102 includes/ui.php:11
|
1056 |
msgid "Cancel"
|
1057 |
msgstr "Annuler"
|
1060 |
#, php-format
|
1061 |
msgid "1 Photo Selected"
|
1062 |
msgid_plural "%d Photos Selected"
|
1063 |
+
msgstr[0] "1 photo sélectionnée"
|
1064 |
msgstr[1] "%d photos sélectionnées"
|
1065 |
|
1066 |
#: includes/field-multiple-photos.php:13
|
1069 |
|
1070 |
#: includes/field-multiple-photos.php:14
|
1071 |
msgid "Edit Gallery"
|
1072 |
+
msgstr "Editer la galerie"
|
1073 |
|
1074 |
#: includes/field-multiple-photos.php:15
|
1075 |
msgid "Add Photos"
|
1076 |
msgstr "Ajouter des photos"
|
1077 |
|
1078 |
+
#: includes/field-photo.php:3 includes/js-config.php:63
|
1079 |
msgid "Select Photo"
|
1080 |
msgstr "Sélectionner la photo"
|
1081 |
|
1082 |
+
#: includes/field-video.php:3 includes/js-config.php:65
|
|
|
|
|
|
|
|
|
1083 |
msgid "Select Video"
|
1084 |
+
msgstr "Sélectionner le vidéo"
|
1085 |
|
1086 |
#: includes/field-video.php:17
|
1087 |
msgid "Replace Video"
|
1088 |
+
msgstr "Remplacer le vidéo"
|
1089 |
+
|
1090 |
+
#: includes/global-settings.php:7 includes/template-settings.php:7
|
1091 |
+
#: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
|
1092 |
+
#: modules/button/button.php:59 modules/callout/callout.php:209
|
1093 |
+
#: modules/contact-form/contact-form.php:57
|
1094 |
+
#: modules/content-slider/content-slider.php:190
|
1095 |
+
#: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
|
1096 |
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
1097 |
#: modules/html/html.php:26 modules/icon-group/icon-group.php:128
|
1098 |
#: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
|
1108 |
|
1109 |
#: includes/global-settings.php:8
|
1110 |
msgid "Note: These settings apply to all posts and pages."
|
1111 |
+
msgstr "Note: Ces paramètres s'appliquent à tous les articles et pages."
|
1112 |
|
1113 |
#: includes/global-settings.php:11
|
1114 |
msgid "Default Page Heading"
|
1115 |
+
msgstr "Entête de page par défaut"
|
1116 |
|
1117 |
#: includes/global-settings.php:15
|
1118 |
msgctxt ""
|
1120 |
msgid "Show"
|
1121 |
msgstr "Montrer"
|
1122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
#: includes/global-settings.php:26
|
1124 |
msgid ""
|
1125 |
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
1126 |
"You will also be required to enter some basic CSS for this to work if you "
|
1127 |
"choose no."
|
1128 |
msgstr ""
|
1129 |
+
"Sélectionner « Non » cachera le titre par défaut pour le « "
|
1130 |
+
"post type » de type « Page ». Vous devrez aussi saisir du "
|
1131 |
+
"code CSS de base afin de faire fonctionner ceci si vous sélectionnez « "
|
1132 |
+
"Non »."
|
1133 |
|
1134 |
#: includes/global-settings.php:30
|
1135 |
msgid "CSS Selector"
|
1137 |
|
1138 |
#: includes/global-settings.php:32
|
1139 |
msgid "Enter a CSS selector for the default page heading to hide it."
|
1140 |
+
msgstr ""
|
1141 |
+
"Entrez un sélecteur CSS pour l'entête de la page par défaut afin de le "
|
1142 |
+
"cacher. "
|
1143 |
|
1144 |
#: includes/global-settings.php:37
|
1145 |
msgid "Rows"
|
1147 |
|
1148 |
#: includes/global-settings.php:57
|
1149 |
msgid "Max Width"
|
1150 |
+
msgstr "Largeur maximum"
|
1151 |
|
1152 |
#: includes/global-settings.php:62
|
1153 |
msgid ""
|
1158 |
"et sélectionner une rangée pleine largeur dans les réglages pour chaque "
|
1159 |
"ligne individuellement."
|
1160 |
|
1161 |
+
#: includes/global-settings.php:66
|
1162 |
+
msgid "Default Row Width"
|
1163 |
+
msgstr "Largeur de rangée par défaut"
|
1164 |
+
|
1165 |
+
#: includes/global-settings.php:69 includes/global-settings.php:83
|
1166 |
+
#: includes/row-settings.php:19 includes/row-settings.php:37
|
1167 |
+
#: includes/row-settings.php:179
|
1168 |
+
msgid "Fixed"
|
1169 |
+
msgstr "Fixe"
|
1170 |
+
|
1171 |
+
#: includes/global-settings.php:70 includes/global-settings.php:84
|
1172 |
+
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1173 |
+
#: modules/button/button.php:192 modules/callout/callout.php:585
|
1174 |
+
msgid "Full Width"
|
1175 |
+
msgstr "Pleine largeur"
|
1176 |
+
|
1177 |
+
#: includes/global-settings.php:80
|
1178 |
+
msgid "Default Row Content Width"
|
1179 |
+
msgstr "Largeur par défaut de la rangée"
|
1180 |
+
|
1181 |
+
#: includes/global-settings.php:107
|
1182 |
msgctxt ""
|
1183 |
"General settings form field label. Intended meaning: \"Responsive layout "
|
1184 |
"enabled?\""
|
1185 |
msgid "Enabled"
|
1186 |
msgstr "Activé"
|
1187 |
|
1188 |
+
#: includes/global-settings.php:121
|
1189 |
msgid "Medium Device Breakpoint"
|
1190 |
+
msgstr "Point d'arrêt sur appareil moyen"
|
1191 |
|
1192 |
+
#: includes/global-settings.php:126
|
1193 |
msgid ""
|
1194 |
"The browser width at which the layout will adjust for medium devices such as "
|
1195 |
"tablets."
|
1196 |
msgstr ""
|
1197 |
+
"La largeur du navigateur pour laquelle la présentation s'ajustera pour les "
|
1198 |
+
"appareils de taille moyenne telles que les tablettes."
|
1199 |
|
1200 |
+
#: includes/global-settings.php:130
|
1201 |
msgid "Small Device Breakpoint"
|
1202 |
+
msgstr "Point d'arrêt sur petit appareil"
|
1203 |
|
1204 |
+
#: includes/global-settings.php:135
|
1205 |
msgid ""
|
1206 |
"The browser width at which the layout will adjust for small devices such as "
|
1207 |
"phones."
|
1208 |
msgstr ""
|
1209 |
+
"La largeur du navigateur pour laquelle la présentation s'ajustera pour les "
|
1210 |
+
"petits appareils tels que les téléphones."
|
1211 |
|
1212 |
#: includes/icon-selector.php:5
|
1213 |
msgctxt "Select option for showing all icon libraries."
|
1214 |
msgid "All Libraries"
|
1215 |
msgstr "Toutes les bibliothèques"
|
1216 |
|
1217 |
+
#: includes/js-config.php:18
|
1218 |
msgid "What would you like to do?"
|
1219 |
+
msgstr "Que désirez-vous faire?"
|
1220 |
|
1221 |
+
#: includes/js-config.php:20
|
1222 |
msgid "Change Template"
|
1223 |
+
msgstr "Changer la présentation"
|
1224 |
|
1225 |
+
#: includes/js-config.php:21
|
1226 |
msgid ""
|
1227 |
"Warning! Changing the template will replace your existing layout. Do you "
|
1228 |
"really want to do this?"
|
1229 |
msgstr ""
|
1230 |
+
"Avertissement! Échanger le gabarit va remplacer la présentation existante. "
|
1231 |
+
"Voulez-vous vraiment effectuer ceci?"
|
1232 |
|
1233 |
+
#: includes/js-config.php:22
|
1234 |
msgid "Column"
|
1235 |
msgstr "Colonne"
|
1236 |
|
1237 |
+
#: includes/js-config.php:24
|
1238 |
msgid ""
|
1239 |
"Please select either a background layout or content layout before submitting."
|
1240 |
msgstr ""
|
1241 |
+
"Prière de sélectionner soit une présentation d'arrière-plan, ou une "
|
1242 |
+
"présentation de contenu avant de soumettre."
|
1243 |
|
1244 |
+
#: includes/js-config.php:25
|
1245 |
msgid "Do you really want to delete this item?"
|
1246 |
+
msgstr "Voulez-vous vraiment effacer cet item?"
|
1247 |
|
1248 |
+
#: includes/js-config.php:26
|
1249 |
msgid ""
|
1250 |
"Do you really want to delete this module? All content data will be "
|
1251 |
"permanently deleted."
|
1252 |
msgstr ""
|
1253 |
+
"Voulez-vous vraiment supprimer cet extension? Tous votre contenu sera effacé "
|
1254 |
+
"à jamais."
|
1255 |
|
1256 |
+
#: includes/js-config.php:27
|
1257 |
msgid ""
|
1258 |
"Do you really want to delete this row? All content data will be permanently "
|
1259 |
"deleted."
|
1260 |
msgstr ""
|
1261 |
+
"Voulez-vous vraiment effacer cette rangée? Tout le contenu sera supprimé de "
|
1262 |
+
"façon permanente."
|
|
|
|
|
|
|
|
|
1263 |
|
1264 |
+
#: includes/js-config.php:29
|
1265 |
msgid "Discard Draft"
|
1266 |
+
msgstr "Supprimer brouillon"
|
1267 |
|
1268 |
+
#: includes/js-config.php:30
|
1269 |
msgid ""
|
1270 |
"Do you really want to discard this draft? All of your changes that are not "
|
1271 |
"published will be lost."
|
1272 |
msgstr ""
|
1273 |
+
"Voulez-vous vraiment supprimer ce brouillon? Tous vos changements non-"
|
1274 |
+
"publiés seront perdus."
|
1275 |
|
1276 |
+
#: includes/js-config.php:31 includes/ui.php:44
|
1277 |
+
msgid "Done"
|
1278 |
+
msgstr "Terminé"
|
1279 |
+
|
1280 |
+
#: includes/js-config.php:32
|
1281 |
msgid "Save Draft"
|
1282 |
+
msgstr "Sauvegarder brouillon"
|
1283 |
|
1284 |
+
#: includes/js-config.php:33
|
1285 |
msgctxt "Duplicate page/post action label."
|
1286 |
msgid "Duplicate"
|
1287 |
+
msgstr "Reproduire"
|
1288 |
|
1289 |
+
#: includes/js-config.php:34
|
1290 |
msgid "Duplicate This Page"
|
1291 |
+
msgstr "Reproduire cette page"
|
1292 |
|
1293 |
+
#: includes/js-config.php:35
|
1294 |
msgid "Duplicate This Template"
|
1295 |
+
msgstr "Reproduire ce gabarit"
|
1296 |
|
1297 |
+
#: includes/js-config.php:36
|
1298 |
msgid "Edit Global Settings"
|
1299 |
+
msgstr "Editer les paramètres globaux"
|
1300 |
|
1301 |
+
#: includes/js-config.php:37
|
1302 |
msgid "Drop a row layout or module to get started!"
|
1303 |
+
msgstr ""
|
1304 |
+
"Glisser-déposer une présentation de rangée ou une extension afin de débuter!"
|
1305 |
+
|
1306 |
+
# Check with Charles?
|
1307 |
+
#: includes/js-config.php:38
|
1308 |
+
msgid ""
|
1309 |
+
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1310 |
+
"not functioning as expected the cause is most likely this error. Please help "
|
1311 |
+
"us by disabling all plugins and testing Beaver Builder while reactivating "
|
1312 |
+
"each to determine if the issue is related to a third party plugin."
|
1313 |
+
msgstr ""
|
1314 |
+
"Beaver Builder a capturé l'erreur Javascript suivante. Si beaver Builder ne "
|
1315 |
+
"fonctionne pas correctement en ce moment, cette erreur en est probablement "
|
1316 |
+
"la cause. Aidez-nous en désactivant tous les extensions et en les réactivant "
|
1317 |
+
"une par une tout en testant si Beaver Builder revient à son fonctionnement "
|
1318 |
+
"normal. Ceci permettra de déterminer laquelle de vos extensions est "
|
1319 |
+
"incompatible avec Beaver Builder et nous pourrons ainsi travailler à "
|
1320 |
+
"résoudre le problème."
|
1321 |
+
|
1322 |
+
#: includes/js-config.php:39
|
1323 |
+
msgid "Full Size"
|
1324 |
+
msgstr "Pleine grandeur"
|
1325 |
+
|
1326 |
+
#: includes/js-config.php:40
|
1327 |
+
msgid "Get Help"
|
1328 |
+
msgstr "Recevoir de l'assistance"
|
1329 |
|
1330 |
+
#: includes/js-config.php:41
|
1331 |
+
msgid "Getting Started Video"
|
1332 |
+
msgstr "Vidéo de départ"
|
1333 |
|
1334 |
+
#: includes/js-config.php:42
|
1335 |
+
msgid "\"{message}\" on line {line} of {file}."
|
1336 |
+
msgstr "« {message} » à la ligne {line} de {file}."
|
1337 |
+
|
1338 |
+
#: includes/js-config.php:43
|
1339 |
msgid "Insert"
|
1340 |
msgstr "Insérer"
|
1341 |
|
1342 |
+
#: includes/js-config.php:44
|
1343 |
msgid "Large"
|
1344 |
+
msgstr "Grand"
|
1345 |
|
1346 |
+
#: includes/js-config.php:45
|
1347 |
msgid "Manage Templates"
|
1348 |
+
msgstr "Gérer les gabarits"
|
1349 |
|
1350 |
+
#: includes/js-config.php:46
|
1351 |
msgid "Medium"
|
1352 |
+
msgstr "Moyen(ne)"
|
1353 |
|
1354 |
+
#: includes/js-config.php:47
|
1355 |
msgid "Module"
|
1356 |
+
msgstr "Extension"
|
1357 |
|
1358 |
+
#: includes/js-config.php:48
|
1359 |
msgid "Move"
|
1360 |
msgstr "Déplacer"
|
1361 |
|
1362 |
+
#: includes/js-config.php:49
|
1363 |
msgid "New Column"
|
1364 |
msgstr "Nouvelle colonne"
|
1365 |
|
1366 |
+
#: includes/js-config.php:50
|
1367 |
msgid "New Row"
|
1368 |
msgstr "Nouvelle rangée"
|
1369 |
|
1370 |
+
#: includes/js-config.php:51
|
1371 |
msgid "No results found."
|
1372 |
+
msgstr "Aucuns résultats trouvés"
|
1373 |
|
1374 |
+
#: includes/js-config.php:52
|
1375 |
+
msgid "No Thanks"
|
1376 |
+
msgstr "Non merci"
|
1377 |
+
|
1378 |
+
#: includes/js-config.php:53
|
1379 |
msgid "OK"
|
1380 |
+
msgstr "Ok"
|
1381 |
|
1382 |
+
#: includes/js-config.php:54 modules/photo/photo.php:454
|
1383 |
msgid "Photo Page"
|
1384 |
msgstr "Page photos"
|
1385 |
|
1386 |
+
#: includes/js-config.php:55
|
1387 |
msgid "Photo Selected"
|
1388 |
msgstr "Photo sélectionnée"
|
1389 |
|
1390 |
+
#: includes/js-config.php:56
|
1391 |
msgid "Photos Selected"
|
1392 |
msgstr "Photos sélectionnées"
|
1393 |
|
1394 |
+
#: includes/js-config.php:57
|
1395 |
msgid "Publish Changes"
|
1396 |
+
msgstr "Publiez les changements"
|
1397 |
|
1398 |
+
#: includes/js-config.php:59
|
1399 |
msgid "Row"
|
1400 |
msgstr "Rangée"
|
1401 |
|
1402 |
+
#: includes/js-config.php:60 includes/row-settings.php:6
|
1403 |
msgid "Row Settings"
|
1404 |
+
msgstr "Paramètres de rangée"
|
1405 |
|
1406 |
+
#: includes/js-config.php:61
|
1407 |
msgid "Save Core Template"
|
1408 |
+
msgstr "Sauvegarder le gabarit"
|
1409 |
|
1410 |
+
#: includes/js-config.php:62 includes/ui.php:10
|
1411 |
#: includes/user-template-settings.php:4
|
1412 |
msgid "Save Template"
|
1413 |
+
msgstr "Sauvegarder le gabarit"
|
1414 |
|
1415 |
+
#: includes/js-config.php:64
|
1416 |
msgid "Select Photos"
|
1417 |
+
msgstr "Sélectionner les photos"
|
1418 |
|
1419 |
+
#: includes/js-config.php:67
|
1420 |
+
msgid "Take a Tour"
|
1421 |
+
msgstr "Suivre une visite guidée"
|
1422 |
+
|
1423 |
+
#: includes/js-config.php:68
|
1424 |
msgid "Append New Layout"
|
1425 |
+
msgstr "Ajouter une autre présentation"
|
1426 |
|
1427 |
+
#: includes/js-config.php:69
|
1428 |
msgid "Replace Existing Layout"
|
1429 |
+
msgstr "Remplacer la présentation existante"
|
1430 |
|
1431 |
+
#: includes/js-config.php:70
|
1432 |
msgid "Template Saved!"
|
1433 |
+
msgstr "Gabarit sauvegardé!"
|
1434 |
|
1435 |
+
#: includes/js-config.php:71
|
1436 |
msgid "Thumbnail"
|
1437 |
msgstr "Vignette"
|
1438 |
|
1439 |
+
#: includes/js-config.php:72
|
1440 |
+
msgid "Next"
|
1441 |
+
msgstr "Suivant"
|
1442 |
+
|
1443 |
+
#: includes/js-config.php:73
|
1444 |
+
msgid "Get Started"
|
1445 |
+
msgstr "Débuter"
|
1446 |
+
|
1447 |
+
#: includes/js-config.php:74
|
1448 |
+
msgid "Choose a Template"
|
1449 |
+
msgstr "Sélectionner le gabarit"
|
1450 |
+
|
1451 |
+
#: includes/js-config.php:75
|
1452 |
+
msgid ""
|
1453 |
+
"Get started by choosing a layout template to customize, or build a page from "
|
1454 |
+
"scratch by selecting the blank layout template."
|
1455 |
+
msgstr ""
|
1456 |
+
"Débutez en sélectionnant un gabarit à personnaliser, ou en bâtissant à "
|
1457 |
+
"partir de zéro grâce au gabarit de page vierge. "
|
1458 |
+
|
1459 |
+
#: includes/js-config.php:76
|
1460 |
+
msgid "Add Rows"
|
1461 |
+
msgstr "Ajout de rangées"
|
1462 |
+
|
1463 |
+
#: includes/js-config.php:77
|
1464 |
+
msgid ""
|
1465 |
+
"Add mulit-column rows, adjust spacing, add backgrounds and more by dragging "
|
1466 |
+
"and dropping row layouts onto the page."
|
1467 |
+
msgstr ""
|
1468 |
+
"Addition de rangées multi-colonne, ajustement de l'espacement, ajout "
|
1469 |
+
"d'arrière-plans et plus en glissant-déposant les gabarits de rangée sur la "
|
1470 |
+
"page."
|
1471 |
+
|
1472 |
+
#: includes/js-config.php:78 includes/ui.php:49
|
1473 |
+
msgid "Add Content"
|
1474 |
+
msgstr "Ajouter le contenu"
|
1475 |
+
|
1476 |
+
#: includes/js-config.php:79
|
1477 |
+
msgid ""
|
1478 |
+
"Add new content by dragging and dropping modules or widgets into your row "
|
1479 |
+
"layouts or to create a new row layout."
|
1480 |
+
msgstr ""
|
1481 |
+
"Insérer du nouveau contenu en glissant-déposant des modules ou widgets dans "
|
1482 |
+
"les rangées de votre mise en page, ou afin de créer une nouvelle rangée. "
|
1483 |
+
|
1484 |
+
#: includes/js-config.php:80
|
1485 |
+
msgid "Edit Content"
|
1486 |
+
msgstr "Edition du contenu"
|
1487 |
+
|
1488 |
+
#: includes/js-config.php:81
|
1489 |
+
msgid ""
|
1490 |
+
"Move your mouse over rows, columns or modules to edit and interact with them."
|
1491 |
+
msgstr ""
|
1492 |
+
"Survolez les rangées, colonnes ou modules avec votre souris afin d'interagir "
|
1493 |
+
"avec ceux-ci et passer au mode édition."
|
1494 |
+
|
1495 |
+
#: includes/js-config.php:82
|
1496 |
+
msgid ""
|
1497 |
+
"Use the action buttons to perform actions such as moving, editing, "
|
1498 |
+
"duplicating, accessing individual column settings or deleting rows, columns "
|
1499 |
+
"and modules."
|
1500 |
+
msgstr ""
|
1501 |
+
"Utilisez les boutons d'actions afin de déplacer, éditer, dupliquer, accéder "
|
1502 |
+
"au paramètres individuels des colonnes, ou bien effacer des rangées, "
|
1503 |
+
"colonnes ou modules."
|
1504 |
+
|
1505 |
+
#: includes/js-config.php:83
|
1506 |
+
msgid "Add More Content"
|
1507 |
+
msgstr "Ajout de contenu"
|
1508 |
+
|
1509 |
+
#: includes/js-config.php:84
|
1510 |
+
msgid ""
|
1511 |
+
"Use the Add Content button to open the content panel and add new row layouts "
|
1512 |
+
"or content."
|
1513 |
+
msgstr ""
|
1514 |
+
"Utiliser le bouton « Ajouter le contenu » afin d'ouvrir le "
|
1515 |
+
"panneau de contenu et ajouter de nouvelles rangées ou du contenu."
|
1516 |
+
|
1517 |
+
#: includes/js-config.php:85
|
1518 |
+
msgid "Change Templates"
|
1519 |
+
msgstr "Changer les gabarits"
|
1520 |
+
|
1521 |
+
#: includes/js-config.php:86
|
1522 |
+
msgid ""
|
1523 |
+
"Use the Templates button to pick a new template or append one to your "
|
1524 |
+
"layout. Appending will insert a new template at the end of your existing "
|
1525 |
+
"page content."
|
1526 |
+
msgstr ""
|
1527 |
+
"Utilisez le bouton de sélection de gabarit afin de sélectionner un nouveau "
|
1528 |
+
"gabarit, ou en ajouter un nouveau. L'ajout insère le nouveau gabarit sous le "
|
1529 |
+
"gabarit pré-existant."
|
1530 |
+
|
1531 |
+
#: includes/js-config.php:87
|
1532 |
+
msgid "Helpful Tools"
|
1533 |
+
msgstr "Outils utiles"
|
1534 |
+
|
1535 |
+
#: includes/js-config.php:88
|
1536 |
+
msgid ""
|
1537 |
+
"The Tools button lets you duplicate a page, save a template or edit the "
|
1538 |
+
"global settings."
|
1539 |
+
msgstr ""
|
1540 |
+
"Le bouton Outils permet de dupliquer une page, sauvegarder un gabarit. ou "
|
1541 |
+
"d'éditer les paramètres globaux."
|
1542 |
+
|
1543 |
+
#: includes/js-config.php:89
|
1544 |
+
msgid "Publish Your Changes"
|
1545 |
+
msgstr "Publiez les changements"
|
1546 |
+
|
1547 |
+
#: includes/js-config.php:90
|
1548 |
+
msgid ""
|
1549 |
+
"Once you're finished, click the Done button to publish your changes, save a "
|
1550 |
+
"draft or revert back to the last published state."
|
1551 |
+
msgstr ""
|
1552 |
+
"Une fois terminé, cliquez sur le bouton « Terminé » afin de "
|
1553 |
+
"publier vos changements, sauvegarder un brouillon, ou revenir à la version "
|
1554 |
+
"publiée précédemment."
|
1555 |
+
|
1556 |
+
#: includes/js-config.php:91
|
1557 |
+
msgid "Let's Get Building!"
|
1558 |
+
msgstr "Construisons!"
|
1559 |
+
|
1560 |
+
#: includes/js-config.php:92
|
1561 |
+
msgid ""
|
1562 |
+
"Now that you know the basics, you're ready to start building! If at any time "
|
1563 |
+
"you need help, click the help icon in the upper right corner to access the "
|
1564 |
+
"help menu. Happy building!"
|
1565 |
+
msgstr ""
|
1566 |
+
"Maintenant que vous connaissez la base, vous êtes prêts à bâtir! En tout "
|
1567 |
+
"temps, cliquez sur le bouton d'aide dans le coin droit supérieur afin "
|
1568 |
+
"d'obtenir de l'aide. Joyeuse construction!"
|
1569 |
+
|
1570 |
+
#: includes/js-config.php:93
|
1571 |
msgid ""
|
1572 |
"The settings you are currently editing will not be saved if you navigate "
|
1573 |
"away from this page."
|
1574 |
msgstr ""
|
1575 |
+
"Les paramètres que vous éditez ne seront pas sauvegardés si vous quittez "
|
1576 |
+
"cette page."
|
1577 |
+
|
1578 |
+
#: includes/js-config.php:94
|
1579 |
+
msgid "View the Knowledge Base"
|
1580 |
+
msgstr "Visualiser la base de connaissances"
|
1581 |
+
|
1582 |
+
#: includes/js-config.php:95
|
1583 |
+
msgid "Visit the Forums"
|
1584 |
+
msgstr "Visiter les forums"
|
1585 |
+
|
1586 |
+
#: includes/js-config.php:96
|
1587 |
+
msgid "Watch the Video"
|
1588 |
+
msgstr "Visionner le vidéo"
|
1589 |
+
|
1590 |
+
#: includes/js-config.php:97
|
1591 |
+
msgid ""
|
1592 |
+
"Welcome! It looks like this might be your first time using the builder. "
|
1593 |
+
"Would you like to take a tour?"
|
1594 |
+
msgstr ""
|
1595 |
+
"Bienvenue! Il semble que ce soit la première fois que vous utilisé Beaver "
|
1596 |
+
"Builder. Aimeriez-vous une visite guidée?"
|
1597 |
+
|
1598 |
+
#: includes/js-config.php:98
|
1599 |
+
msgid "Yes Please!"
|
1600 |
+
msgstr "Oui s'il vous plaît!"
|
1601 |
|
1602 |
#: includes/loop-settings.php:19
|
1603 |
msgid "Post Type"
|
1604 |
+
msgstr "Post Type"
|
1605 |
|
1606 |
#: includes/loop-settings.php:25
|
1607 |
msgid "Order By"
|
1608 |
+
msgstr "Ordonner par"
|
|
|
|
|
|
|
|
|
1609 |
|
1610 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1611 |
#: modules/woocommerce/woocommerce.php:189
|
1612 |
msgid "Date"
|
1613 |
+
msgstr "Date"
|
1614 |
|
1615 |
#: includes/loop-settings.php:29
|
1616 |
msgid "Date Last Modified"
|
1627 |
|
1628 |
#: includes/loop-settings.php:32
|
1629 |
msgid "Comment Count"
|
1630 |
+
msgstr "Nombre de commentaires"
|
1631 |
|
1632 |
#: includes/loop-settings.php:33
|
1633 |
msgid "Menu Order"
|
1657 |
#, php-format
|
1658 |
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1659 |
msgstr ""
|
1660 |
+
"Entrez une liste des %s séparé(e)s par des virgules. Seulement ces %s seront "
|
1661 |
+
"montré(e)s."
|
1662 |
|
1663 |
#: includes/loop-settings.php:76
|
1664 |
#, php-format
|
1665 |
msgid ""
|
1666 |
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1667 |
msgstr ""
|
1668 |
+
"Entrez une liste des %s séparé(e)s par des virgules. Seuls les articles avec "
|
1669 |
+
"ces %s seront montrés."
|
1670 |
|
1671 |
#: includes/loop-settings.php:90
|
1672 |
msgid "Authors"
|
1673 |
+
msgstr "Auteur"
|
1674 |
|
1675 |
#: includes/loop-settings.php:91
|
1676 |
msgid ""
|
1678 |
"authors will be shown."
|
1679 |
msgstr ""
|
1680 |
"Entrez une liste séparée par des virgules des noms d'auteurs. Seuls les "
|
1681 |
+
"articles de ces auteurs seront affichés."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1682 |
|
1683 |
+
#: includes/module-settings.php:75
|
1684 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1685 |
msgstr ""
|
1686 |
+
"Choisir de montrer ou cacher cette colonne pour différents format "
|
1687 |
+
"d'appareils."
|
1688 |
|
1689 |
+
#: includes/module-settings.php:83
|
1690 |
msgid "Animation"
|
1691 |
msgstr "Animation"
|
1692 |
|
1693 |
+
#: includes/module-settings.php:89
|
1694 |
msgctxt "Animation style."
|
1695 |
msgid "None"
|
1696 |
msgstr "Aucune"
|
1697 |
|
1698 |
+
#: includes/module-settings.php:90
|
1699 |
msgctxt "Animation style."
|
1700 |
msgid "Fade In"
|
1701 |
msgstr "Ouverture en fondu"
|
1702 |
|
1703 |
+
#: includes/module-settings.php:91
|
1704 |
msgctxt "Animation style."
|
1705 |
msgid "Slide Left"
|
1706 |
+
msgstr "Glissement de la gauche"
|
1707 |
|
1708 |
+
#: includes/module-settings.php:92
|
1709 |
msgctxt "Animation style."
|
1710 |
msgid "Slide Right"
|
1711 |
+
msgstr "Glissement de la droite"
|
1712 |
|
1713 |
+
#: includes/module-settings.php:93
|
1714 |
msgctxt "Animation style."
|
1715 |
msgid "Slide Up"
|
1716 |
msgstr "Glissement vers le haut"
|
1717 |
|
1718 |
+
#: includes/module-settings.php:94
|
1719 |
msgctxt "Animation style."
|
1720 |
msgid "Slide Down"
|
1721 |
msgstr "Glissement vers le bas"
|
1722 |
|
1723 |
+
#: includes/module-settings.php:102
|
1724 |
+
#: modules/content-slider/content-slider.php:229
|
1725 |
#: modules/testimonials/testimonials.php:91
|
1726 |
msgid "Delay"
|
1727 |
+
msgstr "Délai"
|
1728 |
|
1729 |
+
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1730 |
+
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
|
1731 |
+
#: modules/content-slider/content-slider.php:250
|
1732 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1733 |
#: modules/slideshow/slideshow.php:581
|
1734 |
#: modules/testimonials/testimonials.php:95
|
1737 |
msgid "seconds"
|
1738 |
msgstr "secondes"
|
1739 |
|
1740 |
+
#: includes/module-settings.php:107
|
1741 |
msgid "The amount of time in seconds before this animation starts."
|
1742 |
+
msgstr "Le montant de temps en secondes avant que l'animation débute."
|
1743 |
|
1744 |
+
#: includes/module-settings.php:120
|
1745 |
+
msgid ""
|
1746 |
+
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1747 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1748 |
+
msgstr ""
|
1749 |
+
"Un identifiant unique qui sera appliquée au HTML de ce module. Le nom doit "
|
1750 |
+
"commencer par une lettre et ne doit contenir que des tirets, des traits de "
|
1751 |
+
"soulignement, des lettres ou des chiffres. Aucun espace."
|
1752 |
|
1753 |
+
#: includes/module-settings.php:127 includes/row-settings.php:615
|
1754 |
+
msgid "Class"
|
1755 |
+
msgstr "Classe CSS"
|
|
|
1756 |
|
1757 |
+
#: includes/module-settings.php:128
|
1758 |
+
msgid ""
|
1759 |
+
"A class that will be applied to this module's HTML. Must start with a letter "
|
1760 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1761 |
+
"classes with spaces."
|
1762 |
+
msgstr ""
|
1763 |
+
"Une classe qui sera appliquée au HTML de ce module. Le nom doit commencer "
|
1764 |
+
"par une lettre et ne doit contenir que des tirets, des traits de "
|
1765 |
+
"soulignement, des lettres ou des chiffres. Séparer des classes multiples "
|
1766 |
+
"avec des espaces."
|
1767 |
+
|
1768 |
+
#: includes/row-settings.php:16 modules/button/button.php:188
|
1769 |
+
#: modules/content-slider/content-slider.php:483
|
1770 |
+
msgid "Width"
|
1771 |
+
msgstr "Largeur"
|
1772 |
|
1773 |
#: includes/row-settings.php:27
|
1774 |
msgid ""
|
1775 |
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
1776 |
"no wider than the Row Max Width set in the Global Settings."
|
1777 |
msgstr ""
|
1778 |
+
"Rangées pleine largeur couvrent l'étendue de la page de bord à bord. Les "
|
1779 |
+
"rangées fixes ne sont pas plus larges que la valeur « Largeur maximale "
|
1780 |
+
"» définie dans les paramètres globaux."
|
1781 |
|
1782 |
#: includes/row-settings.php:34
|
1783 |
msgid "Content Width"
|
1784 |
+
msgstr "Largeur du contenu"
|
1785 |
|
1786 |
#: includes/row-settings.php:40
|
1787 |
msgid ""
|
1789 |
"content is no wider than the Row Max Width set in the Global Settings."
|
1790 |
msgstr ""
|
1791 |
"Les rangées pleine largeur couvrent l'étendue de la page, de bord à bord. "
|
1792 |
+
"Les rangées fixes ne sont pas plus larges que la valeur « Largeur "
|
1793 |
+
"maximale » définie dans les réglages globaux."
|
1794 |
|
1795 |
#: includes/row-settings.php:61
|
1796 |
msgid "Background"
|
1797 |
msgstr "Arrière-plan"
|
1798 |
|
1799 |
+
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
|
1800 |
msgctxt "Background type."
|
1801 |
msgid "None"
|
1802 |
+
msgstr "Aucune"
|
1803 |
|
1804 |
#: includes/row-settings.php:69
|
1805 |
msgctxt "Background type."
|
1826 |
msgid "Parallax"
|
1827 |
msgstr "Parallaxe"
|
1828 |
|
1829 |
+
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
|
1830 |
msgid "Background Photo"
|
1831 |
+
msgstr "Photo d'arrière-plan"
|
1832 |
|
1833 |
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1834 |
+
#: modules/callout/callout.php:316 modules/callout/callout.php:332
|
1835 |
+
#: modules/callout/callout.php:336
|
1836 |
+
#: modules/content-slider/content-slider.php:335
|
1837 |
+
#: modules/content-slider/content-slider.php:404
|
1838 |
+
#: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
|
1839 |
#: modules/photo/photo.php:392
|
1840 |
msgid "Photo"
|
1841 |
msgstr "Photo"
|
1847 |
#: includes/row-settings.php:143
|
1848 |
msgctxt "Background repeat."
|
1849 |
msgid "None"
|
1850 |
+
msgstr "Aucune"
|
1851 |
|
1852 |
#: includes/row-settings.php:144
|
1853 |
msgctxt "Background repeat."
|
1854 |
msgid "Tile"
|
1855 |
+
msgstr "Tuile"
|
1856 |
|
1857 |
#: includes/row-settings.php:145
|
1858 |
msgctxt "Background repeat."
|
1877 |
"rangée horizontalement et verticalement. Vous pouvez également spécifier que "
|
1878 |
"l'image ne se répète que horizontalement ou verticalement."
|
1879 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1880 |
#: includes/row-settings.php:158
|
1881 |
msgid "Left Top"
|
1882 |
+
msgstr "Haut"
|
1883 |
|
1884 |
#: includes/row-settings.php:159
|
1885 |
msgid "Left Center"
|
1891 |
|
1892 |
#: includes/row-settings.php:161
|
1893 |
msgid "Right Top"
|
1894 |
+
msgstr "Droit(e)"
|
1895 |
|
1896 |
#: includes/row-settings.php:162
|
1897 |
msgid "Right Center"
|
1905 |
msgid "Center Top"
|
1906 |
msgstr "Centre haut"
|
1907 |
|
1908 |
+
#: includes/row-settings.php:165 modules/button/button.php:218
|
1909 |
+
#: modules/callout/callout.php:251
|
1910 |
+
#: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
|
1911 |
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1912 |
#: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
|
1913 |
#: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
|
1921 |
#: includes/row-settings.php:168
|
1922 |
msgid "Position will tell the image where it should sit in the row background."
|
1923 |
msgstr ""
|
1924 |
+
"Position est utilisée par l\"image afin de déterminer son placement dans "
|
1925 |
+
"l'arrière-plan de la rangée."
|
1926 |
|
1927 |
#: includes/row-settings.php:175
|
1928 |
msgid "Attachment"
|
1930 |
|
1931 |
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1932 |
msgid "Scroll"
|
1933 |
+
msgstr "Dérouler"
|
1934 |
|
1935 |
#: includes/row-settings.php:181
|
1936 |
msgid ""
|
1947 |
|
1948 |
#: includes/row-settings.php:188
|
1949 |
msgid "Scale"
|
1950 |
+
msgstr "Mise à l'échelle"
|
1951 |
|
1952 |
#: includes/row-settings.php:191
|
1953 |
msgctxt "Background scale."
|
1954 |
msgid "None"
|
1955 |
+
msgstr "Aucune"
|
1956 |
|
|
|
1957 |
#: includes/row-settings.php:192
|
1958 |
msgid "Fit"
|
1959 |
+
msgstr "Ajustement"
|
1960 |
|
1961 |
#: includes/row-settings.php:193
|
1962 |
msgid "Fill"
|
1963 |
msgstr "Remplissage"
|
1964 |
|
1965 |
#: includes/row-settings.php:195
|
|
|
1966 |
msgid ""
|
1967 |
"Scale applies to how the image should display in the row background. You can "
|
1968 |
"select either fill or fit to the row background."
|
1969 |
msgstr ""
|
1970 |
+
"« Mettre à l'échelle » détermine comment l'image se produira "
|
1971 |
+
"dans l'arrière-plan de la rangée. Vous pouvez sélectionner remplissage ou "
|
1972 |
+
"ajustage à l'arrière plan."
|
1973 |
|
1974 |
#: includes/row-settings.php:203
|
1975 |
msgid "Background Video"
|
1976 |
+
msgstr "Vidéo d'arrière-plan"
|
1977 |
|
1978 |
+
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
|
1979 |
#: modules/video/video.php:19 modules/video/video.php:100
|
1980 |
msgid "Video"
|
1981 |
msgstr "Vidéo"
|
1985 |
"An HTML5 video to use as the background of this row. Supported types are "
|
1986 |
"MP4, WebM and Ogg."
|
1987 |
msgstr ""
|
1988 |
+
"Un vidéo HTML5 pour l'arrière-plan de cette rangée. Types supportés : MP4, "
|
1989 |
+
"WebM et Ogg."
|
1990 |
|
1991 |
#: includes/row-settings.php:215
|
1992 |
msgid "Fallback Photo"
|
1993 |
+
msgstr "Photo par défaut"
|
1994 |
|
1995 |
#: includes/row-settings.php:216
|
1996 |
msgid "A photo that will be displayed if the video fails to load."
|
1998 |
|
1999 |
#: includes/row-settings.php:224
|
2000 |
msgid "Background Slideshow"
|
2001 |
+
msgstr "Diaporama d'arrière-plan"
|
2002 |
|
2003 |
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
2004 |
#: modules/slideshow/slideshow.php:263
|
2005 |
msgid "Source"
|
2006 |
+
msgstr "Origine"
|
2007 |
|
2008 |
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
2009 |
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
2020 |
msgstr ""
|
2021 |
"Obtenez vos images à partir de la médiathèque de WordPress, ou d'une galerie "
|
2022 |
"sur SmugMug en insérant le lien de son flux RSS. Le lien du flux RSS peut "
|
2023 |
+
"être obtenu en utilisant la fonction « Get A Link » dans votre "
|
2024 |
+
"galerie SmugMug."
|
2025 |
|
2026 |
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
2027 |
#: modules/slideshow/slideshow.php:281
|
2031 |
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
2032 |
#: modules/slideshow/slideshow.php:285
|
2033 |
msgid "Feed URL"
|
2034 |
+
msgstr "Lien du flux"
|
2035 |
|
2036 |
#: includes/row-settings.php:263 includes/row-settings.php:328
|
2037 |
#: modules/slideshow/slideshow.php:382
|
2038 |
msgid "Speed"
|
2039 |
msgstr "Vitesse"
|
2040 |
|
2041 |
+
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
|
2042 |
#: modules/slideshow/slideshow.php:389
|
2043 |
#: modules/testimonials/testimonials.php:99
|
2044 |
msgid "Transition"
|
2047 |
#: includes/row-settings.php:276
|
2048 |
msgctxt "Slideshow transition type."
|
2049 |
msgid "None"
|
2050 |
+
msgstr "Aucune"
|
2051 |
|
2052 |
+
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
|
2053 |
#: modules/slideshow/slideshow.php:393
|
2054 |
#: modules/testimonials/testimonials.php:103
|
2055 |
msgid "Fade"
|
2061 |
|
2062 |
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
2063 |
msgid "Slide Horizontal"
|
2064 |
+
msgstr "Glissement horizontal"
|
2065 |
|
2066 |
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
2067 |
msgid "Slide Vertical"
|
2068 |
+
msgstr "Glissement vertical"
|
2069 |
|
2070 |
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
2071 |
msgid "Blinds"
|
2091 |
msgid "Boxes Grow"
|
2092 |
msgstr "Boîtes qui croissent"
|
2093 |
|
2094 |
+
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
|
2095 |
#: modules/slideshow/slideshow.php:407
|
2096 |
#: modules/testimonials/testimonials.php:108
|
2097 |
msgid "Transition Speed"
|
2103 |
|
2104 |
#: includes/row-settings.php:317
|
2105 |
msgid "Background Parallax"
|
2106 |
+
msgstr "Parallaxe d'arrière-plan"
|
2107 |
|
2108 |
#: includes/row-settings.php:331
|
2109 |
msgid "Fast"
|
2112 |
#: includes/row-settings.php:332
|
2113 |
msgctxt "Speed."
|
2114 |
msgid "Medium"
|
2115 |
+
msgstr "Moyen(ne)"
|
2116 |
|
2117 |
#: includes/row-settings.php:333
|
2118 |
msgid "Slow"
|
2119 |
+
msgstr "Lent"
|
2120 |
|
2121 |
+
#: includes/row-settings.php:342
|
2122 |
+
msgid "Background Overlay"
|
2123 |
+
msgstr "Superposition de l'arrière-plan"
|
|
|
|
|
2124 |
|
2125 |
+
#: includes/row-settings.php:346
|
2126 |
+
msgid "Overlay Color"
|
2127 |
+
msgstr "Couleur de la superposition"
|
2128 |
+
|
2129 |
+
#: includes/row-settings.php:354
|
2130 |
+
msgid "Overlay Opacity"
|
2131 |
+
msgstr "Opacité de la superposition"
|
2132 |
+
|
2133 |
+
#: includes/row-settings.php:595
|
2134 |
msgid "Choose whether to show or hide this row at different device sizes."
|
2135 |
msgstr ""
|
2136 |
"Choisissez si vous voulez afficher ou masquer cette colonne à des tailles "
|
2137 |
"différentes d'appareils."
|
2138 |
|
2139 |
+
#: includes/row-settings.php:608
|
2140 |
+
msgid ""
|
2141 |
+
"A unique ID that will be applied to this row's HTML. Must start with a "
|
2142 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
2143 |
+
msgstr ""
|
2144 |
+
"Un identifiant unique qui sera appliquée au HTML de cette colonne. Le nom "
|
2145 |
+
"doit commencer par une lettre et ne doit contenir que des tirets, des traits "
|
2146 |
+
"de soulignement, des lettres ou des chiffres. Aucun espace."
|
2147 |
+
|
2148 |
+
#: includes/row-settings.php:616
|
2149 |
+
msgid ""
|
2150 |
+
"A class that will be applied to this row's HTML. Must start with a letter "
|
2151 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
2152 |
+
"classes with spaces."
|
2153 |
+
msgstr ""
|
2154 |
+
"Une classe qui sera appliquée au HTML de cette rangée. Le nom doit commencer "
|
2155 |
+
"par une lettre et ne doit contenir que des tirets, des traits de "
|
2156 |
+
"soulignement, des lettres ou des chiffres. Séparer des classes multiples "
|
2157 |
+
"avec des espaces."
|
2158 |
+
|
2159 |
#: includes/settings.php:62
|
2160 |
msgid "Save"
|
2161 |
+
msgstr "Sauvegarde"
|
2162 |
|
2163 |
#: includes/template-selector.php:3
|
2164 |
msgid "Layout Templates"
|
2165 |
+
msgstr "Gabarits de présentation"
|
2166 |
|
2167 |
#: includes/template-selector.php:8
|
2168 |
msgid "Home Pages"
|
2174 |
|
2175 |
#: includes/template-selector.php:13
|
2176 |
msgid "Your Templates"
|
2177 |
+
msgstr "Vos gabarits"
|
2178 |
|
2179 |
#: includes/template-selector.php:47 includes/template-selector.php:77
|
2180 |
msgctxt "Template name."
|
2186 |
"You haven't saved any templates yet! To do so, create a layout and save it "
|
2187 |
"as a template under <strong>Tools → Save Template</strong>."
|
2188 |
msgstr ""
|
2189 |
+
"Vous n'avez pas sauvegardé de gabarit jusqu'à maintenant! Pour ce faire, "
|
2190 |
+
"créer une présentation et sauvegardez la comme gabarit sous <strong>Outils "
|
2191 |
+
"→ Sauvegarder gabarit</strong>."
|
2192 |
|
2193 |
+
#: includes/template-settings.php:14 includes/user-template-settings.php:15
|
2194 |
+
msgctxt "Template name."
|
2195 |
+
msgid "Name"
|
2196 |
+
msgstr "Nom"
|
2197 |
+
|
2198 |
+
#: includes/template-settings.php:18
|
2199 |
+
msgid "Image Filename"
|
2200 |
+
msgstr "Nom de fichier de l'image"
|
2201 |
+
|
2202 |
+
#: includes/template-settings.php:19
|
2203 |
+
msgid ""
|
2204 |
+
"The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
|
2205 |
+
"templates/\" directory."
|
2206 |
+
msgstr ""
|
2207 |
+
"Le nom de fichier de l'image, tel que image.jpg, qui réside dans le "
|
2208 |
+
"répertoire « img/templates »."
|
2209 |
|
2210 |
#: includes/ui.php:7
|
2211 |
#, php-format
|
2212 |
msgid "Template: %s"
|
2213 |
+
msgstr "Gabarit : %s"
|
2214 |
|
2215 |
#: includes/ui.php:23
|
2216 |
msgid "Page Builder Demo"
|
2217 |
+
msgstr "Démo du constructeur de page"
|
2218 |
|
2219 |
+
#: includes/ui.php:40
|
2220 |
msgid "Buy Now!"
|
2221 |
+
msgstr "Achetez maintenant!"
|
2222 |
|
2223 |
+
#: includes/ui.php:42
|
2224 |
msgid "Upgrade!"
|
2225 |
+
msgstr "Mise à niveau!"
|
|
|
|
|
|
|
|
|
2226 |
|
2227 |
+
#: includes/ui.php:45
|
2228 |
msgid "Tools"
|
2229 |
msgstr "Outils"
|
2230 |
|
2231 |
+
#: includes/ui.php:67
|
|
|
|
|
|
|
|
|
2232 |
msgid "Row Layouts"
|
2233 |
+
msgstr "Présentation des rangées"
|
2234 |
|
2235 |
+
#: includes/ui.php:71
|
2236 |
msgid "1 Column"
|
2237 |
msgstr "1 colonne"
|
2238 |
|
2239 |
+
#: includes/ui.php:72
|
2240 |
msgid "2 Columns"
|
2241 |
msgstr "2 colonnes"
|
2242 |
|
2243 |
+
#: includes/ui.php:73
|
2244 |
msgid "3 Columns"
|
2245 |
msgstr "3 colonnes"
|
2246 |
|
2247 |
+
#: includes/ui.php:74
|
2248 |
msgid "4 Columns"
|
2249 |
msgstr "4 colonnes"
|
2250 |
|
2251 |
+
#: includes/ui.php:75
|
2252 |
msgid "5 Columns"
|
2253 |
msgstr "5 colonnes"
|
2254 |
|
2255 |
+
#: includes/ui.php:76
|
2256 |
msgid "6 Columns"
|
2257 |
msgstr "6 colonnes"
|
2258 |
|
2259 |
+
#: includes/ui.php:77
|
2260 |
msgid "Left Sidebar"
|
2261 |
msgstr "Barre latérale de gauche"
|
2262 |
|
2263 |
+
#: includes/ui.php:78
|
2264 |
msgid "Right Sidebar"
|
2265 |
msgstr "Barre latérale de droite"
|
2266 |
|
2267 |
+
#: includes/ui.php:79
|
2268 |
msgid "Left & Right Sidebar"
|
2269 |
msgstr "Barre latérale de gauche et droite"
|
2270 |
|
|
|
|
|
|
|
|
|
2271 |
#: includes/updater/classes/class-fl-updater.php:107
|
2272 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2273 |
msgstr "<strong>MISE À JOUR NON DISPONIBLE !</strong>"
|
2281 |
#: includes/updater/classes/class-fl-updater.php:111
|
2282 |
#: includes/updater/includes/form.php:6
|
2283 |
msgid "Subscribe Now"
|
2284 |
+
msgstr "Abonnez vous maintenant"
|
2285 |
|
2286 |
#: includes/updater/includes/form.php:5
|
2287 |
msgid ""
|
2288 |
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
2289 |
"enable automatic updates."
|
2290 |
msgstr ""
|
2291 |
+
"Mises à jour non disponibles. Prière de vous inscrire ou entrer votre clé de "
|
2292 |
+
"licence afin de recevoir les mises à jour en mode automatique."
|
2293 |
|
2294 |
#: includes/updater/includes/form.php:11
|
2295 |
msgid "Updates & Support Subscription"
|
2296 |
+
msgstr "Enregistrement pour mises à jour et soutien technique"
|
2297 |
|
2298 |
#: includes/updater/includes/form.php:14
|
2299 |
msgid "Active!"
|
2300 |
+
msgstr "Active!"
|
2301 |
|
2302 |
#: includes/updater/includes/form.php:16
|
2303 |
msgid "Not Active!"
|
2304 |
+
msgstr "Désactivé!"
|
2305 |
|
2306 |
#: includes/updater/includes/form.php:22
|
2307 |
msgid "Email address saved!"
|
2308 |
+
msgstr "Adresse courriel sauvegardée"
|
2309 |
|
2310 |
#: includes/updater/includes/form.php:27
|
2311 |
#, php-format
|
2312 |
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
2313 |
msgstr ""
|
2314 |
+
"Entrez votre <a%s>clé de licence</a> afin d'activer les mises à jour "
|
2315 |
+
"automatique et le soutien technique."
|
2316 |
|
2317 |
#: includes/updater/includes/form.php:39
|
2318 |
msgid "Save Subscription Settings"
|
2319 |
+
msgstr "Sauvegarder les paramètres d'abonnement"
|
2320 |
|
2321 |
#: includes/user-template-settings.php:8
|
2322 |
msgid ""
|
2323 |
"Save the current layout as a template that can be reused under "
|
2324 |
"<strong>Templates → Your Templates</strong>."
|
2325 |
msgstr ""
|
2326 |
+
"Enregistrer la présentation actuelle comme gabarit qui peut être réutilisé "
|
2327 |
+
"sous <strong>Gabarits → vos gabarits</strong>."
|
|
|
|
|
|
|
|
|
|
|
2328 |
|
2329 |
#: modules/accordion/accordion.php:14
|
2330 |
msgid "Accordion"
|
2332 |
|
2333 |
#: modules/accordion/accordion.php:15
|
2334 |
msgid "Display a collapsible accordion of items."
|
2335 |
+
msgstr "Montrer une liste d'items en accordéon."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2336 |
|
2337 |
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2338 |
msgid "Items"
|
2339 |
+
msgstr "Items"
|
2340 |
|
2341 |
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
2342 |
msgid "Item"
|
2343 |
+
msgstr "Item"
|
2344 |
|
2345 |
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
2346 |
msgid "Border Color"
|
2347 |
+
msgstr "Couleur de la bordure"
|
2348 |
|
2349 |
#: modules/accordion/accordion.php:62
|
2350 |
msgid "Label Size"
|
2351 |
+
msgstr "Grandeur de l'étiquette"
|
2352 |
|
2353 |
#: modules/accordion/accordion.php:65
|
2354 |
msgctxt "Label size."
|
2358 |
#: modules/accordion/accordion.php:66
|
2359 |
msgctxt "Label size."
|
2360 |
msgid "Medium"
|
2361 |
+
msgstr "Moyen(ne)"
|
2362 |
|
2363 |
#: modules/accordion/accordion.php:67
|
2364 |
msgctxt "Label size."
|
2367 |
|
2368 |
#: modules/accordion/accordion.php:75
|
2369 |
msgid "Item Spacing"
|
2370 |
+
msgstr "Espacement de l'item"
|
2371 |
|
2372 |
#: modules/accordion/accordion.php:86
|
2373 |
msgid "Collapse Inactive"
|
2383 |
|
2384 |
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
2385 |
msgid "Add Item"
|
2386 |
+
msgstr "Ajouter item"
|
2387 |
|
2388 |
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
2389 |
msgid "Label"
|
2395 |
msgid "Content"
|
2396 |
msgstr "Contenu"
|
2397 |
|
2398 |
+
#: modules/button/button.php:14 modules/callout/callout.php:479
|
2399 |
+
#: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
|
2400 |
#: modules/pricing-table/pricing-table.php:129
|
2401 |
msgid "Button"
|
2402 |
msgstr "Bouton"
|
2403 |
|
2404 |
#: modules/button/button.php:15
|
2405 |
msgid "A simple call to action button."
|
2406 |
+
msgstr "Un simple bouton d'appel à l'action"
|
2407 |
|
2408 |
+
#: modules/button/button.php:67 modules/cta/cta.php:222
|
2409 |
msgid "Click Here"
|
2410 |
msgstr "Cliquez ici"
|
2411 |
|
2412 |
+
#: modules/button/button.php:75 modules/callout/callout.php:317
|
2413 |
+
#: modules/callout/callout.php:365 modules/callout/callout.php:369
|
2414 |
+
#: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
|
2415 |
#: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
|
2416 |
#: modules/icon/icon.php:34
|
2417 |
msgid "Icon"
|
2418 |
msgstr "Icône"
|
2419 |
|
2420 |
+
#: modules/button/button.php:81 modules/button/button.php:85
|
2421 |
+
#: modules/callout/callout.php:445 modules/callout/callout.php:449
|
2422 |
+
#: modules/content-slider/content-slider.php:573
|
2423 |
+
#: modules/content-slider/content-slider.php:577
|
2424 |
+
#: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
|
2425 |
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
2426 |
#: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
|
2427 |
#: modules/slideshow/slideshow.php:343
|
2428 |
msgid "Link"
|
2429 |
msgstr "Lien"
|
2430 |
|
2431 |
+
#: modules/button/button.php:86
|
2432 |
msgid "http://www.example.com"
|
2433 |
+
msgstr "http://www.exemple.com"
|
2434 |
|
2435 |
+
#: modules/button/button.php:93 modules/callout/callout.php:457
|
2436 |
+
#: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
|
2437 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
2438 |
#: modules/photo/photo.php:478
|
2439 |
msgid "Link Target"
|
2440 |
msgstr "Cible du lien"
|
2441 |
|
2442 |
+
#: modules/button/button.php:96 modules/callout/callout.php:460
|
2443 |
+
#: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
|
2444 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
2445 |
#: modules/photo/photo.php:481
|
2446 |
msgid "Same Window"
|
2447 |
msgstr "Même fenêtre"
|
2448 |
|
2449 |
+
#: modules/button/button.php:97 modules/callout/callout.php:461
|
2450 |
+
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
|
2451 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
2452 |
#: modules/photo/photo.php:482
|
2453 |
msgid "New Window"
|
2454 |
msgstr "Nouvelle fenêtre"
|
2455 |
|
2456 |
+
#: modules/button/button.php:111 modules/cta/cta.php:187
|
2457 |
#: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
|
2458 |
#: modules/icon/icon.php:78
|
2459 |
msgid "Colors"
|
2460 |
msgstr "Couleurs"
|
2461 |
|
2462 |
+
#: modules/button/button.php:121 modules/callout/callout.php:409
|
2463 |
+
#: modules/callout/callout.php:514
|
2464 |
+
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
2465 |
#: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
|
2466 |
msgid "Background Hover Color"
|
2467 |
+
msgstr "Couleur pour survol de l'arrière-plan"
|
2468 |
|
2469 |
+
#: modules/button/button.php:130 modules/callout/callout.php:523
|
2470 |
+
#: modules/content-slider/content-slider.php:528
|
2471 |
+
#: modules/content-slider/content-slider.php:641
|
2472 |
+
#: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
|
2473 |
+
#: modules/cta/cta.php:279 modules/heading/heading.php:77
|
2474 |
msgid "Text Color"
|
2475 |
msgstr "Couleur du texte"
|
2476 |
|
2477 |
+
#: modules/button/button.php:136 modules/callout/callout.php:529
|
2478 |
+
#: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
|
2479 |
msgid "Text Hover Color"
|
2480 |
+
msgstr "Couleur pour survol du texte"
|
2481 |
+
|
2482 |
+
#: modules/button/button.php:153 modules/callout/callout.php:546
|
2483 |
+
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
|
2484 |
+
msgid "Flat"
|
2485 |
+
msgstr "Plat"
|
2486 |
|
2487 |
+
#: modules/button/button.php:154 modules/callout/callout.php:417
|
2488 |
+
#: modules/callout/callout.php:547
|
2489 |
+
#: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
|
2490 |
#: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
|
2491 |
msgid "Gradient"
|
2492 |
+
msgstr "Dégradé de couleur"
|
2493 |
+
|
2494 |
+
#: modules/button/button.php:155 modules/callout/callout.php:548
|
2495 |
+
#: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
|
2496 |
+
msgid "Transparent"
|
2497 |
+
msgstr "Transparent"
|
2498 |
+
|
2499 |
+
#: modules/button/button.php:165 modules/callout/callout.php:558
|
2500 |
+
#: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
|
2501 |
+
#: modules/pricing-table/pricing-table.php:67
|
2502 |
+
msgid "Border Size"
|
2503 |
+
msgstr "Grosseur de la bordure"
|
2504 |
+
|
2505 |
+
#: modules/button/button.php:174 modules/callout/callout.php:567
|
2506 |
+
#: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
|
2507 |
+
#: modules/cta/cta.php:323
|
2508 |
+
msgid "Background Opacity"
|
2509 |
+
msgstr "Opacité de l'arrière-plan"
|
2510 |
|
2511 |
+
#: modules/button/button.php:184 modules/callout/callout.php:244
|
2512 |
+
#: modules/cta/cta.php:104 modules/heading/heading.php:82
|
2513 |
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
2514 |
msgid "Structure"
|
2515 |
msgstr "Structure"
|
2516 |
|
2517 |
+
#: modules/button/button.php:191 modules/callout/callout.php:584
|
2518 |
msgctxt "Width."
|
2519 |
msgid "Auto"
|
2520 |
+
msgstr "Auto"
|
2521 |
|
2522 |
+
#: modules/button/button.php:207
|
2523 |
msgid "Custom Width"
|
2524 |
+
msgstr "Largeur personalisé "
|
2525 |
|
2526 |
+
#: modules/button/button.php:215 modules/cta/cta.php:122
|
2527 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2528 |
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
2529 |
#: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
|
2530 |
msgid "Alignment"
|
2531 |
msgstr "Alignement"
|
2532 |
|
2533 |
+
#: modules/button/button.php:225 modules/callout/callout.php:590
|
2534 |
+
#: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
|
2535 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2536 |
msgid "Font Size"
|
2537 |
+
msgstr "Grosseur de la police"
|
2538 |
|
2539 |
+
#: modules/button/button.php:241 modules/callout/callout.php:606
|
2540 |
+
#: modules/cta/cta.php:353
|
2541 |
msgid "Round Corners"
|
2542 |
+
msgstr "Coins ronds"
|
2543 |
|
2544 |
#: modules/callout/callout.php:14
|
2545 |
msgid "Callout"
|
2546 |
+
msgstr "Appel"
|
2547 |
|
2548 |
#: modules/callout/callout.php:15
|
2549 |
msgid "A heading and snippet of text with an optional link, icon and image."
|
2550 |
+
msgstr "Un titre et extrait de texte avec l'option d'un lien, icône ou image."
|
2551 |
|
2552 |
+
#: modules/callout/callout.php:216
|
2553 |
+
#: modules/content-slider/content-slider.php:413
|
2554 |
+
#: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
|
2555 |
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
2556 |
#: modules/testimonials/testimonials.php:56
|
2557 |
#: modules/testimonials/testimonials.php:61
|
2558 |
msgid "Heading"
|
2559 |
+
msgstr "Entête"
|
2560 |
|
2561 |
+
#: modules/callout/callout.php:248
|
2562 |
msgid "Overall Alignment"
|
2563 |
msgstr "Alignement général"
|
2564 |
|
2565 |
+
#: modules/callout/callout.php:255
|
2566 |
msgid "The alignment that will apply to all elements within the callout."
|
2567 |
msgstr "L'alignement qui s'appliquera à tous les éléments dans la légende."
|
2568 |
|
2569 |
+
#: modules/callout/callout.php:263 modules/cta/cta.php:147
|
2570 |
msgid "Heading Structure"
|
2571 |
msgstr "Structure du titre"
|
2572 |
|
2573 |
+
#: modules/callout/callout.php:267
|
2574 |
+
#: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
|
2575 |
msgid "Heading Tag"
|
2576 |
msgstr "Balise titre"
|
2577 |
|
2578 |
+
#: modules/callout/callout.php:280
|
2579 |
+
#: modules/content-slider/content-slider.php:445
|
2580 |
+
#: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
|
2581 |
#: modules/testimonials/testimonials.php:69
|
2582 |
msgid "Heading Size"
|
2583 |
+
msgstr "Grandeur de l'entête"
|
2584 |
|
2585 |
+
#: modules/callout/callout.php:294 modules/cta/cta.php:178
|
2586 |
msgid "Heading Custom Size"
|
2587 |
+
msgstr "Grandeur personalisée de l'entête"
|
|
|
|
|
|
|
|
|
2588 |
|
2589 |
+
#: modules/callout/callout.php:312
|
2590 |
msgid "Image Type"
|
2591 |
msgstr "Type d'image"
|
2592 |
|
2593 |
+
#: modules/callout/callout.php:315
|
2594 |
msgctxt "Image type."
|
2595 |
msgid "None"
|
2596 |
+
msgstr "Aucune"
|
2597 |
|
2598 |
+
#: modules/callout/callout.php:340 modules/photo/photo.php:401
|
2599 |
#: modules/slideshow/slideshow.php:312
|
2600 |
msgid "Crop"
|
2601 |
msgstr "Recâdrage"
|
2602 |
|
2603 |
+
#: modules/callout/callout.php:343
|
2604 |
msgctxt "Crop"
|
2605 |
msgid "None"
|
2606 |
+
msgstr "Aucune"
|
2607 |
|
2608 |
+
#: modules/callout/callout.php:344 modules/photo/photo.php:405
|
2609 |
msgid "Landscape"
|
2610 |
msgstr "Paysage"
|
2611 |
|
2612 |
+
#: modules/callout/callout.php:345 modules/photo/photo.php:406
|
2613 |
msgid "Panorama"
|
2614 |
msgstr "Panorama"
|
2615 |
|
2616 |
+
#: modules/callout/callout.php:346 modules/photo/photo.php:407
|
2617 |
msgid "Portrait"
|
2618 |
msgstr "Portrait"
|
2619 |
|
2620 |
+
#: modules/callout/callout.php:347 modules/photo/photo.php:408
|
2621 |
msgid "Square"
|
2622 |
msgstr "Carré"
|
2623 |
|
2624 |
+
#: modules/callout/callout.php:348 modules/photo/photo.php:409
|
2625 |
msgid "Circle"
|
2626 |
msgstr "Cercle"
|
2627 |
|
2628 |
+
#: modules/callout/callout.php:356 modules/callout/callout.php:376
|
2629 |
msgid "Above Heading"
|
2630 |
+
msgstr "Avant l'entête"
|
2631 |
|
2632 |
+
#: modules/callout/callout.php:357 modules/callout/callout.php:377
|
2633 |
msgid "Below Heading"
|
2634 |
+
msgstr "Après l'entête"
|
2635 |
|
2636 |
+
#: modules/callout/callout.php:358 modules/callout/callout.php:380
|
2637 |
msgid "Left of Text and Heading"
|
2638 |
+
msgstr "À gauche du texte et de l'entête"
|
2639 |
|
2640 |
+
#: modules/callout/callout.php:359 modules/callout/callout.php:381
|
2641 |
msgid "Right of Text and Heading"
|
2642 |
+
msgstr "À droite du texte et de l'entête"
|
2643 |
|
2644 |
+
#: modules/callout/callout.php:378
|
2645 |
msgid "Left of Heading"
|
2646 |
+
msgstr "À gauche de l'entête"
|
2647 |
|
2648 |
+
#: modules/callout/callout.php:379
|
2649 |
msgid "Right of Heading"
|
2650 |
+
msgstr "À droite de l'entête"
|
2651 |
|
2652 |
+
#: modules/callout/callout.php:387
|
2653 |
msgid "Icon Colors"
|
2654 |
msgstr "Couleurs de l'icône"
|
2655 |
|
2656 |
+
#: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
|
2657 |
#: modules/icon/icon.php:87
|
2658 |
msgid "Hover Color"
|
2659 |
msgstr "Couleur lors du survol"
|
2660 |
|
2661 |
+
#: modules/callout/callout.php:427
|
2662 |
msgid "Icon Structure"
|
2663 |
msgstr "Structure de l'icône"
|
2664 |
|
2665 |
+
#: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
|
2666 |
#: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
|
2667 |
msgid "Size"
|
2668 |
+
msgstr "Grandeur personalisée de l'entête"
|
2669 |
|
2670 |
+
#: modules/callout/callout.php:442
|
2671 |
+
#: modules/content-slider/content-slider.php:570
|
2672 |
msgid "Call To Action"
|
2673 |
msgstr "Appel à l'action"
|
2674 |
|
2675 |
+
#: modules/callout/callout.php:450
|
2676 |
msgid ""
|
2677 |
"The link applies to the entire module. If choosing a call to action type "
|
2678 |
"below, this link will also be used for the text or button."
|
2679 |
msgstr ""
|
2680 |
+
"Le lien s'applique à l'ensemble du module. Si vous choisissez un type "
|
2681 |
"d'appel à l'action ci-dessous, ce lien servira également pour le texte ou le "
|
2682 |
"bouton."
|
2683 |
|
2684 |
+
#: modules/callout/callout.php:470
|
2685 |
+
#: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
|
2686 |
msgid "Call to Action"
|
2687 |
msgstr "Appel à l'action"
|
2688 |
|
2689 |
+
#: modules/callout/callout.php:477
|
2690 |
+
#: modules/content-slider/content-slider.php:599
|
2691 |
msgctxt "Call to action."
|
2692 |
msgid "None"
|
2693 |
+
msgstr "Aucune"
|
2694 |
|
2695 |
+
#: modules/callout/callout.php:498
|
2696 |
+
#: modules/content-slider/content-slider.php:620
|
2697 |
msgid "Button Icon"
|
2698 |
msgstr "Icône du bouton"
|
2699 |
|
2700 |
+
#: modules/callout/callout.php:504
|
2701 |
+
#: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
|
2702 |
msgid "Button Colors"
|
2703 |
msgstr "Couleurs du bouton"
|
2704 |
|
2705 |
+
#: modules/callout/callout.php:539
|
2706 |
+
#: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
|
2707 |
+
msgid "Button Style"
|
2708 |
+
msgstr "Style du bouton"
|
2709 |
+
|
2710 |
+
#: modules/callout/callout.php:577
|
2711 |
+
#: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
|
2712 |
msgid "Button Structure"
|
2713 |
msgstr "Structure du bouton"
|
2714 |
|
2715 |
+
#: modules/callout/callout.php:581
|
2716 |
msgid "Button Width"
|
2717 |
+
msgstr "Bouton"
|
2718 |
|
2719 |
#: modules/contact-form/contact-form.php:14
|
2720 |
msgid "Contact Form"
|
2738 |
|
2739 |
#: modules/contact-form/contact-form.php:67
|
2740 |
msgid "The contact form will send to this e-mail"
|
2741 |
+
msgstr "Le formulaire de contact enverra à cette adresse courriel"
|
2742 |
|
2743 |
#: modules/contact-form/includes/frontend.php:4
|
2744 |
msgctxt "Contact form field label."
|
2747 |
|
2748 |
#: modules/contact-form/includes/frontend.php:5
|
2749 |
msgid "Please enter your name."
|
2750 |
+
msgstr "Prière d'entrer une adresse courriel valide"
|
2751 |
|
2752 |
#: modules/contact-form/includes/frontend.php:6
|
2753 |
msgid "Your name"
|
2759 |
|
2760 |
#: modules/contact-form/includes/frontend.php:11
|
2761 |
msgid "Please enter a valid email."
|
2762 |
+
msgstr "Prière d'entrer une adresse courriel valide"
|
2763 |
|
2764 |
#: modules/contact-form/includes/frontend.php:12
|
2765 |
msgid "Your email"
|
2771 |
|
2772 |
#: modules/contact-form/includes/frontend.php:17
|
2773 |
msgid "Please enter a message."
|
2774 |
+
msgstr "Prière d'entrer un message."
|
2775 |
|
2776 |
#: modules/contact-form/includes/frontend.php:18
|
2777 |
msgid "Your message"
|
2783 |
|
2784 |
#: modules/contact-form/includes/frontend.php:24
|
2785 |
msgid "Message Sent!"
|
2786 |
+
msgstr "Message envoyé!"
|
2787 |
|
2788 |
#: modules/contact-form/includes/frontend.php:25
|
2789 |
msgid "Message failed. Please try again."
|
2790 |
+
msgstr "L'envoi du message a échouée. Merci de réessayer."
|
2791 |
|
2792 |
#: modules/content-slider/content-slider.php:14
|
2793 |
msgid "Content Slider"
|
2794 |
+
msgstr "Diaporama avec contenu"
|
2795 |
|
2796 |
#: modules/content-slider/content-slider.php:15
|
2797 |
msgid "Displays multiple slides with an optional heading and call to action."
|
2798 |
msgstr ""
|
2799 |
"Affiche plusieurs diapositives avec un titre facultatif et appel à l'action."
|
2800 |
|
2801 |
+
#: modules/content-slider/content-slider.php:197 modules/map/map.php:41
|
2802 |
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2803 |
msgid "Height"
|
2804 |
msgstr "Hauteur"
|
2805 |
|
2806 |
+
#: modules/content-slider/content-slider.php:202
|
2807 |
msgid ""
|
2808 |
"This setting is the minimum height of the content slider. Content will "
|
2809 |
"expand the height automatically."
|
2811 |
"Ce réglage est la hauteur minimale du diaporama de contenu. Le contenu "
|
2812 |
"s'étendra automatiquement à la hauteur maximale."
|
2813 |
|
2814 |
+
#: modules/content-slider/content-slider.php:206
|
2815 |
#: modules/slideshow/slideshow.php:373
|
2816 |
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
2817 |
msgid "Auto Play"
|
2818 |
msgstr "Lecture automatique"
|
2819 |
|
2820 |
+
#: modules/content-slider/content-slider.php:220
|
2821 |
msgid "Show Play/Pause"
|
2822 |
msgstr "Afficher Lecture / Pause"
|
2823 |
|
2824 |
+
#: modules/content-slider/content-slider.php:240
|
2825 |
#: modules/testimonials/testimonials.php:102
|
2826 |
msgctxt "Transition type."
|
2827 |
msgid "Slide"
|
2828 |
+
msgstr "Diapositive"
|
2829 |
|
2830 |
+
#: modules/content-slider/content-slider.php:254
|
2831 |
#: modules/testimonials/testimonials.php:121
|
2832 |
msgid "Show Arrows"
|
2833 |
msgstr "Afficher les flèches"
|
2834 |
|
2835 |
+
#: modules/content-slider/content-slider.php:263
|
2836 |
#: modules/testimonials/testimonials.php:151
|
2837 |
msgid "Show Dots"
|
2838 |
msgstr "Afficher les points"
|
2839 |
|
2840 |
+
#: modules/content-slider/content-slider.php:277
|
2841 |
msgid "Max Content Width"
|
2842 |
msgstr "Largeur maximale du contenu"
|
2843 |
|
2844 |
+
#: modules/content-slider/content-slider.php:282
|
2845 |
msgid "The max width that the content area will be within your slides."
|
2846 |
msgstr "La largeur maximale de la zone de contenu dans vos diapositives."
|
2847 |
|
2848 |
+
#: modules/content-slider/content-slider.php:289
|
2849 |
msgid "Slides"
|
2850 |
msgstr "Diapositives"
|
2851 |
|
2852 |
+
#: modules/content-slider/content-slider.php:296
|
2853 |
msgid "Slide"
|
2854 |
msgstr "Diapositive"
|
2855 |
|
2856 |
+
#: modules/content-slider/content-slider.php:311
|
2857 |
msgid "Slide Settings"
|
2858 |
+
msgstr "Paramètres de diapositive"
|
2859 |
|
2860 |
+
#: modules/content-slider/content-slider.php:321
|
2861 |
msgid "Slide Label"
|
2862 |
msgstr "Étiquette de la diapositive"
|
2863 |
|
2864 |
+
#: modules/content-slider/content-slider.php:322
|
2865 |
msgid ""
|
2866 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
2867 |
"settings."
|
2869 |
"Une étiquette pour identifier cette diapositive sous l'onglet diapositives "
|
2870 |
"des réglages du diaporama de contenu."
|
2871 |
|
2872 |
+
#: modules/content-slider/content-slider.php:327
|
2873 |
msgid "Background Layout"
|
2874 |
+
msgstr "Présentation de l'arrère-plan"
|
2875 |
|
2876 |
+
#: modules/content-slider/content-slider.php:333
|
2877 |
msgid "This setting is for the entire background of your slide."
|
2878 |
msgstr "Ce réglage est pour l'arrière-plan complet de votre diapositive."
|
2879 |
|
2880 |
+
#: modules/content-slider/content-slider.php:368
|
2881 |
msgid "Background Video Code"
|
2882 |
+
msgstr "Code pour le vidéo d'arrière-plan"
|
2883 |
|
2884 |
+
#: modules/content-slider/content-slider.php:374
|
2885 |
msgid "Content Layout"
|
2886 |
+
msgstr "Présentation du contenu"
|
2887 |
|
2888 |
+
#: modules/content-slider/content-slider.php:380
|
2889 |
msgid ""
|
2890 |
"This allows you to add content over or in addition to the background "
|
2891 |
"selection above. The location of the content layout can be selected in the "
|
2892 |
"style tab."
|
2893 |
msgstr ""
|
2894 |
+
"Ceci permet d'ajouter au contenu en cours, ou en plus du choix de l'arrière-"
|
2895 |
+
"plan ci-dessus. L'emplacement de la présentation du contenu peut être "
|
2896 |
+
"sélectionné dans l'onglet style."
|
2897 |
|
2898 |
+
#: modules/content-slider/content-slider.php:383
|
2899 |
msgid "Text & Photo"
|
2900 |
+
msgstr "Texte & photo"
|
2901 |
|
2902 |
+
#: modules/content-slider/content-slider.php:384
|
2903 |
msgid "Text & Video"
|
2904 |
+
msgstr "Texte & vidéo"
|
2905 |
|
2906 |
+
#: modules/content-slider/content-slider.php:385
|
2907 |
msgctxt "Content type."
|
2908 |
msgid "None"
|
2909 |
+
msgstr "Aucune"
|
2910 |
|
2911 |
+
#: modules/content-slider/content-slider.php:408 modules/video/video.php:132
|
2912 |
msgid "Video Embed Code"
|
2913 |
+
msgstr "Code d'encastrage du vidéo"
|
2914 |
|
2915 |
+
#: modules/content-slider/content-slider.php:468
|
2916 |
msgid "Text Position"
|
2917 |
msgstr "Position du texte"
|
2918 |
|
2919 |
+
#: modules/content-slider/content-slider.php:474
|
2920 |
msgid ""
|
2921 |
"The position will move the content layout selections left, right or center "
|
2922 |
"over the background of the slide."
|
2923 |
msgstr ""
|
2924 |
+
"La position déplacera les sélections de présentation vers la gauche, droite "
|
2925 |
+
"ou centrée sur l'arrière-plan de la diapositive."
|
2926 |
|
2927 |
+
#: modules/content-slider/content-slider.php:491
|
2928 |
msgid "Top Margin"
|
2929 |
+
msgstr "Haut"
|
2930 |
|
2931 |
+
#: modules/content-slider/content-slider.php:499
|
2932 |
msgid "Bottom Margin"
|
2933 |
msgstr "Marge du bas"
|
2934 |
|
2935 |
+
#: modules/content-slider/content-slider.php:507
|
2936 |
msgid "Left Margin"
|
2937 |
+
msgstr "Marge gauche"
|
2938 |
|
2939 |
+
#: modules/content-slider/content-slider.php:515
|
2940 |
msgid "Right Margin"
|
2941 |
msgstr "Marge de droite"
|
2942 |
|
2943 |
+
#: modules/content-slider/content-slider.php:524
|
2944 |
msgid "Text Colors"
|
2945 |
+
msgstr "Couleurs du texte"
|
2946 |
|
2947 |
+
#: modules/content-slider/content-slider.php:534
|
2948 |
msgid "Text Shadow"
|
2949 |
msgstr "Ombre du texte"
|
2950 |
|
2951 |
+
#: modules/content-slider/content-slider.php:543
|
2952 |
+
#: modules/content-slider/content-slider.php:760
|
2953 |
msgid "Text Background Color"
|
2954 |
msgstr "Couleur d'arrière-plan du texte"
|
2955 |
|
2956 |
+
#: modules/content-slider/content-slider.php:544
|
2957 |
msgid ""
|
2958 |
"The color applies to the overlay behind text over the background selections."
|
2959 |
msgstr ""
|
2960 |
"La couleur s'applique à la superposition derrière le texte sur les "
|
2961 |
+
"sélections d'arrière-plan."
|
2962 |
|
2963 |
+
#: modules/content-slider/content-slider.php:549
|
2964 |
msgid "Text Background Opacity"
|
2965 |
+
msgstr "Opacité de l'arrière-plan du texte"
|
2966 |
|
2967 |
+
#: modules/content-slider/content-slider.php:557
|
2968 |
msgid "Text Background Height"
|
2969 |
+
msgstr "Hauteur de l'arrière-plan du texte "
|
2970 |
|
2971 |
+
#: modules/content-slider/content-slider.php:559
|
2972 |
msgid ""
|
2973 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
2974 |
"will fit the overlay to the top and bottom of the slide."
|
2977 |
"contenu de texte. Un réglage à 100 % adaptera la superposition au haut et au "
|
2978 |
"bas de la diapositive."
|
2979 |
|
2980 |
+
#: modules/content-slider/content-slider.php:561
|
2981 |
msgctxt "Background height."
|
2982 |
msgid "Auto"
|
2983 |
+
msgstr "Auto"
|
2984 |
|
2985 |
+
#: modules/content-slider/content-slider.php:578
|
2986 |
msgid ""
|
2987 |
"The link applies to the entire slide. If choosing a call to action type "
|
2988 |
"below, this link will also be used for the text or button."
|
2991 |
"appel à l'action ci-dessous, ce lien servira également pour le texte ou le "
|
2992 |
"bouton."
|
2993 |
|
2994 |
+
#: modules/content-slider/content-slider.php:711
|
2995 |
msgid "Border Radius"
|
2996 |
msgstr "Coins arrondis de la bordure"
|
2997 |
|
2998 |
+
#: modules/content-slider/content-slider.php:722
|
2999 |
msgctxt "Module settings form tab. Display on mobile devices."
|
3000 |
msgid "Mobile"
|
3001 |
msgstr "Portable"
|
3002 |
|
3003 |
+
#: modules/content-slider/content-slider.php:725
|
3004 |
msgid "Mobile Photo"
|
3005 |
msgstr "Photo à partir du portable"
|
3006 |
|
3007 |
+
#: modules/content-slider/content-slider.php:731
|
3008 |
msgid ""
|
3009 |
"You can choose a different photo that the slide will change to on mobile "
|
3010 |
"devices or no photo if desired."
|
3012 |
"Vous pouvez choisir une photo différente pour la diapositive sur différents "
|
3013 |
"appareils mobiles, ou pas de photo si vous le souhaitez."
|
3014 |
|
3015 |
+
#: modules/content-slider/content-slider.php:733
|
3016 |
msgid "Use Main Photo"
|
3017 |
msgstr "Utiliser la Photo principale"
|
3018 |
|
3019 |
+
#: modules/content-slider/content-slider.php:734
|
3020 |
msgid "Choose Another Photo"
|
3021 |
+
msgstr "Sélectionner une autre photo"
|
3022 |
|
3023 |
+
#: modules/content-slider/content-slider.php:735
|
3024 |
msgid "No Photo"
|
3025 |
+
msgstr "Sans photo"
|
3026 |
|
3027 |
+
#: modules/content-slider/content-slider.php:750
|
3028 |
msgid "Mobile Text Colors"
|
3029 |
msgstr "Couleurs de texte pour mobile"
|
3030 |
|
3032 |
msgid "Display a heading, subheading and a button."
|
3033 |
msgstr "Afficher un titre, sous-titre et un bouton."
|
3034 |
|
3035 |
+
#: modules/cta/cta.php:75
|
3036 |
msgid "Ready to find out more?"
|
3037 |
+
msgstr "Prêt à en apprendre plus?"
|
3038 |
|
3039 |
+
#: modules/cta/cta.php:90
|
3040 |
msgid "Drop us a line today for a free quote!"
|
3041 |
msgstr "Écrivez-nous aujourd'hui pour un devis gratuit !"
|
3042 |
|
3043 |
+
#: modules/cta/cta.php:108 modules/gallery/gallery.php:220
|
3044 |
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
3045 |
#: modules/testimonials/testimonials.php:37
|
3046 |
#: modules/woocommerce/woocommerce.php:57
|
3047 |
msgid "Layout"
|
3048 |
+
msgstr "Présentation"
|
3049 |
|
3050 |
+
#: modules/cta/cta.php:111
|
3051 |
msgid "Inline"
|
3052 |
msgstr "En ligne"
|
3053 |
|
3054 |
+
#: modules/cta/cta.php:112
|
3055 |
msgid "Stacked"
|
3056 |
msgstr "Empilé"
|
3057 |
|
3058 |
+
#: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
|
3059 |
msgid "Spacing"
|
3060 |
msgstr "Espacement"
|
3061 |
|
3062 |
+
#: modules/cta/cta.php:236
|
|
|
|
|
|
|
|
|
3063 |
msgid "Button Link"
|
3064 |
msgstr "Lien du bouton"
|
3065 |
|
3069 |
|
3070 |
#: modules/gallery/gallery.php:15
|
3071 |
msgid "Display multiple photos in a gallery view."
|
3072 |
+
msgstr "Afficher plusieurs photos dans un affichage en galerie."
|
3073 |
|
3074 |
#: modules/gallery/gallery.php:223
|
3075 |
msgid "Collage"
|
3082 |
|
3083 |
#: modules/gallery/gallery.php:260
|
3084 |
msgid "Photo Size"
|
3085 |
+
msgstr "Grandeur de la photo"
|
3086 |
|
3087 |
#: modules/gallery/gallery.php:263
|
3088 |
msgctxt "Photo size."
|
3092 |
#: modules/gallery/gallery.php:264
|
3093 |
msgctxt "Photo size."
|
3094 |
msgid "Medium"
|
3095 |
+
msgstr "Moyen(ne)"
|
3096 |
|
3097 |
#: modules/gallery/gallery.php:265
|
3098 |
msgctxt "Photo size."
|
3099 |
msgid "Large"
|
3100 |
+
msgstr "Grand"
|
3101 |
|
3102 |
#: modules/gallery/gallery.php:270
|
3103 |
msgid "Photo Spacing"
|
3104 |
+
msgstr "Espacement de la photo"
|
3105 |
|
3106 |
#: modules/gallery/gallery.php:278
|
3107 |
msgid "Show Captions"
|
3108 |
+
msgstr "Montrer les sous-titres"
|
3109 |
|
3110 |
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
3111 |
msgid "Never"
|
3120 |
msgstr "Sous la photo"
|
3121 |
|
3122 |
#: modules/gallery/gallery.php:285
|
|
|
3123 |
msgid ""
|
3124 |
"The caption pulls from whatever text you put in the caption area in the "
|
3125 |
"media manager for each image. The caption is also pulled directly from "
|
3148 |
|
3149 |
#: modules/heading/heading.php:15
|
3150 |
msgid "Display a title/page heading."
|
3151 |
+
msgstr "Montrer un titre / entête de page."
|
|
|
|
|
|
|
|
|
|
|
|
|
3152 |
|
3153 |
#: modules/heading/heading.php:101
|
3154 |
msgid "HTML Tag"
|
3155 |
+
msgstr "Etiquette HTML"
|
3156 |
|
3157 |
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
3158 |
msgid "Custom Font Size"
|
3159 |
+
msgstr "Grandeur de police personalisée"
|
3160 |
|
3161 |
#: modules/heading/heading.php:137
|
3162 |
msgid "Mobile Structure"
|
3164 |
|
3165 |
#: modules/heading/heading.php:158
|
3166 |
msgid "Custom Alignment"
|
3167 |
+
msgstr "Alignement personalisé"
|
3168 |
|
3169 |
#: modules/html/html.php:14
|
3170 |
msgid "HTML"
|
3172 |
|
3173 |
#: modules/html/html.php:15
|
3174 |
msgid "Display raw HTML code."
|
3175 |
+
msgstr "Montrer le code HTML pur"
|
3176 |
|
3177 |
#: modules/icon-group/icon-group.php:14
|
3178 |
msgid "Icon Group"
|
3179 |
+
msgstr "Group d'icônes"
|
3180 |
|
3181 |
#: modules/icon-group/icon-group.php:15
|
3182 |
msgid "Display a group of linked Font Awesome icons."
|
3183 |
+
msgstr "Montrer un groupe d'icônes liés de « Font Awesome »."
|
|
|
|
|
|
|
|
|
3184 |
|
3185 |
#: modules/icon-group/icon-group.php:125
|
3186 |
msgid "Add Icon"
|
3187 |
+
msgstr "Ajouter icône"
|
3188 |
|
3189 |
#: modules/icon/icon.php:15
|
3190 |
msgid "Display an icon and optional title."
|
3191 |
+
msgstr "Montrer une icône et un titre en option."
|
3192 |
|
3193 |
#: modules/map/map.php:14
|
3194 |
msgid "Map"
|
3196 |
|
3197 |
#: modules/map/map.php:15
|
3198 |
msgid "Display a Google map."
|
3199 |
+
msgstr "Montrer une carte Google."
|
3200 |
|
3201 |
#: modules/map/map.php:33
|
3202 |
msgid "Address"
|
3204 |
|
3205 |
#: modules/map/map.php:34
|
3206 |
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
3207 |
+
msgstr "#202 1865 Boul. Winchester, Campbell, CA 95008"
|
3208 |
|
3209 |
#: modules/photo/photo.php:26
|
3210 |
msgid "Upload a photo or display one from the media library."
|
3211 |
+
msgstr "Téléchargez une photo, ou montrer en une de la médiathèque"
|
3212 |
|
3213 |
#: modules/photo/photo.php:375
|
3214 |
msgid "Photo Source"
|
3215 |
+
msgstr "Origine de la photo"
|
3216 |
|
3217 |
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
3218 |
msgid "URL"
|
3219 |
+
msgstr "Lien"
|
3220 |
|
3221 |
#: modules/photo/photo.php:396
|
3222 |
msgid "Photo URL"
|
3223 |
+
msgstr "Lien photo"
|
3224 |
|
3225 |
#: modules/photo/photo.php:397
|
3226 |
msgid "http://www.example.com/my-photo.jpg"
|
3229 |
#: modules/photo/photo.php:404
|
3230 |
msgctxt "Crop."
|
3231 |
msgid "None"
|
3232 |
+
msgstr "Aucune"
|
3233 |
|
3234 |
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
3235 |
msgid "Caption"
|
3236 |
+
msgstr "Sous-titre"
|
3237 |
|
3238 |
#: modules/photo/photo.php:429
|
3239 |
msgid "Show Caption"
|
3240 |
+
msgstr "Montrer le sous-titre"
|
3241 |
|
3242 |
#: modules/photo/photo.php:448
|
3243 |
msgid "Link Type"
|
3246 |
#: modules/photo/photo.php:450
|
3247 |
msgctxt "Link type."
|
3248 |
msgid "None"
|
3249 |
+
msgstr "Aucune"
|
3250 |
|
3251 |
#: modules/photo/photo.php:453
|
3252 |
msgid "Photo File"
|
3263 |
|
3264 |
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
3265 |
msgid "Link URL"
|
3266 |
+
msgstr "Lien web (URL)"
|
3267 |
|
3268 |
#: modules/post-grid/includes/frontend.php:41
|
3269 |
msgid "No posts found."
|
3270 |
+
msgstr "Aucuns articles trouvés"
|
3271 |
|
3272 |
#: modules/post-grid/includes/post-feed.php:14
|
3273 |
#: modules/post-grid/includes/post-grid.php:24
|
3282 |
|
3283 |
#: modules/post-grid/post-grid.php:15
|
3284 |
msgid "Display a grid of your WordPress posts."
|
3285 |
+
msgstr "Montrer une grille des articles de WordPress."
|
3286 |
|
3287 |
#: modules/post-grid/post-grid.php:51
|
3288 |
msgid "Layout Style"
|
3289 |
+
msgstr "Style de la présentation"
|
3290 |
|
3291 |
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
3292 |
msgid "Grid"
|
3315 |
|
3316 |
#: modules/post-grid/post-grid.php:92
|
3317 |
msgid "Post Width"
|
3318 |
+
msgstr "Largeur de l'Article"
|
3319 |
|
3320 |
#: modules/post-grid/post-grid.php:100
|
3321 |
msgid "Post Spacing"
|
3323 |
|
3324 |
#: modules/post-grid/post-grid.php:109
|
3325 |
msgid "Featured Image"
|
3326 |
+
msgstr "Image en vedette"
|
3327 |
|
3328 |
#: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
|
3329 |
#: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
|
3330 |
#: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
|
3331 |
msgid "Show"
|
3332 |
+
msgstr "Montrer"
|
3333 |
|
3334 |
#: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
|
3335 |
#: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
|
3339 |
|
3340 |
#: modules/post-grid/post-grid.php:130
|
3341 |
msgid "Above Text"
|
3342 |
+
msgstr "Au dessus du texte"
|
3343 |
|
3344 |
#: modules/post-grid/post-grid.php:131
|
3345 |
msgid "Beside Text"
|
3346 |
+
msgstr "Au dessous du texte"
|
3347 |
|
3348 |
#: modules/post-grid/post-grid.php:142
|
3349 |
msgid "Post Info"
|
3351 |
|
3352 |
#: modules/post-grid/post-grid.php:169
|
3353 |
msgid "Date Format"
|
3354 |
+
msgstr "Format de date"
|
3355 |
|
3356 |
#: modules/post-grid/post-grid.php:185
|
3357 |
msgid "Comments"
|
3359 |
|
3360 |
#: modules/post-grid/post-grid.php:213
|
3361 |
msgid "More Link"
|
3362 |
+
msgstr "Plus de liens"
|
3363 |
|
3364 |
#: modules/post-grid/post-grid.php:227
|
3365 |
msgid "More Link Text"
|
3366 |
+
msgstr "Plus de textes de lien"
|
3367 |
|
3368 |
#: modules/post-grid/post-grid.php:228
|
3369 |
msgid "Read More"
|
3370 |
+
msgstr "Lire plus"
|
3371 |
|
3372 |
#: modules/pricing-table/pricing-table.php:14
|
3373 |
msgid "Pricing Table"
|
3374 |
+
msgstr "Tableau de prix"
|
3375 |
|
3376 |
#: modules/pricing-table/pricing-table.php:15
|
3377 |
msgid "A simple pricing table generator."
|
3378 |
+
msgstr "Un générateur de tableau de prix."
|
3379 |
|
|
|
3380 |
#: modules/pricing-table/pricing-table.php:26
|
3381 |
msgid "Pricing Boxes"
|
3382 |
msgstr "Boîtes de prix"
|
3383 |
|
|
|
3384 |
#: modules/pricing-table/pricing-table.php:33
|
3385 |
msgid "Pricing Box"
|
3386 |
msgstr "Boîte de prix"
|
3387 |
|
3388 |
#: modules/pricing-table/pricing-table.php:50
|
3389 |
msgid "Box Spacing"
|
3390 |
+
msgstr "Espacement des boîtes"
|
3391 |
|
3392 |
#: modules/pricing-table/pricing-table.php:53
|
3393 |
#: modules/testimonials/testimonials.php:40
|
3396 |
|
3397 |
#: modules/pricing-table/pricing-table.php:54
|
3398 |
msgid "Tight"
|
3399 |
+
msgstr "Mince"
|
3400 |
|
3401 |
#: modules/pricing-table/pricing-table.php:59
|
3402 |
msgid "Features Min Height"
|
3407 |
"Use this to normalize the height of your boxes when they have different "
|
3408 |
"numbers of features."
|
3409 |
msgstr ""
|
3410 |
+
"Utiliser ceci afin de normaliser la hauteur de vos boîtes, lorsqu'elles ont "
|
3411 |
"un nombre différent de caractéristiques."
|
3412 |
|
|
|
|
|
|
|
|
|
3413 |
#: modules/pricing-table/pricing-table.php:70
|
3414 |
msgctxt "Border size."
|
3415 |
msgid "Wide"
|
3418 |
#: modules/pricing-table/pricing-table.php:71
|
3419 |
msgctxt "Border size."
|
3420 |
msgid "Tight"
|
3421 |
+
msgstr "Mince"
|
3422 |
|
3423 |
#: modules/pricing-table/pricing-table.php:84
|
3424 |
msgid "Add Pricing Box"
|
3426 |
|
3427 |
#: modules/pricing-table/pricing-table.php:98
|
3428 |
msgid "Title Size"
|
3429 |
+
msgstr "Grosseur du titre"
|
3430 |
|
3431 |
#: modules/pricing-table/pricing-table.php:107
|
3432 |
msgid "Price Box"
|
3442 |
|
3443 |
#: modules/pricing-table/pricing-table.php:116
|
3444 |
msgid "per Year"
|
3445 |
+
msgstr "par année"
|
3446 |
|
3447 |
#: modules/pricing-table/pricing-table.php:120
|
3448 |
msgid "Price Size"
|
3449 |
+
msgstr "Grosseur du prix"
|
3450 |
|
3451 |
#: modules/pricing-table/pricing-table.php:133
|
3452 |
msgid "Button Text"
|
3454 |
|
3455 |
#: modules/pricing-table/pricing-table.php:137
|
3456 |
msgid "Button URL"
|
3457 |
+
msgstr "Lien du bouton"
|
3458 |
|
3459 |
#: modules/pricing-table/pricing-table.php:142
|
3460 |
msgctxt "Price features displayed in pricing box."
|
3463 |
|
3464 |
#: modules/pricing-table/pricing-table.php:147
|
3465 |
msgid "One feature per line. HTML is okay."
|
3466 |
+
msgstr "Une caractéristique par ligne. L'utilisation du HTML est permise. "
|
3467 |
|
3468 |
#: modules/pricing-table/pricing-table.php:162
|
3469 |
msgid "Box Background"
|
3475 |
|
3476 |
#: modules/pricing-table/pricing-table.php:173
|
3477 |
msgid "Accent Color"
|
3478 |
+
msgstr "Couleur d'accentuation"
|
3479 |
|
3480 |
#: modules/pricing-table/pricing-table.php:178
|
3481 |
msgid "Accent Text Color"
|
3482 |
+
msgstr "Couleur d'accentuation du texte"
|
3483 |
|
3484 |
#: modules/pricing-table/pricing-table.php:182
|
3485 |
msgid "Box Top Margin"
|
3486 |
+
msgstr "Haut"
|
3487 |
|
3488 |
#: modules/rich-text/rich-text.php:15
|
3489 |
msgid "A WYSIWYG text editor."
|
3490 |
+
msgstr "Un éditeur de texte « WYSIWYG »."
|
3491 |
|
3492 |
#: modules/separator/separator.php:14
|
3493 |
msgid "Separator"
|
3495 |
|
3496 |
#: modules/separator/separator.php:15
|
3497 |
msgid "A divider line to separate content."
|
3498 |
+
msgstr "Une ligne divisante afin de séparer le contenu"
|
3499 |
|
3500 |
#: modules/separator/separator.php:85
|
3501 |
msgid ""
|
3502 |
"The type of border to use. Double borders must have a height of at least 3px "
|
3503 |
"to render properly."
|
3504 |
msgstr ""
|
3505 |
+
"Le type de bordure à utiliser. Les bordures doubles doivent avoir une "
|
3506 |
+
"largeur d'au moins 3 px afin d'être présentées convenablement."
|
3507 |
|
3508 |
#: modules/sidebar/includes/settings-general.php:5
|
3509 |
#: modules/sidebar/sidebar.php:14
|
3544 |
"If your overall theme/images are lighter in color, light will display "
|
3545 |
"buttons in a darker color scheme and vice versa for dark."
|
3546 |
msgstr ""
|
3547 |
+
"Si l'ensemble de votre thème et images est de couleur plutôt claire, "
|
3548 |
+
"l'option « clair » ajuste les boutons vers un jeu de couleurs "
|
3549 |
+
"plus foncé et vice versa pour « Foncé »."
|
3550 |
|
3551 |
#: modules/slideshow/slideshow.php:318
|
|
|
3552 |
msgid ""
|
3553 |
"Crop set to no will fit the slideshow images to the height you specify and "
|
3554 |
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
3555 |
"images to all sides of the content area while cropping the left and right to "
|
3556 |
"fit the height you specify."
|
3557 |
msgstr ""
|
3558 |
+
"Le recâdrage mis à « Non » fera que l'image s'ajustera à la "
|
3559 |
+
"hauteur que vous avez spécifié et gardera sa largeur en proportion. « "
|
3560 |
+
"Oui » ajustera l'image afin qu'elle se rende juqu'aux quatre côtés du "
|
3561 |
+
"contenu en recâdrant et coupant les côtés gauche et droit afin d'ajuster "
|
3562 |
+
"l'image à la hauteur choisie."
|
3563 |
|
3564 |
#: modules/slideshow/slideshow.php:322
|
3565 |
msgid "Disable Right-Click"
|
3568 |
#: modules/slideshow/slideshow.php:342
|
3569 |
msgctxt "Click action type."
|
3570 |
msgid "None"
|
3571 |
+
msgstr "Aucune"
|
3572 |
|
3573 |
#: modules/slideshow/slideshow.php:366
|
3574 |
msgid "Playback"
|
3585 |
|
3586 |
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3587 |
msgid "Navigation Arrows"
|
3588 |
+
msgstr "Flêches de navigation"
|
3589 |
|
3590 |
#: modules/slideshow/slideshow.php:442
|
|
|
3591 |
msgid ""
|
3592 |
"Navigational arrows allow the visitor to freely move through the images in "
|
3593 |
"your slideshow. These are larger arrows that overlay your slideshow images "
|
3633 |
|
3634 |
#: modules/slideshow/slideshow.php:503
|
3635 |
msgid "Fullscreen Button"
|
3636 |
+
msgstr "Bouton plein-écran"
|
3637 |
|
3638 |
#: modules/slideshow/slideshow.php:512
|
3639 |
msgid "Photo Count"
|
3640 |
+
msgstr "Nombre de photos"
|
3641 |
|
3642 |
#: modules/slideshow/slideshow.php:521
|
3643 |
msgid "Thumbs Button"
|
3645 |
|
3646 |
#: modules/slideshow/slideshow.php:530
|
3647 |
msgid "Caption Button"
|
3648 |
+
msgstr "Bouton de sous-titre"
|
3649 |
|
3650 |
#: modules/slideshow/slideshow.php:539
|
3651 |
msgid "Social Button"
|
3652 |
+
msgstr "Bouton"
|
3653 |
|
3654 |
#: modules/slideshow/slideshow.php:549
|
3655 |
msgid "Control Bar Overlay"
|
3660 |
msgstr "Superposition activée"
|
3661 |
|
3662 |
#: modules/slideshow/slideshow.php:564
|
|
|
3663 |
msgid ""
|
3664 |
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
3665 |
"your slideshow images or site below the slideshow completely."
|
3673 |
msgstr "Cacher la superposition"
|
3674 |
|
3675 |
#: modules/slideshow/slideshow.php:574
|
|
|
3676 |
msgid ""
|
3677 |
"Overlay hide will hide the control bar after however many seconds you "
|
3678 |
"specify below. They will reappear upon mouse over."
|
3679 |
msgstr ""
|
3680 |
+
"« Cacher superposition » va cacher la barre de contrôle après le "
|
3681 |
+
"nombre de secondes spécifiées plus bas. Un survol de la souris fera "
|
3682 |
+
"réapparaître le tout."
|
3683 |
|
3684 |
#: modules/slideshow/slideshow.php:578
|
3685 |
msgid "Overlay Hide Delay"
|
3687 |
|
3688 |
#: modules/slideshow/slideshow.php:590
|
3689 |
msgid "Thumbs Size"
|
3690 |
+
msgstr "Grosseur de la bordure"
|
3691 |
|
3692 |
#: modules/slideshow/slideshow.php:599
|
3693 |
msgid "Social"
|
3699 |
|
3700 |
#: modules/slideshow/slideshow.php:615
|
3701 |
msgid "Twitter Button"
|
3702 |
+
msgstr "Bouton Twitter"
|
3703 |
|
3704 |
#: modules/slideshow/slideshow.php:627
|
3705 |
msgid "Google Plus Button"
|
3706 |
+
msgstr "Bouton Google Plus"
|
3707 |
|
3708 |
#: modules/slideshow/slideshow.php:639
|
3709 |
msgid "Pinterest Button"
|
3711 |
|
3712 |
#: modules/social-buttons/social-buttons.php:14
|
3713 |
msgid "Social Buttons"
|
3714 |
+
msgstr "Boutons de médias sociaux"
|
3715 |
|
3716 |
#: modules/social-buttons/social-buttons.php:15
|
3717 |
msgid "Displays social buttons."
|
3719 |
|
3720 |
#: modules/social-buttons/social-buttons.php:71
|
3721 |
msgid "Target URL"
|
3722 |
+
msgstr "Lien cible"
|
3723 |
|
3724 |
#: modules/social-buttons/social-buttons.php:75
|
3725 |
msgid "Current Page"
|
3726 |
+
msgstr "Page courante"
|
3727 |
|
3728 |
#: modules/social-buttons/social-buttons.php:82
|
3729 |
msgid ""
|
3733 |
msgstr ""
|
3734 |
"Correspond à la page que vous souhaitez référencer avec vos icônes de "
|
3735 |
"réseaux sociaux. Par exemple, si vous montrez Facebook, l'utilisateur fera "
|
3736 |
+
"un « Like » de la page que vous choisissez ici."
|
3737 |
|
3738 |
#: modules/social-buttons/social-buttons.php:89
|
3739 |
msgid "Custom URL"
|
3740 |
+
msgstr "Lien personalisé"
|
3741 |
|
3742 |
#: modules/social-buttons/social-buttons.php:107
|
3743 |
msgid "Show Facebook"
|
3744 |
+
msgstr "Montrer Facebook"
|
3745 |
|
3746 |
#: modules/social-buttons/social-buttons.php:116
|
3747 |
msgid "Show Twitter"
|
3748 |
+
msgstr "Montrer Twitter"
|
3749 |
|
3750 |
#: modules/social-buttons/social-buttons.php:125
|
3751 |
msgid "Show Google+"
|
3752 |
+
msgstr "Montrer Google+"
|
3753 |
|
3754 |
#: modules/tabs/tabs.php:14
|
3755 |
msgid "Tabs"
|
3757 |
|
3758 |
#: modules/tabs/tabs.php:15
|
3759 |
msgid "Display a collection of tabbed content."
|
3760 |
+
msgstr "Montrer une collection de contenu par onglet"
|
3761 |
|
3762 |
#: modules/tabs/tabs.php:55
|
3763 |
msgid "Horizontal"
|
3775 |
|
3776 |
#: modules/testimonials/testimonials.php:15
|
3777 |
msgid "An animated tesimonials area."
|
3778 |
+
msgstr "Une région animée de témoignages."
|
3779 |
|
3780 |
#: modules/testimonials/testimonials.php:41
|
3781 |
msgid "Compact"
|
3782 |
+
msgstr "Compacte"
|
3783 |
|
3784 |
#: modules/testimonials/testimonials.php:51
|
3785 |
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
3789 |
|
3790 |
#: modules/testimonials/testimonials.php:78
|
3791 |
msgid "Slider Settings"
|
3792 |
+
msgstr "Paramètres de diaporama"
|
3793 |
|
3794 |
#: modules/testimonials/testimonials.php:135
|
3795 |
msgid "Arrow Color"
|
3809 |
|
3810 |
#: modules/video/video.php:20
|
3811 |
msgid "Render a WordPress or embedable video."
|
3812 |
+
msgstr "Afficher un vidéo local ou encastré."
|
3813 |
|
3814 |
#: modules/video/video.php:83
|
3815 |
msgid "Video Type"
|
3817 |
|
3818 |
#: modules/video/video.php:87
|
3819 |
msgid "Embed"
|
3820 |
+
msgstr "Encastrer"
|
3821 |
|
3822 |
#: modules/video/video.php:104
|
3823 |
msgctxt "Video preview/fallback image."
|
3841 |
|
3842 |
#: modules/widget/widget.php:15
|
3843 |
msgid "Display a WordPress widget."
|
3844 |
+
msgstr "Présenter un widget WordPress"
|
3845 |
|
3846 |
#: modules/woocommerce/woocommerce.php:16
|
3847 |
msgid "WooCommerce"
|
3849 |
|
3850 |
#: modules/woocommerce/woocommerce.php:17
|
3851 |
msgid "Display products or categories from your WooCommerce store."
|
3852 |
+
msgstr "Montrer les produits ou catégories de votre magasin WooCommerce."
|
3853 |
|
3854 |
#: modules/woocommerce/woocommerce.php:60
|
3855 |
msgid "Choose..."
|
3856 |
+
msgstr "Sélectionner"
|
3857 |
|
3858 |
#: modules/woocommerce/woocommerce.php:61
|
3859 |
msgid "Single Product"
|
3860 |
+
msgstr "Un seul produit "
|
3861 |
|
3862 |
#: modules/woocommerce/woocommerce.php:62
|
3863 |
#: modules/woocommerce/woocommerce.php:113
|
3866 |
|
3867 |
#: modules/woocommerce/woocommerce.php:63
|
3868 |
msgid "\"Add to Cart\" Button"
|
3869 |
+
msgstr "Bouton « Ajout au panier » "
|
3870 |
|
3871 |
#: modules/woocommerce/woocommerce.php:64
|
3872 |
msgid "Categories"
|
3878 |
|
3879 |
#: modules/woocommerce/woocommerce.php:66
|
3880 |
msgid "Checkout"
|
3881 |
+
msgstr "Caisse"
|
3882 |
|
3883 |
#: modules/woocommerce/woocommerce.php:67
|
3884 |
msgid "Order Tracking"
|
3885 |
+
msgstr "Suivi de commande"
|
3886 |
|
3887 |
#: modules/woocommerce/woocommerce.php:68
|
3888 |
msgid "My Account"
|
3890 |
|
3891 |
#: modules/woocommerce/woocommerce.php:87
|
3892 |
msgid "Product ID"
|
3893 |
+
msgstr "ID produit"
|
3894 |
|
3895 |
#: modules/woocommerce/woocommerce.php:90
|
3896 |
msgid ""
|
3905 |
|
3906 |
#: modules/woocommerce/woocommerce.php:94
|
3907 |
msgid "Parent Category ID"
|
3908 |
+
msgstr "ID"
|
3909 |
|
3910 |
#: modules/woocommerce/woocommerce.php:97
|
3911 |
msgid ""
|
3927 |
|
3928 |
#: modules/woocommerce/woocommerce.php:117
|
3929 |
msgid "Products Source"
|
3930 |
+
msgstr "Origine des produits"
|
3931 |
|
3932 |
#: modules/woocommerce/woocommerce.php:120
|
3933 |
msgid "Products IDs"
|
3934 |
+
msgstr "IDs de produits"
|
3935 |
|
3936 |
#: modules/woocommerce/woocommerce.php:121
|
3937 |
msgid "Product Category"
|
3938 |
+
msgstr "Catégorie produit"
|
3939 |
|
3940 |
#: modules/woocommerce/woocommerce.php:122
|
3941 |
msgid "Recent Products"
|
3942 |
+
msgstr "Produits récent"
|
3943 |
|
3944 |
#: modules/woocommerce/woocommerce.php:123
|
3945 |
msgid "Featured Products"
|
3946 |
+
msgstr "Produits en vedette"
|
3947 |
|
3948 |
#: modules/woocommerce/woocommerce.php:124
|
3949 |
msgid "Sale Products"
|
3951 |
|
3952 |
#: modules/woocommerce/woocommerce.php:125
|
3953 |
msgid "Best Selling Products"
|
3954 |
+
msgstr "Produits meilleurs vendeurs"
|
3955 |
|
3956 |
#: modules/woocommerce/woocommerce.php:126
|
3957 |
msgid "Top Rated Products"
|
3958 |
+
msgstr "Les produits les plus appréciés"
|
3959 |
|
3960 |
#: modules/woocommerce/woocommerce.php:154
|
3961 |
msgid "Product IDs"
|
3962 |
+
msgstr "IDs de produit"
|
3963 |
|
3964 |
#: modules/woocommerce/woocommerce.php:156
|
3965 |
msgid ""
|
3968 |
"area and rolling over the product. The unique ID will be the first attribute "
|
3969 |
"and you can add several here separated by a comma."
|
3970 |
msgstr ""
|
3971 |
+
"Lors de l'ajout de produits dans la section des produits WooCommerce, chacun "
|
3972 |
+
"se vera assigné un identifiant unique. Vous pouvez trouver cet identifiant "
|
3973 |
+
"de produit unique en visitant la zone produits et planant sur le produit. "
|
3974 |
+
"L'identifiant unique sera le premier attribut, et vous pouvez en insérer "
|
3975 |
+
"plusieurs ici, séparés par des virgules."
|
3976 |
|
3977 |
#: modules/woocommerce/woocommerce.php:160
|
3978 |
msgid "Category Slug"
|
3979 |
msgstr "Identifiant (slug) de catégorie"
|
3980 |
|
|
|
3981 |
#: modules/woocommerce/woocommerce.php:162
|
3982 |
msgid ""
|
3983 |
"As you add product categories in the WooCommerce Products area, each will be "
|
3987 |
msgstr ""
|
3988 |
"Lorsque vous ajoutez des catégories de produits dans le domaine des produits "
|
3989 |
"WooCommerce, chacun sera assigné un identifiant (slug) unique, ou vous "
|
3990 |
+
"pouvez modifier et ajouter les vôtres. Ces « slugs » se trouvent "
|
3991 |
+
"dans la zone de catégories sous les produits WooCommerce. Plusieurs peuvent "
|
3992 |
+
"être ajoutés ici séparés par une virgule."
|
3993 |
|
3994 |
#: modules/woocommerce/woocommerce.php:166
|
3995 |
msgid "Number of Products"
|
3997 |
|
3998 |
#: modules/woocommerce/woocommerce.php:183
|
3999 |
msgid "Sort By"
|
4000 |
+
msgstr "Trier par"
|
4001 |
|
4002 |
#: modules/woocommerce/woocommerce.php:186
|
4003 |
msgctxt "Sort by."
|
4010 |
|
4011 |
#: modules/woocommerce/woocommerce.php:188
|
4012 |
msgid "Rating"
|
4013 |
+
msgstr "Notation"
|
4014 |
|
4015 |
#: modules/woocommerce/woocommerce.php:190
|
4016 |
msgid "Price: Low to High"
|
4017 |
+
msgstr "Prix : Bas à haut"
|
4018 |
|
4019 |
#: modules/woocommerce/woocommerce.php:191
|
4020 |
msgid "Price: High to Low"
|
4021 |
+
msgstr "Prix : Haut à bas"
|
4022 |
+
|
4023 |
+
#~ msgid ""
|
4024 |
+
#~ "A custom CSS class that will be applied to this column. Spaces only, no "
|
4025 |
+
#~ "dots."
|
4026 |
+
#~ msgstr ""
|
4027 |
+
#~ "Une classe CSS personalisée qui sera appliquée à cette colonne. Espaces "
|
4028 |
+
#~ "seulement, pas de points."
|
4029 |
+
|
4030 |
+
#~ msgid ""
|
4031 |
+
#~ "A custom CSS class that will be applied to this module. Spaces only, no "
|
4032 |
+
#~ "dots."
|
4033 |
+
#~ msgstr ""
|
4034 |
+
#~ "Une classe CSS personalisée qui sera appliquée à cette colonne. Espaces "
|
4035 |
+
#~ "seulement, pas de points."
|
4036 |
+
|
4037 |
+
#~ msgid ""
|
4038 |
+
#~ "Add a custom CSS selector here to apply additional styling to this row."
|
4039 |
+
#~ msgstr ""
|
4040 |
+
#~ "Ajouter un sélecteur CSS personnalisé pour appliquer un style "
|
4041 |
+
#~ "supplémentaire à cette rangée."
|
languages/it_IT.mo
CHANGED
Binary file
|
languages/it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Beaver Builder Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
@@ -50,7 +50,7 @@ msgid "Modules"
|
|
50 |
msgstr "Moduli"
|
51 |
|
52 |
# @ fl-builder
|
53 |
-
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:
|
54 |
msgid "Templates"
|
55 |
msgstr "Modelli"
|
56 |
|
@@ -79,23 +79,36 @@ msgstr "Branding"
|
|
79 |
|
80 |
# @ fl-builder
|
81 |
#: classes/class-fl-builder-admin-settings.php:150
|
|
|
|
|
|
|
|
|
|
|
82 |
#: includes/admin-settings-uninstall.php:3
|
83 |
#: includes/admin-settings-uninstall.php:15
|
84 |
msgid "Uninstall"
|
85 |
msgstr "Disinstalla"
|
86 |
|
87 |
-
#: classes/class-fl-builder-admin-settings.php:
|
88 |
msgid "Error! You must have at least one icon set enabled."
|
89 |
msgstr "Errore! Devi avere almeno un set di icone abilitato."
|
90 |
|
91 |
-
#: classes/class-fl-builder-admin-settings.php:
|
92 |
msgid "Error! Could not unzip file."
|
93 |
msgstr "Errore! Non è stato possibile decomprimere il file."
|
94 |
|
95 |
-
#: classes/class-fl-builder-admin-settings.php:
|
96 |
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
97 |
msgstr "Errore! Per favore carica un set di icone da Iconmoon o Fontello."
|
98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
# @ fl-builder
|
100 |
#: classes/class-fl-builder-admin.php:40
|
101 |
#, php-format
|
@@ -133,11 +146,11 @@ msgstr "Aggiorna"
|
|
133 |
|
134 |
# @ fl-builder
|
135 |
#: classes/class-fl-builder-admin.php:202
|
136 |
-
#: classes/class-fl-builder-model.php:
|
137 |
msgid "Page Builder"
|
138 |
msgstr "Page Builder"
|
139 |
|
140 |
-
#: classes/class-fl-builder-model.php:
|
141 |
#, php-format
|
142 |
msgctxt "%s stands for the module filename"
|
143 |
msgid ""
|
@@ -149,7 +162,45 @@ msgstr ""
|
|
149 |
"Builder."
|
150 |
|
151 |
# @ fl-builder
|
152 |
-
#: classes/class-fl-builder-model.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
#, php-format
|
154 |
msgctxt "%s stands for post/page title."
|
155 |
msgid "Copy of %s"
|
@@ -180,86 +231,86 @@ msgid "Thumbnail"
|
|
180 |
msgstr "Miniatura"
|
181 |
|
182 |
# @ fl-builder
|
183 |
-
#: classes/class-fl-builder.php:
|
184 |
#, php-format
|
185 |
msgctxt "Field name to add."
|
186 |
msgid "Add %s"
|
187 |
msgstr "Aggiungi %s"
|
188 |
|
189 |
# @ fl-builder
|
190 |
-
#: classes/class-fl-builder.php:
|
191 |
msgctxt "Custom post type label."
|
192 |
msgid "Layout Templates"
|
193 |
msgstr "Modelli di layout"
|
194 |
|
195 |
# @ fl-builder
|
196 |
-
#: classes/class-fl-builder.php:
|
197 |
msgctxt "Custom post type label."
|
198 |
msgid "Layout Template"
|
199 |
msgstr "Modello di layout"
|
200 |
|
201 |
# @ fl-builder
|
202 |
-
#: classes/class-fl-builder.php:
|
203 |
msgctxt "Custom post type label."
|
204 |
msgid "Add New"
|
205 |
msgstr "Aggiungi nuovo"
|
206 |
|
207 |
# @ fl-builder
|
208 |
-
#: classes/class-fl-builder.php:
|
209 |
msgctxt "Custom post type label."
|
210 |
msgid "Add New Layout Template"
|
211 |
msgstr "Aggiungi nuovo modello di Layout"
|
212 |
|
213 |
# @ fl-builder
|
214 |
-
#: classes/class-fl-builder.php:
|
215 |
msgctxt "Custom post type label."
|
216 |
msgid "New Layout Template"
|
217 |
msgstr "Nuovo modello di Layout"
|
218 |
|
219 |
# @ fl-builder
|
220 |
-
#: classes/class-fl-builder.php:
|
221 |
msgctxt "Custom post type label."
|
222 |
msgid "Edit Layout Template"
|
223 |
msgstr "Modifica modello di Layout"
|
224 |
|
225 |
# @ fl-builder
|
226 |
-
#: classes/class-fl-builder.php:
|
227 |
msgctxt "Custom post type label."
|
228 |
msgid "View Layout Template"
|
229 |
msgstr "Visualizza modello di Layout"
|
230 |
|
231 |
# @ fl-builder
|
232 |
-
#: classes/class-fl-builder.php:
|
233 |
msgctxt "Custom post type label."
|
234 |
msgid "All Layout Templates"
|
235 |
msgstr "Tutti i modelli di Layout"
|
236 |
|
237 |
# @ fl-builder
|
238 |
-
#: classes/class-fl-builder.php:
|
239 |
msgctxt "Custom post type label."
|
240 |
msgid "Search Layout Templates"
|
241 |
msgstr "Cerca modelli di Layout"
|
242 |
|
243 |
# @ fl-builder
|
244 |
-
#: classes/class-fl-builder.php:
|
245 |
msgctxt "Custom post type label."
|
246 |
msgid "Parent Layout Templates:"
|
247 |
msgstr "Modelli di Layout genitore:"
|
248 |
|
249 |
# @ fl-builder
|
250 |
-
#: classes/class-fl-builder.php:
|
251 |
msgctxt "Custom post type label."
|
252 |
msgid "No layout templates found."
|
253 |
msgstr "Nessun modello di layout trovato."
|
254 |
|
255 |
# @ fl-builder
|
256 |
-
#: classes/class-fl-builder.php:
|
257 |
msgctxt "Custom post type label."
|
258 |
msgid "No layout templates found in Trash."
|
259 |
msgstr "Nessun modello di layout trovato nel cestino."
|
260 |
|
261 |
# @ fl-builder
|
262 |
-
#: classes/class-fl-builder.php:
|
263 |
#, php-format
|
264 |
msgctxt "%s stands for module name."
|
265 |
msgid "%s Settings"
|
@@ -344,6 +395,70 @@ msgstr ""
|
|
344 |
msgid "Save Editing Settings"
|
345 |
msgstr "Salva le impostazioni di modifica"
|
346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
# @ fl-builder
|
348 |
#: includes/admin-settings-icons.php:3
|
349 |
msgid "Icon Settings"
|
@@ -541,17 +656,20 @@ msgid "Learn More"
|
|
541 |
msgstr "Ulteriori informazioni"
|
542 |
|
543 |
# @ fl-builder
|
544 |
-
#: includes/column-settings.php:4 includes/js-config.php:
|
545 |
msgid "Column Settings"
|
546 |
msgstr "Impostazioni colonna"
|
547 |
|
548 |
# @ fl-builder
|
549 |
#: includes/column-settings.php:7 includes/module-settings.php:87
|
550 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
551 |
-
#: modules/button/button.php:
|
552 |
-
#: modules/
|
553 |
-
#: modules/
|
554 |
-
#: modules/
|
|
|
|
|
|
|
555 |
#: modules/pricing-table/pricing-table.php:43
|
556 |
#: modules/pricing-table/pricing-table.php:155
|
557 |
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
@@ -565,11 +683,11 @@ msgstr "Larghezza colonna"
|
|
565 |
|
566 |
# @ fl-builder
|
567 |
#: includes/column-settings.php:26 includes/row-settings.php:48
|
568 |
-
#: modules/button/button.php:
|
569 |
-
#: modules/callout/callout.php:
|
570 |
-
#: modules/content-slider/content-slider.php:
|
571 |
-
#: modules/content-slider/content-slider.php:
|
572 |
-
#: modules/cta/cta.php:
|
573 |
msgid "Text"
|
574 |
msgstr "Testo"
|
575 |
|
@@ -577,19 +695,19 @@ msgstr "Testo"
|
|
577 |
#: includes/column-settings.php:30 includes/column-settings.php:43
|
578 |
#: includes/column-settings.php:100 includes/row-settings.php:52
|
579 |
#: includes/row-settings.php:109 includes/row-settings.php:403
|
580 |
-
#: modules/callout/callout.php:
|
581 |
-
#: modules/content-slider/content-slider.php:
|
582 |
#: modules/icon-group/icon-group.php:51 modules/separator/separator.php:34
|
583 |
msgid "Color"
|
584 |
msgstr "Colore"
|
585 |
|
586 |
# @ fl-builder
|
587 |
#: includes/column-settings.php:39 includes/row-settings.php:105
|
588 |
-
#: modules/button/button.php:
|
589 |
-
#: modules/callout/callout.php:
|
590 |
-
#: modules/content-slider/content-slider.php:
|
591 |
-
#: modules/content-slider/content-slider.php:
|
592 |
-
#: modules/cta/cta.php:
|
593 |
#: modules/icon-group/icon-group.php:64
|
594 |
msgid "Background Color"
|
595 |
msgstr "Colore di sfondo"
|
@@ -608,11 +726,11 @@ msgstr "Bordo"
|
|
608 |
|
609 |
# @ fl-builder
|
610 |
#: includes/column-settings.php:67 includes/row-settings.php:65
|
611 |
-
#: includes/row-settings.php:370 modules/callout/callout.php:
|
612 |
-
#: modules/content-slider/content-slider.php:
|
613 |
-
#: modules/content-slider/content-slider.php:
|
614 |
-
#: modules/content-slider/content-slider.php:
|
615 |
-
#: modules/content-slider/content-slider.php:
|
616 |
#: modules/slideshow/slideshow.php:339
|
617 |
msgid "Type"
|
618 |
msgstr "Tipo"
|
@@ -682,7 +800,7 @@ msgstr "Larghezza destra"
|
|
682 |
|
683 |
# @ fl-builder
|
684 |
#: includes/column-settings.php:170 includes/module-settings.php:6
|
685 |
-
#: includes/row-settings.php:473 modules/content-slider/content-slider.php:
|
686 |
msgid "Advanced"
|
687 |
msgstr "Avanzato"
|
688 |
|
@@ -710,9 +828,9 @@ msgstr "Basso"
|
|
710 |
# @ fl-builder
|
711 |
#: includes/column-settings.php:201 includes/column-settings.php:254
|
712 |
#: includes/module-settings.php:37 includes/row-settings.php:504
|
713 |
-
#: includes/row-settings.php:557 modules/button/button.php:
|
714 |
-
#: modules/callout/callout.php:
|
715 |
-
#: modules/content-slider/content-slider.php:
|
716 |
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
717 |
#: modules/icon/icon.php:134 modules/icon-group/icon-group.php:111
|
718 |
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
@@ -722,9 +840,9 @@ msgstr "Sinistra"
|
|
722 |
# @ fl-builder
|
723 |
#: includes/column-settings.php:213 includes/column-settings.php:266
|
724 |
#: includes/module-settings.php:49 includes/row-settings.php:516
|
725 |
-
#: includes/row-settings.php:569 modules/button/button.php:
|
726 |
-
#: modules/callout/callout.php:
|
727 |
-
#: modules/content-slider/content-slider.php:
|
728 |
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
729 |
#: modules/icon/icon.php:135 modules/icon-group/icon-group.php:112
|
730 |
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
@@ -733,9 +851,9 @@ msgstr "Destra"
|
|
733 |
|
734 |
# @ fl-builder
|
735 |
#: includes/column-settings.php:226 includes/global-settings.php:49
|
736 |
-
#: includes/row-settings.php:529 modules/button/button.php:
|
737 |
-
#: modules/callout/callout.php:
|
738 |
-
#: modules/content-slider/content-slider.php:
|
739 |
msgid "Padding"
|
740 |
msgstr "Padding"
|
741 |
|
@@ -806,8 +924,8 @@ msgstr "La larghezza della colonna su dispositivi medi come i tablet."
|
|
806 |
|
807 |
# @ fl-builder
|
808 |
#: includes/column-settings.php:302 includes/column-settings.php:330
|
809 |
-
#: modules/callout/callout.php:
|
810 |
-
#: modules/content-slider/content-slider.php:
|
811 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
812 |
#: modules/heading/heading.php:174
|
813 |
msgid "Default"
|
@@ -815,8 +933,8 @@ msgstr "Predefinita"
|
|
815 |
|
816 |
# @ fl-builder
|
817 |
#: includes/column-settings.php:303 includes/column-settings.php:331
|
818 |
-
#: modules/button/button.php:
|
819 |
-
#: modules/content-slider/content-slider.php:
|
820 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
821 |
#: modules/heading/heading.php:175
|
822 |
#: modules/social-buttons/social-buttons.php:74
|
@@ -897,7 +1015,7 @@ msgid "Replace"
|
|
897 |
msgstr "Sostituisci"
|
898 |
|
899 |
# @ fl-builder
|
900 |
-
#: includes/field-icon.php:7 includes/js-config.php:
|
901 |
msgid "Remove"
|
902 |
msgstr "Rimuovi"
|
903 |
|
@@ -918,7 +1036,7 @@ msgstr "Inizia a digitare..."
|
|
918 |
|
919 |
# @ fl-builder
|
920 |
#: includes/field-link.php:7 includes/icon-selector.php:28
|
921 |
-
#: includes/js-config.php:
|
922 |
#: includes/template-selector.php:102 includes/ui.php:11
|
923 |
msgid "Cancel"
|
924 |
msgstr "Annulla"
|
@@ -947,7 +1065,7 @@ msgid "Add Photos"
|
|
947 |
msgstr "Aggiungi foto"
|
948 |
|
949 |
# @ fl-builder
|
950 |
-
#: includes/field-photo.php:3 includes/js-config.php:
|
951 |
msgid "Select Photo"
|
952 |
msgstr "Seleziona foto"
|
953 |
|
@@ -957,7 +1075,7 @@ msgid "Edit"
|
|
957 |
msgstr "Modifica"
|
958 |
|
959 |
# @ fl-builder
|
960 |
-
#: includes/field-video.php:3 includes/js-config.php:
|
961 |
msgid "Select Video"
|
962 |
msgstr "Seleziona video"
|
963 |
|
@@ -968,10 +1086,10 @@ msgstr "Sostituisci video"
|
|
968 |
|
969 |
# @ fl-builder
|
970 |
#: includes/global-settings.php:7 includes/user-template-settings.php:7
|
971 |
-
#: modules/accordion/accordion.php:110 modules/button/button.php:
|
972 |
-
#: modules/callout/callout.php:
|
973 |
-
#: modules/content-slider/content-slider.php:
|
974 |
-
#: modules/content-slider/content-slider.php:
|
975 |
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
976 |
#: modules/html/html.php:26 modules/icon/icon.php:27
|
977 |
#: modules/icon-group/icon-group.php:128 modules/map/map.php:26
|
@@ -1005,24 +1123,22 @@ msgstr "Visualizza"
|
|
1005 |
# @ fl-builder
|
1006 |
#: includes/global-settings.php:18 includes/global-settings.php:110
|
1007 |
#: includes/row-settings.php:307 modules/accordion/accordion.php:90
|
1008 |
-
#: modules/
|
1009 |
-
#: modules/
|
1010 |
-
#: modules/content-slider/content-slider.php:
|
1011 |
-
#: modules/content-slider/content-slider.php:
|
1012 |
-
#: modules/content-slider/content-slider.php:
|
1013 |
-
#: modules/content-slider/content-slider.php:
|
1014 |
-
#: modules/
|
1015 |
-
#: modules/
|
1016 |
-
#: modules/
|
1017 |
-
#: modules/slideshow/slideshow.php:
|
1018 |
-
#: modules/slideshow/slideshow.php:
|
1019 |
-
#: modules/slideshow/slideshow.php:
|
1020 |
-
#: modules/slideshow/slideshow.php:
|
1021 |
-
#: modules/slideshow/slideshow.php:
|
1022 |
-
#: modules/slideshow/slideshow.php:
|
1023 |
-
#: modules/slideshow/slideshow.php:
|
1024 |
-
#: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
|
1025 |
-
#: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
|
1026 |
#: modules/social-buttons/social-buttons.php:111
|
1027 |
#: modules/social-buttons/social-buttons.php:120
|
1028 |
#: modules/social-buttons/social-buttons.php:129
|
@@ -1036,24 +1152,22 @@ msgstr "No"
|
|
1036 |
# @ fl-builder
|
1037 |
#: includes/global-settings.php:19 includes/global-settings.php:111
|
1038 |
#: includes/row-settings.php:308 modules/accordion/accordion.php:89
|
1039 |
-
#: modules/
|
1040 |
-
#: modules/
|
1041 |
-
#: modules/content-slider/content-slider.php:
|
1042 |
-
#: modules/content-slider/content-slider.php:
|
1043 |
-
#: modules/content-slider/content-slider.php:
|
1044 |
-
#: modules/content-slider/content-slider.php:
|
1045 |
-
#: modules/
|
1046 |
-
#: modules/
|
1047 |
-
#: modules/
|
1048 |
-
#: modules/slideshow/slideshow.php:
|
1049 |
-
#: modules/slideshow/slideshow.php:
|
1050 |
-
#: modules/slideshow/slideshow.php:
|
1051 |
-
#: modules/slideshow/slideshow.php:
|
1052 |
-
#: modules/slideshow/slideshow.php:
|
1053 |
-
#: modules/slideshow/slideshow.php:
|
1054 |
-
#: modules/slideshow/slideshow.php:
|
1055 |
-
#: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
|
1056 |
-
#: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
|
1057 |
#: modules/social-buttons/social-buttons.php:110
|
1058 |
#: modules/social-buttons/social-buttons.php:119
|
1059 |
#: modules/social-buttons/social-buttons.php:128
|
@@ -1122,7 +1236,7 @@ msgstr "Fissa"
|
|
1122 |
# @ fl-builder
|
1123 |
#: includes/global-settings.php:70 includes/global-settings.php:84
|
1124 |
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1125 |
-
#: modules/button/button.php:
|
1126 |
msgid "Full Width"
|
1127 |
msgstr "Larghezza piena"
|
1128 |
|
@@ -1174,17 +1288,17 @@ msgid "All Libraries"
|
|
1174 |
msgstr "Tutte le librerie"
|
1175 |
|
1176 |
# @ fl-builder
|
1177 |
-
#: includes/js-config.php:
|
1178 |
msgid "What would you like to do?"
|
1179 |
msgstr "Che cosa vorresti fare?"
|
1180 |
|
1181 |
# @ fl-builder
|
1182 |
-
#: includes/js-config.php:
|
1183 |
msgid "Change Template"
|
1184 |
msgstr "Cambiare modello"
|
1185 |
|
1186 |
# @ fl-builder
|
1187 |
-
#: includes/js-config.php:
|
1188 |
msgid ""
|
1189 |
"Warning! Changing the template will replace your existing layout. Do you "
|
1190 |
"really want to do this?"
|
@@ -1193,12 +1307,12 @@ msgstr ""
|
|
1193 |
"fare questo?"
|
1194 |
|
1195 |
# @ fl-builder
|
1196 |
-
#: includes/js-config.php:
|
1197 |
msgid "Column"
|
1198 |
msgstr "Colonna"
|
1199 |
|
1200 |
# @ fl-builder
|
1201 |
-
#: includes/js-config.php:
|
1202 |
msgid ""
|
1203 |
"Please select either a background layout or content layout before submitting."
|
1204 |
msgstr ""
|
@@ -1206,12 +1320,12 @@ msgstr ""
|
|
1206 |
"inviare."
|
1207 |
|
1208 |
# @ fl-builder
|
1209 |
-
#: includes/js-config.php:
|
1210 |
msgid "Do you really want to delete this item?"
|
1211 |
msgstr "Vuoi davvero eliminare questo elemento?"
|
1212 |
|
1213 |
# @ fl-builder
|
1214 |
-
#: includes/js-config.php:
|
1215 |
msgid ""
|
1216 |
"Do you really want to delete this module? All content data will be "
|
1217 |
"permanently deleted."
|
@@ -1220,7 +1334,7 @@ msgstr ""
|
|
1220 |
"eliminati definitivamente."
|
1221 |
|
1222 |
# @ fl-builder
|
1223 |
-
#: includes/js-config.php:
|
1224 |
msgid ""
|
1225 |
"Do you really want to delete this row? All content data will be permanently "
|
1226 |
"deleted."
|
@@ -1229,17 +1343,17 @@ msgstr ""
|
|
1229 |
"eliminati definitivamente."
|
1230 |
|
1231 |
# @ fl-builder
|
1232 |
-
#: includes/js-config.php:
|
1233 |
msgid "Do you really want to delete this template?"
|
1234 |
msgstr "Vuoi davvero eliminare questo modello?"
|
1235 |
|
1236 |
# @ fl-builder
|
1237 |
-
#: includes/js-config.php:
|
1238 |
msgid "Discard Draft"
|
1239 |
msgstr "Scarta bozza"
|
1240 |
|
1241 |
# @ fl-builder
|
1242 |
-
#: includes/js-config.php:
|
1243 |
msgid ""
|
1244 |
"Do you really want to discard this draft? All of your changes that are not "
|
1245 |
"published will be lost."
|
@@ -1248,37 +1362,42 @@ msgstr ""
|
|
1248 |
"pubblicate saranno perse."
|
1249 |
|
1250 |
# @ fl-builder
|
1251 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
|
|
1252 |
msgid "Save Draft"
|
1253 |
msgstr "Salva bozza"
|
1254 |
|
1255 |
# @ fl-builder
|
1256 |
-
#: includes/js-config.php:
|
1257 |
msgctxt "Duplicate page/post action label."
|
1258 |
msgid "Duplicate"
|
1259 |
msgstr "Duplica"
|
1260 |
|
1261 |
# @ fl-builder
|
1262 |
-
#: includes/js-config.php:
|
1263 |
msgid "Duplicate This Page"
|
1264 |
msgstr "Duplica questa pagina"
|
1265 |
|
1266 |
# @ fl-builder
|
1267 |
-
#: includes/js-config.php:
|
1268 |
msgid "Duplicate This Template"
|
1269 |
msgstr "Duplica questo modello"
|
1270 |
|
1271 |
# @ fl-builder
|
1272 |
-
#: includes/js-config.php:
|
1273 |
msgid "Edit Global Settings"
|
1274 |
msgstr "Modifica impostazioni globali"
|
1275 |
|
1276 |
# @ fl-builder
|
1277 |
-
#: includes/js-config.php:
|
1278 |
msgid "Drop a row layout or module to get started!"
|
1279 |
msgstr "Trascina un layout di riga o un modulo per iniziare!"
|
1280 |
|
1281 |
-
#: includes/js-config.php:
|
1282 |
msgid ""
|
1283 |
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1284 |
"not functioning as expected the cause is most likely this error. Please help "
|
@@ -1292,132 +1411,282 @@ msgstr ""
|
|
1292 |
"legato a un plugin di terze parti."
|
1293 |
|
1294 |
# @ fl-builder
|
1295 |
-
#: includes/js-config.php:
|
1296 |
msgid "Full Size"
|
1297 |
msgstr "Tutta larghezza"
|
1298 |
|
1299 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1300 |
msgid "\"{message}\" on line {line} of {file}."
|
1301 |
msgstr "\"{message}\" nella riga {line} di {file}."
|
1302 |
|
1303 |
# @ fl-builder
|
1304 |
-
#: includes/js-config.php:
|
1305 |
msgid "Insert"
|
1306 |
msgstr "Inserisci"
|
1307 |
|
1308 |
# @ fl-builder
|
1309 |
-
#: includes/js-config.php:
|
1310 |
msgid "Large"
|
1311 |
msgstr "Grande"
|
1312 |
|
1313 |
# @ fl-builder
|
1314 |
-
#: includes/js-config.php:
|
1315 |
msgid "Manage Templates"
|
1316 |
msgstr "Gestione modelli"
|
1317 |
|
1318 |
# @ fl-builder
|
1319 |
-
#: includes/js-config.php:
|
1320 |
msgid "Medium"
|
1321 |
msgstr "Medio"
|
1322 |
|
1323 |
# @ fl-builder
|
1324 |
-
#: includes/js-config.php:
|
1325 |
msgid "Module"
|
1326 |
msgstr "Modulo"
|
1327 |
|
1328 |
# @ fl-builder
|
1329 |
-
#: includes/js-config.php:
|
1330 |
msgid "Move"
|
1331 |
msgstr "Sposta"
|
1332 |
|
1333 |
# @ fl-builder
|
1334 |
-
#: includes/js-config.php:
|
1335 |
msgid "New Column"
|
1336 |
msgstr "Nuova colonna"
|
1337 |
|
1338 |
# @ fl-builder
|
1339 |
-
#: includes/js-config.php:
|
1340 |
msgid "New Row"
|
1341 |
msgstr "Nuova riga"
|
1342 |
|
1343 |
# @ fl-builder
|
1344 |
-
#: includes/js-config.php:
|
1345 |
msgid "No results found."
|
1346 |
msgstr "Nessun risultato trovato."
|
1347 |
|
|
|
|
|
|
|
|
|
1348 |
# @ fl-builder
|
1349 |
-
#: includes/js-config.php:
|
1350 |
msgid "OK"
|
1351 |
msgstr "OK"
|
1352 |
|
1353 |
# @ fl-builder
|
1354 |
-
#: includes/js-config.php:
|
1355 |
msgid "Photo Page"
|
1356 |
msgstr "Pagina di foto"
|
1357 |
|
1358 |
# @ fl-builder
|
1359 |
-
#: includes/js-config.php:
|
1360 |
msgid "Photo Selected"
|
1361 |
msgstr "Foto selezionata"
|
1362 |
|
1363 |
# @ fl-builder
|
1364 |
-
#: includes/js-config.php:
|
1365 |
msgid "Photos Selected"
|
1366 |
msgstr "Foto selezionate"
|
1367 |
|
1368 |
# @ fl-builder
|
1369 |
-
#: includes/js-config.php:
|
1370 |
msgid "Publish Changes"
|
1371 |
msgstr "Pubblica le modifiche"
|
1372 |
|
1373 |
# @ fl-builder
|
1374 |
-
#: includes/js-config.php:
|
1375 |
msgid "Row"
|
1376 |
msgstr "Riga"
|
1377 |
|
1378 |
# @ fl-builder
|
1379 |
-
#: includes/js-config.php:
|
1380 |
msgid "Row Settings"
|
1381 |
msgstr "Impostazioni di riga"
|
1382 |
|
1383 |
# @ fl-builder
|
1384 |
-
#: includes/js-config.php:
|
1385 |
msgid "Save Core Template"
|
1386 |
msgstr "Salva il modello Core"
|
1387 |
|
1388 |
# @ fl-builder
|
1389 |
-
#: includes/js-config.php:
|
1390 |
#: includes/user-template-settings.php:4
|
1391 |
msgid "Save Template"
|
1392 |
msgstr "Salva modello"
|
1393 |
|
1394 |
# @ fl-builder
|
1395 |
-
#: includes/js-config.php:
|
1396 |
msgid "Select Photos"
|
1397 |
msgstr "Seleziona foto"
|
1398 |
|
|
|
|
|
|
|
|
|
1399 |
# @ fl-builder
|
1400 |
-
#: includes/js-config.php:
|
1401 |
msgid "Append New Layout"
|
1402 |
msgstr "Aggiungi nuovo Layout"
|
1403 |
|
1404 |
# @ fl-builder
|
1405 |
-
#: includes/js-config.php:
|
1406 |
msgid "Replace Existing Layout"
|
1407 |
msgstr "Sostituisci Layout esistente"
|
1408 |
|
1409 |
# @ fl-builder
|
1410 |
-
#: includes/js-config.php:
|
1411 |
msgid "Template Saved!"
|
1412 |
msgstr "Modello salvato!"
|
1413 |
|
1414 |
# @ fl-builder
|
1415 |
-
#: includes/js-config.php:
|
1416 |
msgid "Thumbnail"
|
1417 |
msgstr "Miniatura"
|
1418 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1419 |
# @ fl-builder
|
1420 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1421 |
msgid ""
|
1422 |
"The settings you are currently editing will not be saved if you navigate "
|
1423 |
"away from this page."
|
@@ -1425,6 +1694,31 @@ msgstr ""
|
|
1425 |
"Le impostazioni che stai modificando attualmente non verranno salvate se "
|
1426 |
"navighi via da questa pagina."
|
1427 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1428 |
# @ fl-builder
|
1429 |
#: includes/loop-settings.php:19
|
1430 |
msgid "Post Type"
|
@@ -1573,15 +1867,15 @@ msgstr "Scorri basso"
|
|
1573 |
|
1574 |
# @ fl-builder
|
1575 |
#: includes/module-settings.php:102
|
1576 |
-
#: modules/content-slider/content-slider.php:
|
1577 |
#: modules/testimonials/testimonials.php:91
|
1578 |
msgid "Delay"
|
1579 |
msgstr "Ritardo"
|
1580 |
|
1581 |
# @ fl-builder
|
1582 |
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1583 |
-
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:
|
1584 |
-
#: modules/content-slider/content-slider.php:
|
1585 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1586 |
#: modules/slideshow/slideshow.php:581
|
1587 |
#: modules/testimonials/testimonials.php:95
|
@@ -1620,8 +1914,8 @@ msgstr ""
|
|
1620 |
"Separa classi multiple con spazio."
|
1621 |
|
1622 |
# @ fl-builder
|
1623 |
-
#: includes/row-settings.php:16 modules/button/button.php:
|
1624 |
-
#: modules/content-slider/content-slider.php:
|
1625 |
msgid "Width"
|
1626 |
msgstr "Larghezza"
|
1627 |
|
@@ -1656,7 +1950,7 @@ msgid "Background"
|
|
1656 |
msgstr "Sfondo"
|
1657 |
|
1658 |
# @ fl-builder
|
1659 |
-
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:
|
1660 |
msgctxt "Background type."
|
1661 |
msgid "None"
|
1662 |
msgstr "Nessuno"
|
@@ -1692,17 +1986,17 @@ msgid "Parallax"
|
|
1692 |
msgstr "Parallasse"
|
1693 |
|
1694 |
# @ fl-builder
|
1695 |
-
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:
|
1696 |
msgid "Background Photo"
|
1697 |
msgstr "Foto di sfondo"
|
1698 |
|
1699 |
# @ fl-builder
|
1700 |
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1701 |
-
#: modules/callout/callout.php:
|
1702 |
-
#: modules/callout/callout.php:
|
1703 |
-
#: modules/content-slider/content-slider.php:
|
1704 |
-
#: modules/content-slider/content-slider.php:
|
1705 |
-
#: modules/content-slider/content-slider.php:
|
1706 |
#: modules/photo/photo.php:392
|
1707 |
msgid "Photo"
|
1708 |
msgstr "Foto"
|
@@ -1751,9 +2045,9 @@ msgstr ""
|
|
1751 |
"specificare di ripetere l'immagine solo orizzontalmente o verticalmente."
|
1752 |
|
1753 |
# @ fl-builder
|
1754 |
-
#: includes/row-settings.php:155 modules/callout/callout.php:
|
1755 |
-
#: modules/callout/callout.php:
|
1756 |
-
#: modules/content-slider/content-slider.php:
|
1757 |
#: modules/post-grid/post-grid.php:127
|
1758 |
msgid "Position"
|
1759 |
msgstr "Posizione"
|
@@ -1794,9 +2088,9 @@ msgid "Center Top"
|
|
1794 |
msgstr "Centro Alto"
|
1795 |
|
1796 |
# @ fl-builder
|
1797 |
-
#: includes/row-settings.php:165 modules/button/button.php:
|
1798 |
-
#: modules/callout/callout.php:
|
1799 |
-
#: modules/content-slider/content-slider.php:
|
1800 |
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1801 |
#: modules/icon/icon.php:133 modules/icon-group/icon-group.php:110
|
1802 |
#: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
|
@@ -1874,7 +2168,7 @@ msgid "Background Video"
|
|
1874 |
msgstr "Video di sfondo"
|
1875 |
|
1876 |
# @ fl-builder
|
1877 |
-
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:
|
1878 |
#: modules/video/video.php:19 modules/video/video.php:100
|
1879 |
msgid "Video"
|
1880 |
msgstr "Video"
|
@@ -1947,7 +2241,7 @@ msgid "Speed"
|
|
1947 |
msgstr "Velocità"
|
1948 |
|
1949 |
# @ fl-builder
|
1950 |
-
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:
|
1951 |
#: modules/slideshow/slideshow.php:389
|
1952 |
#: modules/testimonials/testimonials.php:99
|
1953 |
msgid "Transition"
|
@@ -1960,7 +2254,7 @@ msgid "None"
|
|
1960 |
msgstr "Nessuna"
|
1961 |
|
1962 |
# @ fl-builder
|
1963 |
-
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:
|
1964 |
#: modules/slideshow/slideshow.php:393
|
1965 |
#: modules/testimonials/testimonials.php:103
|
1966 |
msgid "Fade"
|
@@ -2012,7 +2306,7 @@ msgid "Boxes Grow"
|
|
2012 |
msgstr "Quadrati ingrandimento"
|
2013 |
|
2014 |
# @ fl-builder
|
2015 |
-
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:
|
2016 |
#: modules/slideshow/slideshow.php:407
|
2017 |
#: modules/testimonials/testimonials.php:108
|
2018 |
msgid "Transition Speed"
|
@@ -2142,85 +2436,70 @@ msgid "Page Builder Demo"
|
|
2142 |
msgstr "Dimostrazione del Page Builder"
|
2143 |
|
2144 |
# @ fl-builder
|
2145 |
-
#: includes/ui.php:
|
2146 |
msgid "Buy Now!"
|
2147 |
msgstr "Acquista ora!"
|
2148 |
|
2149 |
# @ fl-builder
|
2150 |
-
#: includes/ui.php:
|
2151 |
msgid "Upgrade!"
|
2152 |
msgstr "Aggiorna!"
|
2153 |
|
2154 |
# @ fl-builder
|
2155 |
-
#: includes/ui.php:
|
2156 |
-
msgid "Done"
|
2157 |
-
msgstr "Fatto"
|
2158 |
-
|
2159 |
-
# @ fl-builder
|
2160 |
-
#: includes/ui.php:42
|
2161 |
msgid "Tools"
|
2162 |
msgstr "Strumenti"
|
2163 |
|
2164 |
# @ fl-builder
|
2165 |
-
#: includes/ui.php:
|
2166 |
-
msgid "Add Content"
|
2167 |
-
msgstr "Aggiungi contenuto"
|
2168 |
-
|
2169 |
-
# @ fl-builder
|
2170 |
-
#: includes/ui.php:64
|
2171 |
msgid "Row Layouts"
|
2172 |
msgstr "Layout di riga"
|
2173 |
|
2174 |
# @ fl-builder
|
2175 |
-
#: includes/ui.php:
|
2176 |
msgid "1 Column"
|
2177 |
msgstr "1 colonna"
|
2178 |
|
2179 |
# @ fl-builder
|
2180 |
-
#: includes/ui.php:
|
2181 |
msgid "2 Columns"
|
2182 |
msgstr "2 colonne"
|
2183 |
|
2184 |
# @ fl-builder
|
2185 |
-
#: includes/ui.php:
|
2186 |
msgid "3 Columns"
|
2187 |
msgstr "3 colonne"
|
2188 |
|
2189 |
# @ fl-builder
|
2190 |
-
#: includes/ui.php:
|
2191 |
msgid "4 Columns"
|
2192 |
msgstr "4 colonne"
|
2193 |
|
2194 |
# @ fl-builder
|
2195 |
-
#: includes/ui.php:
|
2196 |
msgid "5 Columns"
|
2197 |
msgstr "5 colonne"
|
2198 |
|
2199 |
# @ fl-builder
|
2200 |
-
#: includes/ui.php:
|
2201 |
msgid "6 Columns"
|
2202 |
msgstr "6 colonne"
|
2203 |
|
2204 |
# @ fl-builder
|
2205 |
-
#: includes/ui.php:
|
2206 |
msgid "Left Sidebar"
|
2207 |
msgstr "Barra laterale sinistra"
|
2208 |
|
2209 |
# @ fl-builder
|
2210 |
-
#: includes/ui.php:
|
2211 |
msgid "Right Sidebar"
|
2212 |
msgstr "Barra laterale destra"
|
2213 |
|
2214 |
# @ fl-builder
|
2215 |
-
#: includes/ui.php:
|
2216 |
msgid "Left & Right Sidebar"
|
2217 |
msgstr "Barra laterale sinistra e destra"
|
2218 |
|
2219 |
-
# @ fl-builder
|
2220 |
-
#: includes/ui.php:85 modules/widget/widget.php:16
|
2221 |
-
msgid "WordPress Widgets"
|
2222 |
-
msgstr "Widget di WordPress"
|
2223 |
-
|
2224 |
# @ fl-builder
|
2225 |
#: includes/updater/classes/class-fl-updater.php:107
|
2226 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
@@ -2306,21 +2585,6 @@ msgstr "Accordion"
|
|
2306 |
msgid "Display a collapsible accordion of items."
|
2307 |
msgstr "Visualizza una lista comprimibile di elementi."
|
2308 |
|
2309 |
-
# @ fl-builder
|
2310 |
-
#: modules/accordion/accordion.php:16 modules/button/button.php:16
|
2311 |
-
#: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
|
2312 |
-
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
2313 |
-
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
2314 |
-
#: modules/icon/icon.php:16 modules/icon-group/icon-group.php:16
|
2315 |
-
#: modules/map/map.php:16 modules/post-grid/post-grid.php:16
|
2316 |
-
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
2317 |
-
#: modules/slideshow/slideshow.php:16
|
2318 |
-
#: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
|
2319 |
-
#: modules/testimonials/testimonials.php:16
|
2320 |
-
#: modules/woocommerce/woocommerce.php:18
|
2321 |
-
msgid "Advanced Modules"
|
2322 |
-
msgstr "Moduli avanzati"
|
2323 |
-
|
2324 |
# @ fl-builder
|
2325 |
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2326 |
msgid "Items"
|
@@ -2396,8 +2660,8 @@ msgid "Content"
|
|
2396 |
msgstr "Contenuto"
|
2397 |
|
2398 |
# @ fl-builder
|
2399 |
-
#: modules/button/button.php:14 modules/callout/callout.php:
|
2400 |
-
#: modules/content-slider/content-slider.php:
|
2401 |
#: modules/pricing-table/pricing-table.php:129
|
2402 |
msgid "Button"
|
2403 |
msgstr "Pulsante"
|
@@ -2408,24 +2672,24 @@ msgid "A simple call to action button."
|
|
2408 |
msgstr "Un semplice pulsante Call to action."
|
2409 |
|
2410 |
# @ fl-builder
|
2411 |
-
#: modules/button/button.php:
|
2412 |
msgid "Click Here"
|
2413 |
msgstr "Clicca qui"
|
2414 |
|
2415 |
# @ fl-builder
|
2416 |
-
#: modules/button/button.php:
|
2417 |
-
#: modules/callout/callout.php:
|
2418 |
-
#: modules/cta/cta.php:
|
2419 |
#: modules/icon-group/icon-group.php:34 modules/icon-group/icon-group.php:135
|
2420 |
msgid "Icon"
|
2421 |
msgstr "Icona"
|
2422 |
|
2423 |
# @ fl-builder
|
2424 |
-
#: modules/button/button.php:
|
2425 |
-
#: modules/callout/callout.php:
|
2426 |
-
#: modules/content-slider/content-slider.php:
|
2427 |
-
#: modules/content-slider/content-slider.php:
|
2428 |
-
#: modules/content-slider/content-slider.php:
|
2429 |
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
2430 |
#: modules/icon/icon.php:43 modules/icon-group/icon-group.php:139
|
2431 |
#: modules/slideshow/slideshow.php:343
|
@@ -2433,92 +2697,116 @@ msgid "Link"
|
|
2433 |
msgstr "Collegamento"
|
2434 |
|
2435 |
# @ fl-builder
|
2436 |
-
#: modules/button/button.php:
|
2437 |
msgid "http://www.example.com"
|
2438 |
msgstr "http://www.example.com"
|
2439 |
|
2440 |
# @ fl-builder
|
2441 |
-
#: modules/button/button.php:
|
2442 |
-
#: modules/content-slider/content-slider.php:
|
2443 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
2444 |
#: modules/photo/photo.php:478
|
2445 |
msgid "Link Target"
|
2446 |
msgstr "Destinazione del collegamento"
|
2447 |
|
2448 |
# @ fl-builder
|
2449 |
-
#: modules/button/button.php:
|
2450 |
-
#: modules/content-slider/content-slider.php:
|
2451 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
2452 |
#: modules/photo/photo.php:481
|
2453 |
msgid "Same Window"
|
2454 |
msgstr "Stessa finestra"
|
2455 |
|
2456 |
# @ fl-builder
|
2457 |
-
#: modules/button/button.php:
|
2458 |
-
#: modules/content-slider/content-slider.php:
|
2459 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
2460 |
#: modules/photo/photo.php:482
|
2461 |
msgid "New Window"
|
2462 |
msgstr "Nuova finestra"
|
2463 |
|
2464 |
# @ fl-builder
|
2465 |
-
#: modules/button/button.php:
|
2466 |
#: modules/heading/heading.php:72 modules/icon/icon.php:78
|
2467 |
#: modules/icon-group/icon-group.php:47
|
2468 |
msgid "Colors"
|
2469 |
msgstr "Colori"
|
2470 |
|
2471 |
# @ fl-builder
|
2472 |
-
#: modules/button/button.php:
|
2473 |
-
#: modules/callout/callout.php:
|
2474 |
-
#: modules/content-slider/content-slider.php:
|
2475 |
#: modules/icon/icon.php:100 modules/icon-group/icon-group.php:69
|
2476 |
msgid "Background Hover Color"
|
2477 |
msgstr "Colore di sfondo al passaggio del mouse"
|
2478 |
|
2479 |
# @ fl-builder
|
2480 |
-
#: modules/button/button.php:
|
2481 |
-
#: modules/content-slider/content-slider.php:
|
2482 |
-
#: modules/content-slider/content-slider.php:
|
2483 |
-
#: modules/content-slider/content-slider.php:
|
2484 |
-
#: modules/cta/cta.php:
|
2485 |
msgid "Text Color"
|
2486 |
msgstr "Colore del testo"
|
2487 |
|
2488 |
# @ fl-builder
|
2489 |
-
#: modules/button/button.php:
|
2490 |
-
#: modules/content-slider/content-slider.php:
|
2491 |
msgid "Text Hover Color"
|
2492 |
msgstr "Colore del testo al passaggio del mouse"
|
2493 |
|
|
|
|
|
|
|
|
|
|
|
2494 |
# @ fl-builder
|
2495 |
-
#: modules/button/button.php:
|
2496 |
-
#: modules/callout/callout.php:
|
2497 |
-
#: modules/content-slider/content-slider.php:
|
2498 |
#: modules/icon/icon.php:108 modules/icon-group/icon-group.php:77
|
2499 |
msgid "Gradient"
|
2500 |
msgstr "Gradiente"
|
2501 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2502 |
# @ fl-builder
|
2503 |
-
#: modules/button/button.php:
|
2504 |
-
#: modules/cta/cta.php:
|
2505 |
#: modules/icon/icon.php:118 modules/icon-group/icon-group.php:87
|
2506 |
msgid "Structure"
|
2507 |
msgstr "Struttura"
|
2508 |
|
2509 |
# @ fl-builder
|
2510 |
-
#: modules/button/button.php:
|
2511 |
msgctxt "Width."
|
2512 |
msgid "Auto"
|
2513 |
msgstr "Automatica"
|
2514 |
|
2515 |
# @ fl-builder
|
2516 |
-
#: modules/button/button.php:
|
2517 |
msgid "Custom Width"
|
2518 |
msgstr "Larghezza personalizzata"
|
2519 |
|
2520 |
# @ fl-builder
|
2521 |
-
#: modules/button/button.php:
|
2522 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2523 |
#: modules/icon/icon.php:130 modules/icon-group/icon-group.php:107
|
2524 |
#: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
|
@@ -2526,15 +2814,15 @@ msgid "Alignment"
|
|
2526 |
msgstr "Allineamento"
|
2527 |
|
2528 |
# @ fl-builder
|
2529 |
-
#: modules/button/button.php:
|
2530 |
-
#: modules/content-slider/content-slider.php:
|
2531 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2532 |
msgid "Font Size"
|
2533 |
msgstr "Dimensione carattere"
|
2534 |
|
2535 |
# @ fl-builder
|
2536 |
-
#: modules/button/button.php:
|
2537 |
-
#: modules/cta/cta.php:
|
2538 |
msgid "Round Corners"
|
2539 |
msgstr "Angoli arrotondati"
|
2540 |
|
@@ -2551,9 +2839,9 @@ msgstr ""
|
|
2551 |
"facoltativi."
|
2552 |
|
2553 |
# @ fl-builder
|
2554 |
-
#: modules/callout/callout.php:
|
2555 |
-
#: modules/content-slider/content-slider.php:
|
2556 |
-
#: modules/content-slider/content-slider.php:
|
2557 |
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
2558 |
#: modules/testimonials/testimonials.php:56
|
2559 |
#: modules/testimonials/testimonials.php:61
|
@@ -2561,154 +2849,154 @@ msgid "Heading"
|
|
2561 |
msgstr "Titolo"
|
2562 |
|
2563 |
# @ fl-builder
|
2564 |
-
#: modules/callout/callout.php:
|
2565 |
msgid "Overall Alignment"
|
2566 |
msgstr "Allineamento globale"
|
2567 |
|
2568 |
# @ fl-builder
|
2569 |
-
#: modules/callout/callout.php:
|
2570 |
msgid "The alignment that will apply to all elements within the callout."
|
2571 |
msgstr ""
|
2572 |
"L'allineamento che si applicherà a tutti gli elementi all'interno del "
|
2573 |
"callout."
|
2574 |
|
2575 |
# @ fl-builder
|
2576 |
-
#: modules/callout/callout.php:
|
2577 |
msgid "Heading Structure"
|
2578 |
msgstr "Struttura titolo"
|
2579 |
|
2580 |
# @ fl-builder
|
2581 |
-
#: modules/callout/callout.php:
|
2582 |
-
#: modules/content-slider/content-slider.php:
|
2583 |
msgid "Heading Tag"
|
2584 |
msgstr "Tag titolo"
|
2585 |
|
2586 |
# @ fl-builder
|
2587 |
-
#: modules/callout/callout.php:
|
2588 |
-
#: modules/content-slider/content-slider.php:
|
2589 |
-
#: modules/content-slider/content-slider.php:
|
2590 |
#: modules/testimonials/testimonials.php:69
|
2591 |
msgid "Heading Size"
|
2592 |
msgstr "Dimensione titolo"
|
2593 |
|
2594 |
# @ fl-builder
|
2595 |
-
#: modules/callout/callout.php:
|
2596 |
msgid "Heading Custom Size"
|
2597 |
msgstr "Dimensione personalizzata titolo"
|
2598 |
|
2599 |
# @ fl-builder
|
2600 |
-
#: modules/callout/callout.php:
|
2601 |
msgid "Image"
|
2602 |
msgstr "Immagine"
|
2603 |
|
2604 |
# @ fl-builder
|
2605 |
-
#: modules/callout/callout.php:
|
2606 |
msgid "Image Type"
|
2607 |
msgstr "Tipo di immagine"
|
2608 |
|
2609 |
# @ fl-builder
|
2610 |
-
#: modules/callout/callout.php:
|
2611 |
msgctxt "Image type."
|
2612 |
msgid "None"
|
2613 |
msgstr "Nessuna"
|
2614 |
|
2615 |
# @ fl-builder
|
2616 |
-
#: modules/callout/callout.php:
|
2617 |
#: modules/slideshow/slideshow.php:312
|
2618 |
msgid "Crop"
|
2619 |
msgstr "Ritaglio"
|
2620 |
|
2621 |
# @ fl-builder
|
2622 |
-
#: modules/callout/callout.php:
|
2623 |
msgctxt "Crop"
|
2624 |
msgid "None"
|
2625 |
msgstr "Nessuno"
|
2626 |
|
2627 |
# @ fl-builder
|
2628 |
-
#: modules/callout/callout.php:
|
2629 |
msgid "Landscape"
|
2630 |
msgstr "Paesaggio"
|
2631 |
|
2632 |
# @ fl-builder
|
2633 |
-
#: modules/callout/callout.php:
|
2634 |
msgid "Panorama"
|
2635 |
msgstr "Panorama"
|
2636 |
|
2637 |
# @ fl-builder
|
2638 |
-
#: modules/callout/callout.php:
|
2639 |
msgid "Portrait"
|
2640 |
msgstr "Ritratto"
|
2641 |
|
2642 |
# @ fl-builder
|
2643 |
-
#: modules/callout/callout.php:
|
2644 |
msgid "Square"
|
2645 |
msgstr "Quadrato"
|
2646 |
|
2647 |
# @ fl-builder
|
2648 |
-
#: modules/callout/callout.php:
|
2649 |
msgid "Circle"
|
2650 |
msgstr "Cerchio"
|
2651 |
|
2652 |
# @ fl-builder
|
2653 |
-
#: modules/callout/callout.php:
|
2654 |
msgid "Above Heading"
|
2655 |
msgstr "Sopra intestazione"
|
2656 |
|
2657 |
# @ fl-builder
|
2658 |
-
#: modules/callout/callout.php:
|
2659 |
msgid "Below Heading"
|
2660 |
msgstr "Sotto intestazione"
|
2661 |
|
2662 |
# @ fl-builder
|
2663 |
-
#: modules/callout/callout.php:
|
2664 |
msgid "Left of Text and Heading"
|
2665 |
msgstr "Sinistra del testo e intestazione"
|
2666 |
|
2667 |
# @ fl-builder
|
2668 |
-
#: modules/callout/callout.php:
|
2669 |
msgid "Right of Text and Heading"
|
2670 |
msgstr "Destra del testo e intestazione"
|
2671 |
|
2672 |
# @ fl-builder
|
2673 |
-
#: modules/callout/callout.php:
|
2674 |
msgid "Left of Heading"
|
2675 |
msgstr "Sinistra dell'intestazione"
|
2676 |
|
2677 |
# @ fl-builder
|
2678 |
-
#: modules/callout/callout.php:
|
2679 |
msgid "Right of Heading"
|
2680 |
msgstr "Destra dell'intestazione"
|
2681 |
|
2682 |
# @ fl-builder
|
2683 |
-
#: modules/callout/callout.php:
|
2684 |
msgid "Icon Colors"
|
2685 |
msgstr "Colori icona"
|
2686 |
|
2687 |
# @ fl-builder
|
2688 |
-
#: modules/callout/callout.php:
|
2689 |
#: modules/icon-group/icon-group.php:56
|
2690 |
msgid "Hover Color"
|
2691 |
msgstr "Colore al passaggio del mouse"
|
2692 |
|
2693 |
# @ fl-builder
|
2694 |
-
#: modules/callout/callout.php:
|
2695 |
msgid "Icon Structure"
|
2696 |
msgstr "Struttura icona"
|
2697 |
|
2698 |
# @ fl-builder
|
2699 |
-
#: modules/callout/callout.php:
|
2700 |
#: modules/icon-group/icon-group.php:91 modules/post-grid/post-grid.php:136
|
2701 |
msgid "Size"
|
2702 |
msgstr "Dimensione"
|
2703 |
|
2704 |
# @ fl-builder
|
2705 |
-
#: modules/callout/callout.php:
|
2706 |
-
#: modules/content-slider/content-slider.php:
|
2707 |
msgid "Call To Action"
|
2708 |
msgstr "Call To Action"
|
2709 |
|
2710 |
# @ fl-builder
|
2711 |
-
#: modules/callout/callout.php:
|
2712 |
msgid ""
|
2713 |
"The link applies to the entire module. If choosing a call to action type "
|
2714 |
"below, this link will also be used for the text or button."
|
@@ -2718,38 +3006,44 @@ msgstr ""
|
|
2718 |
"testo o pulsante."
|
2719 |
|
2720 |
# @ fl-builder
|
2721 |
-
#: modules/callout/callout.php:
|
2722 |
-
#: modules/content-slider/content-slider.php:
|
2723 |
msgid "Call to Action"
|
2724 |
msgstr "Call to Action"
|
2725 |
|
2726 |
# @ fl-builder
|
2727 |
-
#: modules/callout/callout.php:
|
2728 |
-
#: modules/content-slider/content-slider.php:
|
2729 |
msgctxt "Call to action."
|
2730 |
msgid "None"
|
2731 |
msgstr "Nessuna"
|
2732 |
|
2733 |
# @ fl-builder
|
2734 |
-
#: modules/callout/callout.php:
|
2735 |
-
#: modules/content-slider/content-slider.php:
|
2736 |
msgid "Button Icon"
|
2737 |
msgstr "Icona del pulsante"
|
2738 |
|
2739 |
# @ fl-builder
|
2740 |
-
#: modules/callout/callout.php:
|
2741 |
-
#: modules/content-slider/content-slider.php:
|
2742 |
msgid "Button Colors"
|
2743 |
msgstr "Colori pulsante"
|
2744 |
|
2745 |
# @ fl-builder
|
2746 |
-
#: modules/callout/callout.php:
|
2747 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2748 |
msgid "Button Structure"
|
2749 |
msgstr "Struttura pulsante"
|
2750 |
|
2751 |
# @ fl-builder
|
2752 |
-
#: modules/callout/callout.php:
|
2753 |
msgid "Button Width"
|
2754 |
msgstr "Larghezza del pulsante"
|
2755 |
|
@@ -2856,13 +3150,13 @@ msgstr ""
|
|
2856 |
"Visualizza slide multiple con un titolo e una call to action opzionali."
|
2857 |
|
2858 |
# @ fl-builder
|
2859 |
-
#: modules/content-slider/content-slider.php:
|
2860 |
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2861 |
msgid "Height"
|
2862 |
msgstr "Altezza"
|
2863 |
|
2864 |
# @ fl-builder
|
2865 |
-
#: modules/content-slider/content-slider.php:
|
2866 |
msgid ""
|
2867 |
"This setting is the minimum height of the content slider. Content will "
|
2868 |
"expand the height automatically."
|
@@ -2871,68 +3165,68 @@ msgstr ""
|
|
2871 |
"contenuto espanderà automaticamente l'altezza."
|
2872 |
|
2873 |
# @ fl-builder
|
2874 |
-
#: modules/content-slider/content-slider.php:
|
2875 |
#: modules/slideshow/slideshow.php:373
|
2876 |
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
2877 |
msgid "Auto Play"
|
2878 |
msgstr "Avvio automatico"
|
2879 |
|
2880 |
# @ fl-builder
|
2881 |
-
#: modules/content-slider/content-slider.php:
|
2882 |
msgid "Show Play/Pause"
|
2883 |
msgstr "Mostra Play/Pausa"
|
2884 |
|
2885 |
# @ fl-builder
|
2886 |
-
#: modules/content-slider/content-slider.php:
|
2887 |
#: modules/testimonials/testimonials.php:102
|
2888 |
msgctxt "Transition type."
|
2889 |
msgid "Slide"
|
2890 |
msgstr "Slide"
|
2891 |
|
2892 |
# @ fl-builder
|
2893 |
-
#: modules/content-slider/content-slider.php:
|
2894 |
#: modules/testimonials/testimonials.php:121
|
2895 |
msgid "Show Arrows"
|
2896 |
msgstr "Mostra frecce"
|
2897 |
|
2898 |
# @ fl-builder
|
2899 |
-
#: modules/content-slider/content-slider.php:
|
2900 |
#: modules/testimonials/testimonials.php:151
|
2901 |
msgid "Show Dots"
|
2902 |
msgstr "Mostra navigazione"
|
2903 |
|
2904 |
# @ fl-builder
|
2905 |
-
#: modules/content-slider/content-slider.php:
|
2906 |
msgid "Max Content Width"
|
2907 |
msgstr "Larghezza max contenuto"
|
2908 |
|
2909 |
# @ fl-builder
|
2910 |
-
#: modules/content-slider/content-slider.php:
|
2911 |
msgid "The max width that the content area will be within your slides."
|
2912 |
msgstr "La larghezza massima dell'area di contenuto nelle tue slides."
|
2913 |
|
2914 |
# @ fl-builder
|
2915 |
-
#: modules/content-slider/content-slider.php:
|
2916 |
msgid "Slides"
|
2917 |
msgstr "Slides"
|
2918 |
|
2919 |
# @ fl-builder
|
2920 |
-
#: modules/content-slider/content-slider.php:
|
2921 |
msgid "Slide"
|
2922 |
msgstr "Slide"
|
2923 |
|
2924 |
# @ fl-builder
|
2925 |
-
#: modules/content-slider/content-slider.php:
|
2926 |
msgid "Slide Settings"
|
2927 |
msgstr "Impostazioni slide"
|
2928 |
|
2929 |
# @ fl-builder
|
2930 |
-
#: modules/content-slider/content-slider.php:
|
2931 |
msgid "Slide Label"
|
2932 |
msgstr "Etichetta slide"
|
2933 |
|
2934 |
# @ fl-builder
|
2935 |
-
#: modules/content-slider/content-slider.php:
|
2936 |
msgid ""
|
2937 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
2938 |
"settings."
|
@@ -2941,27 +3235,27 @@ msgstr ""
|
|
2941 |
"Contenuti, tra le schede delle slide."
|
2942 |
|
2943 |
# @ fl-builder
|
2944 |
-
#: modules/content-slider/content-slider.php:
|
2945 |
msgid "Background Layout"
|
2946 |
msgstr "Layout sfondo"
|
2947 |
|
2948 |
# @ fl-builder
|
2949 |
-
#: modules/content-slider/content-slider.php:
|
2950 |
msgid "This setting is for the entire background of your slide."
|
2951 |
msgstr "Questa impostazione è per l'intero sfondo della tua slide."
|
2952 |
|
2953 |
# @ fl-builder
|
2954 |
-
#: modules/content-slider/content-slider.php:
|
2955 |
msgid "Background Video Code"
|
2956 |
msgstr "Codice sfondo video"
|
2957 |
|
2958 |
# @ fl-builder
|
2959 |
-
#: modules/content-slider/content-slider.php:
|
2960 |
msgid "Content Layout"
|
2961 |
msgstr "Layout contenuto"
|
2962 |
|
2963 |
# @ fl-builder
|
2964 |
-
#: modules/content-slider/content-slider.php:
|
2965 |
msgid ""
|
2966 |
"This allows you to add content over or in addition to the background "
|
2967 |
"selection above. The location of the content layout can be selected in the "
|
@@ -2972,33 +3266,33 @@ msgstr ""
|
|
2972 |
"scheda stile."
|
2973 |
|
2974 |
# @ fl-builder
|
2975 |
-
#: modules/content-slider/content-slider.php:
|
2976 |
msgid "Text & Photo"
|
2977 |
msgstr "Testo e foto"
|
2978 |
|
2979 |
# @ fl-builder
|
2980 |
-
#: modules/content-slider/content-slider.php:
|
2981 |
msgid "Text & Video"
|
2982 |
msgstr "Testo e Video"
|
2983 |
|
2984 |
# @ fl-builder
|
2985 |
-
#: modules/content-slider/content-slider.php:
|
2986 |
msgctxt "Content type."
|
2987 |
msgid "None"
|
2988 |
msgstr "Nessuno"
|
2989 |
|
2990 |
# @ fl-builder
|
2991 |
-
#: modules/content-slider/content-slider.php:
|
2992 |
msgid "Video Embed Code"
|
2993 |
msgstr "Codice di embed del video"
|
2994 |
|
2995 |
# @ fl-builder
|
2996 |
-
#: modules/content-slider/content-slider.php:
|
2997 |
msgid "Text Position"
|
2998 |
msgstr "Posizione testo"
|
2999 |
|
3000 |
# @ fl-builder
|
3001 |
-
#: modules/content-slider/content-slider.php:
|
3002 |
msgid ""
|
3003 |
"The position will move the content layout selections left, right or center "
|
3004 |
"over the background of the slide."
|
@@ -3007,60 +3301,60 @@ msgstr ""
|
|
3007 |
"centrato sullo sfondo della slide."
|
3008 |
|
3009 |
# @ fl-builder
|
3010 |
-
#: modules/content-slider/content-slider.php:
|
3011 |
msgid "Top Margin"
|
3012 |
msgstr "Margine alto"
|
3013 |
|
3014 |
# @ fl-builder
|
3015 |
-
#: modules/content-slider/content-slider.php:
|
3016 |
msgid "Bottom Margin"
|
3017 |
msgstr "Margine basso"
|
3018 |
|
3019 |
# @ fl-builder
|
3020 |
-
#: modules/content-slider/content-slider.php:
|
3021 |
msgid "Left Margin"
|
3022 |
msgstr "Margine sinistro"
|
3023 |
|
3024 |
# @ fl-builder
|
3025 |
-
#: modules/content-slider/content-slider.php:
|
3026 |
msgid "Right Margin"
|
3027 |
msgstr "Margine destro"
|
3028 |
|
3029 |
# @ fl-builder
|
3030 |
-
#: modules/content-slider/content-slider.php:
|
3031 |
msgid "Text Colors"
|
3032 |
msgstr "Colori del testo"
|
3033 |
|
3034 |
# @ fl-builder
|
3035 |
-
#: modules/content-slider/content-slider.php:
|
3036 |
msgid "Text Shadow"
|
3037 |
msgstr "Ombra del testo"
|
3038 |
|
3039 |
# @ fl-builder
|
3040 |
-
#: modules/content-slider/content-slider.php:
|
3041 |
-
#: modules/content-slider/content-slider.php:
|
3042 |
msgid "Text Background Color"
|
3043 |
msgstr "Colore di sfondo del testo"
|
3044 |
|
3045 |
# @ fl-builder
|
3046 |
-
#: modules/content-slider/content-slider.php:
|
3047 |
msgid ""
|
3048 |
"The color applies to the overlay behind text over the background selections."
|
3049 |
msgstr ""
|
3050 |
"Il colore si applica all'overlay dietro il testo sopra lo sfondo selezionato."
|
3051 |
|
3052 |
# @ fl-builder
|
3053 |
-
#: modules/content-slider/content-slider.php:
|
3054 |
msgid "Text Background Opacity"
|
3055 |
msgstr "Opacità sfondo del testo"
|
3056 |
|
3057 |
# @ fl-builder
|
3058 |
-
#: modules/content-slider/content-slider.php:
|
3059 |
msgid "Text Background Height"
|
3060 |
msgstr "Altezza sfondo del testo"
|
3061 |
|
3062 |
# @ fl-builder
|
3063 |
-
#: modules/content-slider/content-slider.php:
|
3064 |
msgid ""
|
3065 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
3066 |
"will fit the overlay to the top and bottom of the slide."
|
@@ -3069,13 +3363,13 @@ msgstr ""
|
|
3069 |
"di testo. 100% adatta l'overlay alla parte superiore e inferiore della slide."
|
3070 |
|
3071 |
# @ fl-builder
|
3072 |
-
#: modules/content-slider/content-slider.php:
|
3073 |
msgctxt "Background height."
|
3074 |
msgid "Auto"
|
3075 |
msgstr "Auto"
|
3076 |
|
3077 |
# @ fl-builder
|
3078 |
-
#: modules/content-slider/content-slider.php:
|
3079 |
msgid ""
|
3080 |
"The link applies to the entire slide. If choosing a call to action type "
|
3081 |
"below, this link will also be used for the text or button."
|
@@ -3085,23 +3379,23 @@ msgstr ""
|
|
3085 |
"o pulsante."
|
3086 |
|
3087 |
# @ fl-builder
|
3088 |
-
#: modules/content-slider/content-slider.php:
|
3089 |
msgid "Border Radius"
|
3090 |
msgstr "Raggio del bordo"
|
3091 |
|
3092 |
# @ fl-builder
|
3093 |
-
#: modules/content-slider/content-slider.php:
|
3094 |
msgctxt "Module settings form tab. Display on mobile devices."
|
3095 |
msgid "Mobile"
|
3096 |
msgstr "Mobile"
|
3097 |
|
3098 |
# @ fl-builder
|
3099 |
-
#: modules/content-slider/content-slider.php:
|
3100 |
msgid "Mobile Photo"
|
3101 |
msgstr "Foto mobile"
|
3102 |
|
3103 |
# @ fl-builder
|
3104 |
-
#: modules/content-slider/content-slider.php:
|
3105 |
msgid ""
|
3106 |
"You can choose a different photo that the slide will change to on mobile "
|
3107 |
"devices or no photo if desired."
|
@@ -3110,22 +3404,22 @@ msgstr ""
|
|
3110 |
"dispositivi mobili, o nessuna foto se lo si desidera."
|
3111 |
|
3112 |
# @ fl-builder
|
3113 |
-
#: modules/content-slider/content-slider.php:
|
3114 |
msgid "Use Main Photo"
|
3115 |
msgstr "Utilizza foto principale"
|
3116 |
|
3117 |
# @ fl-builder
|
3118 |
-
#: modules/content-slider/content-slider.php:
|
3119 |
msgid "Choose Another Photo"
|
3120 |
msgstr "Scegli un'altra foto"
|
3121 |
|
3122 |
# @ fl-builder
|
3123 |
-
#: modules/content-slider/content-slider.php:
|
3124 |
msgid "No Photo"
|
3125 |
msgstr "Nessuna foto"
|
3126 |
|
3127 |
# @ fl-builder
|
3128 |
-
#: modules/content-slider/content-slider.php:
|
3129 |
msgid "Mobile Text Colors"
|
3130 |
msgstr "Colori testo mobile"
|
3131 |
|
@@ -3135,17 +3429,17 @@ msgid "Display a heading, subheading and a button."
|
|
3135 |
msgstr "Mostra un titolo, sottotitolo e un pulsante."
|
3136 |
|
3137 |
# @ fl-builder
|
3138 |
-
#: modules/cta/cta.php:
|
3139 |
msgid "Ready to find out more?"
|
3140 |
msgstr "Pronti a saperne di più?"
|
3141 |
|
3142 |
# @ fl-builder
|
3143 |
-
#: modules/cta/cta.php:
|
3144 |
msgid "Drop us a line today for a free quote!"
|
3145 |
msgstr "Mandaci oggi due righe per un preventivo gratuito!"
|
3146 |
|
3147 |
# @ fl-builder
|
3148 |
-
#: modules/cta/cta.php:
|
3149 |
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
3150 |
#: modules/testimonials/testimonials.php:37
|
3151 |
#: modules/woocommerce/woocommerce.php:57
|
@@ -3153,27 +3447,22 @@ msgid "Layout"
|
|
3153 |
msgstr "Layout"
|
3154 |
|
3155 |
# @ fl-builder
|
3156 |
-
#: modules/cta/cta.php:
|
3157 |
msgid "Inline"
|
3158 |
msgstr "In linea"
|
3159 |
|
3160 |
# @ fl-builder
|
3161 |
-
#: modules/cta/cta.php:
|
3162 |
msgid "Stacked"
|
3163 |
msgstr "Impilati"
|
3164 |
|
3165 |
# @ fl-builder
|
3166 |
-
#: modules/cta/cta.php:
|
3167 |
msgid "Spacing"
|
3168 |
msgstr "Spaziatura"
|
3169 |
|
3170 |
# @ fl-builder
|
3171 |
-
#: modules/cta/cta.php:
|
3172 |
-
msgid "Background Opacity"
|
3173 |
-
msgstr "Opacità sfondo"
|
3174 |
-
|
3175 |
-
# @ fl-builder
|
3176 |
-
#: modules/cta/cta.php:234
|
3177 |
msgid "Button Link"
|
3178 |
msgstr "Collegamento pulsante"
|
3179 |
|
@@ -3283,13 +3572,6 @@ msgstr "Collegamento foto"
|
|
3283 |
msgid "Display a title/page heading."
|
3284 |
msgstr "Mostra titolo di pagina."
|
3285 |
|
3286 |
-
# @ fl-builder
|
3287 |
-
#: modules/heading/heading.php:16 modules/photo/photo.php:27
|
3288 |
-
#: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
|
3289 |
-
#: modules/video/video.php:21
|
3290 |
-
msgid "Basic Modules"
|
3291 |
-
msgstr "Moduli base"
|
3292 |
-
|
3293 |
# @ fl-builder
|
3294 |
#: modules/heading/heading.php:101
|
3295 |
msgid "HTML Tag"
|
@@ -3610,11 +3892,6 @@ msgstr ""
|
|
3610 |
"Usatelo per normalizzare l'altezza dei vostri riquadri quando hanno un "
|
3611 |
"diverso numero di funzionalità."
|
3612 |
|
3613 |
-
# @ fl-builder
|
3614 |
-
#: modules/pricing-table/pricing-table.php:67
|
3615 |
-
msgid "Border Size"
|
3616 |
-
msgstr "Dimensione bordo"
|
3617 |
-
|
3618 |
# @ fl-builder
|
3619 |
#: modules/pricing-table/pricing-table.php:70
|
3620 |
msgctxt "Border size."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Beaver Builder Plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-03-03 10:40:00+0000\n"
|
6 |
+
"PO-Revision-Date: 2015-03-03 09:25:00+0000\n"
|
7 |
"Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
50 |
msgstr "Moduli"
|
51 |
|
52 |
# @ fl-builder
|
53 |
+
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
|
54 |
msgid "Templates"
|
55 |
msgstr "Modelli"
|
56 |
|
79 |
|
80 |
# @ fl-builder
|
81 |
#: classes/class-fl-builder-admin-settings.php:150
|
82 |
+
msgid "Help Button"
|
83 |
+
msgstr "Pulsante Aiuto"
|
84 |
+
|
85 |
+
# @ fl-builder
|
86 |
+
#: classes/class-fl-builder-admin-settings.php:154
|
87 |
#: includes/admin-settings-uninstall.php:3
|
88 |
#: includes/admin-settings-uninstall.php:15
|
89 |
msgid "Uninstall"
|
90 |
msgstr "Disinstalla"
|
91 |
|
92 |
+
#: classes/class-fl-builder-admin-settings.php:376
|
93 |
msgid "Error! You must have at least one icon set enabled."
|
94 |
msgstr "Errore! Devi avere almeno un set di icone abilitato."
|
95 |
|
96 |
+
#: classes/class-fl-builder-admin-settings.php:418
|
97 |
msgid "Error! Could not unzip file."
|
98 |
msgstr "Errore! Non è stato possibile decomprimere il file."
|
99 |
|
100 |
+
#: classes/class-fl-builder-admin-settings.php:452
|
101 |
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
102 |
msgstr "Errore! Per favore carica un set di icone da Iconmoon o Fontello."
|
103 |
|
104 |
+
#: classes/class-fl-builder-admin-settings.php:566
|
105 |
+
msgid "Error! Please enter an iframe for the video embed code."
|
106 |
+
msgstr "Errore! Per favore inserisci un iframe per il codice video embed."
|
107 |
+
|
108 |
+
#: classes/class-fl-builder-admin-settings.php:584
|
109 |
+
msgid "Error! You must have at least one feature of the help button enabled."
|
110 |
+
msgstr "Errore! Devi avere almeno una funzione del bottone aiuto abilitata."
|
111 |
+
|
112 |
# @ fl-builder
|
113 |
#: classes/class-fl-builder-admin.php:40
|
114 |
#, php-format
|
146 |
|
147 |
# @ fl-builder
|
148 |
#: classes/class-fl-builder-admin.php:202
|
149 |
+
#: classes/class-fl-builder-model.php:2594
|
150 |
msgid "Page Builder"
|
151 |
msgstr "Page Builder"
|
152 |
|
153 |
+
#: classes/class-fl-builder-model.php:1385
|
154 |
#, php-format
|
155 |
msgctxt "%s stands for the module filename"
|
156 |
msgid ""
|
162 |
"Builder."
|
163 |
|
164 |
# @ fl-builder
|
165 |
+
#: classes/class-fl-builder-model.php:1443
|
166 |
+
#: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
|
167 |
+
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
168 |
+
#: modules/separator/separator.php:16 modules/video/video.php:21
|
169 |
+
msgid "Basic Modules"
|
170 |
+
msgstr "Moduli base"
|
171 |
+
|
172 |
+
# @ fl-builder
|
173 |
+
#: classes/class-fl-builder-model.php:1444
|
174 |
+
#: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
|
175 |
+
#: modules/button/button.php:16 modules/callout/callout.php:16
|
176 |
+
#: modules/contact-form/contact-form.php:16
|
177 |
+
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
178 |
+
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
179 |
+
#: modules/icon/icon.php:16 modules/icon-group/icon-group.php:16
|
180 |
+
#: modules/map/map.php:16 modules/post-grid/post-grid.php:16
|
181 |
+
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
182 |
+
#: modules/slideshow/slideshow.php:16
|
183 |
+
#: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
|
184 |
+
#: modules/testimonials/testimonials.php:16
|
185 |
+
#: modules/woocommerce/woocommerce.php:18
|
186 |
+
msgid "Advanced Modules"
|
187 |
+
msgstr "Moduli avanzati"
|
188 |
+
|
189 |
+
# @ fl-builder
|
190 |
+
#: classes/class-fl-builder-model.php:1445
|
191 |
+
#: classes/class-fl-builder-model.php:1499
|
192 |
+
msgid "Other Modules"
|
193 |
+
msgstr "Altri moduli"
|
194 |
+
|
195 |
+
# @ fl-builder
|
196 |
+
#: classes/class-fl-builder-model.php:1446
|
197 |
+
#: classes/class-fl-builder-model.php:1500 includes/ui.php:88
|
198 |
+
#: modules/widget/widget.php:16
|
199 |
+
msgid "WordPress Widgets"
|
200 |
+
msgstr "Widget di WordPress"
|
201 |
+
|
202 |
+
# @ fl-builder
|
203 |
+
#: classes/class-fl-builder-model.php:2009
|
204 |
#, php-format
|
205 |
msgctxt "%s stands for post/page title."
|
206 |
msgid "Copy of %s"
|
231 |
msgstr "Miniatura"
|
232 |
|
233 |
# @ fl-builder
|
234 |
+
#: classes/class-fl-builder.php:709
|
235 |
#, php-format
|
236 |
msgctxt "Field name to add."
|
237 |
msgid "Add %s"
|
238 |
msgstr "Aggiungi %s"
|
239 |
|
240 |
# @ fl-builder
|
241 |
+
#: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
|
242 |
msgctxt "Custom post type label."
|
243 |
msgid "Layout Templates"
|
244 |
msgstr "Modelli di layout"
|
245 |
|
246 |
# @ fl-builder
|
247 |
+
#: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
|
248 |
msgctxt "Custom post type label."
|
249 |
msgid "Layout Template"
|
250 |
msgstr "Modello di layout"
|
251 |
|
252 |
# @ fl-builder
|
253 |
+
#: classes/class-fl-builder.php:776
|
254 |
msgctxt "Custom post type label."
|
255 |
msgid "Add New"
|
256 |
msgstr "Aggiungi nuovo"
|
257 |
|
258 |
# @ fl-builder
|
259 |
+
#: classes/class-fl-builder.php:777
|
260 |
msgctxt "Custom post type label."
|
261 |
msgid "Add New Layout Template"
|
262 |
msgstr "Aggiungi nuovo modello di Layout"
|
263 |
|
264 |
# @ fl-builder
|
265 |
+
#: classes/class-fl-builder.php:778
|
266 |
msgctxt "Custom post type label."
|
267 |
msgid "New Layout Template"
|
268 |
msgstr "Nuovo modello di Layout"
|
269 |
|
270 |
# @ fl-builder
|
271 |
+
#: classes/class-fl-builder.php:779
|
272 |
msgctxt "Custom post type label."
|
273 |
msgid "Edit Layout Template"
|
274 |
msgstr "Modifica modello di Layout"
|
275 |
|
276 |
# @ fl-builder
|
277 |
+
#: classes/class-fl-builder.php:780
|
278 |
msgctxt "Custom post type label."
|
279 |
msgid "View Layout Template"
|
280 |
msgstr "Visualizza modello di Layout"
|
281 |
|
282 |
# @ fl-builder
|
283 |
+
#: classes/class-fl-builder.php:781
|
284 |
msgctxt "Custom post type label."
|
285 |
msgid "All Layout Templates"
|
286 |
msgstr "Tutti i modelli di Layout"
|
287 |
|
288 |
# @ fl-builder
|
289 |
+
#: classes/class-fl-builder.php:782
|
290 |
msgctxt "Custom post type label."
|
291 |
msgid "Search Layout Templates"
|
292 |
msgstr "Cerca modelli di Layout"
|
293 |
|
294 |
# @ fl-builder
|
295 |
+
#: classes/class-fl-builder.php:783
|
296 |
msgctxt "Custom post type label."
|
297 |
msgid "Parent Layout Templates:"
|
298 |
msgstr "Modelli di Layout genitore:"
|
299 |
|
300 |
# @ fl-builder
|
301 |
+
#: classes/class-fl-builder.php:784
|
302 |
msgctxt "Custom post type label."
|
303 |
msgid "No layout templates found."
|
304 |
msgstr "Nessun modello di layout trovato."
|
305 |
|
306 |
# @ fl-builder
|
307 |
+
#: classes/class-fl-builder.php:785
|
308 |
msgctxt "Custom post type label."
|
309 |
msgid "No layout templates found in Trash."
|
310 |
msgstr "Nessun modello di layout trovato nel cestino."
|
311 |
|
312 |
# @ fl-builder
|
313 |
+
#: classes/class-fl-builder.php:1150 includes/js-config.php:66
|
314 |
#, php-format
|
315 |
msgctxt "%s stands for module name."
|
316 |
msgid "%s Settings"
|
395 |
msgid "Save Editing Settings"
|
396 |
msgstr "Salva le impostazioni di modifica"
|
397 |
|
398 |
+
# @ fl-builder
|
399 |
+
#: includes/admin-settings-help-button.php:8
|
400 |
+
msgid "Help Button Settings"
|
401 |
+
msgstr "Impostazioni pulsante di aiuto"
|
402 |
+
|
403 |
+
# @ fl-builder
|
404 |
+
#: includes/admin-settings-help-button.php:17
|
405 |
+
msgid "Enable Help Button"
|
406 |
+
msgstr "Abilita pulsante di aiuto"
|
407 |
+
|
408 |
+
#: includes/admin-settings-help-button.php:23
|
409 |
+
msgid "Help Tour"
|
410 |
+
msgstr "Visita guidata"
|
411 |
+
|
412 |
+
#: includes/admin-settings-help-button.php:27
|
413 |
+
msgid "Enable Help Tour"
|
414 |
+
msgstr "Abilita visita guidata"
|
415 |
+
|
416 |
+
# @ fl-builder
|
417 |
+
#: includes/admin-settings-help-button.php:31
|
418 |
+
msgid "Help Video"
|
419 |
+
msgstr "Video di aiuto"
|
420 |
+
|
421 |
+
#: includes/admin-settings-help-button.php:35
|
422 |
+
msgid "Enable Help Video"
|
423 |
+
msgstr "Abilita "
|
424 |
+
|
425 |
+
# @ fl-builder
|
426 |
+
#: includes/admin-settings-help-button.php:39
|
427 |
+
msgid "Help Video Embed Code"
|
428 |
+
msgstr "Codice di embed del video di aiuto"
|
429 |
+
|
430 |
+
#: includes/admin-settings-help-button.php:45
|
431 |
+
msgid "Knowledge Base"
|
432 |
+
msgstr "Documentazione"
|
433 |
+
|
434 |
+
# @ fl-builder
|
435 |
+
#: includes/admin-settings-help-button.php:49
|
436 |
+
msgid "Enable Knowledge Base"
|
437 |
+
msgstr "Abilita documentazione"
|
438 |
+
|
439 |
+
#: includes/admin-settings-help-button.php:53
|
440 |
+
msgid "Knowledge Base URL"
|
441 |
+
msgstr "URL documentazione"
|
442 |
+
|
443 |
+
#: includes/admin-settings-help-button.php:59
|
444 |
+
msgid "Forums"
|
445 |
+
msgstr "Forum"
|
446 |
+
|
447 |
+
# @ fl-builder
|
448 |
+
#: includes/admin-settings-help-button.php:63
|
449 |
+
msgid "Enable Forums"
|
450 |
+
msgstr "Abilita forum"
|
451 |
+
|
452 |
+
# @ fl-builder
|
453 |
+
#: includes/admin-settings-help-button.php:67
|
454 |
+
msgid "Forums URL"
|
455 |
+
msgstr "URL forum"
|
456 |
+
|
457 |
+
# @ fl-builder
|
458 |
+
#: includes/admin-settings-help-button.php:77
|
459 |
+
msgid "Save Help Button Settings"
|
460 |
+
msgstr "Salva impostazioni pulsante di aiuto"
|
461 |
+
|
462 |
# @ fl-builder
|
463 |
#: includes/admin-settings-icons.php:3
|
464 |
msgid "Icon Settings"
|
656 |
msgstr "Ulteriori informazioni"
|
657 |
|
658 |
# @ fl-builder
|
659 |
+
#: includes/column-settings.php:4 includes/js-config.php:23
|
660 |
msgid "Column Settings"
|
661 |
msgstr "Impostazioni colonna"
|
662 |
|
663 |
# @ fl-builder
|
664 |
#: includes/column-settings.php:7 includes/module-settings.php:87
|
665 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
666 |
+
#: modules/button/button.php:108 modules/button/button.php:146
|
667 |
+
#: modules/button/button.php:150 modules/callout/callout.php:241
|
668 |
+
#: modules/callout/callout.php:543
|
669 |
+
#: modules/content-slider/content-slider.php:425
|
670 |
+
#: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
|
671 |
+
#: modules/cta/cta.php:299 modules/heading/heading.php:69
|
672 |
+
#: modules/icon/icon.php:75 modules/icon-group/icon-group.php:44
|
673 |
#: modules/pricing-table/pricing-table.php:43
|
674 |
#: modules/pricing-table/pricing-table.php:155
|
675 |
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
683 |
|
684 |
# @ fl-builder
|
685 |
#: includes/column-settings.php:26 includes/row-settings.php:48
|
686 |
+
#: modules/button/button.php:66 modules/callout/callout.php:225
|
687 |
+
#: modules/callout/callout.php:478 modules/callout/callout.php:494
|
688 |
+
#: modules/content-slider/content-slider.php:382
|
689 |
+
#: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
|
690 |
+
#: modules/cta/cta.php:221
|
691 |
msgid "Text"
|
692 |
msgstr "Testo"
|
693 |
|
695 |
#: includes/column-settings.php:30 includes/column-settings.php:43
|
696 |
#: includes/column-settings.php:100 includes/row-settings.php:52
|
697 |
#: includes/row-settings.php:109 includes/row-settings.php:403
|
698 |
+
#: modules/callout/callout.php:391
|
699 |
+
#: modules/content-slider/content-slider.php:337 modules/icon/icon.php:82
|
700 |
#: modules/icon-group/icon-group.php:51 modules/separator/separator.php:34
|
701 |
msgid "Color"
|
702 |
msgstr "Colore"
|
703 |
|
704 |
# @ fl-builder
|
705 |
#: includes/column-settings.php:39 includes/row-settings.php:105
|
706 |
+
#: modules/button/button.php:115 modules/callout/callout.php:404
|
707 |
+
#: modules/callout/callout.php:508
|
708 |
+
#: modules/content-slider/content-slider.php:363
|
709 |
+
#: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
|
710 |
+
#: modules/cta/cta.php:264 modules/icon/icon.php:95
|
711 |
#: modules/icon-group/icon-group.php:64
|
712 |
msgid "Background Color"
|
713 |
msgstr "Colore di sfondo"
|
726 |
|
727 |
# @ fl-builder
|
728 |
#: includes/column-settings.php:67 includes/row-settings.php:65
|
729 |
+
#: includes/row-settings.php:370 modules/callout/callout.php:474
|
730 |
+
#: modules/content-slider/content-slider.php:331
|
731 |
+
#: modules/content-slider/content-slider.php:378
|
732 |
+
#: modules/content-slider/content-slider.php:596
|
733 |
+
#: modules/content-slider/content-slider.php:729
|
734 |
#: modules/slideshow/slideshow.php:339
|
735 |
msgid "Type"
|
736 |
msgstr "Tipo"
|
800 |
|
801 |
# @ fl-builder
|
802 |
#: includes/column-settings.php:170 includes/module-settings.php:6
|
803 |
+
#: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
|
804 |
msgid "Advanced"
|
805 |
msgstr "Avanzato"
|
806 |
|
828 |
# @ fl-builder
|
829 |
#: includes/column-settings.php:201 includes/column-settings.php:254
|
830 |
#: includes/module-settings.php:37 includes/row-settings.php:504
|
831 |
+
#: includes/row-settings.php:557 modules/button/button.php:219
|
832 |
+
#: modules/callout/callout.php:252
|
833 |
+
#: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
|
834 |
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
835 |
#: modules/icon/icon.php:134 modules/icon-group/icon-group.php:111
|
836 |
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
840 |
# @ fl-builder
|
841 |
#: includes/column-settings.php:213 includes/column-settings.php:266
|
842 |
#: includes/module-settings.php:49 includes/row-settings.php:516
|
843 |
+
#: includes/row-settings.php:569 modules/button/button.php:220
|
844 |
+
#: modules/callout/callout.php:253
|
845 |
+
#: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
|
846 |
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
847 |
#: modules/icon/icon.php:135 modules/icon-group/icon-group.php:112
|
848 |
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
851 |
|
852 |
# @ fl-builder
|
853 |
#: includes/column-settings.php:226 includes/global-settings.php:49
|
854 |
+
#: includes/row-settings.php:529 modules/button/button.php:233
|
855 |
+
#: modules/callout/callout.php:598
|
856 |
+
#: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
|
857 |
msgid "Padding"
|
858 |
msgstr "Padding"
|
859 |
|
924 |
|
925 |
# @ fl-builder
|
926 |
#: includes/column-settings.php:302 includes/column-settings.php:330
|
927 |
+
#: modules/callout/callout.php:283
|
928 |
+
#: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
|
929 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
930 |
#: modules/heading/heading.php:174
|
931 |
msgid "Default"
|
933 |
|
934 |
# @ fl-builder
|
935 |
#: includes/column-settings.php:303 includes/column-settings.php:331
|
936 |
+
#: modules/button/button.php:193 modules/callout/callout.php:284
|
937 |
+
#: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
|
938 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
939 |
#: modules/heading/heading.php:175
|
940 |
#: modules/social-buttons/social-buttons.php:74
|
1015 |
msgstr "Sostituisci"
|
1016 |
|
1017 |
# @ fl-builder
|
1018 |
+
#: includes/field-icon.php:7 includes/js-config.php:58
|
1019 |
msgid "Remove"
|
1020 |
msgstr "Rimuovi"
|
1021 |
|
1036 |
|
1037 |
# @ fl-builder
|
1038 |
#: includes/field-link.php:7 includes/icon-selector.php:28
|
1039 |
+
#: includes/js-config.php:19 includes/settings.php:63
|
1040 |
#: includes/template-selector.php:102 includes/ui.php:11
|
1041 |
msgid "Cancel"
|
1042 |
msgstr "Annulla"
|
1065 |
msgstr "Aggiungi foto"
|
1066 |
|
1067 |
# @ fl-builder
|
1068 |
+
#: includes/field-photo.php:3 includes/js-config.php:63
|
1069 |
msgid "Select Photo"
|
1070 |
msgstr "Seleziona foto"
|
1071 |
|
1075 |
msgstr "Modifica"
|
1076 |
|
1077 |
# @ fl-builder
|
1078 |
+
#: includes/field-video.php:3 includes/js-config.php:65
|
1079 |
msgid "Select Video"
|
1080 |
msgstr "Seleziona video"
|
1081 |
|
1086 |
|
1087 |
# @ fl-builder
|
1088 |
#: includes/global-settings.php:7 includes/user-template-settings.php:7
|
1089 |
+
#: modules/accordion/accordion.php:110 modules/button/button.php:59
|
1090 |
+
#: modules/callout/callout.php:209 modules/contact-form/contact-form.php:57
|
1091 |
+
#: modules/content-slider/content-slider.php:190
|
1092 |
+
#: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
|
1093 |
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
1094 |
#: modules/html/html.php:26 modules/icon/icon.php:27
|
1095 |
#: modules/icon-group/icon-group.php:128 modules/map/map.php:26
|
1123 |
# @ fl-builder
|
1124 |
#: includes/global-settings.php:18 includes/global-settings.php:110
|
1125 |
#: includes/row-settings.php:307 modules/accordion/accordion.php:90
|
1126 |
+
#: modules/callout/callout.php:420
|
1127 |
+
#: modules/content-slider/content-slider.php:209
|
1128 |
+
#: modules/content-slider/content-slider.php:223
|
1129 |
+
#: modules/content-slider/content-slider.php:257
|
1130 |
+
#: modules/content-slider/content-slider.php:266
|
1131 |
+
#: modules/content-slider/content-slider.php:537 modules/icon/icon.php:111
|
1132 |
+
#: modules/icon-group/icon-group.php:80 modules/slideshow/slideshow.php:315
|
1133 |
+
#: modules/slideshow/slideshow.php:325 modules/slideshow/slideshow.php:376
|
1134 |
+
#: modules/slideshow/slideshow.php:417 modules/slideshow/slideshow.php:439
|
1135 |
+
#: modules/slideshow/slideshow.php:488 modules/slideshow/slideshow.php:497
|
1136 |
+
#: modules/slideshow/slideshow.php:506 modules/slideshow/slideshow.php:515
|
1137 |
+
#: modules/slideshow/slideshow.php:524 modules/slideshow/slideshow.php:533
|
1138 |
+
#: modules/slideshow/slideshow.php:542 modules/slideshow/slideshow.php:556
|
1139 |
+
#: modules/slideshow/slideshow.php:571 modules/slideshow/slideshow.php:606
|
1140 |
+
#: modules/slideshow/slideshow.php:618 modules/slideshow/slideshow.php:630
|
1141 |
+
#: modules/slideshow/slideshow.php:642
|
|
|
|
|
1142 |
#: modules/social-buttons/social-buttons.php:111
|
1143 |
#: modules/social-buttons/social-buttons.php:120
|
1144 |
#: modules/social-buttons/social-buttons.php:129
|
1152 |
# @ fl-builder
|
1153 |
#: includes/global-settings.php:19 includes/global-settings.php:111
|
1154 |
#: includes/row-settings.php:308 modules/accordion/accordion.php:89
|
1155 |
+
#: modules/callout/callout.php:421
|
1156 |
+
#: modules/content-slider/content-slider.php:210
|
1157 |
+
#: modules/content-slider/content-slider.php:224
|
1158 |
+
#: modules/content-slider/content-slider.php:258
|
1159 |
+
#: modules/content-slider/content-slider.php:267
|
1160 |
+
#: modules/content-slider/content-slider.php:538 modules/icon/icon.php:112
|
1161 |
+
#: modules/icon-group/icon-group.php:81 modules/slideshow/slideshow.php:316
|
1162 |
+
#: modules/slideshow/slideshow.php:326 modules/slideshow/slideshow.php:377
|
1163 |
+
#: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:440
|
1164 |
+
#: modules/slideshow/slideshow.php:489 modules/slideshow/slideshow.php:498
|
1165 |
+
#: modules/slideshow/slideshow.php:507 modules/slideshow/slideshow.php:516
|
1166 |
+
#: modules/slideshow/slideshow.php:525 modules/slideshow/slideshow.php:534
|
1167 |
+
#: modules/slideshow/slideshow.php:543 modules/slideshow/slideshow.php:557
|
1168 |
+
#: modules/slideshow/slideshow.php:572 modules/slideshow/slideshow.php:607
|
1169 |
+
#: modules/slideshow/slideshow.php:619 modules/slideshow/slideshow.php:631
|
1170 |
+
#: modules/slideshow/slideshow.php:643
|
|
|
|
|
1171 |
#: modules/social-buttons/social-buttons.php:110
|
1172 |
#: modules/social-buttons/social-buttons.php:119
|
1173 |
#: modules/social-buttons/social-buttons.php:128
|
1236 |
# @ fl-builder
|
1237 |
#: includes/global-settings.php:70 includes/global-settings.php:84
|
1238 |
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1239 |
+
#: modules/button/button.php:192 modules/callout/callout.php:585
|
1240 |
msgid "Full Width"
|
1241 |
msgstr "Larghezza piena"
|
1242 |
|
1288 |
msgstr "Tutte le librerie"
|
1289 |
|
1290 |
# @ fl-builder
|
1291 |
+
#: includes/js-config.php:18
|
1292 |
msgid "What would you like to do?"
|
1293 |
msgstr "Che cosa vorresti fare?"
|
1294 |
|
1295 |
# @ fl-builder
|
1296 |
+
#: includes/js-config.php:20
|
1297 |
msgid "Change Template"
|
1298 |
msgstr "Cambiare modello"
|
1299 |
|
1300 |
# @ fl-builder
|
1301 |
+
#: includes/js-config.php:21
|
1302 |
msgid ""
|
1303 |
"Warning! Changing the template will replace your existing layout. Do you "
|
1304 |
"really want to do this?"
|
1307 |
"fare questo?"
|
1308 |
|
1309 |
# @ fl-builder
|
1310 |
+
#: includes/js-config.php:22
|
1311 |
msgid "Column"
|
1312 |
msgstr "Colonna"
|
1313 |
|
1314 |
# @ fl-builder
|
1315 |
+
#: includes/js-config.php:24
|
1316 |
msgid ""
|
1317 |
"Please select either a background layout or content layout before submitting."
|
1318 |
msgstr ""
|
1320 |
"inviare."
|
1321 |
|
1322 |
# @ fl-builder
|
1323 |
+
#: includes/js-config.php:25
|
1324 |
msgid "Do you really want to delete this item?"
|
1325 |
msgstr "Vuoi davvero eliminare questo elemento?"
|
1326 |
|
1327 |
# @ fl-builder
|
1328 |
+
#: includes/js-config.php:26
|
1329 |
msgid ""
|
1330 |
"Do you really want to delete this module? All content data will be "
|
1331 |
"permanently deleted."
|
1334 |
"eliminati definitivamente."
|
1335 |
|
1336 |
# @ fl-builder
|
1337 |
+
#: includes/js-config.php:27
|
1338 |
msgid ""
|
1339 |
"Do you really want to delete this row? All content data will be permanently "
|
1340 |
"deleted."
|
1343 |
"eliminati definitivamente."
|
1344 |
|
1345 |
# @ fl-builder
|
1346 |
+
#: includes/js-config.php:28
|
1347 |
msgid "Do you really want to delete this template?"
|
1348 |
msgstr "Vuoi davvero eliminare questo modello?"
|
1349 |
|
1350 |
# @ fl-builder
|
1351 |
+
#: includes/js-config.php:29
|
1352 |
msgid "Discard Draft"
|
1353 |
msgstr "Scarta bozza"
|
1354 |
|
1355 |
# @ fl-builder
|
1356 |
+
#: includes/js-config.php:30
|
1357 |
msgid ""
|
1358 |
"Do you really want to discard this draft? All of your changes that are not "
|
1359 |
"published will be lost."
|
1362 |
"pubblicate saranno perse."
|
1363 |
|
1364 |
# @ fl-builder
|
1365 |
+
#: includes/js-config.php:31 includes/ui.php:44
|
1366 |
+
msgid "Done"
|
1367 |
+
msgstr "Fatto"
|
1368 |
+
|
1369 |
+
# @ fl-builder
|
1370 |
+
#: includes/js-config.php:32
|
1371 |
msgid "Save Draft"
|
1372 |
msgstr "Salva bozza"
|
1373 |
|
1374 |
# @ fl-builder
|
1375 |
+
#: includes/js-config.php:33
|
1376 |
msgctxt "Duplicate page/post action label."
|
1377 |
msgid "Duplicate"
|
1378 |
msgstr "Duplica"
|
1379 |
|
1380 |
# @ fl-builder
|
1381 |
+
#: includes/js-config.php:34
|
1382 |
msgid "Duplicate This Page"
|
1383 |
msgstr "Duplica questa pagina"
|
1384 |
|
1385 |
# @ fl-builder
|
1386 |
+
#: includes/js-config.php:35
|
1387 |
msgid "Duplicate This Template"
|
1388 |
msgstr "Duplica questo modello"
|
1389 |
|
1390 |
# @ fl-builder
|
1391 |
+
#: includes/js-config.php:36
|
1392 |
msgid "Edit Global Settings"
|
1393 |
msgstr "Modifica impostazioni globali"
|
1394 |
|
1395 |
# @ fl-builder
|
1396 |
+
#: includes/js-config.php:37
|
1397 |
msgid "Drop a row layout or module to get started!"
|
1398 |
msgstr "Trascina un layout di riga o un modulo per iniziare!"
|
1399 |
|
1400 |
+
#: includes/js-config.php:38
|
1401 |
msgid ""
|
1402 |
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1403 |
"not functioning as expected the cause is most likely this error. Please help "
|
1411 |
"legato a un plugin di terze parti."
|
1412 |
|
1413 |
# @ fl-builder
|
1414 |
+
#: includes/js-config.php:39
|
1415 |
msgid "Full Size"
|
1416 |
msgstr "Tutta larghezza"
|
1417 |
|
1418 |
+
#: includes/js-config.php:40
|
1419 |
+
msgid "Get Help"
|
1420 |
+
msgstr "Richiedi assistenza"
|
1421 |
+
|
1422 |
+
#: includes/js-config.php:41
|
1423 |
+
msgid "Getting Started Video"
|
1424 |
+
msgstr "Video per iniziare"
|
1425 |
+
|
1426 |
+
#: includes/js-config.php:42
|
1427 |
msgid "\"{message}\" on line {line} of {file}."
|
1428 |
msgstr "\"{message}\" nella riga {line} di {file}."
|
1429 |
|
1430 |
# @ fl-builder
|
1431 |
+
#: includes/js-config.php:43
|
1432 |
msgid "Insert"
|
1433 |
msgstr "Inserisci"
|
1434 |
|
1435 |
# @ fl-builder
|
1436 |
+
#: includes/js-config.php:44
|
1437 |
msgid "Large"
|
1438 |
msgstr "Grande"
|
1439 |
|
1440 |
# @ fl-builder
|
1441 |
+
#: includes/js-config.php:45
|
1442 |
msgid "Manage Templates"
|
1443 |
msgstr "Gestione modelli"
|
1444 |
|
1445 |
# @ fl-builder
|
1446 |
+
#: includes/js-config.php:46
|
1447 |
msgid "Medium"
|
1448 |
msgstr "Medio"
|
1449 |
|
1450 |
# @ fl-builder
|
1451 |
+
#: includes/js-config.php:47
|
1452 |
msgid "Module"
|
1453 |
msgstr "Modulo"
|
1454 |
|
1455 |
# @ fl-builder
|
1456 |
+
#: includes/js-config.php:48
|
1457 |
msgid "Move"
|
1458 |
msgstr "Sposta"
|
1459 |
|
1460 |
# @ fl-builder
|
1461 |
+
#: includes/js-config.php:49
|
1462 |
msgid "New Column"
|
1463 |
msgstr "Nuova colonna"
|
1464 |
|
1465 |
# @ fl-builder
|
1466 |
+
#: includes/js-config.php:50
|
1467 |
msgid "New Row"
|
1468 |
msgstr "Nuova riga"
|
1469 |
|
1470 |
# @ fl-builder
|
1471 |
+
#: includes/js-config.php:51
|
1472 |
msgid "No results found."
|
1473 |
msgstr "Nessun risultato trovato."
|
1474 |
|
1475 |
+
#: includes/js-config.php:52
|
1476 |
+
msgid "No Thanks"
|
1477 |
+
msgstr "No grazie"
|
1478 |
+
|
1479 |
# @ fl-builder
|
1480 |
+
#: includes/js-config.php:53
|
1481 |
msgid "OK"
|
1482 |
msgstr "OK"
|
1483 |
|
1484 |
# @ fl-builder
|
1485 |
+
#: includes/js-config.php:54 modules/photo/photo.php:454
|
1486 |
msgid "Photo Page"
|
1487 |
msgstr "Pagina di foto"
|
1488 |
|
1489 |
# @ fl-builder
|
1490 |
+
#: includes/js-config.php:55
|
1491 |
msgid "Photo Selected"
|
1492 |
msgstr "Foto selezionata"
|
1493 |
|
1494 |
# @ fl-builder
|
1495 |
+
#: includes/js-config.php:56
|
1496 |
msgid "Photos Selected"
|
1497 |
msgstr "Foto selezionate"
|
1498 |
|
1499 |
# @ fl-builder
|
1500 |
+
#: includes/js-config.php:57
|
1501 |
msgid "Publish Changes"
|
1502 |
msgstr "Pubblica le modifiche"
|
1503 |
|
1504 |
# @ fl-builder
|
1505 |
+
#: includes/js-config.php:59
|
1506 |
msgid "Row"
|
1507 |
msgstr "Riga"
|
1508 |
|
1509 |
# @ fl-builder
|
1510 |
+
#: includes/js-config.php:60 includes/row-settings.php:6
|
1511 |
msgid "Row Settings"
|
1512 |
msgstr "Impostazioni di riga"
|
1513 |
|
1514 |
# @ fl-builder
|
1515 |
+
#: includes/js-config.php:61
|
1516 |
msgid "Save Core Template"
|
1517 |
msgstr "Salva il modello Core"
|
1518 |
|
1519 |
# @ fl-builder
|
1520 |
+
#: includes/js-config.php:62 includes/ui.php:10
|
1521 |
#: includes/user-template-settings.php:4
|
1522 |
msgid "Save Template"
|
1523 |
msgstr "Salva modello"
|
1524 |
|
1525 |
# @ fl-builder
|
1526 |
+
#: includes/js-config.php:64
|
1527 |
msgid "Select Photos"
|
1528 |
msgstr "Seleziona foto"
|
1529 |
|
1530 |
+
#: includes/js-config.php:67
|
1531 |
+
msgid "Take a Tour"
|
1532 |
+
msgstr "Inizia visita guidata"
|
1533 |
+
|
1534 |
# @ fl-builder
|
1535 |
+
#: includes/js-config.php:68
|
1536 |
msgid "Append New Layout"
|
1537 |
msgstr "Aggiungi nuovo Layout"
|
1538 |
|
1539 |
# @ fl-builder
|
1540 |
+
#: includes/js-config.php:69
|
1541 |
msgid "Replace Existing Layout"
|
1542 |
msgstr "Sostituisci Layout esistente"
|
1543 |
|
1544 |
# @ fl-builder
|
1545 |
+
#: includes/js-config.php:70
|
1546 |
msgid "Template Saved!"
|
1547 |
msgstr "Modello salvato!"
|
1548 |
|
1549 |
# @ fl-builder
|
1550 |
+
#: includes/js-config.php:71
|
1551 |
msgid "Thumbnail"
|
1552 |
msgstr "Miniatura"
|
1553 |
|
1554 |
+
#: includes/js-config.php:72
|
1555 |
+
msgid "Next"
|
1556 |
+
msgstr "Avanti"
|
1557 |
+
|
1558 |
+
#: includes/js-config.php:73
|
1559 |
+
msgid "Get Started"
|
1560 |
+
msgstr "Inizia"
|
1561 |
+
|
1562 |
+
# @ fl-builder
|
1563 |
+
#: includes/js-config.php:74
|
1564 |
+
msgid "Choose a Template"
|
1565 |
+
msgstr "Scegli un modello"
|
1566 |
+
|
1567 |
+
#: includes/js-config.php:75
|
1568 |
+
msgid ""
|
1569 |
+
"Get started by choosing a layout template to customize, or build a page from "
|
1570 |
+
"scratch by selecting the blank layout template."
|
1571 |
+
msgstr ""
|
1572 |
+
"Inizia scegliendo un modello di layout da personalizzare, o costruisci una "
|
1573 |
+
"pagina da zero selezionando il modello di layout vuoto."
|
1574 |
+
|
1575 |
# @ fl-builder
|
1576 |
+
#: includes/js-config.php:76
|
1577 |
+
msgid "Add Rows"
|
1578 |
+
msgstr "Aggiungi righe"
|
1579 |
+
|
1580 |
+
#: includes/js-config.php:77
|
1581 |
+
msgid ""
|
1582 |
+
"Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
|
1583 |
+
"and dropping row layouts onto the page."
|
1584 |
+
msgstr ""
|
1585 |
+
"Aggiungi righe multi-colonna, aggiusta gli spazi, aggiungi sfondi e altro "
|
1586 |
+
"trascinando e rilasciando layout di riga nella pagina."
|
1587 |
+
|
1588 |
+
# @ fl-builder
|
1589 |
+
#: includes/js-config.php:78 includes/ui.php:49
|
1590 |
+
msgid "Add Content"
|
1591 |
+
msgstr "Aggiungi contenuto"
|
1592 |
+
|
1593 |
+
#: includes/js-config.php:79
|
1594 |
+
msgid ""
|
1595 |
+
"Add new content by dragging and dropping modules or widgets into your row "
|
1596 |
+
"layouts or to create a new row layout."
|
1597 |
+
msgstr ""
|
1598 |
+
"Aggiungi nuovo contenuto trascinando e rilasciando moduli o widget nei tuoi "
|
1599 |
+
"layout di riga o crea un nuovo layout di riga."
|
1600 |
+
|
1601 |
+
# @ fl-builder
|
1602 |
+
#: includes/js-config.php:80
|
1603 |
+
msgid "Edit Content"
|
1604 |
+
msgstr "Modifica contenuto"
|
1605 |
+
|
1606 |
+
#: includes/js-config.php:81
|
1607 |
+
msgid ""
|
1608 |
+
"Move your mouse over rows, columns or modules to edit and interact with them."
|
1609 |
+
msgstr ""
|
1610 |
+
"Muovi il mouse su righe, colonne o moduli per modificare e interagire con "
|
1611 |
+
"esse."
|
1612 |
+
|
1613 |
+
#: includes/js-config.php:82
|
1614 |
+
msgid ""
|
1615 |
+
"Use the action buttons to perform actions such as moving, editing, "
|
1616 |
+
"duplicating or deleting rows, columns and modules."
|
1617 |
+
msgstr ""
|
1618 |
+
"Usa i bottoni di azione per compiere azioni come muovere, modificare, "
|
1619 |
+
"duplicare, o cancellare righe, colonne e moduli."
|
1620 |
+
|
1621 |
+
# @ fl-builder
|
1622 |
+
#: includes/js-config.php:83
|
1623 |
+
msgid "Add More Content"
|
1624 |
+
msgstr "Aggiungi contenuto"
|
1625 |
+
|
1626 |
+
#: includes/js-config.php:84
|
1627 |
+
msgid ""
|
1628 |
+
"Use the Add Content button to open the content panel and add new row "
|
1629 |
+
"layouts, modules or widgets."
|
1630 |
+
msgstr ""
|
1631 |
+
"Usa il pulsante Aggiungi contenuto per aprire il pannello contenuti e "
|
1632 |
+
"aggiungere nuove righe di layout, moduli o widgets."
|
1633 |
+
|
1634 |
+
# @ fl-builder
|
1635 |
+
#: includes/js-config.php:85
|
1636 |
+
msgid "Change Templates"
|
1637 |
+
msgstr "Cambia modello"
|
1638 |
+
|
1639 |
+
#: includes/js-config.php:86
|
1640 |
+
msgid ""
|
1641 |
+
"Use the Templates button to pick a new template or append one to your "
|
1642 |
+
"layout. Appending will insert a new template at the end of your existing "
|
1643 |
+
"page content."
|
1644 |
+
msgstr ""
|
1645 |
+
"Usa il pulsante Modelli per scegliere un nuovo modello o appenderne uno al "
|
1646 |
+
"tuo layout. Appendi inserirà il nuovo modello alla fine del contenuto di "
|
1647 |
+
"pagina esistente."
|
1648 |
+
|
1649 |
+
#: includes/js-config.php:87
|
1650 |
+
msgid "Helpful Tools"
|
1651 |
+
msgstr "Strumenti utili"
|
1652 |
+
|
1653 |
+
#: includes/js-config.php:88
|
1654 |
+
msgid ""
|
1655 |
+
"The Tools button lets you duplicate a page, save a template or edit the "
|
1656 |
+
"global settings."
|
1657 |
+
msgstr ""
|
1658 |
+
"Il pulsante Strumenti ti permette di duplicare una pagina, salvare un "
|
1659 |
+
"modello o modificare le impostazioni globali."
|
1660 |
+
|
1661 |
+
# @ fl-builder
|
1662 |
+
#: includes/js-config.php:89
|
1663 |
+
msgid "Publish Your Changes"
|
1664 |
+
msgstr "Pubblica le modifiche"
|
1665 |
+
|
1666 |
+
#: includes/js-config.php:90
|
1667 |
+
msgid ""
|
1668 |
+
"Once you're finished, click the Done button to publish your changes, save a "
|
1669 |
+
"draft or revert back to the last published state."
|
1670 |
+
msgstr ""
|
1671 |
+
"Quando hai finito, clicca sul pulsante Fatto per pubblicare le tue "
|
1672 |
+
"modifiche, salvare una bozza o ritornare all'ultima versione pubblicata."
|
1673 |
+
|
1674 |
+
#: includes/js-config.php:91
|
1675 |
+
msgid "Let's Get Building!"
|
1676 |
+
msgstr "Andiamo a costruire!"
|
1677 |
+
|
1678 |
+
#: includes/js-config.php:92
|
1679 |
+
msgid ""
|
1680 |
+
"Now that you know the basics, you're ready to start building! If at any time "
|
1681 |
+
"you need help, click the help icon in the upper right corner to access the "
|
1682 |
+
"help menu. Happy building!"
|
1683 |
+
msgstr ""
|
1684 |
+
"Ora che conosci le basi, sei pronto per iniziare a costruire! Se in "
|
1685 |
+
"qualsiasi momento hai bisogno di aiuto, clicca l'icona aiuto nell'angolo in "
|
1686 |
+
"alto a destra per accedere al menu di aiuto. Buona costruzione!"
|
1687 |
+
|
1688 |
+
# @ fl-builder
|
1689 |
+
#: includes/js-config.php:93
|
1690 |
msgid ""
|
1691 |
"The settings you are currently editing will not be saved if you navigate "
|
1692 |
"away from this page."
|
1694 |
"Le impostazioni che stai modificando attualmente non verranno salvate se "
|
1695 |
"navighi via da questa pagina."
|
1696 |
|
1697 |
+
#: includes/js-config.php:94
|
1698 |
+
msgid "View the Knowledge Base"
|
1699 |
+
msgstr "Leggi la documentazione"
|
1700 |
+
|
1701 |
+
#: includes/js-config.php:95
|
1702 |
+
msgid "Visit the Forums"
|
1703 |
+
msgstr "Visita i forum"
|
1704 |
+
|
1705 |
+
# @ fl-builder
|
1706 |
+
#: includes/js-config.php:96
|
1707 |
+
msgid "Watch the Video"
|
1708 |
+
msgstr "Visualizza il video"
|
1709 |
+
|
1710 |
+
#: includes/js-config.php:97
|
1711 |
+
msgid ""
|
1712 |
+
"Welcome! It looks like this might be your first time using the builder. "
|
1713 |
+
"Would you like to take a tour?"
|
1714 |
+
msgstr ""
|
1715 |
+
"Benvenuto! Sembra che questa potrebbe essere la prima volta che utilizzi il "
|
1716 |
+
"builder. Vuoi fare un giro?"
|
1717 |
+
|
1718 |
+
#: includes/js-config.php:98
|
1719 |
+
msgid "Yes Please!"
|
1720 |
+
msgstr "Si grazie!"
|
1721 |
+
|
1722 |
# @ fl-builder
|
1723 |
#: includes/loop-settings.php:19
|
1724 |
msgid "Post Type"
|
1867 |
|
1868 |
# @ fl-builder
|
1869 |
#: includes/module-settings.php:102
|
1870 |
+
#: modules/content-slider/content-slider.php:229
|
1871 |
#: modules/testimonials/testimonials.php:91
|
1872 |
msgid "Delay"
|
1873 |
msgstr "Ritardo"
|
1874 |
|
1875 |
# @ fl-builder
|
1876 |
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1877 |
+
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
|
1878 |
+
#: modules/content-slider/content-slider.php:250
|
1879 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1880 |
#: modules/slideshow/slideshow.php:581
|
1881 |
#: modules/testimonials/testimonials.php:95
|
1914 |
"Separa classi multiple con spazio."
|
1915 |
|
1916 |
# @ fl-builder
|
1917 |
+
#: includes/row-settings.php:16 modules/button/button.php:188
|
1918 |
+
#: modules/content-slider/content-slider.php:483
|
1919 |
msgid "Width"
|
1920 |
msgstr "Larghezza"
|
1921 |
|
1950 |
msgstr "Sfondo"
|
1951 |
|
1952 |
# @ fl-builder
|
1953 |
+
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
|
1954 |
msgctxt "Background type."
|
1955 |
msgid "None"
|
1956 |
msgstr "Nessuno"
|
1986 |
msgstr "Parallasse"
|
1987 |
|
1988 |
# @ fl-builder
|
1989 |
+
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
|
1990 |
msgid "Background Photo"
|
1991 |
msgstr "Foto di sfondo"
|
1992 |
|
1993 |
# @ fl-builder
|
1994 |
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1995 |
+
#: modules/callout/callout.php:316 modules/callout/callout.php:332
|
1996 |
+
#: modules/callout/callout.php:336
|
1997 |
+
#: modules/content-slider/content-slider.php:335
|
1998 |
+
#: modules/content-slider/content-slider.php:404
|
1999 |
+
#: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
|
2000 |
#: modules/photo/photo.php:392
|
2001 |
msgid "Photo"
|
2002 |
msgstr "Foto"
|
2045 |
"specificare di ripetere l'immagine solo orizzontalmente o verticalmente."
|
2046 |
|
2047 |
# @ fl-builder
|
2048 |
+
#: includes/row-settings.php:155 modules/callout/callout.php:353
|
2049 |
+
#: modules/callout/callout.php:373
|
2050 |
+
#: modules/content-slider/content-slider.php:472
|
2051 |
#: modules/post-grid/post-grid.php:127
|
2052 |
msgid "Position"
|
2053 |
msgstr "Posizione"
|
2088 |
msgstr "Centro Alto"
|
2089 |
|
2090 |
# @ fl-builder
|
2091 |
+
#: includes/row-settings.php:165 modules/button/button.php:218
|
2092 |
+
#: modules/callout/callout.php:251
|
2093 |
+
#: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
|
2094 |
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
2095 |
#: modules/icon/icon.php:133 modules/icon-group/icon-group.php:110
|
2096 |
#: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
|
2168 |
msgstr "Video di sfondo"
|
2169 |
|
2170 |
# @ fl-builder
|
2171 |
+
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
|
2172 |
#: modules/video/video.php:19 modules/video/video.php:100
|
2173 |
msgid "Video"
|
2174 |
msgstr "Video"
|
2241 |
msgstr "Velocità"
|
2242 |
|
2243 |
# @ fl-builder
|
2244 |
+
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
|
2245 |
#: modules/slideshow/slideshow.php:389
|
2246 |
#: modules/testimonials/testimonials.php:99
|
2247 |
msgid "Transition"
|
2254 |
msgstr "Nessuna"
|
2255 |
|
2256 |
# @ fl-builder
|
2257 |
+
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
|
2258 |
#: modules/slideshow/slideshow.php:393
|
2259 |
#: modules/testimonials/testimonials.php:103
|
2260 |
msgid "Fade"
|
2306 |
msgstr "Quadrati ingrandimento"
|
2307 |
|
2308 |
# @ fl-builder
|
2309 |
+
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
|
2310 |
#: modules/slideshow/slideshow.php:407
|
2311 |
#: modules/testimonials/testimonials.php:108
|
2312 |
msgid "Transition Speed"
|
2436 |
msgstr "Dimostrazione del Page Builder"
|
2437 |
|
2438 |
# @ fl-builder
|
2439 |
+
#: includes/ui.php:40
|
2440 |
msgid "Buy Now!"
|
2441 |
msgstr "Acquista ora!"
|
2442 |
|
2443 |
# @ fl-builder
|
2444 |
+
#: includes/ui.php:42
|
2445 |
msgid "Upgrade!"
|
2446 |
msgstr "Aggiorna!"
|
2447 |
|
2448 |
# @ fl-builder
|
2449 |
+
#: includes/ui.php:45
|
|
|
|
|
|
|
|
|
|
|
2450 |
msgid "Tools"
|
2451 |
msgstr "Strumenti"
|
2452 |
|
2453 |
# @ fl-builder
|
2454 |
+
#: includes/ui.php:67
|
|
|
|
|
|
|
|
|
|
|
2455 |
msgid "Row Layouts"
|
2456 |
msgstr "Layout di riga"
|
2457 |
|
2458 |
# @ fl-builder
|
2459 |
+
#: includes/ui.php:71
|
2460 |
msgid "1 Column"
|
2461 |
msgstr "1 colonna"
|
2462 |
|
2463 |
# @ fl-builder
|
2464 |
+
#: includes/ui.php:72
|
2465 |
msgid "2 Columns"
|
2466 |
msgstr "2 colonne"
|
2467 |
|
2468 |
# @ fl-builder
|
2469 |
+
#: includes/ui.php:73
|
2470 |
msgid "3 Columns"
|
2471 |
msgstr "3 colonne"
|
2472 |
|
2473 |
# @ fl-builder
|
2474 |
+
#: includes/ui.php:74
|
2475 |
msgid "4 Columns"
|
2476 |
msgstr "4 colonne"
|
2477 |
|
2478 |
# @ fl-builder
|
2479 |
+
#: includes/ui.php:75
|
2480 |
msgid "5 Columns"
|
2481 |
msgstr "5 colonne"
|
2482 |
|
2483 |
# @ fl-builder
|
2484 |
+
#: includes/ui.php:76
|
2485 |
msgid "6 Columns"
|
2486 |
msgstr "6 colonne"
|
2487 |
|
2488 |
# @ fl-builder
|
2489 |
+
#: includes/ui.php:77
|
2490 |
msgid "Left Sidebar"
|
2491 |
msgstr "Barra laterale sinistra"
|
2492 |
|
2493 |
# @ fl-builder
|
2494 |
+
#: includes/ui.php:78
|
2495 |
msgid "Right Sidebar"
|
2496 |
msgstr "Barra laterale destra"
|
2497 |
|
2498 |
# @ fl-builder
|
2499 |
+
#: includes/ui.php:79
|
2500 |
msgid "Left & Right Sidebar"
|
2501 |
msgstr "Barra laterale sinistra e destra"
|
2502 |
|
|
|
|
|
|
|
|
|
|
|
2503 |
# @ fl-builder
|
2504 |
#: includes/updater/classes/class-fl-updater.php:107
|
2505 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2585 |
msgid "Display a collapsible accordion of items."
|
2586 |
msgstr "Visualizza una lista comprimibile di elementi."
|
2587 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2588 |
# @ fl-builder
|
2589 |
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2590 |
msgid "Items"
|
2660 |
msgstr "Contenuto"
|
2661 |
|
2662 |
# @ fl-builder
|
2663 |
+
#: modules/button/button.php:14 modules/callout/callout.php:479
|
2664 |
+
#: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
|
2665 |
#: modules/pricing-table/pricing-table.php:129
|
2666 |
msgid "Button"
|
2667 |
msgstr "Pulsante"
|
2672 |
msgstr "Un semplice pulsante Call to action."
|
2673 |
|
2674 |
# @ fl-builder
|
2675 |
+
#: modules/button/button.php:67 modules/cta/cta.php:222
|
2676 |
msgid "Click Here"
|
2677 |
msgstr "Clicca qui"
|
2678 |
|
2679 |
# @ fl-builder
|
2680 |
+
#: modules/button/button.php:75 modules/callout/callout.php:317
|
2681 |
+
#: modules/callout/callout.php:365 modules/callout/callout.php:369
|
2682 |
+
#: modules/cta/cta.php:230 modules/icon/icon.php:14 modules/icon/icon.php:34
|
2683 |
#: modules/icon-group/icon-group.php:34 modules/icon-group/icon-group.php:135
|
2684 |
msgid "Icon"
|
2685 |
msgstr "Icona"
|
2686 |
|
2687 |
# @ fl-builder
|
2688 |
+
#: modules/button/button.php:81 modules/button/button.php:85
|
2689 |
+
#: modules/callout/callout.php:445 modules/callout/callout.php:449
|
2690 |
+
#: modules/content-slider/content-slider.php:573
|
2691 |
+
#: modules/content-slider/content-slider.php:577
|
2692 |
+
#: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
|
2693 |
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
2694 |
#: modules/icon/icon.php:43 modules/icon-group/icon-group.php:139
|
2695 |
#: modules/slideshow/slideshow.php:343
|
2697 |
msgstr "Collegamento"
|
2698 |
|
2699 |
# @ fl-builder
|
2700 |
+
#: modules/button/button.php:86
|
2701 |
msgid "http://www.example.com"
|
2702 |
msgstr "http://www.example.com"
|
2703 |
|
2704 |
# @ fl-builder
|
2705 |
+
#: modules/button/button.php:93 modules/callout/callout.php:457
|
2706 |
+
#: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
|
2707 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
2708 |
#: modules/photo/photo.php:478
|
2709 |
msgid "Link Target"
|
2710 |
msgstr "Destinazione del collegamento"
|
2711 |
|
2712 |
# @ fl-builder
|
2713 |
+
#: modules/button/button.php:96 modules/callout/callout.php:460
|
2714 |
+
#: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
|
2715 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
2716 |
#: modules/photo/photo.php:481
|
2717 |
msgid "Same Window"
|
2718 |
msgstr "Stessa finestra"
|
2719 |
|
2720 |
# @ fl-builder
|
2721 |
+
#: modules/button/button.php:97 modules/callout/callout.php:461
|
2722 |
+
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
|
2723 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
2724 |
#: modules/photo/photo.php:482
|
2725 |
msgid "New Window"
|
2726 |
msgstr "Nuova finestra"
|
2727 |
|
2728 |
# @ fl-builder
|
2729 |
+
#: modules/button/button.php:111 modules/cta/cta.php:187
|
2730 |
#: modules/heading/heading.php:72 modules/icon/icon.php:78
|
2731 |
#: modules/icon-group/icon-group.php:47
|
2732 |
msgid "Colors"
|
2733 |
msgstr "Colori"
|
2734 |
|
2735 |
# @ fl-builder
|
2736 |
+
#: modules/button/button.php:121 modules/callout/callout.php:409
|
2737 |
+
#: modules/callout/callout.php:514
|
2738 |
+
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
2739 |
#: modules/icon/icon.php:100 modules/icon-group/icon-group.php:69
|
2740 |
msgid "Background Hover Color"
|
2741 |
msgstr "Colore di sfondo al passaggio del mouse"
|
2742 |
|
2743 |
# @ fl-builder
|
2744 |
+
#: modules/button/button.php:130 modules/callout/callout.php:523
|
2745 |
+
#: modules/content-slider/content-slider.php:528
|
2746 |
+
#: modules/content-slider/content-slider.php:641
|
2747 |
+
#: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
|
2748 |
+
#: modules/cta/cta.php:279 modules/heading/heading.php:77
|
2749 |
msgid "Text Color"
|
2750 |
msgstr "Colore del testo"
|
2751 |
|
2752 |
# @ fl-builder
|
2753 |
+
#: modules/button/button.php:136 modules/callout/callout.php:529
|
2754 |
+
#: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
|
2755 |
msgid "Text Hover Color"
|
2756 |
msgstr "Colore del testo al passaggio del mouse"
|
2757 |
|
2758 |
+
#: modules/button/button.php:153 modules/callout/callout.php:546
|
2759 |
+
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
|
2760 |
+
msgid "Flat"
|
2761 |
+
msgstr "Solido"
|
2762 |
+
|
2763 |
# @ fl-builder
|
2764 |
+
#: modules/button/button.php:154 modules/callout/callout.php:417
|
2765 |
+
#: modules/callout/callout.php:547
|
2766 |
+
#: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
|
2767 |
#: modules/icon/icon.php:108 modules/icon-group/icon-group.php:77
|
2768 |
msgid "Gradient"
|
2769 |
msgstr "Gradiente"
|
2770 |
|
2771 |
+
#: modules/button/button.php:155 modules/callout/callout.php:548
|
2772 |
+
#: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
|
2773 |
+
msgid "Transparent"
|
2774 |
+
msgstr "Trasparente"
|
2775 |
+
|
2776 |
+
# @ fl-builder
|
2777 |
+
#: modules/button/button.php:165 modules/callout/callout.php:558
|
2778 |
+
#: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
|
2779 |
+
#: modules/pricing-table/pricing-table.php:67
|
2780 |
+
msgid "Border Size"
|
2781 |
+
msgstr "Dimensione bordo"
|
2782 |
+
|
2783 |
+
# @ fl-builder
|
2784 |
+
#: modules/button/button.php:174 modules/callout/callout.php:567
|
2785 |
+
#: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
|
2786 |
+
#: modules/cta/cta.php:323
|
2787 |
+
msgid "Background Opacity"
|
2788 |
+
msgstr "Opacità sfondo"
|
2789 |
+
|
2790 |
# @ fl-builder
|
2791 |
+
#: modules/button/button.php:184 modules/callout/callout.php:244
|
2792 |
+
#: modules/cta/cta.php:104 modules/heading/heading.php:82
|
2793 |
#: modules/icon/icon.php:118 modules/icon-group/icon-group.php:87
|
2794 |
msgid "Structure"
|
2795 |
msgstr "Struttura"
|
2796 |
|
2797 |
# @ fl-builder
|
2798 |
+
#: modules/button/button.php:191 modules/callout/callout.php:584
|
2799 |
msgctxt "Width."
|
2800 |
msgid "Auto"
|
2801 |
msgstr "Automatica"
|
2802 |
|
2803 |
# @ fl-builder
|
2804 |
+
#: modules/button/button.php:207
|
2805 |
msgid "Custom Width"
|
2806 |
msgstr "Larghezza personalizzata"
|
2807 |
|
2808 |
# @ fl-builder
|
2809 |
+
#: modules/button/button.php:215 modules/cta/cta.php:122
|
2810 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2811 |
#: modules/icon/icon.php:130 modules/icon-group/icon-group.php:107
|
2812 |
#: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
|
2814 |
msgstr "Allineamento"
|
2815 |
|
2816 |
# @ fl-builder
|
2817 |
+
#: modules/button/button.php:225 modules/callout/callout.php:590
|
2818 |
+
#: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
|
2819 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2820 |
msgid "Font Size"
|
2821 |
msgstr "Dimensione carattere"
|
2822 |
|
2823 |
# @ fl-builder
|
2824 |
+
#: modules/button/button.php:241 modules/callout/callout.php:606
|
2825 |
+
#: modules/cta/cta.php:353
|
2826 |
msgid "Round Corners"
|
2827 |
msgstr "Angoli arrotondati"
|
2828 |
|
2839 |
"facoltativi."
|
2840 |
|
2841 |
# @ fl-builder
|
2842 |
+
#: modules/callout/callout.php:216
|
2843 |
+
#: modules/content-slider/content-slider.php:413
|
2844 |
+
#: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
|
2845 |
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
2846 |
#: modules/testimonials/testimonials.php:56
|
2847 |
#: modules/testimonials/testimonials.php:61
|
2849 |
msgstr "Titolo"
|
2850 |
|
2851 |
# @ fl-builder
|
2852 |
+
#: modules/callout/callout.php:248
|
2853 |
msgid "Overall Alignment"
|
2854 |
msgstr "Allineamento globale"
|
2855 |
|
2856 |
# @ fl-builder
|
2857 |
+
#: modules/callout/callout.php:255
|
2858 |
msgid "The alignment that will apply to all elements within the callout."
|
2859 |
msgstr ""
|
2860 |
"L'allineamento che si applicherà a tutti gli elementi all'interno del "
|
2861 |
"callout."
|
2862 |
|
2863 |
# @ fl-builder
|
2864 |
+
#: modules/callout/callout.php:263 modules/cta/cta.php:147
|
2865 |
msgid "Heading Structure"
|
2866 |
msgstr "Struttura titolo"
|
2867 |
|
2868 |
# @ fl-builder
|
2869 |
+
#: modules/callout/callout.php:267
|
2870 |
+
#: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
|
2871 |
msgid "Heading Tag"
|
2872 |
msgstr "Tag titolo"
|
2873 |
|
2874 |
# @ fl-builder
|
2875 |
+
#: modules/callout/callout.php:280
|
2876 |
+
#: modules/content-slider/content-slider.php:445
|
2877 |
+
#: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
|
2878 |
#: modules/testimonials/testimonials.php:69
|
2879 |
msgid "Heading Size"
|
2880 |
msgstr "Dimensione titolo"
|
2881 |
|
2882 |
# @ fl-builder
|
2883 |
+
#: modules/callout/callout.php:294 modules/cta/cta.php:178
|
2884 |
msgid "Heading Custom Size"
|
2885 |
msgstr "Dimensione personalizzata titolo"
|
2886 |
|
2887 |
# @ fl-builder
|
2888 |
+
#: modules/callout/callout.php:305 modules/post-grid/post-grid.php:113
|
2889 |
msgid "Image"
|
2890 |
msgstr "Immagine"
|
2891 |
|
2892 |
# @ fl-builder
|
2893 |
+
#: modules/callout/callout.php:312
|
2894 |
msgid "Image Type"
|
2895 |
msgstr "Tipo di immagine"
|
2896 |
|
2897 |
# @ fl-builder
|
2898 |
+
#: modules/callout/callout.php:315
|
2899 |
msgctxt "Image type."
|
2900 |
msgid "None"
|
2901 |
msgstr "Nessuna"
|
2902 |
|
2903 |
# @ fl-builder
|
2904 |
+
#: modules/callout/callout.php:340 modules/photo/photo.php:401
|
2905 |
#: modules/slideshow/slideshow.php:312
|
2906 |
msgid "Crop"
|
2907 |
msgstr "Ritaglio"
|
2908 |
|
2909 |
# @ fl-builder
|
2910 |
+
#: modules/callout/callout.php:343
|
2911 |
msgctxt "Crop"
|
2912 |
msgid "None"
|
2913 |
msgstr "Nessuno"
|
2914 |
|
2915 |
# @ fl-builder
|
2916 |
+
#: modules/callout/callout.php:344 modules/photo/photo.php:405
|
2917 |
msgid "Landscape"
|
2918 |
msgstr "Paesaggio"
|
2919 |
|
2920 |
# @ fl-builder
|
2921 |
+
#: modules/callout/callout.php:345 modules/photo/photo.php:406
|
2922 |
msgid "Panorama"
|
2923 |
msgstr "Panorama"
|
2924 |
|
2925 |
# @ fl-builder
|
2926 |
+
#: modules/callout/callout.php:346 modules/photo/photo.php:407
|
2927 |
msgid "Portrait"
|
2928 |
msgstr "Ritratto"
|
2929 |
|
2930 |
# @ fl-builder
|
2931 |
+
#: modules/callout/callout.php:347 modules/photo/photo.php:408
|
2932 |
msgid "Square"
|
2933 |
msgstr "Quadrato"
|
2934 |
|
2935 |
# @ fl-builder
|
2936 |
+
#: modules/callout/callout.php:348 modules/photo/photo.php:409
|
2937 |
msgid "Circle"
|
2938 |
msgstr "Cerchio"
|
2939 |
|
2940 |
# @ fl-builder
|
2941 |
+
#: modules/callout/callout.php:356 modules/callout/callout.php:376
|
2942 |
msgid "Above Heading"
|
2943 |
msgstr "Sopra intestazione"
|
2944 |
|
2945 |
# @ fl-builder
|
2946 |
+
#: modules/callout/callout.php:357 modules/callout/callout.php:377
|
2947 |
msgid "Below Heading"
|
2948 |
msgstr "Sotto intestazione"
|
2949 |
|
2950 |
# @ fl-builder
|
2951 |
+
#: modules/callout/callout.php:358 modules/callout/callout.php:380
|
2952 |
msgid "Left of Text and Heading"
|
2953 |
msgstr "Sinistra del testo e intestazione"
|
2954 |
|
2955 |
# @ fl-builder
|
2956 |
+
#: modules/callout/callout.php:359 modules/callout/callout.php:381
|
2957 |
msgid "Right of Text and Heading"
|
2958 |
msgstr "Destra del testo e intestazione"
|
2959 |
|
2960 |
# @ fl-builder
|
2961 |
+
#: modules/callout/callout.php:378
|
2962 |
msgid "Left of Heading"
|
2963 |
msgstr "Sinistra dell'intestazione"
|
2964 |
|
2965 |
# @ fl-builder
|
2966 |
+
#: modules/callout/callout.php:379
|
2967 |
msgid "Right of Heading"
|
2968 |
msgstr "Destra dell'intestazione"
|
2969 |
|
2970 |
# @ fl-builder
|
2971 |
+
#: modules/callout/callout.php:387
|
2972 |
msgid "Icon Colors"
|
2973 |
msgstr "Colori icona"
|
2974 |
|
2975 |
# @ fl-builder
|
2976 |
+
#: modules/callout/callout.php:396 modules/icon/icon.php:87
|
2977 |
#: modules/icon-group/icon-group.php:56
|
2978 |
msgid "Hover Color"
|
2979 |
msgstr "Colore al passaggio del mouse"
|
2980 |
|
2981 |
# @ fl-builder
|
2982 |
+
#: modules/callout/callout.php:427
|
2983 |
msgid "Icon Structure"
|
2984 |
msgstr "Struttura icona"
|
2985 |
|
2986 |
# @ fl-builder
|
2987 |
+
#: modules/callout/callout.php:431 modules/icon/icon.php:122
|
2988 |
#: modules/icon-group/icon-group.php:91 modules/post-grid/post-grid.php:136
|
2989 |
msgid "Size"
|
2990 |
msgstr "Dimensione"
|
2991 |
|
2992 |
# @ fl-builder
|
2993 |
+
#: modules/callout/callout.php:442
|
2994 |
+
#: modules/content-slider/content-slider.php:570
|
2995 |
msgid "Call To Action"
|
2996 |
msgstr "Call To Action"
|
2997 |
|
2998 |
# @ fl-builder
|
2999 |
+
#: modules/callout/callout.php:450
|
3000 |
msgid ""
|
3001 |
"The link applies to the entire module. If choosing a call to action type "
|
3002 |
"below, this link will also be used for the text or button."
|
3006 |
"testo o pulsante."
|
3007 |
|
3008 |
# @ fl-builder
|
3009 |
+
#: modules/callout/callout.php:470
|
3010 |
+
#: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
|
3011 |
msgid "Call to Action"
|
3012 |
msgstr "Call to Action"
|
3013 |
|
3014 |
# @ fl-builder
|
3015 |
+
#: modules/callout/callout.php:477
|
3016 |
+
#: modules/content-slider/content-slider.php:599
|
3017 |
msgctxt "Call to action."
|
3018 |
msgid "None"
|
3019 |
msgstr "Nessuna"
|
3020 |
|
3021 |
# @ fl-builder
|
3022 |
+
#: modules/callout/callout.php:498
|
3023 |
+
#: modules/content-slider/content-slider.php:620
|
3024 |
msgid "Button Icon"
|
3025 |
msgstr "Icona del pulsante"
|
3026 |
|
3027 |
# @ fl-builder
|
3028 |
+
#: modules/callout/callout.php:504
|
3029 |
+
#: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
|
3030 |
msgid "Button Colors"
|
3031 |
msgstr "Colori pulsante"
|
3032 |
|
3033 |
# @ fl-builder
|
3034 |
+
#: modules/callout/callout.php:539
|
3035 |
+
#: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
|
3036 |
+
msgid "Button Style"
|
3037 |
+
msgstr "Stile pulsante"
|
3038 |
+
|
3039 |
+
# @ fl-builder
|
3040 |
+
#: modules/callout/callout.php:577
|
3041 |
+
#: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
|
3042 |
msgid "Button Structure"
|
3043 |
msgstr "Struttura pulsante"
|
3044 |
|
3045 |
# @ fl-builder
|
3046 |
+
#: modules/callout/callout.php:581
|
3047 |
msgid "Button Width"
|
3048 |
msgstr "Larghezza del pulsante"
|
3049 |
|
3150 |
"Visualizza slide multiple con un titolo e una call to action opzionali."
|
3151 |
|
3152 |
# @ fl-builder
|
3153 |
+
#: modules/content-slider/content-slider.php:197 modules/map/map.php:41
|
3154 |
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
3155 |
msgid "Height"
|
3156 |
msgstr "Altezza"
|
3157 |
|
3158 |
# @ fl-builder
|
3159 |
+
#: modules/content-slider/content-slider.php:202
|
3160 |
msgid ""
|
3161 |
"This setting is the minimum height of the content slider. Content will "
|
3162 |
"expand the height automatically."
|
3165 |
"contenuto espanderà automaticamente l'altezza."
|
3166 |
|
3167 |
# @ fl-builder
|
3168 |
+
#: modules/content-slider/content-slider.php:206
|
3169 |
#: modules/slideshow/slideshow.php:373
|
3170 |
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
3171 |
msgid "Auto Play"
|
3172 |
msgstr "Avvio automatico"
|
3173 |
|
3174 |
# @ fl-builder
|
3175 |
+
#: modules/content-slider/content-slider.php:220
|
3176 |
msgid "Show Play/Pause"
|
3177 |
msgstr "Mostra Play/Pausa"
|
3178 |
|
3179 |
# @ fl-builder
|
3180 |
+
#: modules/content-slider/content-slider.php:240
|
3181 |
#: modules/testimonials/testimonials.php:102
|
3182 |
msgctxt "Transition type."
|
3183 |
msgid "Slide"
|
3184 |
msgstr "Slide"
|
3185 |
|
3186 |
# @ fl-builder
|
3187 |
+
#: modules/content-slider/content-slider.php:254
|
3188 |
#: modules/testimonials/testimonials.php:121
|
3189 |
msgid "Show Arrows"
|
3190 |
msgstr "Mostra frecce"
|
3191 |
|
3192 |
# @ fl-builder
|
3193 |
+
#: modules/content-slider/content-slider.php:263
|
3194 |
#: modules/testimonials/testimonials.php:151
|
3195 |
msgid "Show Dots"
|
3196 |
msgstr "Mostra navigazione"
|
3197 |
|
3198 |
# @ fl-builder
|
3199 |
+
#: modules/content-slider/content-slider.php:277
|
3200 |
msgid "Max Content Width"
|
3201 |
msgstr "Larghezza max contenuto"
|
3202 |
|
3203 |
# @ fl-builder
|
3204 |
+
#: modules/content-slider/content-slider.php:282
|
3205 |
msgid "The max width that the content area will be within your slides."
|
3206 |
msgstr "La larghezza massima dell'area di contenuto nelle tue slides."
|
3207 |
|
3208 |
# @ fl-builder
|
3209 |
+
#: modules/content-slider/content-slider.php:289
|
3210 |
msgid "Slides"
|
3211 |
msgstr "Slides"
|
3212 |
|
3213 |
# @ fl-builder
|
3214 |
+
#: modules/content-slider/content-slider.php:296
|
3215 |
msgid "Slide"
|
3216 |
msgstr "Slide"
|
3217 |
|
3218 |
# @ fl-builder
|
3219 |
+
#: modules/content-slider/content-slider.php:311
|
3220 |
msgid "Slide Settings"
|
3221 |
msgstr "Impostazioni slide"
|
3222 |
|
3223 |
# @ fl-builder
|
3224 |
+
#: modules/content-slider/content-slider.php:321
|
3225 |
msgid "Slide Label"
|
3226 |
msgstr "Etichetta slide"
|
3227 |
|
3228 |
# @ fl-builder
|
3229 |
+
#: modules/content-slider/content-slider.php:322
|
3230 |
msgid ""
|
3231 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
3232 |
"settings."
|
3235 |
"Contenuti, tra le schede delle slide."
|
3236 |
|
3237 |
# @ fl-builder
|
3238 |
+
#: modules/content-slider/content-slider.php:327
|
3239 |
msgid "Background Layout"
|
3240 |
msgstr "Layout sfondo"
|
3241 |
|
3242 |
# @ fl-builder
|
3243 |
+
#: modules/content-slider/content-slider.php:333
|
3244 |
msgid "This setting is for the entire background of your slide."
|
3245 |
msgstr "Questa impostazione è per l'intero sfondo della tua slide."
|
3246 |
|
3247 |
# @ fl-builder
|
3248 |
+
#: modules/content-slider/content-slider.php:368
|
3249 |
msgid "Background Video Code"
|
3250 |
msgstr "Codice sfondo video"
|
3251 |
|
3252 |
# @ fl-builder
|
3253 |
+
#: modules/content-slider/content-slider.php:374
|
3254 |
msgid "Content Layout"
|
3255 |
msgstr "Layout contenuto"
|
3256 |
|
3257 |
# @ fl-builder
|
3258 |
+
#: modules/content-slider/content-slider.php:380
|
3259 |
msgid ""
|
3260 |
"This allows you to add content over or in addition to the background "
|
3261 |
"selection above. The location of the content layout can be selected in the "
|
3266 |
"scheda stile."
|
3267 |
|
3268 |
# @ fl-builder
|
3269 |
+
#: modules/content-slider/content-slider.php:383
|
3270 |
msgid "Text & Photo"
|
3271 |
msgstr "Testo e foto"
|
3272 |
|
3273 |
# @ fl-builder
|
3274 |
+
#: modules/content-slider/content-slider.php:384
|
3275 |
msgid "Text & Video"
|
3276 |
msgstr "Testo e Video"
|
3277 |
|
3278 |
# @ fl-builder
|
3279 |
+
#: modules/content-slider/content-slider.php:385
|
3280 |
msgctxt "Content type."
|
3281 |
msgid "None"
|
3282 |
msgstr "Nessuno"
|
3283 |
|
3284 |
# @ fl-builder
|
3285 |
+
#: modules/content-slider/content-slider.php:408 modules/video/video.php:132
|
3286 |
msgid "Video Embed Code"
|
3287 |
msgstr "Codice di embed del video"
|
3288 |
|
3289 |
# @ fl-builder
|
3290 |
+
#: modules/content-slider/content-slider.php:468
|
3291 |
msgid "Text Position"
|
3292 |
msgstr "Posizione testo"
|
3293 |
|
3294 |
# @ fl-builder
|
3295 |
+
#: modules/content-slider/content-slider.php:474
|
3296 |
msgid ""
|
3297 |
"The position will move the content layout selections left, right or center "
|
3298 |
"over the background of the slide."
|
3301 |
"centrato sullo sfondo della slide."
|
3302 |
|
3303 |
# @ fl-builder
|
3304 |
+
#: modules/content-slider/content-slider.php:491
|
3305 |
msgid "Top Margin"
|
3306 |
msgstr "Margine alto"
|
3307 |
|
3308 |
# @ fl-builder
|
3309 |
+
#: modules/content-slider/content-slider.php:499
|
3310 |
msgid "Bottom Margin"
|
3311 |
msgstr "Margine basso"
|
3312 |
|
3313 |
# @ fl-builder
|
3314 |
+
#: modules/content-slider/content-slider.php:507
|
3315 |
msgid "Left Margin"
|
3316 |
msgstr "Margine sinistro"
|
3317 |
|
3318 |
# @ fl-builder
|
3319 |
+
#: modules/content-slider/content-slider.php:515
|
3320 |
msgid "Right Margin"
|
3321 |
msgstr "Margine destro"
|
3322 |
|
3323 |
# @ fl-builder
|
3324 |
+
#: modules/content-slider/content-slider.php:524
|
3325 |
msgid "Text Colors"
|
3326 |
msgstr "Colori del testo"
|
3327 |
|
3328 |
# @ fl-builder
|
3329 |
+
#: modules/content-slider/content-slider.php:534
|
3330 |
msgid "Text Shadow"
|
3331 |
msgstr "Ombra del testo"
|
3332 |
|
3333 |
# @ fl-builder
|
3334 |
+
#: modules/content-slider/content-slider.php:543
|
3335 |
+
#: modules/content-slider/content-slider.php:760
|
3336 |
msgid "Text Background Color"
|
3337 |
msgstr "Colore di sfondo del testo"
|
3338 |
|
3339 |
# @ fl-builder
|
3340 |
+
#: modules/content-slider/content-slider.php:544
|
3341 |
msgid ""
|
3342 |
"The color applies to the overlay behind text over the background selections."
|
3343 |
msgstr ""
|
3344 |
"Il colore si applica all'overlay dietro il testo sopra lo sfondo selezionato."
|
3345 |
|
3346 |
# @ fl-builder
|
3347 |
+
#: modules/content-slider/content-slider.php:549
|
3348 |
msgid "Text Background Opacity"
|
3349 |
msgstr "Opacità sfondo del testo"
|
3350 |
|
3351 |
# @ fl-builder
|
3352 |
+
#: modules/content-slider/content-slider.php:557
|
3353 |
msgid "Text Background Height"
|
3354 |
msgstr "Altezza sfondo del testo"
|
3355 |
|
3356 |
# @ fl-builder
|
3357 |
+
#: modules/content-slider/content-slider.php:559
|
3358 |
msgid ""
|
3359 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
3360 |
"will fit the overlay to the top and bottom of the slide."
|
3363 |
"di testo. 100% adatta l'overlay alla parte superiore e inferiore della slide."
|
3364 |
|
3365 |
# @ fl-builder
|
3366 |
+
#: modules/content-slider/content-slider.php:561
|
3367 |
msgctxt "Background height."
|
3368 |
msgid "Auto"
|
3369 |
msgstr "Auto"
|
3370 |
|
3371 |
# @ fl-builder
|
3372 |
+
#: modules/content-slider/content-slider.php:578
|
3373 |
msgid ""
|
3374 |
"The link applies to the entire slide. If choosing a call to action type "
|
3375 |
"below, this link will also be used for the text or button."
|
3379 |
"o pulsante."
|
3380 |
|
3381 |
# @ fl-builder
|
3382 |
+
#: modules/content-slider/content-slider.php:711
|
3383 |
msgid "Border Radius"
|
3384 |
msgstr "Raggio del bordo"
|
3385 |
|
3386 |
# @ fl-builder
|
3387 |
+
#: modules/content-slider/content-slider.php:722
|
3388 |
msgctxt "Module settings form tab. Display on mobile devices."
|
3389 |
msgid "Mobile"
|
3390 |
msgstr "Mobile"
|
3391 |
|
3392 |
# @ fl-builder
|
3393 |
+
#: modules/content-slider/content-slider.php:725
|
3394 |
msgid "Mobile Photo"
|
3395 |
msgstr "Foto mobile"
|
3396 |
|
3397 |
# @ fl-builder
|
3398 |
+
#: modules/content-slider/content-slider.php:731
|
3399 |
msgid ""
|
3400 |
"You can choose a different photo that the slide will change to on mobile "
|
3401 |
"devices or no photo if desired."
|
3404 |
"dispositivi mobili, o nessuna foto se lo si desidera."
|
3405 |
|
3406 |
# @ fl-builder
|
3407 |
+
#: modules/content-slider/content-slider.php:733
|
3408 |
msgid "Use Main Photo"
|
3409 |
msgstr "Utilizza foto principale"
|
3410 |
|
3411 |
# @ fl-builder
|
3412 |
+
#: modules/content-slider/content-slider.php:734
|
3413 |
msgid "Choose Another Photo"
|
3414 |
msgstr "Scegli un'altra foto"
|
3415 |
|
3416 |
# @ fl-builder
|
3417 |
+
#: modules/content-slider/content-slider.php:735
|
3418 |
msgid "No Photo"
|
3419 |
msgstr "Nessuna foto"
|
3420 |
|
3421 |
# @ fl-builder
|
3422 |
+
#: modules/content-slider/content-slider.php:750
|
3423 |
msgid "Mobile Text Colors"
|
3424 |
msgstr "Colori testo mobile"
|
3425 |
|
3429 |
msgstr "Mostra un titolo, sottotitolo e un pulsante."
|
3430 |
|
3431 |
# @ fl-builder
|
3432 |
+
#: modules/cta/cta.php:75
|
3433 |
msgid "Ready to find out more?"
|
3434 |
msgstr "Pronti a saperne di più?"
|
3435 |
|
3436 |
# @ fl-builder
|
3437 |
+
#: modules/cta/cta.php:90
|
3438 |
msgid "Drop us a line today for a free quote!"
|
3439 |
msgstr "Mandaci oggi due righe per un preventivo gratuito!"
|
3440 |
|
3441 |
# @ fl-builder
|
3442 |
+
#: modules/cta/cta.php:108 modules/gallery/gallery.php:220
|
3443 |
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
3444 |
#: modules/testimonials/testimonials.php:37
|
3445 |
#: modules/woocommerce/woocommerce.php:57
|
3447 |
msgstr "Layout"
|
3448 |
|
3449 |
# @ fl-builder
|
3450 |
+
#: modules/cta/cta.php:111
|
3451 |
msgid "Inline"
|
3452 |
msgstr "In linea"
|
3453 |
|
3454 |
# @ fl-builder
|
3455 |
+
#: modules/cta/cta.php:112
|
3456 |
msgid "Stacked"
|
3457 |
msgstr "Impilati"
|
3458 |
|
3459 |
# @ fl-builder
|
3460 |
+
#: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
|
3461 |
msgid "Spacing"
|
3462 |
msgstr "Spaziatura"
|
3463 |
|
3464 |
# @ fl-builder
|
3465 |
+
#: modules/cta/cta.php:236
|
|
|
|
|
|
|
|
|
|
|
3466 |
msgid "Button Link"
|
3467 |
msgstr "Collegamento pulsante"
|
3468 |
|
3572 |
msgid "Display a title/page heading."
|
3573 |
msgstr "Mostra titolo di pagina."
|
3574 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3575 |
# @ fl-builder
|
3576 |
#: modules/heading/heading.php:101
|
3577 |
msgid "HTML Tag"
|
3892 |
"Usatelo per normalizzare l'altezza dei vostri riquadri quando hanno un "
|
3893 |
"diverso numero di funzionalità."
|
3894 |
|
|
|
|
|
|
|
|
|
|
|
3895 |
# @ fl-builder
|
3896 |
#: modules/pricing-table/pricing-table.php:70
|
3897 |
msgctxt "Border size."
|
languages/ru_RU.mo
ADDED
Binary file
|
languages/ru_RU.po
ADDED
@@ -0,0 +1,3944 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
+
"POT-Creation-Date: 2015-03-01 14:02-0800\n"
|
5 |
+
"PO-Revision-Date: 2015-03-17 17:28+0300\n"
|
6 |
+
"Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.7\n"
|
12 |
+
"X-Poedit-Basepath: ..\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
15 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
16 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
+
"Language: ru_RU\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
|
22 |
+
#: classes/class-fl-builder-admin-settings.php:93
|
23 |
+
#: includes/global-settings.php:4
|
24 |
+
#, php-format
|
25 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
26 |
+
msgid "%s Settings"
|
27 |
+
msgstr "Настроить %s"
|
28 |
+
|
29 |
+
#: classes/class-fl-builder-admin-settings.php:107
|
30 |
+
msgid "Settings updated!"
|
31 |
+
msgstr "Настройки обновлены!"
|
32 |
+
|
33 |
+
#: classes/class-fl-builder-admin-settings.php:118
|
34 |
+
msgid "License"
|
35 |
+
msgstr "Лицензия"
|
36 |
+
|
37 |
+
#: classes/class-fl-builder-admin-settings.php:122
|
38 |
+
#: includes/admin-settings-upgrade.php:3
|
39 |
+
msgid "Upgrade"
|
40 |
+
msgstr "Апгрейд"
|
41 |
+
|
42 |
+
#: classes/class-fl-builder-admin-settings.php:126
|
43 |
+
#: includes/global-settings.php:90
|
44 |
+
msgid "Modules"
|
45 |
+
msgstr "Модули"
|
46 |
+
|
47 |
+
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
|
48 |
+
msgid "Templates"
|
49 |
+
msgstr "Шаблоны"
|
50 |
+
|
51 |
+
#: classes/class-fl-builder-admin-settings.php:134
|
52 |
+
#: includes/admin-settings-post-types.php:3
|
53 |
+
msgid "Post Types"
|
54 |
+
msgstr "Типы материалов"
|
55 |
+
|
56 |
+
#: classes/class-fl-builder-admin-settings.php:138
|
57 |
+
#: modules/icon-group/icon-group.php:27
|
58 |
+
msgid "Icons"
|
59 |
+
msgstr "Иконки"
|
60 |
+
|
61 |
+
#: classes/class-fl-builder-admin-settings.php:142
|
62 |
+
msgid "Editing"
|
63 |
+
msgstr "Редактирование"
|
64 |
+
|
65 |
+
#: classes/class-fl-builder-admin-settings.php:146
|
66 |
+
#: includes/admin-settings-branding.php:3
|
67 |
+
msgid "Branding"
|
68 |
+
msgstr "Брендирование"
|
69 |
+
|
70 |
+
#: classes/class-fl-builder-admin-settings.php:150
|
71 |
+
msgid "Help Button"
|
72 |
+
msgstr "Кнопка помощи"
|
73 |
+
|
74 |
+
#: classes/class-fl-builder-admin-settings.php:154
|
75 |
+
#: includes/admin-settings-uninstall.php:3
|
76 |
+
#: includes/admin-settings-uninstall.php:15
|
77 |
+
msgid "Uninstall"
|
78 |
+
msgstr "Деинсталляция"
|
79 |
+
|
80 |
+
#: classes/class-fl-builder-admin-settings.php:376
|
81 |
+
msgid "Error! You must have at least one icon set enabled."
|
82 |
+
msgstr "Ошибка! Должен быть включен хотя бы один набор иконок."
|
83 |
+
|
84 |
+
#: classes/class-fl-builder-admin-settings.php:418
|
85 |
+
msgid "Error! Could not unzip file."
|
86 |
+
msgstr "Ошибка! Не удалось распаковать файл."
|
87 |
+
|
88 |
+
#: classes/class-fl-builder-admin-settings.php:452
|
89 |
+
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
90 |
+
msgstr "Ошибка! Пожалуйста, загружайте наборы иконок с Icomoon или Fontello."
|
91 |
+
|
92 |
+
#: classes/class-fl-builder-admin-settings.php:566
|
93 |
+
msgid "Error! Please enter an iframe for the video embed code."
|
94 |
+
msgstr "Ошибка! Пожалуйста, укажите элемент iframe для кода вставки видео."
|
95 |
+
|
96 |
+
#: classes/class-fl-builder-admin-settings.php:584
|
97 |
+
msgid "Error! You must have at least one feature of the help button enabled."
|
98 |
+
msgstr "Ошибка! Хотя бы одно свойство кнопки помощи должно быть включено."
|
99 |
+
|
100 |
+
#: classes/class-fl-builder-admin.php:40
|
101 |
+
#, php-format
|
102 |
+
msgid ""
|
103 |
+
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
104 |
+
"with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version of "
|
105 |
+
"this plugin."
|
106 |
+
msgstr ""
|
107 |
+
"Данная версия плагина <strong>Конструктора страниц</strong> не совместима с "
|
108 |
+
"сетью Вордпресс. <a%s>Пожалуйста, сделайте апгрейд</a>, чтобы пользоваться "
|
109 |
+
"версией этого плагина для сети сайтов."
|
110 |
+
|
111 |
+
#: classes/class-fl-builder-admin.php:50
|
112 |
+
msgid ""
|
113 |
+
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
114 |
+
"greater. Please update WordPress before activating the plugin."
|
115 |
+
msgstr ""
|
116 |
+
"Плагин <strong>Конструктор страниц</strong> требует Вордпресс версии 3.5 или "
|
117 |
+
"выше. Пожалуйста, обновите Вордпресс перед активацией плагина."
|
118 |
+
|
119 |
+
#: classes/class-fl-builder-admin.php:96
|
120 |
+
#, php-format
|
121 |
+
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
122 |
+
msgstr ""
|
123 |
+
"Конструктор страниц активирован! <a%s>Нажмите здесь</a> для включения "
|
124 |
+
"удалённых обновлений."
|
125 |
+
|
126 |
+
#: classes/class-fl-builder-admin.php:191
|
127 |
+
msgctxt "Plugin action link label."
|
128 |
+
msgid "Upgrade"
|
129 |
+
msgstr "Сделать апгрейд"
|
130 |
+
|
131 |
+
#: classes/class-fl-builder-admin.php:202
|
132 |
+
#: classes/class-fl-builder-model.php:2594
|
133 |
+
msgid "Page Builder"
|
134 |
+
msgstr "Конструктор страниц"
|
135 |
+
|
136 |
+
#: classes/class-fl-builder-model.php:1385
|
137 |
+
#, php-format
|
138 |
+
msgctxt "%s stands for the module filename"
|
139 |
+
msgid ""
|
140 |
+
"A module with the filename %s.php already exists! Please namespace your "
|
141 |
+
"module filenames to ensure compatibility with Beaver Builder."
|
142 |
+
msgstr ""
|
143 |
+
"Модуль с именем файла %s.php уже существует! Пожалуйста, измените имена "
|
144 |
+
"файлов вашего модуля для обеспечения совместимости с Beaver Builder."
|
145 |
+
|
146 |
+
#: classes/class-fl-builder-model.php:1443
|
147 |
+
#: classes/class-fl-builder-model.php:1497 modules/heading/heading.php:16
|
148 |
+
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
149 |
+
#: modules/separator/separator.php:16 modules/video/video.php:21
|
150 |
+
msgid "Basic Modules"
|
151 |
+
msgstr "Базовые модули"
|
152 |
+
|
153 |
+
#: classes/class-fl-builder-model.php:1444
|
154 |
+
#: classes/class-fl-builder-model.php:1498 modules/accordion/accordion.php:16
|
155 |
+
#: modules/button/button.php:16 modules/callout/callout.php:16
|
156 |
+
#: modules/contact-form/contact-form.php:16
|
157 |
+
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
158 |
+
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
159 |
+
#: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
|
160 |
+
#: modules/map/map.php:16 modules/post-grid/post-grid.php:16
|
161 |
+
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
162 |
+
#: modules/slideshow/slideshow.php:16
|
163 |
+
#: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
|
164 |
+
#: modules/testimonials/testimonials.php:16
|
165 |
+
#: modules/woocommerce/woocommerce.php:18
|
166 |
+
msgid "Advanced Modules"
|
167 |
+
msgstr "Расширенные модули"
|
168 |
+
|
169 |
+
#: classes/class-fl-builder-model.php:1445
|
170 |
+
#: classes/class-fl-builder-model.php:1499
|
171 |
+
msgid "Other Modules"
|
172 |
+
msgstr "Прочие модули"
|
173 |
+
|
174 |
+
#: classes/class-fl-builder-model.php:1446
|
175 |
+
#: classes/class-fl-builder-model.php:1500 includes/ui.php:88
|
176 |
+
#: modules/widget/widget.php:16
|
177 |
+
msgid "WordPress Widgets"
|
178 |
+
msgstr "Виджеты Вордпресс"
|
179 |
+
|
180 |
+
#: classes/class-fl-builder-model.php:2009
|
181 |
+
#, php-format
|
182 |
+
msgctxt "%s stands for post/page title."
|
183 |
+
msgid "Copy of %s"
|
184 |
+
msgstr "Копия %s"
|
185 |
+
|
186 |
+
#: classes/class-fl-builder-photo.php:75
|
187 |
+
msgctxt "Image size."
|
188 |
+
msgid "Full Size"
|
189 |
+
msgstr "Полный размер"
|
190 |
+
|
191 |
+
#: classes/class-fl-builder-photo.php:76
|
192 |
+
msgctxt "Image size."
|
193 |
+
msgid "Large"
|
194 |
+
msgstr "Большой"
|
195 |
+
|
196 |
+
#: classes/class-fl-builder-photo.php:77
|
197 |
+
msgctxt "Image size."
|
198 |
+
msgid "Medium"
|
199 |
+
msgstr "Средний"
|
200 |
+
|
201 |
+
#: classes/class-fl-builder-photo.php:78
|
202 |
+
msgctxt "Image size."
|
203 |
+
msgid "Thumbnail"
|
204 |
+
msgstr "Миниатюра"
|
205 |
+
|
206 |
+
#: classes/class-fl-builder-templates.php:28
|
207 |
+
msgid "Page Builder Templates"
|
208 |
+
msgstr "Шаблоны конструктора страниц"
|
209 |
+
|
210 |
+
#: classes/class-fl-builder.php:709
|
211 |
+
#, php-format
|
212 |
+
msgctxt "Field name to add."
|
213 |
+
msgid "Add %s"
|
214 |
+
msgstr "Добавить: %s"
|
215 |
+
|
216 |
+
#: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
|
217 |
+
msgctxt "Custom post type label."
|
218 |
+
msgid "Layout Templates"
|
219 |
+
msgstr "Шаблоны страниц"
|
220 |
+
|
221 |
+
#: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
|
222 |
+
msgctxt "Custom post type label."
|
223 |
+
msgid "Layout Template"
|
224 |
+
msgstr "Шаблон страницы"
|
225 |
+
|
226 |
+
#: classes/class-fl-builder.php:776
|
227 |
+
msgctxt "Custom post type label."
|
228 |
+
msgid "Add New"
|
229 |
+
msgstr "Добавить новый"
|
230 |
+
|
231 |
+
#: classes/class-fl-builder.php:777
|
232 |
+
msgctxt "Custom post type label."
|
233 |
+
msgid "Add New Layout Template"
|
234 |
+
msgstr "Добавить новый шаблон страницы"
|
235 |
+
|
236 |
+
#: classes/class-fl-builder.php:778
|
237 |
+
msgctxt "Custom post type label."
|
238 |
+
msgid "New Layout Template"
|
239 |
+
msgstr "Новый шаблон страницы"
|
240 |
+
|
241 |
+
#: classes/class-fl-builder.php:779
|
242 |
+
msgctxt "Custom post type label."
|
243 |
+
msgid "Edit Layout Template"
|
244 |
+
msgstr "Редактировать шаблон страницы"
|
245 |
+
|
246 |
+
#: classes/class-fl-builder.php:780
|
247 |
+
msgctxt "Custom post type label."
|
248 |
+
msgid "View Layout Template"
|
249 |
+
msgstr "Просмотреть шаблон страницы"
|
250 |
+
|
251 |
+
#: classes/class-fl-builder.php:781
|
252 |
+
msgctxt "Custom post type label."
|
253 |
+
msgid "All Layout Templates"
|
254 |
+
msgstr "Все шаблоны страниц"
|
255 |
+
|
256 |
+
#: classes/class-fl-builder.php:782
|
257 |
+
msgctxt "Custom post type label."
|
258 |
+
msgid "Search Layout Templates"
|
259 |
+
msgstr "Поиск по шаблонам страниц"
|
260 |
+
|
261 |
+
#: classes/class-fl-builder.php:783
|
262 |
+
msgctxt "Custom post type label."
|
263 |
+
msgid "Parent Layout Templates:"
|
264 |
+
msgstr "Исходные шаблоны страниц:"
|
265 |
+
|
266 |
+
#: classes/class-fl-builder.php:784
|
267 |
+
msgctxt "Custom post type label."
|
268 |
+
msgid "No layout templates found."
|
269 |
+
msgstr "Шаблоны страниц не найдены."
|
270 |
+
|
271 |
+
#: classes/class-fl-builder.php:785
|
272 |
+
msgctxt "Custom post type label."
|
273 |
+
msgid "No layout templates found in Trash."
|
274 |
+
msgstr "Шаблоны страниц не найдены в Корзине."
|
275 |
+
|
276 |
+
#: classes/class-fl-builder.php:1150 includes/js-config.php:66
|
277 |
+
#, php-format
|
278 |
+
msgctxt "%s stands for module name."
|
279 |
+
msgid "%s Settings"
|
280 |
+
msgstr "%s — настройки"
|
281 |
+
|
282 |
+
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
283 |
+
msgid "Text Editor"
|
284 |
+
msgstr "Текстовый редактор"
|
285 |
+
|
286 |
+
#: includes/admin-posts.php:7
|
287 |
+
#, php-format
|
288 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
289 |
+
msgid "%s is currently active for this page."
|
290 |
+
msgstr "%s активен для этой страницы."
|
291 |
+
|
292 |
+
#: includes/admin-posts.php:8
|
293 |
+
#, php-format
|
294 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
295 |
+
msgid "Launch %s"
|
296 |
+
msgstr "Запустить %s"
|
297 |
+
|
298 |
+
#: includes/admin-posts.php:15
|
299 |
+
#, php-format
|
300 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
301 |
+
msgid ""
|
302 |
+
"Switching to Text Editor mode will disable your %s layout until it is enabled "
|
303 |
+
"again. Any edits made while in Text Editor mode will not be made on your %s "
|
304 |
+
"layout. Do you want to continue?"
|
305 |
+
msgstr ""
|
306 |
+
"Переключение к Текстовому редактору отключит текущий макет, пока %s не будет "
|
307 |
+
"снова включен. Любое редактирование, произведенное в текстовом редакторе, не "
|
308 |
+
"повлияет на текущий макет %s. Вы хотите продолжить?"
|
309 |
+
|
310 |
+
#: includes/admin-settings-branding.php:7
|
311 |
+
msgid "White label the page builder by entering a custom name below."
|
312 |
+
msgstr "Укажите здесь собственное название для конструктора страниц."
|
313 |
+
|
314 |
+
#: includes/admin-settings-branding.php:10
|
315 |
+
msgid ""
|
316 |
+
"Additionally, you may also add a custom icon by entering the URL of an image "
|
317 |
+
"below. Leave the field blank if you do not wish to use an icon."
|
318 |
+
msgstr ""
|
319 |
+
"Вы также можете добавить собственную икону, указав URL выбранного "
|
320 |
+
"изображения. Оставьте это поле пустым, если вы не хотите использовать иконку."
|
321 |
+
|
322 |
+
#: includes/admin-settings-branding.php:14
|
323 |
+
msgid "Save Branding"
|
324 |
+
msgstr "Сохранить брендирование"
|
325 |
+
|
326 |
+
#: includes/admin-settings-editing.php:3
|
327 |
+
msgid "Editing Settings"
|
328 |
+
msgstr "Редактировать Настройки"
|
329 |
+
|
330 |
+
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
331 |
+
#: includes/admin-settings-modules.php:10
|
332 |
+
#: includes/admin-settings-post-types.php:10
|
333 |
+
#: includes/admin-settings-templates.php:10
|
334 |
+
msgid "Override network settings?"
|
335 |
+
msgstr "Заместить общие настройки сети?"
|
336 |
+
|
337 |
+
#: includes/admin-settings-editing.php:16
|
338 |
+
#, php-format
|
339 |
+
msgid ""
|
340 |
+
"Set the <a%s>capability</a> required for users to access advanced builder "
|
341 |
+
"editing such as adding, deleting or moving modules."
|
342 |
+
msgstr ""
|
343 |
+
"Укажите <a%s>права пользователя</a>, необходимые для доступа к расширенным "
|
344 |
+
"функциям конструктора, таким как добавление, удаление и перемещение модулей."
|
345 |
+
|
346 |
+
#: includes/admin-settings-editing.php:22
|
347 |
+
msgid "Save Editing Settings"
|
348 |
+
msgstr "Сохранить Настройки редактирования"
|
349 |
+
|
350 |
+
#: includes/admin-settings-help-button.php:8
|
351 |
+
msgid "Help Button Settings"
|
352 |
+
msgstr "Настройки кнопки помощи"
|
353 |
+
|
354 |
+
#: includes/admin-settings-help-button.php:17
|
355 |
+
msgid "Enable Help Button"
|
356 |
+
msgstr "Включить кнопку "
|
357 |
+
|
358 |
+
#: includes/admin-settings-help-button.php:23
|
359 |
+
msgid "Help Tour"
|
360 |
+
msgstr "Вспомогательный обзор"
|
361 |
+
|
362 |
+
#: includes/admin-settings-help-button.php:27
|
363 |
+
msgid "Enable Help Tour"
|
364 |
+
msgstr "Включить вспомогательный обзор"
|
365 |
+
|
366 |
+
#: includes/admin-settings-help-button.php:31
|
367 |
+
msgid "Help Video"
|
368 |
+
msgstr "Вспомогательное видео"
|
369 |
+
|
370 |
+
#: includes/admin-settings-help-button.php:35
|
371 |
+
msgid "Enable Help Video"
|
372 |
+
msgstr "Включить вспомогательное видео"
|
373 |
+
|
374 |
+
#: includes/admin-settings-help-button.php:39
|
375 |
+
msgid "Help Video Embed Code"
|
376 |
+
msgstr "Код вставки вспомогательного видео"
|
377 |
+
|
378 |
+
#: includes/admin-settings-help-button.php:45
|
379 |
+
msgid "Knowledge Base"
|
380 |
+
msgstr "База знаний"
|
381 |
+
|
382 |
+
#: includes/admin-settings-help-button.php:49
|
383 |
+
msgid "Enable Knowledge Base"
|
384 |
+
msgstr "Включить базу знаний"
|
385 |
+
|
386 |
+
#: includes/admin-settings-help-button.php:53
|
387 |
+
msgid "Knowledge Base URL"
|
388 |
+
msgstr "URL базы знаний"
|
389 |
+
|
390 |
+
#: includes/admin-settings-help-button.php:59
|
391 |
+
msgid "Forums"
|
392 |
+
msgstr "Форум"
|
393 |
+
|
394 |
+
#: includes/admin-settings-help-button.php:63
|
395 |
+
msgid "Enable Forums"
|
396 |
+
msgstr "Включить форум"
|
397 |
+
|
398 |
+
#: includes/admin-settings-help-button.php:67
|
399 |
+
msgid "Forums URL"
|
400 |
+
msgstr "URL форума"
|
401 |
+
|
402 |
+
#: includes/admin-settings-help-button.php:77
|
403 |
+
msgid "Save Help Button Settings"
|
404 |
+
msgstr "Сохранить настройки кнопки помощи"
|
405 |
+
|
406 |
+
#: includes/admin-settings-icons.php:3
|
407 |
+
msgid "Icon Settings"
|
408 |
+
msgstr "Настройки иконок"
|
409 |
+
|
410 |
+
#: includes/admin-settings-icons.php:13
|
411 |
+
msgid "Icons for the main site must be managed in the network admin."
|
412 |
+
msgstr "Иконки главного сайта управляются администратором сети."
|
413 |
+
|
414 |
+
#: includes/admin-settings-icons.php:33
|
415 |
+
#, php-format
|
416 |
+
msgid ""
|
417 |
+
"Enable or disable icon sets using the options below or upload a custom icon "
|
418 |
+
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
419 |
+
msgstr ""
|
420 |
+
"Включите или отключите наборы иконок, используя опции ниже или загрузите "
|
421 |
+
"набор с <a%s>Icomoon</a> или <a%s>Fontello</a>."
|
422 |
+
|
423 |
+
#: includes/admin-settings-icons.php:48
|
424 |
+
msgctxt "Plugin setup page: Delete icon set."
|
425 |
+
msgid "Delete"
|
426 |
+
msgstr "Удалить"
|
427 |
+
|
428 |
+
#: includes/admin-settings-icons.php:59
|
429 |
+
msgid "Upload Icon Set"
|
430 |
+
msgstr "Загрузить набор иконок"
|
431 |
+
|
432 |
+
#: includes/admin-settings-icons.php:60
|
433 |
+
msgid "Save Icon Settings"
|
434 |
+
msgstr "Сохранить настройки иконок"
|
435 |
+
|
436 |
+
#: includes/admin-settings-js-config.php:4
|
437 |
+
msgid "Select File"
|
438 |
+
msgstr "Выбрать файл"
|
439 |
+
|
440 |
+
#: includes/admin-settings-js-config.php:5
|
441 |
+
msgid ""
|
442 |
+
"Please type \"uninstall\" in the box below to confirm that you really want to "
|
443 |
+
"uninstall the page builder and all of its data."
|
444 |
+
msgstr ""
|
445 |
+
"Пожалуйста, напишите \"удалить\" в поле ниже, чтобы подтвердить удаление "
|
446 |
+
"конструктора страниц и всех связанных данных"
|
447 |
+
|
448 |
+
#: includes/admin-settings-modules.php:3
|
449 |
+
msgid "Enabled Modules"
|
450 |
+
msgstr "Включенные модули"
|
451 |
+
|
452 |
+
#: includes/admin-settings-modules.php:16
|
453 |
+
msgid "Check or uncheck modules below to enable or disable them."
|
454 |
+
msgstr "Отмечайте модули для их включения и отключения."
|
455 |
+
|
456 |
+
#: includes/admin-settings-modules.php:25
|
457 |
+
msgctxt "Plugin setup page: Modules."
|
458 |
+
msgid "All"
|
459 |
+
msgstr "Все"
|
460 |
+
|
461 |
+
#: includes/admin-settings-modules.php:43
|
462 |
+
msgid "Save Module Settings"
|
463 |
+
msgstr "Сохранить настройки модулей"
|
464 |
+
|
465 |
+
#: includes/admin-settings-post-types.php:18
|
466 |
+
msgid ""
|
467 |
+
"Enter a comma separated list of the post types you would like the builder to "
|
468 |
+
"work with."
|
469 |
+
msgstr ""
|
470 |
+
"Введите разделённый запятыми список типов постов, где вы хотите использовать "
|
471 |
+
"конструктор."
|
472 |
+
|
473 |
+
#: includes/admin-settings-post-types.php:19
|
474 |
+
#: includes/admin-settings-post-types.php:39
|
475 |
+
msgid "NOTE: Not all custom post types may be supported."
|
476 |
+
msgstr "ВНИМАНИЕ: Могут поддерживаться не все пользовательские типы постов."
|
477 |
+
|
478 |
+
#: includes/admin-settings-post-types.php:34
|
479 |
+
msgid "Example: page, post, product"
|
480 |
+
msgstr "Пример: page, post, product"
|
481 |
+
|
482 |
+
#: includes/admin-settings-post-types.php:38
|
483 |
+
msgid "Select the post types you would like the builder to work with."
|
484 |
+
msgstr "Выберите типы постов, где вы хотите использовать конструктор."
|
485 |
+
|
486 |
+
#: includes/admin-settings-post-types.php:70
|
487 |
+
msgid "Save Post Types"
|
488 |
+
msgstr "Сохранить типы постов"
|
489 |
+
|
490 |
+
#: includes/admin-settings-templates.php:3 includes/template-settings.php:4
|
491 |
+
msgid "Template Settings"
|
492 |
+
msgstr "Настройки шаблонов"
|
493 |
+
|
494 |
+
#: includes/admin-settings-templates.php:16
|
495 |
+
msgid "Enable or disable templates using the options below."
|
496 |
+
msgstr "Включайте и отключайте шаблоны, используя опции ниже."
|
497 |
+
|
498 |
+
#: includes/admin-settings-templates.php:23
|
499 |
+
msgid "Enable All Templates"
|
500 |
+
msgstr "Включить все шаблоны"
|
501 |
+
|
502 |
+
#: includes/admin-settings-templates.php:24
|
503 |
+
msgid "Enable Core Templates Only"
|
504 |
+
msgstr "Включить только ключевые шаблоны"
|
505 |
+
|
506 |
+
#: includes/admin-settings-templates.php:25
|
507 |
+
msgid "Enable User Templates Only"
|
508 |
+
msgstr "Включить только пользовательские шаблоны"
|
509 |
+
|
510 |
+
#: includes/admin-settings-templates.php:26
|
511 |
+
msgid "Disable All Templates"
|
512 |
+
msgstr "Отключить все шаблоны"
|
513 |
+
|
514 |
+
#: includes/admin-settings-templates.php:30
|
515 |
+
msgid "Save Template Settings"
|
516 |
+
msgstr "Сохранить настройки шаблонов"
|
517 |
+
|
518 |
+
#: includes/admin-settings-uninstall.php:5
|
519 |
+
msgid ""
|
520 |
+
"Clicking the button below will uninstall the page builder plugin and delete "
|
521 |
+
"all of the data associated with it. You can uninstall or deactivate the page "
|
522 |
+
"builder from the plugins page instead if you do not wish to delete the data."
|
523 |
+
msgstr ""
|
524 |
+
"Нажатие кнопки ниже деинсталлирует плагин конструктора страниц и удалит все "
|
525 |
+
"данные, с ним связанные. Вы можете деинсталлировать или деактивировать "
|
526 |
+
"конструктор на странице плагинов, если не хотите терять эти данные."
|
527 |
+
|
528 |
+
#: includes/admin-settings-uninstall.php:7
|
529 |
+
#: includes/admin-settings-uninstall.php:10
|
530 |
+
#: includes/updater/includes/form.php:31
|
531 |
+
msgid "NOTE:"
|
532 |
+
msgstr "ВНИМАНИЕ:"
|
533 |
+
|
534 |
+
#: includes/admin-settings-uninstall.php:7
|
535 |
+
msgid ""
|
536 |
+
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
537 |
+
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
538 |
+
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
539 |
+
"its data using those meta values."
|
540 |
+
msgstr ""
|
541 |
+
"Конструктор не удаляет мета элементы поста <code>_fl_builder_data</code>, "
|
542 |
+
"<code>_fl_builder_draft</code> и <code>_fl_builder_enabled</code> на случай, "
|
543 |
+
"если вы захотите переустановить плагин позже. Если вы это сделаете, "
|
544 |
+
"конструктор восстановит данные, используя эти значения мета значения."
|
545 |
+
|
546 |
+
#: includes/admin-settings-uninstall.php:10
|
547 |
+
#: includes/updater/includes/form.php:31
|
548 |
+
msgid "This applies to all sites on the network."
|
549 |
+
msgstr "Это действует для всех сайтов сети."
|
550 |
+
|
551 |
+
#: includes/admin-settings-upgrade.php:5
|
552 |
+
msgid ""
|
553 |
+
"You are currently running the lite version of the Beaver Builder plugin. "
|
554 |
+
"Upgrade today for access to premium features such as advanced modules, "
|
555 |
+
"templates, support and more!"
|
556 |
+
msgstr ""
|
557 |
+
"Вы пользуетесь упрощенной версией плагина Beaver Builder. Сделайте апгрейд "
|
558 |
+
"сегодня для доступа к функциям высшего качества, шаблонам, поддержке и "
|
559 |
+
"многому другому!"
|
560 |
+
|
561 |
+
#: includes/admin-settings-upgrade.php:7
|
562 |
+
msgid "Upgrade Now"
|
563 |
+
msgstr "Сделать апгрейд сейчас"
|
564 |
+
|
565 |
+
#: includes/admin-settings-upgrade.php:9
|
566 |
+
msgid "Learn More"
|
567 |
+
msgstr "Узнать больше"
|
568 |
+
|
569 |
+
#: includes/admin-templates-edit.php:3
|
570 |
+
msgid "Edit Template"
|
571 |
+
msgstr "Редактировать шаблон"
|
572 |
+
|
573 |
+
#: includes/admin-templates-edit.php:8
|
574 |
+
msgctxt "Template edit form field label. Template name."
|
575 |
+
msgid "Name"
|
576 |
+
msgstr "Название"
|
577 |
+
|
578 |
+
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
|
579 |
+
#: modules/post-grid/post-grid.php:113
|
580 |
+
msgid "Image"
|
581 |
+
msgstr "Изображение"
|
582 |
+
|
583 |
+
#: includes/admin-templates-edit.php:16 includes/row-settings.php:155
|
584 |
+
#: includes/template-settings.php:23 modules/callout/callout.php:353
|
585 |
+
#: modules/callout/callout.php:373
|
586 |
+
#: modules/content-slider/content-slider.php:472
|
587 |
+
#: modules/post-grid/post-grid.php:127
|
588 |
+
msgid "Position"
|
589 |
+
msgstr "Позиция"
|
590 |
+
|
591 |
+
#: includes/admin-templates-edit.php:20 includes/template-settings.php:28
|
592 |
+
msgctxt "Template edit form field label. Is template premium one?"
|
593 |
+
msgid "Premium"
|
594 |
+
msgstr "Премиум"
|
595 |
+
|
596 |
+
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
597 |
+
#: includes/global-settings.php:18 includes/global-settings.php:110
|
598 |
+
#: includes/row-settings.php:307 includes/template-settings.php:31
|
599 |
+
#: modules/accordion/accordion.php:90 modules/callout/callout.php:420
|
600 |
+
#: modules/content-slider/content-slider.php:209
|
601 |
+
#: modules/content-slider/content-slider.php:223
|
602 |
+
#: modules/content-slider/content-slider.php:257
|
603 |
+
#: modules/content-slider/content-slider.php:266
|
604 |
+
#: modules/content-slider/content-slider.php:537
|
605 |
+
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
606 |
+
#: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
|
607 |
+
#: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
|
608 |
+
#: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
|
609 |
+
#: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
|
610 |
+
#: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
|
611 |
+
#: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
|
612 |
+
#: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
|
613 |
+
#: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
|
614 |
+
#: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
|
615 |
+
#: modules/social-buttons/social-buttons.php:111
|
616 |
+
#: modules/social-buttons/social-buttons.php:120
|
617 |
+
#: modules/social-buttons/social-buttons.php:129
|
618 |
+
#: modules/testimonials/testimonials.php:85
|
619 |
+
#: modules/testimonials/testimonials.php:124
|
620 |
+
#: modules/testimonials/testimonials.php:154 modules/video/video.php:111
|
621 |
+
#: modules/video/video.php:123
|
622 |
+
msgid "No"
|
623 |
+
msgstr "Нет"
|
624 |
+
|
625 |
+
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
626 |
+
#: includes/global-settings.php:19 includes/global-settings.php:111
|
627 |
+
#: includes/row-settings.php:308 includes/template-settings.php:32
|
628 |
+
#: modules/accordion/accordion.php:89 modules/callout/callout.php:421
|
629 |
+
#: modules/content-slider/content-slider.php:210
|
630 |
+
#: modules/content-slider/content-slider.php:224
|
631 |
+
#: modules/content-slider/content-slider.php:258
|
632 |
+
#: modules/content-slider/content-slider.php:267
|
633 |
+
#: modules/content-slider/content-slider.php:538
|
634 |
+
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
635 |
+
#: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
|
636 |
+
#: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
|
637 |
+
#: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
|
638 |
+
#: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
|
639 |
+
#: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
|
640 |
+
#: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
|
641 |
+
#: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
|
642 |
+
#: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
|
643 |
+
#: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
|
644 |
+
#: modules/social-buttons/social-buttons.php:110
|
645 |
+
#: modules/social-buttons/social-buttons.php:119
|
646 |
+
#: modules/social-buttons/social-buttons.php:128
|
647 |
+
#: modules/testimonials/testimonials.php:86
|
648 |
+
#: modules/testimonials/testimonials.php:125
|
649 |
+
#: modules/testimonials/testimonials.php:155 modules/video/video.php:112
|
650 |
+
#: modules/video/video.php:124
|
651 |
+
msgid "Yes"
|
652 |
+
msgstr "Да"
|
653 |
+
|
654 |
+
#: includes/admin-templates-edit.php:29 includes/template-settings.php:37
|
655 |
+
msgid "Category"
|
656 |
+
msgstr "Категория"
|
657 |
+
|
658 |
+
#: includes/admin-templates-edit.php:32 includes/template-settings.php:40
|
659 |
+
msgctxt "Templates category label."
|
660 |
+
msgid "Landing Pages"
|
661 |
+
msgstr "Главные страницы"
|
662 |
+
|
663 |
+
#: includes/admin-templates-edit.php:33 includes/template-settings.php:41
|
664 |
+
msgctxt "Templates category label."
|
665 |
+
msgid "Company Info"
|
666 |
+
msgstr "Информация о компании"
|
667 |
+
|
668 |
+
#: includes/admin-templates-edit.php:40
|
669 |
+
msgid "Update Template"
|
670 |
+
msgstr "Обновить шаблон"
|
671 |
+
|
672 |
+
#: includes/admin-templates.php:3
|
673 |
+
msgid "Page Builder Template"
|
674 |
+
msgstr "Шаблон Конструктора страниц"
|
675 |
+
|
676 |
+
#: includes/admin-templates.php:10
|
677 |
+
msgctxt "Templates list column label."
|
678 |
+
msgid "Name"
|
679 |
+
msgstr "Название"
|
680 |
+
|
681 |
+
#: includes/admin-templates.php:11
|
682 |
+
msgctxt "Templates list column label."
|
683 |
+
msgid "Category"
|
684 |
+
msgstr "Категория"
|
685 |
+
|
686 |
+
#: includes/admin-templates.php:12
|
687 |
+
msgctxt "Templates list column label. Is template premium one?"
|
688 |
+
msgid "Premium"
|
689 |
+
msgstr "Премиум"
|
690 |
+
|
691 |
+
#: includes/admin-templates.php:25 includes/field-photo.php:12
|
692 |
+
#: includes/template-selector.php:83
|
693 |
+
msgid "Edit"
|
694 |
+
msgstr "Редактировать"
|
695 |
+
|
696 |
+
#: includes/admin-templates.php:27 includes/template-selector.php:84
|
697 |
+
msgid "Delete"
|
698 |
+
msgstr "Удалить"
|
699 |
+
|
700 |
+
#: includes/admin-templates.php:40 includes/js-config.php:28
|
701 |
+
msgid "Do you really want to delete this template?"
|
702 |
+
msgstr "Вы действительно хотите удалить этот плагин?"
|
703 |
+
|
704 |
+
#: includes/column-settings.php:4 includes/js-config.php:23
|
705 |
+
msgid "Column Settings"
|
706 |
+
msgstr "Настройки колонки"
|
707 |
+
|
708 |
+
#: includes/column-settings.php:7 includes/module-settings.php:87
|
709 |
+
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
710 |
+
#: modules/button/button.php:108 modules/button/button.php:146
|
711 |
+
#: modules/button/button.php:150 modules/callout/callout.php:241
|
712 |
+
#: modules/callout/callout.php:543
|
713 |
+
#: modules/content-slider/content-slider.php:425
|
714 |
+
#: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
|
715 |
+
#: modules/cta/cta.php:299 modules/heading/heading.php:69
|
716 |
+
#: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
|
717 |
+
#: modules/pricing-table/pricing-table.php:43
|
718 |
+
#: modules/pricing-table/pricing-table.php:155
|
719 |
+
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
720 |
+
msgid "Style"
|
721 |
+
msgstr "Стиль"
|
722 |
+
|
723 |
+
#: includes/column-settings.php:14
|
724 |
+
msgid "Column Width"
|
725 |
+
msgstr "Ширина колонки"
|
726 |
+
|
727 |
+
#: includes/column-settings.php:26 includes/row-settings.php:48
|
728 |
+
#: modules/button/button.php:66 modules/callout/callout.php:225
|
729 |
+
#: modules/callout/callout.php:478 modules/callout/callout.php:494
|
730 |
+
#: modules/content-slider/content-slider.php:382
|
731 |
+
#: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
|
732 |
+
#: modules/cta/cta.php:221
|
733 |
+
msgid "Text"
|
734 |
+
msgstr "Текст"
|
735 |
+
|
736 |
+
#: includes/column-settings.php:30 includes/column-settings.php:43
|
737 |
+
#: includes/column-settings.php:100 includes/row-settings.php:52
|
738 |
+
#: includes/row-settings.php:109 includes/row-settings.php:403
|
739 |
+
#: modules/callout/callout.php:391
|
740 |
+
#: modules/content-slider/content-slider.php:337
|
741 |
+
#: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
|
742 |
+
#: modules/separator/separator.php:34
|
743 |
+
msgid "Color"
|
744 |
+
msgstr "Цвет"
|
745 |
+
|
746 |
+
#: includes/column-settings.php:39 includes/row-settings.php:105
|
747 |
+
#: modules/button/button.php:115 modules/callout/callout.php:404
|
748 |
+
#: modules/callout/callout.php:508
|
749 |
+
#: modules/content-slider/content-slider.php:363
|
750 |
+
#: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
|
751 |
+
#: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
|
752 |
+
#: modules/icon/icon.php:95
|
753 |
+
msgid "Background Color"
|
754 |
+
msgstr "Цвет фона"
|
755 |
+
|
756 |
+
#: includes/column-settings.php:51 includes/column-settings.php:108
|
757 |
+
#: includes/row-settings.php:117 includes/row-settings.php:411
|
758 |
+
#: modules/separator/separator.php:44
|
759 |
+
msgid "Opacity"
|
760 |
+
msgstr "Непрозрачность"
|
761 |
+
|
762 |
+
#: includes/column-settings.php:63 includes/row-settings.php:366
|
763 |
+
msgid "Border"
|
764 |
+
msgstr "Рамка"
|
765 |
+
|
766 |
+
#: includes/column-settings.php:67 includes/row-settings.php:65
|
767 |
+
#: includes/row-settings.php:370 modules/callout/callout.php:474
|
768 |
+
#: modules/content-slider/content-slider.php:331
|
769 |
+
#: modules/content-slider/content-slider.php:378
|
770 |
+
#: modules/content-slider/content-slider.php:596
|
771 |
+
#: modules/content-slider/content-slider.php:729
|
772 |
+
#: modules/slideshow/slideshow.php:339
|
773 |
+
msgid "Type"
|
774 |
+
msgstr "Тип"
|
775 |
+
|
776 |
+
#: includes/column-settings.php:69 includes/row-settings.php:372
|
777 |
+
msgid ""
|
778 |
+
"The type of border to use. Double borders must have a width of at least 3px "
|
779 |
+
"to render properly."
|
780 |
+
msgstr ""
|
781 |
+
"Выбирает тип рамки. Толщина двойной рамки должна быть как минимум 3 пикселя, "
|
782 |
+
"чтобы отображаться корректно"
|
783 |
+
|
784 |
+
#: includes/column-settings.php:71 includes/row-settings.php:374
|
785 |
+
msgctxt "Border type."
|
786 |
+
msgid "None"
|
787 |
+
msgstr "Нет"
|
788 |
+
|
789 |
+
#: includes/column-settings.php:72 includes/row-settings.php:375
|
790 |
+
#: modules/separator/separator.php:75
|
791 |
+
msgctxt "Border type."
|
792 |
+
msgid "Solid"
|
793 |
+
msgstr "Сплошная"
|
794 |
+
|
795 |
+
#: includes/column-settings.php:73 includes/row-settings.php:376
|
796 |
+
#: modules/separator/separator.php:76
|
797 |
+
msgctxt "Border type."
|
798 |
+
msgid "Dashed"
|
799 |
+
msgstr "Пунктирная"
|
800 |
+
|
801 |
+
#: includes/column-settings.php:74 includes/row-settings.php:377
|
802 |
+
#: modules/separator/separator.php:77
|
803 |
+
msgctxt "Border type."
|
804 |
+
msgid "Dotted"
|
805 |
+
msgstr "Точечная"
|
806 |
+
|
807 |
+
#: includes/column-settings.php:75 includes/row-settings.php:378
|
808 |
+
#: modules/separator/separator.php:78
|
809 |
+
msgctxt "Border type."
|
810 |
+
msgid "Double"
|
811 |
+
msgstr "Двойная"
|
812 |
+
|
813 |
+
#: includes/column-settings.php:119 includes/row-settings.php:422
|
814 |
+
msgid "Top Width"
|
815 |
+
msgstr "Толщина сверху"
|
816 |
+
|
817 |
+
#: includes/column-settings.php:131 includes/row-settings.php:434
|
818 |
+
msgid "Bottom Width"
|
819 |
+
msgstr "Толщина снизу"
|
820 |
+
|
821 |
+
#: includes/column-settings.php:143 includes/row-settings.php:446
|
822 |
+
msgid "Left Width"
|
823 |
+
msgstr "Толщина слева"
|
824 |
+
|
825 |
+
#: includes/column-settings.php:155 includes/row-settings.php:458
|
826 |
+
msgid "Right Width"
|
827 |
+
msgstr "Толщина справа"
|
828 |
+
|
829 |
+
#: includes/column-settings.php:170 includes/module-settings.php:6
|
830 |
+
#: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
|
831 |
+
msgid "Advanced"
|
832 |
+
msgstr "Расширенные"
|
833 |
+
|
834 |
+
#: includes/column-settings.php:173 includes/global-settings.php:41
|
835 |
+
#: includes/global-settings.php:94 includes/module-settings.php:9
|
836 |
+
#: includes/row-settings.php:476
|
837 |
+
msgid "Margins"
|
838 |
+
msgstr "Поля"
|
839 |
+
|
840 |
+
#: includes/column-settings.php:177 includes/column-settings.php:230
|
841 |
+
#: includes/module-settings.php:13 includes/row-settings.php:480
|
842 |
+
#: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
|
843 |
+
msgid "Top"
|
844 |
+
msgstr "Сверху"
|
845 |
+
|
846 |
+
#: includes/column-settings.php:189 includes/column-settings.php:242
|
847 |
+
#: includes/module-settings.php:25 includes/row-settings.php:492
|
848 |
+
#: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
|
849 |
+
msgid "Bottom"
|
850 |
+
msgstr "Снизу"
|
851 |
+
|
852 |
+
#: includes/column-settings.php:201 includes/column-settings.php:254
|
853 |
+
#: includes/module-settings.php:37 includes/row-settings.php:504
|
854 |
+
#: includes/row-settings.php:557 modules/button/button.php:219
|
855 |
+
#: modules/callout/callout.php:252
|
856 |
+
#: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
|
857 |
+
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
858 |
+
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
859 |
+
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
860 |
+
msgid "Left"
|
861 |
+
msgstr "Слева"
|
862 |
+
|
863 |
+
#: includes/column-settings.php:213 includes/column-settings.php:266
|
864 |
+
#: includes/module-settings.php:49 includes/row-settings.php:516
|
865 |
+
#: includes/row-settings.php:569 modules/button/button.php:220
|
866 |
+
#: modules/callout/callout.php:253
|
867 |
+
#: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
|
868 |
+
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
869 |
+
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
870 |
+
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
871 |
+
msgid "Right"
|
872 |
+
msgstr "Справа"
|
873 |
+
|
874 |
+
#: includes/column-settings.php:226 includes/global-settings.php:49
|
875 |
+
#: includes/row-settings.php:529 modules/button/button.php:233
|
876 |
+
#: modules/callout/callout.php:598
|
877 |
+
#: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
|
878 |
+
msgid "Padding"
|
879 |
+
msgstr "Отступ"
|
880 |
+
|
881 |
+
#: includes/column-settings.php:279 includes/global-settings.php:103
|
882 |
+
#: includes/module-settings.php:62 includes/row-settings.php:582
|
883 |
+
msgid "Responsive Layout"
|
884 |
+
msgstr "Отзывчивый макет"
|
885 |
+
|
886 |
+
#: includes/column-settings.php:283 includes/module-settings.php:66
|
887 |
+
#: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
|
888 |
+
msgid "Display"
|
889 |
+
msgstr "Отображение"
|
890 |
+
|
891 |
+
#: includes/column-settings.php:285 includes/module-settings.php:68
|
892 |
+
#: includes/row-settings.php:588
|
893 |
+
msgid "Always"
|
894 |
+
msgstr "Всегда"
|
895 |
+
|
896 |
+
#: includes/column-settings.php:286 includes/module-settings.php:69
|
897 |
+
#: includes/row-settings.php:589
|
898 |
+
msgid "Large Devices Only"
|
899 |
+
msgstr "Только на больших экранах"
|
900 |
+
|
901 |
+
#: includes/column-settings.php:287 includes/module-settings.php:70
|
902 |
+
#: includes/row-settings.php:590
|
903 |
+
msgid "Large & Medium Devices Only"
|
904 |
+
msgstr "Только на больших и средних экранах"
|
905 |
+
|
906 |
+
#: includes/column-settings.php:288 includes/module-settings.php:71
|
907 |
+
#: includes/row-settings.php:591
|
908 |
+
msgid "Medium Devices Only"
|
909 |
+
msgstr "Только на средних экранах"
|
910 |
+
|
911 |
+
#: includes/column-settings.php:289 includes/module-settings.php:72
|
912 |
+
#: includes/row-settings.php:592
|
913 |
+
msgid "Medium & Small Devices Only"
|
914 |
+
msgstr "Только на средних и маленьких экранах"
|
915 |
+
|
916 |
+
#: includes/column-settings.php:290 includes/module-settings.php:73
|
917 |
+
#: includes/row-settings.php:593
|
918 |
+
msgid "Small Devices Only"
|
919 |
+
msgstr "Только на маленьких экранах"
|
920 |
+
|
921 |
+
#: includes/column-settings.php:292
|
922 |
+
msgid "Choose whether to show or hide this column at different device sizes."
|
923 |
+
msgstr "Выберите, при каких размерах экрана отображается эта колонка"
|
924 |
+
|
925 |
+
#: includes/column-settings.php:299
|
926 |
+
msgid "Medium Device Width"
|
927 |
+
msgstr "Ширина на средних экранах"
|
928 |
+
|
929 |
+
#: includes/column-settings.php:300
|
930 |
+
msgid "The width of this column on medium devices such as tablets."
|
931 |
+
msgstr "Ширина этой колонки на экранах средней ширины, например, планшетов."
|
932 |
+
|
933 |
+
#: includes/column-settings.php:302 includes/column-settings.php:330
|
934 |
+
#: modules/callout/callout.php:283
|
935 |
+
#: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
|
936 |
+
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
937 |
+
#: modules/heading/heading.php:174
|
938 |
+
msgid "Default"
|
939 |
+
msgstr "По умолчанию"
|
940 |
+
|
941 |
+
#: includes/column-settings.php:303 includes/column-settings.php:331
|
942 |
+
#: modules/button/button.php:193 modules/callout/callout.php:284
|
943 |
+
#: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
|
944 |
+
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
945 |
+
#: modules/heading/heading.php:175 modules/social-buttons/social-buttons.php:74
|
946 |
+
msgid "Custom"
|
947 |
+
msgstr "Задать"
|
948 |
+
|
949 |
+
#: includes/column-settings.php:316
|
950 |
+
msgid "Custom Medium Device Width"
|
951 |
+
msgstr "Задайте ширину для средних экранов"
|
952 |
+
|
953 |
+
#: includes/column-settings.php:327
|
954 |
+
msgid "Small Device Width"
|
955 |
+
msgstr "Ширина на маленьких экранах"
|
956 |
+
|
957 |
+
#: includes/column-settings.php:328
|
958 |
+
msgid "The width of this column on small devices such as phones."
|
959 |
+
msgstr "Ширина этой колонки на экранах малой ширины, например, телефонов."
|
960 |
+
|
961 |
+
#: includes/column-settings.php:344
|
962 |
+
msgid "Custom Small Device Width"
|
963 |
+
msgstr "Задайте ширину для маленьких экранов"
|
964 |
+
|
965 |
+
#: includes/column-settings.php:356 includes/module-settings.php:115
|
966 |
+
#: includes/row-settings.php:603
|
967 |
+
msgid "CSS Selectors"
|
968 |
+
msgstr "CSS селекторы"
|
969 |
+
|
970 |
+
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
971 |
+
#: includes/module-settings.php:119 includes/row-settings.php:607
|
972 |
+
msgid "ID"
|
973 |
+
msgstr "ID"
|
974 |
+
|
975 |
+
#: includes/column-settings.php:361
|
976 |
+
msgid ""
|
977 |
+
"A unique ID that will be applied to this column's HTML. Must start with a "
|
978 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
979 |
+
msgstr ""
|
980 |
+
"Уникальный ID для HTML кода этой колонки. Должен начинаться с буквы и "
|
981 |
+
"состоять из тире, символов подчёркивания, латинских букв и цифр, без пробелов."
|
982 |
+
|
983 |
+
#: includes/column-settings.php:368
|
984 |
+
msgid "CSS Class"
|
985 |
+
msgstr "CSS класс"
|
986 |
+
|
987 |
+
#: includes/column-settings.php:369
|
988 |
+
msgid ""
|
989 |
+
"A class that will be applied to this column's HTML. Must start with a letter "
|
990 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
991 |
+
"classes with spaces."
|
992 |
+
msgstr ""
|
993 |
+
"Класс для HTML кода этой колонки. Должен начинаться с буквы и состоять из "
|
994 |
+
"тире, символов подчёркивания, латинских букв и цифр. Возможно указание "
|
995 |
+
"нескольких классов, разделённых пробелами."
|
996 |
+
|
997 |
+
#: includes/field-form.php:28
|
998 |
+
#, php-format
|
999 |
+
msgctxt "%s stands for form field label."
|
1000 |
+
msgid "Edit %s"
|
1001 |
+
msgstr "Редактировать %s"
|
1002 |
+
|
1003 |
+
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
1004 |
+
msgid "Select Icon"
|
1005 |
+
msgstr "Выберите иконку"
|
1006 |
+
|
1007 |
+
#: includes/field-icon.php:5 includes/field-photo.php:13
|
1008 |
+
msgid "Replace"
|
1009 |
+
msgstr "Заменить"
|
1010 |
+
|
1011 |
+
#: includes/field-icon.php:7 includes/js-config.php:58
|
1012 |
+
msgid "Remove"
|
1013 |
+
msgstr "Убрать"
|
1014 |
+
|
1015 |
+
#: includes/field-link.php:3
|
1016 |
+
msgid "Select"
|
1017 |
+
msgstr "Выбрать"
|
1018 |
+
|
1019 |
+
#: includes/field-link.php:5
|
1020 |
+
msgid "Enter a post title to search."
|
1021 |
+
msgstr "Введите название записи для поиска."
|
1022 |
+
|
1023 |
+
#: includes/field-link.php:6 includes/field-suggest.php:7
|
1024 |
+
msgid "Start typing..."
|
1025 |
+
msgstr "Начинайте печатать..."
|
1026 |
+
|
1027 |
+
#: includes/field-link.php:7 includes/icon-selector.php:28
|
1028 |
+
#: includes/js-config.php:19 includes/settings.php:63
|
1029 |
+
#: includes/template-selector.php:102 includes/ui.php:11
|
1030 |
+
msgid "Cancel"
|
1031 |
+
msgstr "Отмена"
|
1032 |
+
|
1033 |
+
#: includes/field-multiple-photos.php:8
|
1034 |
+
#, php-format
|
1035 |
+
msgid "1 Photo Selected"
|
1036 |
+
msgid_plural "%d Photos Selected"
|
1037 |
+
msgstr[0] "Выбрана %d фотография"
|
1038 |
+
msgstr[1] "Выбрано %d фотографии"
|
1039 |
+
msgstr[2] "Выбрано %d фотографий"
|
1040 |
+
|
1041 |
+
#: includes/field-multiple-photos.php:13
|
1042 |
+
msgid "Create Gallery"
|
1043 |
+
msgstr "Создать галерею"
|
1044 |
+
|
1045 |
+
#: includes/field-multiple-photos.php:14
|
1046 |
+
msgid "Edit Gallery"
|
1047 |
+
msgstr "Редактировать галерею"
|
1048 |
+
|
1049 |
+
#: includes/field-multiple-photos.php:15
|
1050 |
+
msgid "Add Photos"
|
1051 |
+
msgstr "Добавить фотографии"
|
1052 |
+
|
1053 |
+
#: includes/field-photo.php:3 includes/js-config.php:63
|
1054 |
+
msgid "Select Photo"
|
1055 |
+
msgstr "Выбрать фотографию"
|
1056 |
+
|
1057 |
+
#: includes/field-video.php:3 includes/js-config.php:65
|
1058 |
+
msgid "Select Video"
|
1059 |
+
msgstr "Выбрать видео"
|
1060 |
+
|
1061 |
+
#: includes/field-video.php:17
|
1062 |
+
msgid "Replace Video"
|
1063 |
+
msgstr "Заменить видео"
|
1064 |
+
|
1065 |
+
#: includes/global-settings.php:7 includes/template-settings.php:7
|
1066 |
+
#: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
|
1067 |
+
#: modules/button/button.php:59 modules/callout/callout.php:209
|
1068 |
+
#: modules/contact-form/contact-form.php:57
|
1069 |
+
#: modules/content-slider/content-slider.php:190
|
1070 |
+
#: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
|
1071 |
+
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
1072 |
+
#: modules/html/html.php:26 modules/icon-group/icon-group.php:128
|
1073 |
+
#: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
|
1074 |
+
#: modules/pricing-table/pricing-table.php:87
|
1075 |
+
#: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
|
1076 |
+
#: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
|
1077 |
+
#: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
|
1078 |
+
#: modules/testimonials/testimonials.php:30
|
1079 |
+
#: modules/testimonials/testimonials.php:200 modules/video/video.php:76
|
1080 |
+
#: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
|
1081 |
+
msgid "General"
|
1082 |
+
msgstr "Общие"
|
1083 |
+
|
1084 |
+
#: includes/global-settings.php:8
|
1085 |
+
msgid "Note: These settings apply to all posts and pages."
|
1086 |
+
msgstr "Внимание: эти настройки действуют для всех записей и страниц."
|
1087 |
+
|
1088 |
+
#: includes/global-settings.php:11
|
1089 |
+
msgid "Default Page Heading"
|
1090 |
+
msgstr "Стандартный заголовок страницы"
|
1091 |
+
|
1092 |
+
#: includes/global-settings.php:15
|
1093 |
+
msgctxt ""
|
1094 |
+
"General settings form field label. Intended meaning: \"Show page heading?\""
|
1095 |
+
msgid "Show"
|
1096 |
+
msgstr "Отображать"
|
1097 |
+
|
1098 |
+
#: includes/global-settings.php:26
|
1099 |
+
msgid ""
|
1100 |
+
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
1101 |
+
"You will also be required to enter some basic CSS for this to work if you "
|
1102 |
+
"choose no."
|
1103 |
+
msgstr ""
|
1104 |
+
"Если вы выберите «нет», стандартный заголовок для материалов типа "
|
1105 |
+
"«Страница» будет спрятан. В этом случае вам также будет необходимо добавить "
|
1106 |
+
"немного базового CSS для корректной работы."
|
1107 |
+
|
1108 |
+
#: includes/global-settings.php:30
|
1109 |
+
msgid "CSS Selector"
|
1110 |
+
msgstr "CSS селектор"
|
1111 |
+
|
1112 |
+
#: includes/global-settings.php:32
|
1113 |
+
msgid "Enter a CSS selector for the default page heading to hide it."
|
1114 |
+
msgstr ""
|
1115 |
+
"Укажите CSS селектор стандартного заголовка страницы, чтобы спрятать его."
|
1116 |
+
|
1117 |
+
#: includes/global-settings.php:37
|
1118 |
+
msgid "Rows"
|
1119 |
+
msgstr "Строки"
|
1120 |
+
|
1121 |
+
#: includes/global-settings.php:57
|
1122 |
+
msgid "Max Width"
|
1123 |
+
msgstr "Максимальная ширина"
|
1124 |
+
|
1125 |
+
#: includes/global-settings.php:62
|
1126 |
+
msgid ""
|
1127 |
+
"All rows will default to this width. You can override this and make a row "
|
1128 |
+
"full width in the settings for each row."
|
1129 |
+
msgstr ""
|
1130 |
+
"Значение ширины строк по умолчанию. Вы можете переписать это значение и "
|
1131 |
+
"задать строке полную ширину в настройках каждой строки."
|
1132 |
+
|
1133 |
+
#: includes/global-settings.php:66
|
1134 |
+
msgid "Default Row Width"
|
1135 |
+
msgstr "Стандартная ширина строки"
|
1136 |
+
|
1137 |
+
#: includes/global-settings.php:69 includes/global-settings.php:83
|
1138 |
+
#: includes/row-settings.php:19 includes/row-settings.php:37
|
1139 |
+
#: includes/row-settings.php:179
|
1140 |
+
msgid "Fixed"
|
1141 |
+
msgstr "Фиксированная"
|
1142 |
+
|
1143 |
+
#: includes/global-settings.php:70 includes/global-settings.php:84
|
1144 |
+
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1145 |
+
#: modules/button/button.php:192 modules/callout/callout.php:585
|
1146 |
+
msgid "Full Width"
|
1147 |
+
msgstr "Полной ширины"
|
1148 |
+
|
1149 |
+
#: includes/global-settings.php:80
|
1150 |
+
msgid "Default Row Content Width"
|
1151 |
+
msgstr "Стандартная ширина содержимого строки"
|
1152 |
+
|
1153 |
+
#: includes/global-settings.php:107
|
1154 |
+
msgctxt ""
|
1155 |
+
"General settings form field label. Intended meaning: \"Responsive layout "
|
1156 |
+
"enabled?\""
|
1157 |
+
msgid "Enabled"
|
1158 |
+
msgstr "Включен"
|
1159 |
+
|
1160 |
+
#: includes/global-settings.php:121
|
1161 |
+
msgid "Medium Device Breakpoint"
|
1162 |
+
msgstr "Ширина, принимаемая за средний экран"
|
1163 |
+
|
1164 |
+
#: includes/global-settings.php:126
|
1165 |
+
msgid ""
|
1166 |
+
"The browser width at which the layout will adjust for medium devices such as "
|
1167 |
+
"tablets."
|
1168 |
+
msgstr ""
|
1169 |
+
"Ширина браузера, при которой макет приспособится к экрану средней ширины, "
|
1170 |
+
"например, планшета."
|
1171 |
+
|
1172 |
+
#: includes/global-settings.php:130
|
1173 |
+
msgid "Small Device Breakpoint"
|
1174 |
+
msgstr "Ширина, принимаемая за малый экран"
|
1175 |
+
|
1176 |
+
#: includes/global-settings.php:135
|
1177 |
+
msgid ""
|
1178 |
+
"The browser width at which the layout will adjust for small devices such as "
|
1179 |
+
"phones."
|
1180 |
+
msgstr ""
|
1181 |
+
"Ширина браузера, при которой макет приспособится к экрану маленькой ширины, "
|
1182 |
+
"например, телефона."
|
1183 |
+
|
1184 |
+
#: includes/icon-selector.php:5
|
1185 |
+
msgctxt "Select option for showing all icon libraries."
|
1186 |
+
msgid "All Libraries"
|
1187 |
+
msgstr "Все библиотеки"
|
1188 |
+
|
1189 |
+
#: includes/js-config.php:18
|
1190 |
+
msgid "What would you like to do?"
|
1191 |
+
msgstr "Что вы хотите сделать?"
|
1192 |
+
|
1193 |
+
#: includes/js-config.php:20
|
1194 |
+
msgid "Change Template"
|
1195 |
+
msgstr "Изменить шаблон"
|
1196 |
+
|
1197 |
+
#: includes/js-config.php:21
|
1198 |
+
msgid ""
|
1199 |
+
"Warning! Changing the template will replace your existing layout. Do you "
|
1200 |
+
"really want to do this?"
|
1201 |
+
msgstr ""
|
1202 |
+
"Внимание! Изменение шаблона заменит существующий макет. Вы действительно "
|
1203 |
+
"хотите сделать это?"
|
1204 |
+
|
1205 |
+
#: includes/js-config.php:22
|
1206 |
+
msgid "Column"
|
1207 |
+
msgstr "Колонка"
|
1208 |
+
|
1209 |
+
#: includes/js-config.php:24
|
1210 |
+
msgid ""
|
1211 |
+
"Please select either a background layout or content layout before submitting."
|
1212 |
+
msgstr ""
|
1213 |
+
"Пожалуйста, укахите либо макет фона, либо макет содержимого перед "
|
1214 |
+
"подтверждением."
|
1215 |
+
|
1216 |
+
#: includes/js-config.php:25
|
1217 |
+
msgid "Do you really want to delete this item?"
|
1218 |
+
msgstr "Вы действительно хотите удалить этот элемент?"
|
1219 |
+
|
1220 |
+
#: includes/js-config.php:26
|
1221 |
+
msgid ""
|
1222 |
+
"Do you really want to delete this module? All content data will be "
|
1223 |
+
"permanently deleted."
|
1224 |
+
msgstr ""
|
1225 |
+
"Вы действительно хотите удалить этот модуль? Вся содержащаяся в нём "
|
1226 |
+
"информация будет потеряна."
|
1227 |
+
|
1228 |
+
#: includes/js-config.php:27
|
1229 |
+
msgid ""
|
1230 |
+
"Do you really want to delete this row? All content data will be permanently "
|
1231 |
+
"deleted."
|
1232 |
+
msgstr ""
|
1233 |
+
"Вы действительно хотите удалить эту строку ? Вся содержащаяся в ней "
|
1234 |
+
"информация будет потеряна."
|
1235 |
+
|
1236 |
+
#: includes/js-config.php:29
|
1237 |
+
msgid "Discard Draft"
|
1238 |
+
msgstr "Отказаться от черновика"
|
1239 |
+
|
1240 |
+
#: includes/js-config.php:30
|
1241 |
+
msgid ""
|
1242 |
+
"Do you really want to discard this draft? All of your changes that are not "
|
1243 |
+
"published will be lost."
|
1244 |
+
msgstr ""
|
1245 |
+
"Вы действительно хотите отказаться от этого черновика? Все неопубликованные "
|
1246 |
+
"изменения будет потеряны."
|
1247 |
+
|
1248 |
+
#: includes/js-config.php:31 includes/ui.php:44
|
1249 |
+
msgid "Done"
|
1250 |
+
msgstr "Готово"
|
1251 |
+
|
1252 |
+
#: includes/js-config.php:32
|
1253 |
+
msgid "Save Draft"
|
1254 |
+
msgstr "Сохранить черновик"
|
1255 |
+
|
1256 |
+
#: includes/js-config.php:33
|
1257 |
+
msgctxt "Duplicate page/post action label."
|
1258 |
+
msgid "Duplicate"
|
1259 |
+
msgstr "Дублировать"
|
1260 |
+
|
1261 |
+
#: includes/js-config.php:34
|
1262 |
+
msgid "Duplicate This Page"
|
1263 |
+
msgstr "Дублировать эту страницу"
|
1264 |
+
|
1265 |
+
#: includes/js-config.php:35
|
1266 |
+
msgid "Duplicate This Template"
|
1267 |
+
msgstr "Дублировать этот макет"
|
1268 |
+
|
1269 |
+
#: includes/js-config.php:36
|
1270 |
+
msgid "Edit Global Settings"
|
1271 |
+
msgstr "Редактировать глобальные настройки"
|
1272 |
+
|
1273 |
+
#: includes/js-config.php:37
|
1274 |
+
msgid "Drop a row layout or module to get started!"
|
1275 |
+
msgstr "Перенесите сюда макет строки или модуль для начала работы!"
|
1276 |
+
|
1277 |
+
#: includes/js-config.php:38
|
1278 |
+
msgid ""
|
1279 |
+
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1280 |
+
"not functioning as expected the cause is most likely this error. Please help "
|
1281 |
+
"us by disabling all plugins and testing Beaver Builder while reactivating "
|
1282 |
+
"each to determine if the issue is related to a third party plugin."
|
1283 |
+
msgstr ""
|
1284 |
+
"Beaver Builder столкнулся со следующей ошибкой JavaScript. Если Beaver "
|
1285 |
+
"Builder не функционирует как положено, скорее всего, причина в ней. "
|
1286 |
+
"Пожалуйста, помогите нам решить её, отключив все прочие плагины и продолжая "
|
1287 |
+
"тестировать работу Beaver Builder, поочерёдно включая их. Так можно будет "
|
1288 |
+
"определить, связана ли ошибка со сторонним плагином."
|
1289 |
+
|
1290 |
+
#: includes/js-config.php:39
|
1291 |
+
msgid "Full Size"
|
1292 |
+
msgstr "Полного размера"
|
1293 |
+
|
1294 |
+
#: includes/js-config.php:40
|
1295 |
+
msgid "Get Help"
|
1296 |
+
msgstr "Получить помощь"
|
1297 |
+
|
1298 |
+
#: includes/js-config.php:41
|
1299 |
+
msgid "Getting Started Video"
|
1300 |
+
msgstr "Видео для начала работы"
|
1301 |
+
|
1302 |
+
#: includes/js-config.php:42
|
1303 |
+
msgid "\"{message}\" on line {line} of {file}."
|
1304 |
+
msgstr "«{message}» на строке {line} в файле {file}."
|
1305 |
+
|
1306 |
+
#: includes/js-config.php:43
|
1307 |
+
msgid "Insert"
|
1308 |
+
msgstr "Вставить"
|
1309 |
+
|
1310 |
+
#: includes/js-config.php:44
|
1311 |
+
msgid "Large"
|
1312 |
+
msgstr "Большой"
|
1313 |
+
|
1314 |
+
#: includes/js-config.php:45
|
1315 |
+
msgid "Manage Templates"
|
1316 |
+
msgstr "Управление шаблонами"
|
1317 |
+
|
1318 |
+
#: includes/js-config.php:46
|
1319 |
+
msgid "Medium"
|
1320 |
+
msgstr "Средний"
|
1321 |
+
|
1322 |
+
#: includes/js-config.php:47
|
1323 |
+
msgid "Module"
|
1324 |
+
msgstr "Модуль"
|
1325 |
+
|
1326 |
+
#: includes/js-config.php:48
|
1327 |
+
msgid "Move"
|
1328 |
+
msgstr "Передвинуть"
|
1329 |
+
|
1330 |
+
#: includes/js-config.php:49
|
1331 |
+
msgid "New Column"
|
1332 |
+
msgstr "Новая колонка"
|
1333 |
+
|
1334 |
+
#: includes/js-config.php:50
|
1335 |
+
msgid "New Row"
|
1336 |
+
msgstr "Новая строка"
|
1337 |
+
|
1338 |
+
#: includes/js-config.php:51
|
1339 |
+
msgid "No results found."
|
1340 |
+
msgstr "Не найдено результатов."
|
1341 |
+
|
1342 |
+
#: includes/js-config.php:52
|
1343 |
+
msgid "No Thanks"
|
1344 |
+
msgstr "Нет, спасибо"
|
1345 |
+
|
1346 |
+
#: includes/js-config.php:53
|
1347 |
+
msgid "OK"
|
1348 |
+
msgstr "Хорошо"
|
1349 |
+
|
1350 |
+
#: includes/js-config.php:54 modules/photo/photo.php:454
|
1351 |
+
msgid "Photo Page"
|
1352 |
+
msgstr "Страница фотографии"
|
1353 |
+
|
1354 |
+
#: includes/js-config.php:55
|
1355 |
+
msgid "Photo Selected"
|
1356 |
+
msgstr "Выбранная фотография"
|
1357 |
+
|
1358 |
+
#: includes/js-config.php:56
|
1359 |
+
msgid "Photos Selected"
|
1360 |
+
msgstr "Выбранные фотографии"
|
1361 |
+
|
1362 |
+
#: includes/js-config.php:57
|
1363 |
+
msgid "Publish Changes"
|
1364 |
+
msgstr "Опубликовать изменения"
|
1365 |
+
|
1366 |
+
#: includes/js-config.php:59
|
1367 |
+
msgid "Row"
|
1368 |
+
msgstr "Строка"
|
1369 |
+
|
1370 |
+
#: includes/js-config.php:60 includes/row-settings.php:6
|
1371 |
+
msgid "Row Settings"
|
1372 |
+
msgstr "Настройки строки"
|
1373 |
+
|
1374 |
+
#: includes/js-config.php:61
|
1375 |
+
msgid "Save Core Template"
|
1376 |
+
msgstr "Сохранить базовый шаблон"
|
1377 |
+
|
1378 |
+
#: includes/js-config.php:62 includes/ui.php:10
|
1379 |
+
#: includes/user-template-settings.php:4
|
1380 |
+
msgid "Save Template"
|
1381 |
+
msgstr "Сохранить шаблон"
|
1382 |
+
|
1383 |
+
#: includes/js-config.php:64
|
1384 |
+
msgid "Select Photos"
|
1385 |
+
msgstr "Выбрать фотографии"
|
1386 |
+
|
1387 |
+
#: includes/js-config.php:67
|
1388 |
+
msgid "Take a Tour"
|
1389 |
+
msgstr "Обзор функций"
|
1390 |
+
|
1391 |
+
#: includes/js-config.php:68
|
1392 |
+
msgid "Append New Layout"
|
1393 |
+
msgstr "Добавить к текущему макету"
|
1394 |
+
|
1395 |
+
#: includes/js-config.php:69
|
1396 |
+
msgid "Replace Existing Layout"
|
1397 |
+
msgstr "Заменить текущий макет"
|
1398 |
+
|
1399 |
+
#: includes/js-config.php:70
|
1400 |
+
msgid "Template Saved!"
|
1401 |
+
msgstr "Шаблон сохранен!"
|
1402 |
+
|
1403 |
+
#: includes/js-config.php:71
|
1404 |
+
msgid "Thumbnail"
|
1405 |
+
msgstr "Миниатюра"
|
1406 |
+
|
1407 |
+
#: includes/js-config.php:72
|
1408 |
+
msgid "Next"
|
1409 |
+
msgstr "Дальше"
|
1410 |
+
|
1411 |
+
#: includes/js-config.php:73
|
1412 |
+
msgid "Get Started"
|
1413 |
+
msgstr "Начать работу"
|
1414 |
+
|
1415 |
+
#: includes/js-config.php:74
|
1416 |
+
msgid "Choose a Template"
|
1417 |
+
msgstr "Выбор макета"
|
1418 |
+
|
1419 |
+
#: includes/js-config.php:75
|
1420 |
+
msgid ""
|
1421 |
+
"Get started by choosing a layout template to customize, or build a page from "
|
1422 |
+
"scratch by selecting the blank layout template."
|
1423 |
+
msgstr ""
|
1424 |
+
"Начните работу, выбрав шаблон для редактирования, или начните с чистого "
|
1425 |
+
"листа, выбрав пустой шаблон."
|
1426 |
+
|
1427 |
+
#: includes/js-config.php:76
|
1428 |
+
msgid "Add Rows"
|
1429 |
+
msgstr "Добавление строк"
|
1430 |
+
|
1431 |
+
#: includes/js-config.php:77
|
1432 |
+
msgid ""
|
1433 |
+
"Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
|
1434 |
+
"and dropping row layouts onto the page."
|
1435 |
+
msgstr ""
|
1436 |
+
"Добавляйте строки из нескольких столбцов, редактируйте отступы, меняйте фон и "
|
1437 |
+
"вносите прочие изменения, перетаскивая и отпуская шаблоны строк на страницу."
|
1438 |
+
|
1439 |
+
#: includes/js-config.php:78 includes/ui.php:49
|
1440 |
+
msgid "Add Content"
|
1441 |
+
msgstr "Добавление элементов"
|
1442 |
+
|
1443 |
+
#: includes/js-config.php:79
|
1444 |
+
msgid ""
|
1445 |
+
"Add new content by dragging and dropping modules or widgets into your row "
|
1446 |
+
"layouts or to create a new row layout."
|
1447 |
+
msgstr ""
|
1448 |
+
"Добавляйте новые элементы, перетаскивая и отпуская модули или виджеты в "
|
1449 |
+
"макеты существующих строк или в пустое место, чтобы создать новые строки."
|
1450 |
+
|
1451 |
+
#: includes/js-config.php:80
|
1452 |
+
msgid "Edit Content"
|
1453 |
+
msgstr "Редактирование элементов"
|
1454 |
+
|
1455 |
+
#: includes/js-config.php:81
|
1456 |
+
msgid ""
|
1457 |
+
"Move your mouse over rows, columns or modules to edit and interact with them."
|
1458 |
+
msgstr ""
|
1459 |
+
"Наведите курсор на строки, колонки или модули, чтобы редактировать и "
|
1460 |
+
"управлять ими."
|
1461 |
+
|
1462 |
+
#: includes/js-config.php:82
|
1463 |
+
msgid ""
|
1464 |
+
"Use the action buttons to perform actions such as moving, editing, "
|
1465 |
+
"duplicating or deleting rows, columns and modules."
|
1466 |
+
msgstr ""
|
1467 |
+
"Используйте иконки действий для перемещения, редактирования, дублирования, "
|
1468 |
+
"доступа к настройкам отдельных колонок, или удаления строк, колонок и модулей."
|
1469 |
+
|
1470 |
+
#: includes/js-config.php:83
|
1471 |
+
msgid "Add More Content"
|
1472 |
+
msgstr "Добавление новых элементов"
|
1473 |
+
|
1474 |
+
#: includes/js-config.php:84
|
1475 |
+
msgid ""
|
1476 |
+
"Use the Add Content button to open the content panel and add new row layouts, "
|
1477 |
+
"modules or widgets."
|
1478 |
+
msgstr ""
|
1479 |
+
"Используйте кнопку «Добавить элементы», чтобы открыть панель элементов и "
|
1480 |
+
"добавлять новые строки и содержимое."
|
1481 |
+
|
1482 |
+
#: includes/js-config.php:85
|
1483 |
+
msgid "Change Templates"
|
1484 |
+
msgstr "Изменение шаблонов"
|
1485 |
+
|
1486 |
+
#: includes/js-config.php:86
|
1487 |
+
msgid ""
|
1488 |
+
"Use the Templates button to pick a new template or append one to your layout. "
|
1489 |
+
"Appending will insert a new template at the end of your existing page content."
|
1490 |
+
msgstr ""
|
1491 |
+
"Используйте кнопку «Шаблоны», чтобы выбрать новый шаблон или добавить новый "
|
1492 |
+
"шаблон к текущему макету. Добавление разместит новый шаблон в конце "
|
1493 |
+
"существующей страницы."
|
1494 |
+
|
1495 |
+
#: includes/js-config.php:87
|
1496 |
+
msgid "Helpful Tools"
|
1497 |
+
msgstr "Полезные инструменты"
|
1498 |
+
|
1499 |
+
#: includes/js-config.php:88
|
1500 |
+
msgid ""
|
1501 |
+
"The Tools button lets you duplicate a page, save a template or edit the "
|
1502 |
+
"global settings."
|
1503 |
+
msgstr ""
|
1504 |
+
"Кнопка «Инструменты» позволяет дублировать страницу, сохранять шаблон и "
|
1505 |
+
"редактировать глобальные настройки."
|
1506 |
+
|
1507 |
+
#: includes/js-config.php:89
|
1508 |
+
msgid "Publish Your Changes"
|
1509 |
+
msgstr "Публикация изменений"
|
1510 |
+
|
1511 |
+
#: includes/js-config.php:90
|
1512 |
+
msgid ""
|
1513 |
+
"Once you're finished, click the Done button to publish your changes, save a "
|
1514 |
+
"draft or revert back to the last published state."
|
1515 |
+
msgstr ""
|
1516 |
+
"Закончив редактирование, нажмите кнопку «Готово», чтобы опубликовать "
|
1517 |
+
"изменения, сохранить черновик, или вернуться к последней сохраненной версии."
|
1518 |
+
|
1519 |
+
#: includes/js-config.php:91
|
1520 |
+
msgid "Let's Get Building!"
|
1521 |
+
msgstr "Запустить конструктор!"
|
1522 |
+
|
1523 |
+
#: includes/js-config.php:92
|
1524 |
+
msgid ""
|
1525 |
+
"Now that you know the basics, you're ready to start building! If at any time "
|
1526 |
+
"you need help, click the help icon in the upper right corner to access the "
|
1527 |
+
"help menu. Happy building!"
|
1528 |
+
msgstr ""
|
1529 |
+
"Теперь, ознакомившись с основами, вы готовы приступить к работе. Если вам "
|
1530 |
+
"понадобится помощь, нажмите кнопку «Помощь» в правом верхнем углу для доступа "
|
1531 |
+
"к меню подсказок. Успешной работы!"
|
1532 |
+
|
1533 |
+
#: includes/js-config.php:93
|
1534 |
+
msgid ""
|
1535 |
+
"The settings you are currently editing will not be saved if you navigate away "
|
1536 |
+
"from this page."
|
1537 |
+
msgstr ""
|
1538 |
+
"Настройки, которые вы редактируете сейчас, не будут сохранены при закрытии "
|
1539 |
+
"этой страницы."
|
1540 |
+
|
1541 |
+
#: includes/js-config.php:94
|
1542 |
+
msgid "View the Knowledge Base"
|
1543 |
+
msgstr "Просмотреть базу знаний"
|
1544 |
+
|
1545 |
+
#: includes/js-config.php:95
|
1546 |
+
msgid "Visit the Forums"
|
1547 |
+
msgstr "Посетить форум"
|
1548 |
+
|
1549 |
+
#: includes/js-config.php:96
|
1550 |
+
msgid "Watch the Video"
|
1551 |
+
msgstr "Посмотреть видео"
|
1552 |
+
|
1553 |
+
#: includes/js-config.php:97
|
1554 |
+
msgid ""
|
1555 |
+
"Welcome! It looks like this might be your first time using the builder. Would "
|
1556 |
+
"you like to take a tour?"
|
1557 |
+
msgstr ""
|
1558 |
+
"Добро пожаловать! Похоже, это ваш первый визит в конструктор страниц. Хотите "
|
1559 |
+
"ознакомиться с функциями?"
|
1560 |
+
|
1561 |
+
#: includes/js-config.php:98
|
1562 |
+
msgid "Yes Please!"
|
1563 |
+
msgstr "Да, пожалуйста!"
|
1564 |
+
|
1565 |
+
#: includes/loop-settings.php:19
|
1566 |
+
msgid "Post Type"
|
1567 |
+
msgstr "Тип материала"
|
1568 |
+
|
1569 |
+
#: includes/loop-settings.php:25
|
1570 |
+
msgid "Order By"
|
1571 |
+
msgstr "Сортировка"
|
1572 |
+
|
1573 |
+
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1574 |
+
#: modules/woocommerce/woocommerce.php:189
|
1575 |
+
msgid "Date"
|
1576 |
+
msgstr "Дата"
|
1577 |
+
|
1578 |
+
#: includes/loop-settings.php:29
|
1579 |
+
msgid "Date Last Modified"
|
1580 |
+
msgstr "Дата последней редактуры"
|
1581 |
+
|
1582 |
+
#: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
|
1583 |
+
#: modules/pricing-table/pricing-table.php:94
|
1584 |
+
msgid "Title"
|
1585 |
+
msgstr "Название"
|
1586 |
+
|
1587 |
+
#: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
|
1588 |
+
msgid "Author"
|
1589 |
+
msgstr "Автор"
|
1590 |
+
|
1591 |
+
#: includes/loop-settings.php:32
|
1592 |
+
msgid "Comment Count"
|
1593 |
+
msgstr "Количество комментариев"
|
1594 |
+
|
1595 |
+
#: includes/loop-settings.php:33
|
1596 |
+
msgid "Menu Order"
|
1597 |
+
msgstr "Порядок в меню"
|
1598 |
+
|
1599 |
+
#: includes/loop-settings.php:34
|
1600 |
+
msgid "Random"
|
1601 |
+
msgstr "Случайный"
|
1602 |
+
|
1603 |
+
#: includes/loop-settings.php:41
|
1604 |
+
msgid "Order"
|
1605 |
+
msgstr "Порядок"
|
1606 |
+
|
1607 |
+
#: includes/loop-settings.php:43
|
1608 |
+
msgid "Descending"
|
1609 |
+
msgstr "Убывание"
|
1610 |
+
|
1611 |
+
#: includes/loop-settings.php:44
|
1612 |
+
msgid "Ascending"
|
1613 |
+
msgstr "Возрастание"
|
1614 |
+
|
1615 |
+
#: includes/loop-settings.php:52
|
1616 |
+
msgid "Filter"
|
1617 |
+
msgstr "Фильтр"
|
1618 |
+
|
1619 |
+
#: includes/loop-settings.php:63
|
1620 |
+
#, php-format
|
1621 |
+
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1622 |
+
msgstr ""
|
1623 |
+
"Введите разделенный запятыми список элементов типа «%s.». Только элементы "
|
1624 |
+
"типа «%s.» будут показаны."
|
1625 |
+
|
1626 |
+
#: includes/loop-settings.php:76
|
1627 |
+
#, php-format
|
1628 |
+
msgid ""
|
1629 |
+
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1630 |
+
msgstr ""
|
1631 |
+
"Введите разделенный запятыми список (%s). Будут показаны только материалы, "
|
1632 |
+
"соответствующие этому параметру (%s)."
|
1633 |
+
|
1634 |
+
#: includes/loop-settings.php:90
|
1635 |
+
msgid "Authors"
|
1636 |
+
msgstr "Авторы"
|
1637 |
+
|
1638 |
+
#: includes/loop-settings.php:91
|
1639 |
+
msgid ""
|
1640 |
+
"Enter a comma separated list of authors usernames. Only posts with these "
|
1641 |
+
"authors will be shown."
|
1642 |
+
msgstr ""
|
1643 |
+
"Введите разделенный запятыми список имен пользователей. Будут показаны только "
|
1644 |
+
"материалы этих пользователей."
|
1645 |
+
|
1646 |
+
#: includes/module-settings.php:75
|
1647 |
+
msgid "Choose whether to show or hide this module at different device sizes."
|
1648 |
+
msgstr "Выберите, показывать ли этот модуль в зависимости от размера экрана."
|
1649 |
+
|
1650 |
+
#: includes/module-settings.php:83
|
1651 |
+
msgid "Animation"
|
1652 |
+
msgstr "Анимация"
|
1653 |
+
|
1654 |
+
#: includes/module-settings.php:89
|
1655 |
+
msgctxt "Animation style."
|
1656 |
+
msgid "None"
|
1657 |
+
msgstr "Нет"
|
1658 |
+
|
1659 |
+
#: includes/module-settings.php:90
|
1660 |
+
msgctxt "Animation style."
|
1661 |
+
msgid "Fade In"
|
1662 |
+
msgstr "Проявление"
|
1663 |
+
|
1664 |
+
#: includes/module-settings.php:91
|
1665 |
+
msgctxt "Animation style."
|
1666 |
+
msgid "Slide Left"
|
1667 |
+
msgstr "Выезд справа"
|
1668 |
+
|
1669 |
+
#: includes/module-settings.php:92
|
1670 |
+
msgctxt "Animation style."
|
1671 |
+
msgid "Slide Right"
|
1672 |
+
msgstr "Выезд слева"
|
1673 |
+
|
1674 |
+
#: includes/module-settings.php:93
|
1675 |
+
msgctxt "Animation style."
|
1676 |
+
msgid "Slide Up"
|
1677 |
+
msgstr "Выезд вверх"
|
1678 |
+
|
1679 |
+
#: includes/module-settings.php:94
|
1680 |
+
msgctxt "Animation style."
|
1681 |
+
msgid "Slide Down"
|
1682 |
+
msgstr "Выезд вниз"
|
1683 |
+
|
1684 |
+
#: includes/module-settings.php:102
|
1685 |
+
#: modules/content-slider/content-slider.php:229
|
1686 |
+
#: modules/testimonials/testimonials.php:91
|
1687 |
+
msgid "Delay"
|
1688 |
+
msgstr "Задержка"
|
1689 |
+
|
1690 |
+
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1691 |
+
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
|
1692 |
+
#: modules/content-slider/content-slider.php:250
|
1693 |
+
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1694 |
+
#: modules/slideshow/slideshow.php:581 modules/testimonials/testimonials.php:95
|
1695 |
+
#: modules/testimonials/testimonials.php:112
|
1696 |
+
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
1697 |
+
msgid "seconds"
|
1698 |
+
msgstr "сек."
|
1699 |
+
|
1700 |
+
#: includes/module-settings.php:107
|
1701 |
+
msgid "The amount of time in seconds before this animation starts."
|
1702 |
+
msgstr "Время в секундах до начала этой анимации."
|
1703 |
+
|
1704 |
+
#: includes/module-settings.php:120
|
1705 |
+
msgid ""
|
1706 |
+
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1707 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1708 |
+
msgstr ""
|
1709 |
+
"Уникальный ID для присвоения HTML коду этого модуля. Должен начинаться с "
|
1710 |
+
"буквы и содержать только дефисы, знаки подчеркивания, цифры и латинские "
|
1711 |
+
"буквы, без пробелов."
|
1712 |
+
|
1713 |
+
#: includes/module-settings.php:127 includes/row-settings.php:615
|
1714 |
+
msgid "Class"
|
1715 |
+
msgstr "Класс"
|
1716 |
+
|
1717 |
+
#: includes/module-settings.php:128
|
1718 |
+
msgid ""
|
1719 |
+
"A class that will be applied to this module's HTML. Must start with a letter "
|
1720 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1721 |
+
"classes with spaces."
|
1722 |
+
msgstr ""
|
1723 |
+
"Класс, для HTML кода этого модуля. Должен начинаться с буквы и содержать "
|
1724 |
+
"только дефисы, знаки подчеркивания, латинские буквы или цифры. Несколько "
|
1725 |
+
"классов разделяются пробелами."
|
1726 |
+
|
1727 |
+
#: includes/row-settings.php:16 modules/button/button.php:188
|
1728 |
+
#: modules/content-slider/content-slider.php:483
|
1729 |
+
msgid "Width"
|
1730 |
+
msgstr "Ширина"
|
1731 |
+
|
1732 |
+
#: includes/row-settings.php:27
|
1733 |
+
msgid ""
|
1734 |
+
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
1735 |
+
"no wider than the Row Max Width set in the Global Settings."
|
1736 |
+
msgstr ""
|
1737 |
+
"Строки полной ширины занимают всё пространство страницы от края до края. "
|
1738 |
+
"Фиксированные строки не превышают заданной максимальной ширины страницы."
|
1739 |
+
|
1740 |
+
#: includes/row-settings.php:34
|
1741 |
+
msgid "Content Width"
|
1742 |
+
msgstr "Ширина содержимого"
|
1743 |
+
|
1744 |
+
#: includes/row-settings.php:40
|
1745 |
+
msgid ""
|
1746 |
+
"Full width content spans the width of the page from edge to edge. Fixed "
|
1747 |
+
"content is no wider than the Row Max Width set in the Global Settings."
|
1748 |
+
msgstr ""
|
1749 |
+
"Содержимое полной ширины охватывает ширину страницы от края до края. "
|
1750 |
+
"Содержимое фиксированной ширины не выходит за пределы максимальной ширины "
|
1751 |
+
"страницы, которую можно задать в глобальных параметрах."
|
1752 |
+
|
1753 |
+
#: includes/row-settings.php:61
|
1754 |
+
msgid "Background"
|
1755 |
+
msgstr "Фон"
|
1756 |
+
|
1757 |
+
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
|
1758 |
+
msgctxt "Background type."
|
1759 |
+
msgid "None"
|
1760 |
+
msgstr "Нет"
|
1761 |
+
|
1762 |
+
#: includes/row-settings.php:69
|
1763 |
+
msgctxt "Background type."
|
1764 |
+
msgid "Color"
|
1765 |
+
msgstr "Цвет"
|
1766 |
+
|
1767 |
+
#: includes/row-settings.php:70
|
1768 |
+
msgctxt "Background type."
|
1769 |
+
msgid "Photo"
|
1770 |
+
msgstr "Фото"
|
1771 |
+
|
1772 |
+
#: includes/row-settings.php:71
|
1773 |
+
msgctxt "Background type."
|
1774 |
+
msgid "Video"
|
1775 |
+
msgstr "Видео"
|
1776 |
+
|
1777 |
+
#: includes/row-settings.php:73
|
1778 |
+
msgctxt "Background type."
|
1779 |
+
msgid "Slideshow"
|
1780 |
+
msgstr "Слайд-шоу"
|
1781 |
+
|
1782 |
+
#: includes/row-settings.php:77
|
1783 |
+
msgctxt "Background type."
|
1784 |
+
msgid "Parallax"
|
1785 |
+
msgstr "Параллакс"
|
1786 |
+
|
1787 |
+
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
|
1788 |
+
msgid "Background Photo"
|
1789 |
+
msgstr "Фоновая картинка"
|
1790 |
+
|
1791 |
+
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1792 |
+
#: modules/callout/callout.php:316 modules/callout/callout.php:332
|
1793 |
+
#: modules/callout/callout.php:336
|
1794 |
+
#: modules/content-slider/content-slider.php:335
|
1795 |
+
#: modules/content-slider/content-slider.php:404
|
1796 |
+
#: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
|
1797 |
+
#: modules/photo/photo.php:392
|
1798 |
+
msgid "Photo"
|
1799 |
+
msgstr "Фотография"
|
1800 |
+
|
1801 |
+
#: includes/row-settings.php:140
|
1802 |
+
msgid "Repeat"
|
1803 |
+
msgstr "Повтор"
|
1804 |
+
|
1805 |
+
#: includes/row-settings.php:143
|
1806 |
+
msgctxt "Background repeat."
|
1807 |
+
msgid "None"
|
1808 |
+
msgstr "Нет"
|
1809 |
+
|
1810 |
+
#: includes/row-settings.php:144
|
1811 |
+
msgctxt "Background repeat."
|
1812 |
+
msgid "Tile"
|
1813 |
+
msgstr "Плитка"
|
1814 |
+
|
1815 |
+
#: includes/row-settings.php:145
|
1816 |
+
msgctxt "Background repeat."
|
1817 |
+
msgid "Horizontal"
|
1818 |
+
msgstr "По горизонтали"
|
1819 |
+
|
1820 |
+
#: includes/row-settings.php:146
|
1821 |
+
msgctxt "Background repeat."
|
1822 |
+
msgid "Vertical"
|
1823 |
+
msgstr "По вертикали"
|
1824 |
+
|
1825 |
+
#: includes/row-settings.php:148
|
1826 |
+
msgid ""
|
1827 |
+
"Repeat applies to how the image should display in the row background. "
|
1828 |
+
"Choosing none will display the image as uploaded. Tile will repeat the image "
|
1829 |
+
"as many times as needed to fill the row horizontally and vertically. You can "
|
1830 |
+
"also specify the image to only repeat horizontally or vertically."
|
1831 |
+
msgstr ""
|
1832 |
+
"Тип повтора определяет отображение фона строки. При отсутствии повтора "
|
1833 |
+
"отображается исходная фотография, «плитка» заполняет всё необходимое "
|
1834 |
+
"пространство по горизонтали и вертикали. Вы также можете выбрать повтор лишь "
|
1835 |
+
"в одном направлении."
|
1836 |
+
|
1837 |
+
#: includes/row-settings.php:158
|
1838 |
+
msgid "Left Top"
|
1839 |
+
msgstr "Слева сверху"
|
1840 |
+
|
1841 |
+
#: includes/row-settings.php:159
|
1842 |
+
msgid "Left Center"
|
1843 |
+
msgstr "Слева по центру"
|
1844 |
+
|
1845 |
+
#: includes/row-settings.php:160
|
1846 |
+
msgid "Left Bottom"
|
1847 |
+
msgstr "Слева снизу"
|
1848 |
+
|
1849 |
+
#: includes/row-settings.php:161
|
1850 |
+
msgid "Right Top"
|
1851 |
+
msgstr "Справа сверку"
|
1852 |
+
|
1853 |
+
#: includes/row-settings.php:162
|
1854 |
+
msgid "Right Center"
|
1855 |
+
msgstr "Справа по центру"
|
1856 |
+
|
1857 |
+
#: includes/row-settings.php:163
|
1858 |
+
msgid "Right Bottom"
|
1859 |
+
msgstr "Справа снизу"
|
1860 |
+
|
1861 |
+
#: includes/row-settings.php:164
|
1862 |
+
msgid "Center Top"
|
1863 |
+
msgstr "По центру сверху"
|
1864 |
+
|
1865 |
+
#: includes/row-settings.php:165 modules/button/button.php:218
|
1866 |
+
#: modules/callout/callout.php:251
|
1867 |
+
#: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
|
1868 |
+
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1869 |
+
#: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
|
1870 |
+
#: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
|
1871 |
+
msgid "Center"
|
1872 |
+
msgstr "По центру"
|
1873 |
+
|
1874 |
+
#: includes/row-settings.php:166
|
1875 |
+
msgid "Center Bottom"
|
1876 |
+
msgstr "По центру снизу"
|
1877 |
+
|
1878 |
+
#: includes/row-settings.php:168
|
1879 |
+
msgid "Position will tell the image where it should sit in the row background."
|
1880 |
+
msgstr "Расположение фоновой картинки"
|
1881 |
+
|
1882 |
+
#: includes/row-settings.php:175
|
1883 |
+
msgid "Attachment"
|
1884 |
+
msgstr "Привязка"
|
1885 |
+
|
1886 |
+
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1887 |
+
msgid "Scroll"
|
1888 |
+
msgstr "Прокрутка"
|
1889 |
+
|
1890 |
+
#: includes/row-settings.php:181
|
1891 |
+
msgid ""
|
1892 |
+
"Attachment will specify how the image reacts when scrolling a page. When "
|
1893 |
+
"scrolling is selected, the image will scroll with page scrolling. This is the "
|
1894 |
+
"default setting. Fixed will allow the image to scroll within the row "
|
1895 |
+
"background if fill is selected in the scale setting."
|
1896 |
+
msgstr ""
|
1897 |
+
"Привязка определяет, как изображение реагирует при прокрутке страницы. При "
|
1898 |
+
"выборе «прокрутки» изображение будет двигаться вместе со страницей. Это "
|
1899 |
+
"параметр по умолчанию. «Закрепленное» изображение будет прокручиваться внутри "
|
1900 |
+
"строки, если для заполнения выбран параметр «вместить»."
|
1901 |
+
|
1902 |
+
#: includes/row-settings.php:188
|
1903 |
+
msgid "Scale"
|
1904 |
+
msgstr "Заполнение"
|
1905 |
+
|
1906 |
+
#: includes/row-settings.php:191
|
1907 |
+
msgctxt "Background scale."
|
1908 |
+
msgid "None"
|
1909 |
+
msgstr "Нет"
|
1910 |
+
|
1911 |
+
#: includes/row-settings.php:192
|
1912 |
+
msgid "Fit"
|
1913 |
+
msgstr "Вместить"
|
1914 |
+
|
1915 |
+
#: includes/row-settings.php:193
|
1916 |
+
msgid "Fill"
|
1917 |
+
msgstr "Заполнить"
|
1918 |
+
|
1919 |
+
#: includes/row-settings.php:195
|
1920 |
+
msgid ""
|
1921 |
+
"Scale applies to how the image should display in the row background. You can "
|
1922 |
+
"select either fill or fit to the row background."
|
1923 |
+
msgstr ""
|
1924 |
+
"Заполнение определяет размер фоновой картинки: исходный, умещающийся в "
|
1925 |
+
"пределах строки, или полностью заполняющий строку."
|
1926 |
+
|
1927 |
+
#: includes/row-settings.php:203
|
1928 |
+
msgid "Background Video"
|
1929 |
+
msgstr "Фоновое видео"
|
1930 |
+
|
1931 |
+
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
|
1932 |
+
#: modules/video/video.php:19 modules/video/video.php:100
|
1933 |
+
msgid "Video"
|
1934 |
+
msgstr "Видео"
|
1935 |
+
|
1936 |
+
#: includes/row-settings.php:208
|
1937 |
+
msgid ""
|
1938 |
+
"An HTML5 video to use as the background of this row. Supported types are MP4, "
|
1939 |
+
"WebM and Ogg."
|
1940 |
+
msgstr ""
|
1941 |
+
"HTML5 видео для фона этой строки. Поддерживаемые форматы: MP4, WebM и Ogg."
|
1942 |
+
|
1943 |
+
#: includes/row-settings.php:215
|
1944 |
+
msgid "Fallback Photo"
|
1945 |
+
msgstr "Замещающая картинка"
|
1946 |
+
|
1947 |
+
#: includes/row-settings.php:216
|
1948 |
+
msgid "A photo that will be displayed if the video fails to load."
|
1949 |
+
msgstr "Картинка на случай, если видео на загрузится."
|
1950 |
+
|
1951 |
+
#: includes/row-settings.php:224
|
1952 |
+
msgid "Background Slideshow"
|
1953 |
+
msgstr "Фоновое слайд-шоу"
|
1954 |
+
|
1955 |
+
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
1956 |
+
#: modules/slideshow/slideshow.php:263
|
1957 |
+
msgid "Source"
|
1958 |
+
msgstr "Источник"
|
1959 |
+
|
1960 |
+
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
1961 |
+
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
1962 |
+
#: modules/video/video.php:86
|
1963 |
+
msgid "Media Library"
|
1964 |
+
msgstr "Медиафайлы"
|
1965 |
+
|
1966 |
+
#: includes/row-settings.php:234 modules/gallery/gallery.php:240
|
1967 |
+
#: modules/slideshow/slideshow.php:269
|
1968 |
+
msgid ""
|
1969 |
+
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
1970 |
+
"site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
|
1971 |
+
"accessed by using the get a link function in your SmugMug gallery."
|
1972 |
+
msgstr ""
|
1973 |
+
"Выберите изображения из медиа библиотеки Вордпресс, или укажите адрес RSS "
|
1974 |
+
"потока из вашего профиля на SmugMug. Для получения адреса RSS потока "
|
1975 |
+
"используйте функцию «получить ссылку» в вашей галерее SmugMug."
|
1976 |
+
|
1977 |
+
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
1978 |
+
#: modules/slideshow/slideshow.php:281
|
1979 |
+
msgid "Photos"
|
1980 |
+
msgstr "Фотографии"
|
1981 |
+
|
1982 |
+
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
1983 |
+
#: modules/slideshow/slideshow.php:285
|
1984 |
+
msgid "Feed URL"
|
1985 |
+
msgstr "Адрес потока"
|
1986 |
+
|
1987 |
+
#: includes/row-settings.php:263 includes/row-settings.php:328
|
1988 |
+
#: modules/slideshow/slideshow.php:382
|
1989 |
+
msgid "Speed"
|
1990 |
+
msgstr "Скорость"
|
1991 |
+
|
1992 |
+
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
|
1993 |
+
#: modules/slideshow/slideshow.php:389 modules/testimonials/testimonials.php:99
|
1994 |
+
msgid "Transition"
|
1995 |
+
msgstr "Переход"
|
1996 |
+
|
1997 |
+
#: includes/row-settings.php:276
|
1998 |
+
msgctxt "Slideshow transition type."
|
1999 |
+
msgid "None"
|
2000 |
+
msgstr "Нет"
|
2001 |
+
|
2002 |
+
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
|
2003 |
+
#: modules/slideshow/slideshow.php:393
|
2004 |
+
#: modules/testimonials/testimonials.php:103
|
2005 |
+
msgid "Fade"
|
2006 |
+
msgstr "Исчезание"
|
2007 |
+
|
2008 |
+
#: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
|
2009 |
+
msgid "Ken Burns"
|
2010 |
+
msgstr "Метод Кена Бернса"
|
2011 |
+
|
2012 |
+
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
2013 |
+
msgid "Slide Horizontal"
|
2014 |
+
msgstr "Наплыв по горизонтали"
|
2015 |
+
|
2016 |
+
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
2017 |
+
msgid "Slide Vertical"
|
2018 |
+
msgstr "Наплыв по вертикали"
|
2019 |
+
|
2020 |
+
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
2021 |
+
msgid "Blinds"
|
2022 |
+
msgstr "Жалюзи"
|
2023 |
+
|
2024 |
+
#: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
|
2025 |
+
msgid "Bars"
|
2026 |
+
msgstr "Полоски"
|
2027 |
+
|
2028 |
+
#: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
|
2029 |
+
msgid "Random Bars"
|
2030 |
+
msgstr "Случайные полоски"
|
2031 |
+
|
2032 |
+
#: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
|
2033 |
+
msgid "Boxes"
|
2034 |
+
msgstr "Плитки"
|
2035 |
+
|
2036 |
+
#: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
|
2037 |
+
msgid "Random Boxes"
|
2038 |
+
msgstr "Случайные плитки"
|
2039 |
+
|
2040 |
+
#: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
|
2041 |
+
msgid "Boxes Grow"
|
2042 |
+
msgstr "Растущие плитки"
|
2043 |
+
|
2044 |
+
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
|
2045 |
+
#: modules/slideshow/slideshow.php:407
|
2046 |
+
#: modules/testimonials/testimonials.php:108
|
2047 |
+
msgid "Transition Speed"
|
2048 |
+
msgstr "Скорость перехода"
|
2049 |
+
|
2050 |
+
#: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
|
2051 |
+
msgid "Randomize Photos"
|
2052 |
+
msgstr "Перемешать фотографии"
|
2053 |
+
|
2054 |
+
#: includes/row-settings.php:317
|
2055 |
+
msgid "Background Parallax"
|
2056 |
+
msgstr "Параллакс-эффект"
|
2057 |
+
|
2058 |
+
#: includes/row-settings.php:331
|
2059 |
+
msgid "Fast"
|
2060 |
+
msgstr "Быстро"
|
2061 |
+
|
2062 |
+
#: includes/row-settings.php:332
|
2063 |
+
msgctxt "Speed."
|
2064 |
+
msgid "Medium"
|
2065 |
+
msgstr "Средне"
|
2066 |
+
|
2067 |
+
#: includes/row-settings.php:333
|
2068 |
+
msgid "Slow"
|
2069 |
+
msgstr "Медленно"
|
2070 |
+
|
2071 |
+
#: includes/row-settings.php:342
|
2072 |
+
msgid "Background Overlay"
|
2073 |
+
msgstr "Наложение"
|
2074 |
+
|
2075 |
+
#: includes/row-settings.php:346
|
2076 |
+
msgid "Overlay Color"
|
2077 |
+
msgstr "Цвет наложения"
|
2078 |
+
|
2079 |
+
#: includes/row-settings.php:354
|
2080 |
+
msgid "Overlay Opacity"
|
2081 |
+
msgstr "Непрозрачность наложения"
|
2082 |
+
|
2083 |
+
#: includes/row-settings.php:595
|
2084 |
+
msgid "Choose whether to show or hide this row at different device sizes."
|
2085 |
+
msgstr "Выберите, показывать ли эту строки в зависимости от размера экрана."
|
2086 |
+
|
2087 |
+
#: includes/row-settings.php:608
|
2088 |
+
msgid ""
|
2089 |
+
"A unique ID that will be applied to this row's HTML. Must start with a letter "
|
2090 |
+
"and only contain dashes, underscores, letters or numbers. No spaces."
|
2091 |
+
msgstr ""
|
2092 |
+
"Уникальный ID для HTML кода этой строки. Должен начинаться с буквы и состоять "
|
2093 |
+
"из тире, символов подчёркивания, латинских букв и цифр, без пробелов."
|
2094 |
+
|
2095 |
+
#: includes/row-settings.php:616
|
2096 |
+
msgid ""
|
2097 |
+
"A class that will be applied to this row's HTML. Must start with a letter and "
|
2098 |
+
"only contain dashes, underscores, letters or numbers. Separate multiple "
|
2099 |
+
"classes with spaces."
|
2100 |
+
msgstr ""
|
2101 |
+
"Класс для HTML кода этой строки. Должен начинаться с буквы и состоять из "
|
2102 |
+
"тире, символов подчёркивания, латинских букв и цифр. Возможно указание "
|
2103 |
+
"нескольких классов, разделённых пробелами."
|
2104 |
+
|
2105 |
+
#: includes/settings.php:62
|
2106 |
+
msgid "Save"
|
2107 |
+
msgstr "Сохранить"
|
2108 |
+
|
2109 |
+
#: includes/template-selector.php:3
|
2110 |
+
msgid "Layout Templates"
|
2111 |
+
msgstr "Шаблоны"
|
2112 |
+
|
2113 |
+
#: includes/template-selector.php:8
|
2114 |
+
msgid "Home Pages"
|
2115 |
+
msgstr "Главные страницы"
|
2116 |
+
|
2117 |
+
#: includes/template-selector.php:9
|
2118 |
+
msgid "Content Pages"
|
2119 |
+
msgstr "Внутренние страницы"
|
2120 |
+
|
2121 |
+
#: includes/template-selector.php:13
|
2122 |
+
msgid "Your Templates"
|
2123 |
+
msgstr "Ваши шаблоны"
|
2124 |
+
|
2125 |
+
#: includes/template-selector.php:47 includes/template-selector.php:77
|
2126 |
+
msgctxt "Template name."
|
2127 |
+
msgid "Blank"
|
2128 |
+
msgstr "Пустая"
|
2129 |
+
|
2130 |
+
#: includes/template-selector.php:72
|
2131 |
+
msgid ""
|
2132 |
+
"You haven't saved any templates yet! To do so, create a layout and save it as "
|
2133 |
+
"a template under <strong>Tools → Save Template</strong>."
|
2134 |
+
msgstr ""
|
2135 |
+
"Вы пока не сохранили ни одного шаблона. Чтобы сделать это, создайте макет и "
|
2136 |
+
"сохраните его как шаблон, выбрав: <strong>Инструменты → Сохранить "
|
2137 |
+
"шаблон</strong>."
|
2138 |
+
|
2139 |
+
#: includes/template-settings.php:14 includes/user-template-settings.php:15
|
2140 |
+
msgctxt "Template name."
|
2141 |
+
msgid "Name"
|
2142 |
+
msgstr "Название"
|
2143 |
+
|
2144 |
+
#: includes/template-settings.php:18
|
2145 |
+
msgid "Image Filename"
|
2146 |
+
msgstr "Имя файла изображения"
|
2147 |
+
|
2148 |
+
#: includes/template-settings.php:19
|
2149 |
+
msgid ""
|
2150 |
+
"The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
|
2151 |
+
"templates/\" directory."
|
2152 |
+
msgstr ""
|
2153 |
+
"Имя файла изображения, например «kartinka.jpg», которое будет сохранено в "
|
2154 |
+
"папке «img/templates/»."
|
2155 |
+
|
2156 |
+
#: includes/ui.php:7
|
2157 |
+
#, php-format
|
2158 |
+
msgid "Template: %s"
|
2159 |
+
msgstr "Шаблон: %s"
|
2160 |
+
|
2161 |
+
#: includes/ui.php:23
|
2162 |
+
msgid "Page Builder Demo"
|
2163 |
+
msgstr "Демо-версия Конструктора страниц"
|
2164 |
+
|
2165 |
+
#: includes/ui.php:40
|
2166 |
+
msgid "Buy Now!"
|
2167 |
+
msgstr "Купить сейчас!"
|
2168 |
+
|
2169 |
+
#: includes/ui.php:42
|
2170 |
+
msgid "Upgrade!"
|
2171 |
+
msgstr "Сделать апгрейд!"
|
2172 |
+
|
2173 |
+
#: includes/ui.php:45
|
2174 |
+
msgid "Tools"
|
2175 |
+
msgstr "Инструменты"
|
2176 |
+
|
2177 |
+
#: includes/ui.php:67
|
2178 |
+
msgid "Row Layouts"
|
2179 |
+
msgstr "Шаблоны строк"
|
2180 |
+
|
2181 |
+
#: includes/ui.php:71
|
2182 |
+
msgid "1 Column"
|
2183 |
+
msgstr "1 колонка"
|
2184 |
+
|
2185 |
+
#: includes/ui.php:72
|
2186 |
+
msgid "2 Columns"
|
2187 |
+
msgstr "2 колонки"
|
2188 |
+
|
2189 |
+
#: includes/ui.php:73
|
2190 |
+
msgid "3 Columns"
|
2191 |
+
msgstr "3 колонки"
|
2192 |
+
|
2193 |
+
#: includes/ui.php:74
|
2194 |
+
msgid "4 Columns"
|
2195 |
+
msgstr "4 колонки"
|
2196 |
+
|
2197 |
+
#: includes/ui.php:75
|
2198 |
+
msgid "5 Columns"
|
2199 |
+
msgstr "5 колонок"
|
2200 |
+
|
2201 |
+
#: includes/ui.php:76
|
2202 |
+
msgid "6 Columns"
|
2203 |
+
msgstr "6 колонок"
|
2204 |
+
|
2205 |
+
#: includes/ui.php:77
|
2206 |
+
msgid "Left Sidebar"
|
2207 |
+
msgstr "Боковая панель слева"
|
2208 |
+
|
2209 |
+
#: includes/ui.php:78
|
2210 |
+
msgid "Right Sidebar"
|
2211 |
+
msgstr "Боковая панель справа"
|
2212 |
+
|
2213 |
+
#: includes/ui.php:79
|
2214 |
+
msgid "Left & Right Sidebar"
|
2215 |
+
msgstr "Боковые панели слева и справа"
|
2216 |
+
|
2217 |
+
#: includes/updater/classes/class-fl-updater.php:107
|
2218 |
+
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2219 |
+
msgstr "<strong>ОБНОВЛЕНИЕ НЕДОСТУПНО!</strong>"
|
2220 |
+
|
2221 |
+
#: includes/updater/classes/class-fl-updater.php:109
|
2222 |
+
msgid "Please subscribe to enable automatic updates for this plugin."
|
2223 |
+
msgstr "Пожалуйста, подпишитесь для автоматического обновления этого плагина."
|
2224 |
+
|
2225 |
+
#: includes/updater/classes/class-fl-updater.php:111
|
2226 |
+
#: includes/updater/includes/form.php:6
|
2227 |
+
msgid "Subscribe Now"
|
2228 |
+
msgstr "Подписаться сейчас"
|
2229 |
+
|
2230 |
+
#: includes/updater/includes/form.php:5
|
2231 |
+
msgid ""
|
2232 |
+
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
2233 |
+
"enable automatic updates."
|
2234 |
+
msgstr ""
|
2235 |
+
"ОБНОВЛЕНИЯ НЕДОСТУПНЫ! Пожалуйста, подпишитесь или введите ваш лицензионный "
|
2236 |
+
"ключ, чтобы включить автоматические обновления."
|
2237 |
+
|
2238 |
+
#: includes/updater/includes/form.php:11
|
2239 |
+
msgid "Updates & Support Subscription"
|
2240 |
+
msgstr "Подписка на обновление и поддержку"
|
2241 |
+
|
2242 |
+
#: includes/updater/includes/form.php:14
|
2243 |
+
msgid "Active!"
|
2244 |
+
msgstr "Активна!"
|
2245 |
+
|
2246 |
+
#: includes/updater/includes/form.php:16
|
2247 |
+
msgid "Not Active!"
|
2248 |
+
msgstr "Не активна!"
|
2249 |
+
|
2250 |
+
#: includes/updater/includes/form.php:22
|
2251 |
+
msgid "Email address saved!"
|
2252 |
+
msgstr "Email сохранен!"
|
2253 |
+
|
2254 |
+
#: includes/updater/includes/form.php:27
|
2255 |
+
#, php-format
|
2256 |
+
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
2257 |
+
msgstr ""
|
2258 |
+
"Введите ваш <a%s>лицензионный ключ</a> для включения удаленного обновления и "
|
2259 |
+
"поддержки."
|
2260 |
+
|
2261 |
+
#: includes/updater/includes/form.php:39
|
2262 |
+
msgid "Save Subscription Settings"
|
2263 |
+
msgstr "Сохранить настройки подписки"
|
2264 |
+
|
2265 |
+
#: includes/user-template-settings.php:8
|
2266 |
+
msgid ""
|
2267 |
+
"Save the current layout as a template that can be reused under "
|
2268 |
+
"<strong>Templates → Your Templates</strong>."
|
2269 |
+
msgstr ""
|
2270 |
+
"Сохранить текущий макет как шаблон, для дальнейшего использования через меню "
|
2271 |
+
"<strong>Шаблоны → Ваши шаблоны</strong>."
|
2272 |
+
|
2273 |
+
#: modules/accordion/accordion.php:14
|
2274 |
+
msgid "Accordion"
|
2275 |
+
msgstr "Гармошка"
|
2276 |
+
|
2277 |
+
#: modules/accordion/accordion.php:15
|
2278 |
+
msgid "Display a collapsible accordion of items."
|
2279 |
+
msgstr "Отображает складную «гармошку» элементов."
|
2280 |
+
|
2281 |
+
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2282 |
+
msgid "Items"
|
2283 |
+
msgstr "Элементы"
|
2284 |
+
|
2285 |
+
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
2286 |
+
msgid "Item"
|
2287 |
+
msgstr "Элемент"
|
2288 |
+
|
2289 |
+
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
2290 |
+
msgid "Border Color"
|
2291 |
+
msgstr "Цвет рамки"
|
2292 |
+
|
2293 |
+
#: modules/accordion/accordion.php:62
|
2294 |
+
msgid "Label Size"
|
2295 |
+
msgstr "Размер ярлыка"
|
2296 |
+
|
2297 |
+
#: modules/accordion/accordion.php:65
|
2298 |
+
msgctxt "Label size."
|
2299 |
+
msgid "Small"
|
2300 |
+
msgstr "Маленький"
|
2301 |
+
|
2302 |
+
#: modules/accordion/accordion.php:66
|
2303 |
+
msgctxt "Label size."
|
2304 |
+
msgid "Medium"
|
2305 |
+
msgstr "Средний"
|
2306 |
+
|
2307 |
+
#: modules/accordion/accordion.php:67
|
2308 |
+
msgctxt "Label size."
|
2309 |
+
msgid "Large"
|
2310 |
+
msgstr "Большой"
|
2311 |
+
|
2312 |
+
#: modules/accordion/accordion.php:75
|
2313 |
+
msgid "Item Spacing"
|
2314 |
+
msgstr "Отступ между элементами"
|
2315 |
+
|
2316 |
+
#: modules/accordion/accordion.php:86
|
2317 |
+
msgid "Collapse Inactive"
|
2318 |
+
msgstr "Свернуть неактивные"
|
2319 |
+
|
2320 |
+
#: modules/accordion/accordion.php:92
|
2321 |
+
msgid ""
|
2322 |
+
"Choosing yes will keep only one item open at a time. Choosing no will allow "
|
2323 |
+
"multiple items to be open at the same time."
|
2324 |
+
msgstr ""
|
2325 |
+
"Если выбрано «да», элементы открываются по одному. Если выбрано «нет», может "
|
2326 |
+
"быть открыто сразу несколько элементов."
|
2327 |
+
|
2328 |
+
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
2329 |
+
msgid "Add Item"
|
2330 |
+
msgstr "Добавить элемент"
|
2331 |
+
|
2332 |
+
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
2333 |
+
msgid "Label"
|
2334 |
+
msgstr "Ярлык"
|
2335 |
+
|
2336 |
+
#: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
|
2337 |
+
#: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
|
2338 |
+
#: modules/tabs/tabs.php:89
|
2339 |
+
msgid "Content"
|
2340 |
+
msgstr "Содержимое"
|
2341 |
+
|
2342 |
+
#: modules/button/button.php:14 modules/callout/callout.php:479
|
2343 |
+
#: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
|
2344 |
+
#: modules/pricing-table/pricing-table.php:129
|
2345 |
+
msgid "Button"
|
2346 |
+
msgstr "Кнопка"
|
2347 |
+
|
2348 |
+
#: modules/button/button.php:15
|
2349 |
+
msgid "A simple call to action button."
|
2350 |
+
msgstr "Простая кнопка для призыва к действию."
|
2351 |
+
|
2352 |
+
#: modules/button/button.php:67 modules/cta/cta.php:222
|
2353 |
+
msgid "Click Here"
|
2354 |
+
msgstr "Нажмите здесь"
|
2355 |
+
|
2356 |
+
#: modules/button/button.php:75 modules/callout/callout.php:317
|
2357 |
+
#: modules/callout/callout.php:365 modules/callout/callout.php:369
|
2358 |
+
#: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
|
2359 |
+
#: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
|
2360 |
+
#: modules/icon/icon.php:34
|
2361 |
+
msgid "Icon"
|
2362 |
+
msgstr "Иконка"
|
2363 |
+
|
2364 |
+
#: modules/button/button.php:81 modules/button/button.php:85
|
2365 |
+
#: modules/callout/callout.php:445 modules/callout/callout.php:449
|
2366 |
+
#: modules/content-slider/content-slider.php:573
|
2367 |
+
#: modules/content-slider/content-slider.php:577
|
2368 |
+
#: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
|
2369 |
+
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
2370 |
+
#: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
|
2371 |
+
#: modules/slideshow/slideshow.php:343
|
2372 |
+
msgid "Link"
|
2373 |
+
msgstr "Ссылка"
|
2374 |
+
|
2375 |
+
#: modules/button/button.php:86
|
2376 |
+
msgid "http://www.example.com"
|
2377 |
+
msgstr "http://www.primer.com"
|
2378 |
+
|
2379 |
+
#: modules/button/button.php:93 modules/callout/callout.php:457
|
2380 |
+
#: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
|
2381 |
+
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
2382 |
+
#: modules/photo/photo.php:478
|
2383 |
+
msgid "Link Target"
|
2384 |
+
msgstr "Открытие ссылки"
|
2385 |
+
|
2386 |
+
#: modules/button/button.php:96 modules/callout/callout.php:460
|
2387 |
+
#: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
|
2388 |
+
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
2389 |
+
#: modules/photo/photo.php:481
|
2390 |
+
msgid "Same Window"
|
2391 |
+
msgstr "В том же окне (вкладке)"
|
2392 |
+
|
2393 |
+
#: modules/button/button.php:97 modules/callout/callout.php:461
|
2394 |
+
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
|
2395 |
+
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
2396 |
+
#: modules/photo/photo.php:482
|
2397 |
+
msgid "New Window"
|
2398 |
+
msgstr "В новом окне (вкладке)"
|
2399 |
+
|
2400 |
+
#: modules/button/button.php:111 modules/cta/cta.php:187
|
2401 |
+
#: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
|
2402 |
+
#: modules/icon/icon.php:78
|
2403 |
+
msgid "Colors"
|
2404 |
+
msgstr "Цвета"
|
2405 |
+
|
2406 |
+
#: modules/button/button.php:121 modules/callout/callout.php:409
|
2407 |
+
#: modules/callout/callout.php:514
|
2408 |
+
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
2409 |
+
#: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
|
2410 |
+
msgid "Background Hover Color"
|
2411 |
+
msgstr "Цвет фона при наведении"
|
2412 |
+
|
2413 |
+
#: modules/button/button.php:130 modules/callout/callout.php:523
|
2414 |
+
#: modules/content-slider/content-slider.php:528
|
2415 |
+
#: modules/content-slider/content-slider.php:641
|
2416 |
+
#: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
|
2417 |
+
#: modules/cta/cta.php:279 modules/heading/heading.php:77
|
2418 |
+
msgid "Text Color"
|
2419 |
+
msgstr "Цвет текста"
|
2420 |
+
|
2421 |
+
#: modules/button/button.php:136 modules/callout/callout.php:529
|
2422 |
+
#: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
|
2423 |
+
msgid "Text Hover Color"
|
2424 |
+
msgstr "Цвет текста при наведении"
|
2425 |
+
|
2426 |
+
#: modules/button/button.php:153 modules/callout/callout.php:546
|
2427 |
+
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
|
2428 |
+
msgid "Flat"
|
2429 |
+
msgstr "Сплошной"
|
2430 |
+
|
2431 |
+
#: modules/button/button.php:154 modules/callout/callout.php:417
|
2432 |
+
#: modules/callout/callout.php:547
|
2433 |
+
#: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
|
2434 |
+
#: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
|
2435 |
+
msgid "Gradient"
|
2436 |
+
msgstr "Градиент"
|
2437 |
+
|
2438 |
+
#: modules/button/button.php:155 modules/callout/callout.php:548
|
2439 |
+
#: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
|
2440 |
+
msgid "Transparent"
|
2441 |
+
msgstr "Прозрачный"
|
2442 |
+
|
2443 |
+
#: modules/button/button.php:165 modules/callout/callout.php:558
|
2444 |
+
#: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
|
2445 |
+
#: modules/pricing-table/pricing-table.php:67
|
2446 |
+
msgid "Border Size"
|
2447 |
+
msgstr "Толщина рамки"
|
2448 |
+
|
2449 |
+
#: modules/button/button.php:174 modules/callout/callout.php:567
|
2450 |
+
#: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
|
2451 |
+
#: modules/cta/cta.php:323
|
2452 |
+
msgid "Background Opacity"
|
2453 |
+
msgstr "Непрозрачность Фона"
|
2454 |
+
|
2455 |
+
#: modules/button/button.php:184 modules/callout/callout.php:244
|
2456 |
+
#: modules/cta/cta.php:104 modules/heading/heading.php:82
|
2457 |
+
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
2458 |
+
msgid "Structure"
|
2459 |
+
msgstr "Структура"
|
2460 |
+
|
2461 |
+
#: modules/button/button.php:191 modules/callout/callout.php:584
|
2462 |
+
msgctxt "Width."
|
2463 |
+
msgid "Auto"
|
2464 |
+
msgstr "Автоматически"
|
2465 |
+
|
2466 |
+
#: modules/button/button.php:207
|
2467 |
+
msgid "Custom Width"
|
2468 |
+
msgstr "Заданная ширина"
|
2469 |
+
|
2470 |
+
#: modules/button/button.php:215 modules/cta/cta.php:122
|
2471 |
+
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2472 |
+
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
2473 |
+
#: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
|
2474 |
+
msgid "Alignment"
|
2475 |
+
msgstr "Выравнивание"
|
2476 |
+
|
2477 |
+
#: modules/button/button.php:225 modules/callout/callout.php:590
|
2478 |
+
#: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
|
2479 |
+
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2480 |
+
msgid "Font Size"
|
2481 |
+
msgstr "Размер шрифта"
|
2482 |
+
|
2483 |
+
#: modules/button/button.php:241 modules/callout/callout.php:606
|
2484 |
+
#: modules/cta/cta.php:353
|
2485 |
+
msgid "Round Corners"
|
2486 |
+
msgstr "Скругление краев"
|
2487 |
+
|
2488 |
+
#: modules/callout/callout.php:14
|
2489 |
+
msgid "Callout"
|
2490 |
+
msgstr "Выноска"
|
2491 |
+
|
2492 |
+
#: modules/callout/callout.php:15
|
2493 |
+
msgid "A heading and snippet of text with an optional link, icon and image."
|
2494 |
+
msgstr ""
|
2495 |
+
"Заголовок и отрывок текста (опционально: ссылка, иконка или изображение)."
|
2496 |
+
|
2497 |
+
#: modules/callout/callout.php:216
|
2498 |
+
#: modules/content-slider/content-slider.php:413
|
2499 |
+
#: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
|
2500 |
+
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
2501 |
+
#: modules/testimonials/testimonials.php:56
|
2502 |
+
#: modules/testimonials/testimonials.php:61
|
2503 |
+
msgid "Heading"
|
2504 |
+
msgstr "Заголовок"
|
2505 |
+
|
2506 |
+
#: modules/callout/callout.php:248
|
2507 |
+
msgid "Overall Alignment"
|
2508 |
+
msgstr "Общее выравнивание"
|
2509 |
+
|
2510 |
+
#: modules/callout/callout.php:255
|
2511 |
+
msgid "The alignment that will apply to all elements within the callout."
|
2512 |
+
msgstr "Выравнивание всех элементов выноски"
|
2513 |
+
|
2514 |
+
#: modules/callout/callout.php:263 modules/cta/cta.php:147
|
2515 |
+
msgid "Heading Structure"
|
2516 |
+
msgstr "Структура заголовка"
|
2517 |
+
|
2518 |
+
#: modules/callout/callout.php:267
|
2519 |
+
#: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
|
2520 |
+
msgid "Heading Tag"
|
2521 |
+
msgstr "Тег заголовка"
|
2522 |
+
|
2523 |
+
#: modules/callout/callout.php:280
|
2524 |
+
#: modules/content-slider/content-slider.php:445
|
2525 |
+
#: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
|
2526 |
+
#: modules/testimonials/testimonials.php:69
|
2527 |
+
msgid "Heading Size"
|
2528 |
+
msgstr "Размер заголовка"
|
2529 |
+
|
2530 |
+
#: modules/callout/callout.php:294 modules/cta/cta.php:178
|
2531 |
+
msgid "Heading Custom Size"
|
2532 |
+
msgstr "Заданный размер заголовка"
|
2533 |
+
|
2534 |
+
#: modules/callout/callout.php:312
|
2535 |
+
msgid "Image Type"
|
2536 |
+
msgstr "Тип изображения"
|
2537 |
+
|
2538 |
+
#: modules/callout/callout.php:315
|
2539 |
+
msgctxt "Image type."
|
2540 |
+
msgid "None"
|
2541 |
+
msgstr "Нет"
|
2542 |
+
|
2543 |
+
#: modules/callout/callout.php:340 modules/photo/photo.php:401
|
2544 |
+
#: modules/slideshow/slideshow.php:312
|
2545 |
+
msgid "Crop"
|
2546 |
+
msgstr "Обрезка"
|
2547 |
+
|
2548 |
+
#: modules/callout/callout.php:343
|
2549 |
+
msgctxt "Crop"
|
2550 |
+
msgid "None"
|
2551 |
+
msgstr "Нет"
|
2552 |
+
|
2553 |
+
#: modules/callout/callout.php:344 modules/photo/photo.php:405
|
2554 |
+
msgid "Landscape"
|
2555 |
+
msgstr "Пейзаж"
|
2556 |
+
|
2557 |
+
#: modules/callout/callout.php:345 modules/photo/photo.php:406
|
2558 |
+
msgid "Panorama"
|
2559 |
+
msgstr "Панорама"
|
2560 |
+
|
2561 |
+
#: modules/callout/callout.php:346 modules/photo/photo.php:407
|
2562 |
+
msgid "Portrait"
|
2563 |
+
msgstr "Портрет"
|
2564 |
+
|
2565 |
+
#: modules/callout/callout.php:347 modules/photo/photo.php:408
|
2566 |
+
msgid "Square"
|
2567 |
+
msgstr "Квадрат"
|
2568 |
+
|
2569 |
+
#: modules/callout/callout.php:348 modules/photo/photo.php:409
|
2570 |
+
msgid "Circle"
|
2571 |
+
msgstr "Круг"
|
2572 |
+
|
2573 |
+
#: modules/callout/callout.php:356 modules/callout/callout.php:376
|
2574 |
+
msgid "Above Heading"
|
2575 |
+
msgstr "Над заголовком"
|
2576 |
+
|
2577 |
+
#: modules/callout/callout.php:357 modules/callout/callout.php:377
|
2578 |
+
msgid "Below Heading"
|
2579 |
+
msgstr "Под заголовком"
|
2580 |
+
|
2581 |
+
#: modules/callout/callout.php:358 modules/callout/callout.php:380
|
2582 |
+
msgid "Left of Text and Heading"
|
2583 |
+
msgstr "Слева от текста и заголовка"
|
2584 |
+
|
2585 |
+
#: modules/callout/callout.php:359 modules/callout/callout.php:381
|
2586 |
+
msgid "Right of Text and Heading"
|
2587 |
+
msgstr "Справа от текста и заголовка"
|
2588 |
+
|
2589 |
+
#: modules/callout/callout.php:378
|
2590 |
+
msgid "Left of Heading"
|
2591 |
+
msgstr "Слева от заголовка"
|
2592 |
+
|
2593 |
+
#: modules/callout/callout.php:379
|
2594 |
+
msgid "Right of Heading"
|
2595 |
+
msgstr "Справа от заголовка"
|
2596 |
+
|
2597 |
+
#: modules/callout/callout.php:387
|
2598 |
+
msgid "Icon Colors"
|
2599 |
+
msgstr "Цвет иконки"
|
2600 |
+
|
2601 |
+
#: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
|
2602 |
+
#: modules/icon/icon.php:87
|
2603 |
+
msgid "Hover Color"
|
2604 |
+
msgstr "Цвет при наведении"
|
2605 |
+
|
2606 |
+
#: modules/callout/callout.php:427
|
2607 |
+
msgid "Icon Structure"
|
2608 |
+
msgstr "Структура иконки"
|
2609 |
+
|
2610 |
+
#: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
|
2611 |
+
#: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
|
2612 |
+
msgid "Size"
|
2613 |
+
msgstr "Размер"
|
2614 |
+
|
2615 |
+
#: modules/callout/callout.php:442
|
2616 |
+
#: modules/content-slider/content-slider.php:570
|
2617 |
+
msgid "Call To Action"
|
2618 |
+
msgstr "Призыв к действию"
|
2619 |
+
|
2620 |
+
#: modules/callout/callout.php:450
|
2621 |
+
msgid ""
|
2622 |
+
"The link applies to the entire module. If choosing a call to action type "
|
2623 |
+
"below, this link will also be used for the text or button."
|
2624 |
+
msgstr ""
|
2625 |
+
"Весь модуль будет ссылкой. Если выбрать тип призыва к действию ниже, ссылкой "
|
2626 |
+
"будут также текст или кнопка."
|
2627 |
+
|
2628 |
+
#: modules/callout/callout.php:470
|
2629 |
+
#: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
|
2630 |
+
msgid "Call to Action"
|
2631 |
+
msgstr "Призыв к действию"
|
2632 |
+
|
2633 |
+
#: modules/callout/callout.php:477
|
2634 |
+
#: modules/content-slider/content-slider.php:599
|
2635 |
+
msgctxt "Call to action."
|
2636 |
+
msgid "None"
|
2637 |
+
msgstr "Нет"
|
2638 |
+
|
2639 |
+
#: modules/callout/callout.php:498
|
2640 |
+
#: modules/content-slider/content-slider.php:620
|
2641 |
+
msgid "Button Icon"
|
2642 |
+
msgstr "Иконка кнопки"
|
2643 |
+
|
2644 |
+
#: modules/callout/callout.php:504
|
2645 |
+
#: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
|
2646 |
+
msgid "Button Colors"
|
2647 |
+
msgstr "Цвета кнопки"
|
2648 |
+
|
2649 |
+
#: modules/callout/callout.php:539
|
2650 |
+
#: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
|
2651 |
+
msgid "Button Style"
|
2652 |
+
msgstr "Стиль кнопки"
|
2653 |
+
|
2654 |
+
#: modules/callout/callout.php:577
|
2655 |
+
#: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
|
2656 |
+
msgid "Button Structure"
|
2657 |
+
msgstr "Структура кнопки"
|
2658 |
+
|
2659 |
+
#: modules/callout/callout.php:581
|
2660 |
+
msgid "Button Width"
|
2661 |
+
msgstr "Ширина кнопки"
|
2662 |
+
|
2663 |
+
#: modules/contact-form/contact-form.php:14
|
2664 |
+
msgid "Contact Form"
|
2665 |
+
msgstr "Контактная форма"
|
2666 |
+
|
2667 |
+
#: modules/contact-form/contact-form.php:15
|
2668 |
+
msgid "A very simple contact form."
|
2669 |
+
msgstr "Простая контактная форма"
|
2670 |
+
|
2671 |
+
#: modules/contact-form/contact-form.php:36
|
2672 |
+
msgid "Contact Form Submission"
|
2673 |
+
msgstr "Отправка контактной форма"
|
2674 |
+
|
2675 |
+
#: modules/contact-form/contact-form.php:64
|
2676 |
+
msgid "Send To Email"
|
2677 |
+
msgstr "Отправить на Email"
|
2678 |
+
|
2679 |
+
#: modules/contact-form/contact-form.php:66
|
2680 |
+
msgid "example@mail.com"
|
2681 |
+
msgstr "primer@adresa.com"
|
2682 |
+
|
2683 |
+
#: modules/contact-form/contact-form.php:67
|
2684 |
+
msgid "The contact form will send to this e-mail"
|
2685 |
+
msgstr "Контактная форма будет отправлена на этот e-mail"
|
2686 |
+
|
2687 |
+
#: modules/contact-form/includes/frontend.php:4
|
2688 |
+
msgctxt "Contact form field label."
|
2689 |
+
msgid "Name"
|
2690 |
+
msgstr "Имя"
|
2691 |
+
|
2692 |
+
#: modules/contact-form/includes/frontend.php:5
|
2693 |
+
msgid "Please enter your name."
|
2694 |
+
msgstr "Пожалуйста, укажите свое имя"
|
2695 |
+
|
2696 |
+
#: modules/contact-form/includes/frontend.php:6
|
2697 |
+
msgid "Your name"
|
2698 |
+
msgstr "Ваше имя"
|
2699 |
+
|
2700 |
+
#: modules/contact-form/includes/frontend.php:10
|
2701 |
+
msgid "Email"
|
2702 |
+
msgstr "Email"
|
2703 |
+
|
2704 |
+
#: modules/contact-form/includes/frontend.php:11
|
2705 |
+
msgid "Please enter a valid email."
|
2706 |
+
msgstr "Пожалуйста, введите действительный адрес электронной почты."
|
2707 |
+
|
2708 |
+
#: modules/contact-form/includes/frontend.php:12
|
2709 |
+
msgid "Your email"
|
2710 |
+
msgstr "Ваш email"
|
2711 |
+
|
2712 |
+
#: modules/contact-form/includes/frontend.php:16
|
2713 |
+
msgid "Your Message"
|
2714 |
+
msgstr "Ваше cообщение"
|
2715 |
+
|
2716 |
+
#: modules/contact-form/includes/frontend.php:17
|
2717 |
+
msgid "Please enter a message."
|
2718 |
+
msgstr "Пожалуйста, введите ваше сообщение."
|
2719 |
+
|
2720 |
+
#: modules/contact-form/includes/frontend.php:18
|
2721 |
+
msgid "Your message"
|
2722 |
+
msgstr "Ваше сообщение"
|
2723 |
+
|
2724 |
+
#: modules/contact-form/includes/frontend.php:23
|
2725 |
+
msgid "Send"
|
2726 |
+
msgstr "Отправить"
|
2727 |
+
|
2728 |
+
#: modules/contact-form/includes/frontend.php:24
|
2729 |
+
msgid "Message Sent!"
|
2730 |
+
msgstr "Сообщение отправлено"
|
2731 |
+
|
2732 |
+
#: modules/contact-form/includes/frontend.php:25
|
2733 |
+
msgid "Message failed. Please try again."
|
2734 |
+
msgstr "Отправка не удалась. Пожалуйста, попробуйте еще раз."
|
2735 |
+
|
2736 |
+
#: modules/content-slider/content-slider.php:14
|
2737 |
+
msgid "Content Slider"
|
2738 |
+
msgstr "Информационный слайдер"
|
2739 |
+
|
2740 |
+
#: modules/content-slider/content-slider.php:15
|
2741 |
+
msgid "Displays multiple slides with an optional heading and call to action."
|
2742 |
+
msgstr "Отображает слайды с опциональными заголовками или призывами к действию."
|
2743 |
+
|
2744 |
+
#: modules/content-slider/content-slider.php:197 modules/map/map.php:41
|
2745 |
+
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2746 |
+
msgid "Height"
|
2747 |
+
msgstr "Высота"
|
2748 |
+
|
2749 |
+
#: modules/content-slider/content-slider.php:202
|
2750 |
+
msgid ""
|
2751 |
+
"This setting is the minimum height of the content slider. Content will expand "
|
2752 |
+
"the height automatically."
|
2753 |
+
msgstr ""
|
2754 |
+
"Определение минимальной высоты слайдера. Высота будет автоматически "
|
2755 |
+
"увеличена, чтобы вместить содержимое."
|
2756 |
+
|
2757 |
+
#: modules/content-slider/content-slider.php:206
|
2758 |
+
#: modules/slideshow/slideshow.php:373 modules/testimonials/testimonials.php:82
|
2759 |
+
#: modules/video/video.php:108
|
2760 |
+
msgid "Auto Play"
|
2761 |
+
msgstr "Автовоспроизведение"
|
2762 |
+
|
2763 |
+
#: modules/content-slider/content-slider.php:220
|
2764 |
+
msgid "Show Play/Pause"
|
2765 |
+
msgstr "Показать кнопку воспроизведения/паузы"
|
2766 |
+
|
2767 |
+
#: modules/content-slider/content-slider.php:240
|
2768 |
+
#: modules/testimonials/testimonials.php:102
|
2769 |
+
msgctxt "Transition type."
|
2770 |
+
msgid "Slide"
|
2771 |
+
msgstr "Смещение"
|
2772 |
+
|
2773 |
+
#: modules/content-slider/content-slider.php:254
|
2774 |
+
#: modules/testimonials/testimonials.php:121
|
2775 |
+
msgid "Show Arrows"
|
2776 |
+
msgstr "Показать стрелки"
|
2777 |
+
|
2778 |
+
#: modules/content-slider/content-slider.php:263
|
2779 |
+
#: modules/testimonials/testimonials.php:151
|
2780 |
+
msgid "Show Dots"
|
2781 |
+
msgstr "Показать точки"
|
2782 |
+
|
2783 |
+
#: modules/content-slider/content-slider.php:277
|
2784 |
+
msgid "Max Content Width"
|
2785 |
+
msgstr "Максимальная ширина содержимого"
|
2786 |
+
|
2787 |
+
#: modules/content-slider/content-slider.php:282
|
2788 |
+
msgid "The max width that the content area will be within your slides."
|
2789 |
+
msgstr "Максимальная ширина, которую примет содержимое ваших слайдов."
|
2790 |
+
|
2791 |
+
#: modules/content-slider/content-slider.php:289
|
2792 |
+
msgid "Slides"
|
2793 |
+
msgstr "Слайды"
|
2794 |
+
|
2795 |
+
#: modules/content-slider/content-slider.php:296
|
2796 |
+
msgid "Slide"
|
2797 |
+
msgstr "Слайд"
|
2798 |
+
|
2799 |
+
#: modules/content-slider/content-slider.php:311
|
2800 |
+
msgid "Slide Settings"
|
2801 |
+
msgstr "Настройки слайда"
|
2802 |
+
|
2803 |
+
#: modules/content-slider/content-slider.php:321
|
2804 |
+
msgid "Slide Label"
|
2805 |
+
msgstr "Ярлык"
|
2806 |
+
|
2807 |
+
#: modules/content-slider/content-slider.php:322
|
2808 |
+
msgid ""
|
2809 |
+
"A label to identify this slide on the Slides tab of the Content Slider "
|
2810 |
+
"settings."
|
2811 |
+
msgstr "Ярлык для идентификации в списке слайдов данного модуля."
|
2812 |
+
|
2813 |
+
#: modules/content-slider/content-slider.php:327
|
2814 |
+
msgid "Background Layout"
|
2815 |
+
msgstr "Свойства фона"
|
2816 |
+
|
2817 |
+
#: modules/content-slider/content-slider.php:333
|
2818 |
+
msgid "This setting is for the entire background of your slide."
|
2819 |
+
msgstr "Настройка фона слайда"
|
2820 |
+
|
2821 |
+
#: modules/content-slider/content-slider.php:368
|
2822 |
+
msgid "Background Video Code"
|
2823 |
+
msgstr "Код фонового видео"
|
2824 |
+
|
2825 |
+
#: modules/content-slider/content-slider.php:374
|
2826 |
+
msgid "Content Layout"
|
2827 |
+
msgstr "Свойства содержимого"
|
2828 |
+
|
2829 |
+
#: modules/content-slider/content-slider.php:380
|
2830 |
+
msgid ""
|
2831 |
+
"This allows you to add content over or in addition to the background "
|
2832 |
+
"selection above. The location of the content layout can be selected in the "
|
2833 |
+
"style tab."
|
2834 |
+
msgstr ""
|
2835 |
+
"Эта опция позволяет расположить содержимое поверх выбранного выше фона. "
|
2836 |
+
"Расположение содержимого определяется во вкладке «стиль»"
|
2837 |
+
|
2838 |
+
#: modules/content-slider/content-slider.php:383
|
2839 |
+
msgid "Text & Photo"
|
2840 |
+
msgstr "Текст и фото"
|
2841 |
+
|
2842 |
+
#: modules/content-slider/content-slider.php:384
|
2843 |
+
msgid "Text & Video"
|
2844 |
+
msgstr "Текст и видео"
|
2845 |
+
|
2846 |
+
#: modules/content-slider/content-slider.php:385
|
2847 |
+
msgctxt "Content type."
|
2848 |
+
msgid "None"
|
2849 |
+
msgstr "Пустой"
|
2850 |
+
|
2851 |
+
#: modules/content-slider/content-slider.php:408 modules/video/video.php:132
|
2852 |
+
msgid "Video Embed Code"
|
2853 |
+
msgstr "Код вставки видео"
|
2854 |
+
|
2855 |
+
#: modules/content-slider/content-slider.php:468
|
2856 |
+
msgid "Text Position"
|
2857 |
+
msgstr "Положение текста"
|
2858 |
+
|
2859 |
+
#: modules/content-slider/content-slider.php:474
|
2860 |
+
msgid ""
|
2861 |
+
"The position will move the content layout selections left, right or center "
|
2862 |
+
"over the background of the slide."
|
2863 |
+
msgstr ""
|
2864 |
+
"Выберите расположение текста относительно фона данного слайда по горизонтали."
|
2865 |
+
|
2866 |
+
#: modules/content-slider/content-slider.php:491
|
2867 |
+
msgid "Top Margin"
|
2868 |
+
msgstr "Отступ сверху"
|
2869 |
+
|
2870 |
+
#: modules/content-slider/content-slider.php:499
|
2871 |
+
msgid "Bottom Margin"
|
2872 |
+
msgstr "Отступ снизу"
|
2873 |
+
|
2874 |
+
#: modules/content-slider/content-slider.php:507
|
2875 |
+
msgid "Left Margin"
|
2876 |
+
msgstr "Отступ слева"
|
2877 |
+
|
2878 |
+
#: modules/content-slider/content-slider.php:515
|
2879 |
+
msgid "Right Margin"
|
2880 |
+
msgstr "Отступ справа"
|
2881 |
+
|
2882 |
+
#: modules/content-slider/content-slider.php:524
|
2883 |
+
msgid "Text Colors"
|
2884 |
+
msgstr "Цвет текста"
|
2885 |
+
|
2886 |
+
#: modules/content-slider/content-slider.php:534
|
2887 |
+
msgid "Text Shadow"
|
2888 |
+
msgstr "Тень текста"
|
2889 |
+
|
2890 |
+
#: modules/content-slider/content-slider.php:543
|
2891 |
+
#: modules/content-slider/content-slider.php:760
|
2892 |
+
msgid "Text Background Color"
|
2893 |
+
msgstr "Цвет фона текста"
|
2894 |
+
|
2895 |
+
#: modules/content-slider/content-slider.php:544
|
2896 |
+
msgid ""
|
2897 |
+
"The color applies to the overlay behind text over the background selections."
|
2898 |
+
msgstr "Цвет подложки для отделения текста от фонового изображения или видео."
|
2899 |
+
|
2900 |
+
#: modules/content-slider/content-slider.php:549
|
2901 |
+
msgid "Text Background Opacity"
|
2902 |
+
msgstr "Непрозрачность подложки"
|
2903 |
+
|
2904 |
+
#: modules/content-slider/content-slider.php:557
|
2905 |
+
msgid "Text Background Height"
|
2906 |
+
msgstr "Высота подложки"
|
2907 |
+
|
2908 |
+
#: modules/content-slider/content-slider.php:559
|
2909 |
+
msgid ""
|
2910 |
+
"Auto will allow the overlay to fit however long the text content is. 100% "
|
2911 |
+
"will fit the overlay to the top and bottom of the slide."
|
2912 |
+
msgstr ""
|
2913 |
+
"Значение «автоматически» подстроится под ваш текст, «100%» заполнит весь "
|
2914 |
+
"слайд."
|
2915 |
+
|
2916 |
+
#: modules/content-slider/content-slider.php:561
|
2917 |
+
msgctxt "Background height."
|
2918 |
+
msgid "Auto"
|
2919 |
+
msgstr "Автоматически"
|
2920 |
+
|
2921 |
+
#: modules/content-slider/content-slider.php:578
|
2922 |
+
msgid ""
|
2923 |
+
"The link applies to the entire slide. If choosing a call to action type "
|
2924 |
+
"below, this link will also be used for the text or button."
|
2925 |
+
msgstr ""
|
2926 |
+
"Весь слайд будет ссылкой. Если ниже будет выбран тип призыва к действию, туда "
|
2927 |
+
"же будут ссылаться заголовок или кнопка."
|
2928 |
+
|
2929 |
+
#: modules/content-slider/content-slider.php:711
|
2930 |
+
msgid "Border Radius"
|
2931 |
+
msgstr "Радиус закругления"
|
2932 |
+
|
2933 |
+
#: modules/content-slider/content-slider.php:722
|
2934 |
+
msgctxt "Module settings form tab. Display on mobile devices."
|
2935 |
+
msgid "Mobile"
|
2936 |
+
msgstr "Для телефонов"
|
2937 |
+
|
2938 |
+
#: modules/content-slider/content-slider.php:725
|
2939 |
+
msgid "Mobile Photo"
|
2940 |
+
msgstr "Фото для телефонов"
|
2941 |
+
|
2942 |
+
#: modules/content-slider/content-slider.php:731
|
2943 |
+
msgid ""
|
2944 |
+
"You can choose a different photo that the slide will change to on mobile "
|
2945 |
+
"devices or no photo if desired."
|
2946 |
+
msgstr ""
|
2947 |
+
"Вы можете выбрать другое фото для этого слайда для отображения на телефонах, "
|
2948 |
+
"или отключить изображение, если желаете."
|
2949 |
+
|
2950 |
+
#: modules/content-slider/content-slider.php:733
|
2951 |
+
msgid "Use Main Photo"
|
2952 |
+
msgstr "Использовать основное фото"
|
2953 |
+
|
2954 |
+
#: modules/content-slider/content-slider.php:734
|
2955 |
+
msgid "Choose Another Photo"
|
2956 |
+
msgstr "Выбрать другое фото"
|
2957 |
+
|
2958 |
+
#: modules/content-slider/content-slider.php:735
|
2959 |
+
msgid "No Photo"
|
2960 |
+
msgstr "Без фото"
|
2961 |
+
|
2962 |
+
#: modules/content-slider/content-slider.php:750
|
2963 |
+
msgid "Mobile Text Colors"
|
2964 |
+
msgstr "Цвет текста для телефонов"
|
2965 |
+
|
2966 |
+
#: modules/cta/cta.php:15
|
2967 |
+
msgid "Display a heading, subheading and a button."
|
2968 |
+
msgstr "Показать заголовок, подзаголовок и кнопку."
|
2969 |
+
|
2970 |
+
#: modules/cta/cta.php:75
|
2971 |
+
msgid "Ready to find out more?"
|
2972 |
+
msgstr "Вы готовы узнать больше?"
|
2973 |
+
|
2974 |
+
#: modules/cta/cta.php:90
|
2975 |
+
msgid "Drop us a line today for a free quote!"
|
2976 |
+
msgstr "Напишите нам сегодня для бесплатного цитирования!"
|
2977 |
+
|
2978 |
+
#: modules/cta/cta.php:108 modules/gallery/gallery.php:220
|
2979 |
+
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
2980 |
+
#: modules/testimonials/testimonials.php:37
|
2981 |
+
#: modules/woocommerce/woocommerce.php:57
|
2982 |
+
msgid "Layout"
|
2983 |
+
msgstr "Макет"
|
2984 |
+
|
2985 |
+
#: modules/cta/cta.php:111
|
2986 |
+
msgid "Inline"
|
2987 |
+
msgstr "Строчный"
|
2988 |
+
|
2989 |
+
#: modules/cta/cta.php:112
|
2990 |
+
msgid "Stacked"
|
2991 |
+
msgstr "Блочный"
|
2992 |
+
|
2993 |
+
#: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
|
2994 |
+
msgid "Spacing"
|
2995 |
+
msgstr "Отступ"
|
2996 |
+
|
2997 |
+
#: modules/cta/cta.php:236
|
2998 |
+
msgid "Button Link"
|
2999 |
+
msgstr "Сслыка кнопки"
|
3000 |
+
|
3001 |
+
#: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
|
3002 |
+
msgid "Gallery"
|
3003 |
+
msgstr "Галерея"
|
3004 |
+
|
3005 |
+
#: modules/gallery/gallery.php:15
|
3006 |
+
msgid "Display multiple photos in a gallery view."
|
3007 |
+
msgstr "Отображать несколько фотографий в режиме галереи."
|
3008 |
+
|
3009 |
+
#: modules/gallery/gallery.php:223
|
3010 |
+
msgid "Collage"
|
3011 |
+
msgstr "Коллаж"
|
3012 |
+
|
3013 |
+
#: modules/gallery/gallery.php:224
|
3014 |
+
msgctxt "Gallery layout: thumbnails."
|
3015 |
+
msgid "Thumbs"
|
3016 |
+
msgstr "Миниатюры"
|
3017 |
+
|
3018 |
+
#: modules/gallery/gallery.php:260
|
3019 |
+
msgid "Photo Size"
|
3020 |
+
msgstr "Размер фотографии"
|
3021 |
+
|
3022 |
+
#: modules/gallery/gallery.php:263
|
3023 |
+
msgctxt "Photo size."
|
3024 |
+
msgid "Small"
|
3025 |
+
msgstr "Маленьки"
|
3026 |
+
|
3027 |
+
#: modules/gallery/gallery.php:264
|
3028 |
+
msgctxt "Photo size."
|
3029 |
+
msgid "Medium"
|
3030 |
+
msgstr "Средний"
|
3031 |
+
|
3032 |
+
#: modules/gallery/gallery.php:265
|
3033 |
+
msgctxt "Photo size."
|
3034 |
+
msgid "Large"
|
3035 |
+
msgstr "Большой"
|
3036 |
+
|
3037 |
+
#: modules/gallery/gallery.php:270
|
3038 |
+
msgid "Photo Spacing"
|
3039 |
+
msgstr "Поля фотографии"
|
3040 |
+
|
3041 |
+
#: modules/gallery/gallery.php:278
|
3042 |
+
msgid "Show Captions"
|
3043 |
+
msgstr "Показать заголовки"
|
3044 |
+
|
3045 |
+
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
3046 |
+
msgid "Never"
|
3047 |
+
msgstr "Никогда"
|
3048 |
+
|
3049 |
+
#: modules/gallery/gallery.php:282 modules/photo/photo.php:433
|
3050 |
+
msgid "On Hover"
|
3051 |
+
msgstr "При наведении"
|
3052 |
+
|
3053 |
+
#: modules/gallery/gallery.php:283 modules/photo/photo.php:434
|
3054 |
+
msgid "Below Photo"
|
3055 |
+
msgstr "Под фотографией"
|
3056 |
+
|
3057 |
+
#: modules/gallery/gallery.php:285
|
3058 |
+
msgid ""
|
3059 |
+
"The caption pulls from whatever text you put in the caption area in the media "
|
3060 |
+
"manager for each image. The caption is also pulled directly from SmugMug if "
|
3061 |
+
"you have captions set in your gallery."
|
3062 |
+
msgstr ""
|
3063 |
+
"Заголовок для каждого изображения берется из соответствующего поля в медиа "
|
3064 |
+
"библиотеке. Если вы пользуетесь SmugMug, заголовок берется оттуда, если "
|
3065 |
+
"заголовки там включены."
|
3066 |
+
|
3067 |
+
#: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
|
3068 |
+
msgid "Click Action"
|
3069 |
+
msgstr "Действие при нажатии"
|
3070 |
+
|
3071 |
+
#: modules/gallery/gallery.php:292
|
3072 |
+
msgctxt "Click action."
|
3073 |
+
msgid "None"
|
3074 |
+
msgstr "Нет"
|
3075 |
+
|
3076 |
+
#: modules/gallery/gallery.php:293 modules/photo/photo.php:452
|
3077 |
+
msgid "Lightbox"
|
3078 |
+
msgstr "Лайтбокс"
|
3079 |
+
|
3080 |
+
#: modules/gallery/gallery.php:294
|
3081 |
+
msgid "Photo Link"
|
3082 |
+
msgstr "Открытие ссылки"
|
3083 |
+
|
3084 |
+
#: modules/heading/heading.php:15
|
3085 |
+
msgid "Display a title/page heading."
|
3086 |
+
msgstr "Отображать название/заголовок страницы"
|
3087 |
+
|
3088 |
+
#: modules/heading/heading.php:101
|
3089 |
+
msgid "HTML Tag"
|
3090 |
+
msgstr "Тег HTML"
|
3091 |
+
|
3092 |
+
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
3093 |
+
msgid "Custom Font Size"
|
3094 |
+
msgstr "Заданный размер шрифта"
|
3095 |
+
|
3096 |
+
#: modules/heading/heading.php:137
|
3097 |
+
msgid "Mobile Structure"
|
3098 |
+
msgstr "Структура при просмотре с телефона"
|
3099 |
+
|
3100 |
+
#: modules/heading/heading.php:158
|
3101 |
+
msgid "Custom Alignment"
|
3102 |
+
msgstr "Заданное выравнивание"
|
3103 |
+
|
3104 |
+
#: modules/html/html.php:14
|
3105 |
+
msgid "HTML"
|
3106 |
+
msgstr "HTML"
|
3107 |
+
|
3108 |
+
#: modules/html/html.php:15
|
3109 |
+
msgid "Display raw HTML code."
|
3110 |
+
msgstr "Отображать исходный HTML код."
|
3111 |
+
|
3112 |
+
#: modules/icon-group/icon-group.php:14
|
3113 |
+
msgid "Icon Group"
|
3114 |
+
msgstr "Группа иконок"
|
3115 |
+
|
3116 |
+
#: modules/icon-group/icon-group.php:15
|
3117 |
+
msgid "Display a group of linked Font Awesome icons."
|
3118 |
+
msgstr "Показать группу привязанных иконок Font Awesome."
|
3119 |
+
|
3120 |
+
#: modules/icon-group/icon-group.php:125
|
3121 |
+
msgid "Add Icon"
|
3122 |
+
msgstr "Добавить иконку"
|
3123 |
+
|
3124 |
+
#: modules/icon/icon.php:15
|
3125 |
+
msgid "Display an icon and optional title."
|
3126 |
+
msgstr "Показать иконку и дополнительный заголовок."
|
3127 |
+
|
3128 |
+
#: modules/map/map.php:14
|
3129 |
+
msgid "Map"
|
3130 |
+
msgstr "Карта"
|
3131 |
+
|
3132 |
+
#: modules/map/map.php:15
|
3133 |
+
msgid "Display a Google map."
|
3134 |
+
msgstr "Показать карту Google."
|
3135 |
+
|
3136 |
+
#: modules/map/map.php:33
|
3137 |
+
msgid "Address"
|
3138 |
+
msgstr "Адрес"
|
3139 |
+
|
3140 |
+
#: modules/map/map.php:34
|
3141 |
+
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
3142 |
+
msgstr "Дворцовая наб., 32, Санкт-Петербург, 190000"
|
3143 |
+
|
3144 |
+
#: modules/photo/photo.php:26
|
3145 |
+
msgid "Upload a photo or display one from the media library."
|
3146 |
+
msgstr "Загрузить фото или выбрать его из медиа библиотеки."
|
3147 |
+
|
3148 |
+
#: modules/photo/photo.php:375
|
3149 |
+
msgid "Photo Source"
|
3150 |
+
msgstr "Источник фото"
|
3151 |
+
|
3152 |
+
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
3153 |
+
msgid "URL"
|
3154 |
+
msgstr "URL"
|
3155 |
+
|
3156 |
+
#: modules/photo/photo.php:396
|
3157 |
+
msgid "Photo URL"
|
3158 |
+
msgstr "URL фотограии"
|
3159 |
+
|
3160 |
+
#: modules/photo/photo.php:397
|
3161 |
+
msgid "http://www.example.com/my-photo.jpg"
|
3162 |
+
msgstr "http://www.primer.com/moye-photo.jpg"
|
3163 |
+
|
3164 |
+
#: modules/photo/photo.php:404
|
3165 |
+
msgctxt "Crop."
|
3166 |
+
msgid "None"
|
3167 |
+
msgstr "Нет"
|
3168 |
+
|
3169 |
+
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
3170 |
+
msgid "Caption"
|
3171 |
+
msgstr "Заголовок"
|
3172 |
+
|
3173 |
+
#: modules/photo/photo.php:429
|
3174 |
+
msgid "Show Caption"
|
3175 |
+
msgstr "Показать заголовок"
|
3176 |
+
|
3177 |
+
#: modules/photo/photo.php:448
|
3178 |
+
msgid "Link Type"
|
3179 |
+
msgstr "Тип ссылки"
|
3180 |
+
|
3181 |
+
#: modules/photo/photo.php:450
|
3182 |
+
msgctxt "Link type."
|
3183 |
+
msgid "None"
|
3184 |
+
msgstr "Нет"
|
3185 |
+
|
3186 |
+
#: modules/photo/photo.php:453
|
3187 |
+
msgid "Photo File"
|
3188 |
+
msgstr "Файл фотограии"
|
3189 |
+
|
3190 |
+
#: modules/photo/photo.php:464
|
3191 |
+
msgid ""
|
3192 |
+
"Link type applies to how the image should be linked on click. You can choose "
|
3193 |
+
"a specific URL, the individual photo or a separate page with the photo."
|
3194 |
+
msgstr ""
|
3195 |
+
"Тип ссылки определяет, что происходит при нажатии на изображение. Вы можете "
|
3196 |
+
"указать ссылку на определенный адрес, отдельную фотографию или страницу с "
|
3197 |
+
"этой фотографией."
|
3198 |
+
|
3199 |
+
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
3200 |
+
msgid "Link URL"
|
3201 |
+
msgstr "URL ссылки"
|
3202 |
+
|
3203 |
+
#: modules/post-grid/includes/frontend.php:41
|
3204 |
+
msgid "No posts found."
|
3205 |
+
msgstr "Не найдено записей."
|
3206 |
+
|
3207 |
+
#: modules/post-grid/includes/post-feed.php:14
|
3208 |
+
#: modules/post-grid/includes/post-grid.php:24
|
3209 |
+
#, php-format
|
3210 |
+
msgctxt "%s stands for author name."
|
3211 |
+
msgid "By %s"
|
3212 |
+
msgstr "Автор: %s"
|
3213 |
+
|
3214 |
+
#: modules/post-grid/post-grid.php:14
|
3215 |
+
msgid "Posts"
|
3216 |
+
msgstr "Записи"
|
3217 |
+
|
3218 |
+
#: modules/post-grid/post-grid.php:15
|
3219 |
+
msgid "Display a grid of your WordPress posts."
|
3220 |
+
msgstr "Показать список ваших записей Вордпресс."
|
3221 |
+
|
3222 |
+
#: modules/post-grid/post-grid.php:51
|
3223 |
+
msgid "Layout Style"
|
3224 |
+
msgstr "Стиль отображения"
|
3225 |
+
|
3226 |
+
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
3227 |
+
msgid "Grid"
|
3228 |
+
msgstr "Сетка"
|
3229 |
+
|
3230 |
+
#: modules/post-grid/post-grid.php:56
|
3231 |
+
msgid "Feed"
|
3232 |
+
msgstr "Блог"
|
3233 |
+
|
3234 |
+
#: modules/post-grid/post-grid.php:71
|
3235 |
+
msgid "Pagination Style"
|
3236 |
+
msgstr "Стиль постраничной навигации"
|
3237 |
+
|
3238 |
+
#: modules/post-grid/post-grid.php:74
|
3239 |
+
msgid "Numbers"
|
3240 |
+
msgstr "Номера"
|
3241 |
+
|
3242 |
+
#: modules/post-grid/post-grid.php:76
|
3243 |
+
msgctxt "Pagination style."
|
3244 |
+
msgid "None"
|
3245 |
+
msgstr "Нет"
|
3246 |
+
|
3247 |
+
#: modules/post-grid/post-grid.php:81
|
3248 |
+
msgid "Posts Per Page"
|
3249 |
+
msgstr "Записей на странице"
|
3250 |
+
|
3251 |
+
#: modules/post-grid/post-grid.php:92
|
3252 |
+
msgid "Post Width"
|
3253 |
+
msgstr "Ширина запией"
|
3254 |
+
|
3255 |
+
#: modules/post-grid/post-grid.php:100
|
3256 |
+
msgid "Post Spacing"
|
3257 |
+
msgstr "Поля записей"
|
3258 |
+
|
3259 |
+
#: modules/post-grid/post-grid.php:109
|
3260 |
+
msgid "Featured Image"
|
3261 |
+
msgstr "Миниатюра"
|
3262 |
+
|
3263 |
+
#: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
|
3264 |
+
#: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
|
3265 |
+
#: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
|
3266 |
+
msgid "Show"
|
3267 |
+
msgstr "Показывать"
|
3268 |
+
|
3269 |
+
#: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
|
3270 |
+
#: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
|
3271 |
+
#: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
|
3272 |
+
msgid "Hide"
|
3273 |
+
msgstr "Прятать"
|
3274 |
+
|
3275 |
+
#: modules/post-grid/post-grid.php:130
|
3276 |
+
msgid "Above Text"
|
3277 |
+
msgstr "Над текстом"
|
3278 |
+
|
3279 |
+
#: modules/post-grid/post-grid.php:131
|
3280 |
+
msgid "Beside Text"
|
3281 |
+
msgstr "Рядом с текстом"
|
3282 |
+
|
3283 |
+
#: modules/post-grid/post-grid.php:142
|
3284 |
+
msgid "Post Info"
|
3285 |
+
msgstr "Информация о записи"
|
3286 |
+
|
3287 |
+
#: modules/post-grid/post-grid.php:169
|
3288 |
+
msgid "Date Format"
|
3289 |
+
msgstr "Формат даты"
|
3290 |
+
|
3291 |
+
#: modules/post-grid/post-grid.php:185
|
3292 |
+
msgid "Comments"
|
3293 |
+
msgstr "Комментарии"
|
3294 |
+
|
3295 |
+
#: modules/post-grid/post-grid.php:213
|
3296 |
+
msgid "More Link"
|
3297 |
+
msgstr "Ссылка «дальше»"
|
3298 |
+
|
3299 |
+
#: modules/post-grid/post-grid.php:227
|
3300 |
+
msgid "More Link Text"
|
3301 |
+
msgstr "Текст ссылки «дальше»"
|
3302 |
+
|
3303 |
+
#: modules/post-grid/post-grid.php:228
|
3304 |
+
msgid "Read More"
|
3305 |
+
msgstr "Читать дальше"
|
3306 |
+
|
3307 |
+
#: modules/pricing-table/pricing-table.php:14
|
3308 |
+
msgid "Pricing Table"
|
3309 |
+
msgstr "Таблица цен"
|
3310 |
+
|
3311 |
+
#: modules/pricing-table/pricing-table.php:15
|
3312 |
+
msgid "A simple pricing table generator."
|
3313 |
+
msgstr "Генератор простой таблицы с ценами."
|
3314 |
+
|
3315 |
+
#: modules/pricing-table/pricing-table.php:26
|
3316 |
+
msgid "Pricing Boxes"
|
3317 |
+
msgstr "Плитки с ценами"
|
3318 |
+
|
3319 |
+
#: modules/pricing-table/pricing-table.php:33
|
3320 |
+
msgid "Pricing Box"
|
3321 |
+
msgstr "Плитка с ценой"
|
3322 |
+
|
3323 |
+
#: modules/pricing-table/pricing-table.php:50
|
3324 |
+
msgid "Box Spacing"
|
3325 |
+
msgstr "Поля плиток"
|
3326 |
+
|
3327 |
+
#: modules/pricing-table/pricing-table.php:53
|
3328 |
+
#: modules/testimonials/testimonials.php:40
|
3329 |
+
msgid "Wide"
|
3330 |
+
msgstr "Широкие"
|
3331 |
+
|
3332 |
+
#: modules/pricing-table/pricing-table.php:54
|
3333 |
+
msgid "Tight"
|
3334 |
+
msgstr "Узкие"
|
3335 |
+
|
3336 |
+
#: modules/pricing-table/pricing-table.php:59
|
3337 |
+
msgid "Features Min Height"
|
3338 |
+
msgstr "Минимальная высота характеристик"
|
3339 |
+
|
3340 |
+
#: modules/pricing-table/pricing-table.php:63
|
3341 |
+
msgid ""
|
3342 |
+
"Use this to normalize the height of your boxes when they have different "
|
3343 |
+
"numbers of features."
|
3344 |
+
msgstr ""
|
3345 |
+
"Укажите, чтобы выровнять высоту ваших плиток, если в них указано разное "
|
3346 |
+
"количество характеристик."
|
3347 |
+
|
3348 |
+
#: modules/pricing-table/pricing-table.php:70
|
3349 |
+
msgctxt "Border size."
|
3350 |
+
msgid "Wide"
|
3351 |
+
msgstr "Широкий"
|
3352 |
+
|
3353 |
+
#: modules/pricing-table/pricing-table.php:71
|
3354 |
+
msgctxt "Border size."
|
3355 |
+
msgid "Tight"
|
3356 |
+
msgstr "Узкий"
|
3357 |
+
|
3358 |
+
#: modules/pricing-table/pricing-table.php:84
|
3359 |
+
msgid "Add Pricing Box"
|
3360 |
+
msgstr "Добавить плитку с ценой"
|
3361 |
+
|
3362 |
+
#: modules/pricing-table/pricing-table.php:98
|
3363 |
+
msgid "Title Size"
|
3364 |
+
msgstr "Размер заголовка"
|
3365 |
+
|
3366 |
+
#: modules/pricing-table/pricing-table.php:107
|
3367 |
+
msgid "Price Box"
|
3368 |
+
msgstr "Поле с ценой"
|
3369 |
+
|
3370 |
+
#: modules/pricing-table/pricing-table.php:111
|
3371 |
+
msgid "Price"
|
3372 |
+
msgstr "Цена"
|
3373 |
+
|
3374 |
+
#: modules/pricing-table/pricing-table.php:115
|
3375 |
+
msgid "Duration"
|
3376 |
+
msgstr "Длительность"
|
3377 |
+
|
3378 |
+
#: modules/pricing-table/pricing-table.php:116
|
3379 |
+
msgid "per Year"
|
3380 |
+
msgstr "в год"
|
3381 |
+
|
3382 |
+
#: modules/pricing-table/pricing-table.php:120
|
3383 |
+
msgid "Price Size"
|
3384 |
+
msgstr "Размер цены"
|
3385 |
+
|
3386 |
+
#: modules/pricing-table/pricing-table.php:133
|
3387 |
+
msgid "Button Text"
|
3388 |
+
msgstr "Текст на кнопке"
|
3389 |
+
|
3390 |
+
#: modules/pricing-table/pricing-table.php:137
|
3391 |
+
msgid "Button URL"
|
3392 |
+
msgstr "URL кнопки"
|
3393 |
+
|
3394 |
+
#: modules/pricing-table/pricing-table.php:142
|
3395 |
+
msgctxt "Price features displayed in pricing box."
|
3396 |
+
msgid "Features"
|
3397 |
+
msgstr "Характеристики"
|
3398 |
+
|
3399 |
+
#: modules/pricing-table/pricing-table.php:147
|
3400 |
+
msgid "One feature per line. HTML is okay."
|
3401 |
+
msgstr "По одно характеристике на строку. Можно использовать HTML."
|
3402 |
+
|
3403 |
+
#: modules/pricing-table/pricing-table.php:162
|
3404 |
+
msgid "Box Background"
|
3405 |
+
msgstr "Фон плитки"
|
3406 |
+
|
3407 |
+
#: modules/pricing-table/pricing-table.php:167
|
3408 |
+
msgid "Box Foreground"
|
3409 |
+
msgstr "Основной цвет плитки"
|
3410 |
+
|
3411 |
+
#: modules/pricing-table/pricing-table.php:173
|
3412 |
+
msgid "Accent Color"
|
3413 |
+
msgstr "Цвет акцента"
|
3414 |
+
|
3415 |
+
#: modules/pricing-table/pricing-table.php:178
|
3416 |
+
msgid "Accent Text Color"
|
3417 |
+
msgstr "Цвет текста акцента"
|
3418 |
+
|
3419 |
+
#: modules/pricing-table/pricing-table.php:182
|
3420 |
+
msgid "Box Top Margin"
|
3421 |
+
msgstr "Верхнее поле плитки"
|
3422 |
+
|
3423 |
+
#: modules/rich-text/rich-text.php:15
|
3424 |
+
msgid "A WYSIWYG text editor."
|
3425 |
+
msgstr "Визуальный текстовый редактор."
|
3426 |
+
|
3427 |
+
#: modules/separator/separator.php:14
|
3428 |
+
msgid "Separator"
|
3429 |
+
msgstr "Черта"
|
3430 |
+
|
3431 |
+
#: modules/separator/separator.php:15
|
3432 |
+
msgid "A divider line to separate content."
|
3433 |
+
msgstr "Черта для разделения содержимого."
|
3434 |
+
|
3435 |
+
#: modules/separator/separator.php:85
|
3436 |
+
msgid ""
|
3437 |
+
"The type of border to use. Double borders must have a height of at least 3px "
|
3438 |
+
"to render properly."
|
3439 |
+
msgstr "Тип используемой рамки. Минимальная ширина двойной рамки — 3 пикселя."
|
3440 |
+
|
3441 |
+
#: modules/sidebar/includes/settings-general.php:5
|
3442 |
+
#: modules/sidebar/sidebar.php:14
|
3443 |
+
msgid "Sidebar"
|
3444 |
+
msgstr "Боковая панель"
|
3445 |
+
|
3446 |
+
#: modules/sidebar/sidebar.php:15
|
3447 |
+
msgid ""
|
3448 |
+
"Display a WordPress sidebar that has been registered by the current theme."
|
3449 |
+
msgstr ""
|
3450 |
+
"Показать боковую панель Вордпресс, определенную в настройках выбранной темы."
|
3451 |
+
|
3452 |
+
#: modules/slideshow/slideshow.php:14
|
3453 |
+
msgid "Slideshow"
|
3454 |
+
msgstr "Слайд-шоу"
|
3455 |
+
|
3456 |
+
#: modules/slideshow/slideshow.php:15
|
3457 |
+
msgid "Display multiple photos in a slideshow view."
|
3458 |
+
msgstr "Показать несколько фотографий в режиме слайд-шоу."
|
3459 |
+
|
3460 |
+
#: modules/slideshow/slideshow.php:302
|
3461 |
+
msgid "Skin Color"
|
3462 |
+
msgstr "Цвет оболочки"
|
3463 |
+
|
3464 |
+
#: modules/slideshow/slideshow.php:305
|
3465 |
+
msgctxt "Color."
|
3466 |
+
msgid "Light"
|
3467 |
+
msgstr "Светлый"
|
3468 |
+
|
3469 |
+
#: modules/slideshow/slideshow.php:306
|
3470 |
+
msgctxt "Color."
|
3471 |
+
msgid "Dark"
|
3472 |
+
msgstr "Темный"
|
3473 |
+
|
3474 |
+
#: modules/slideshow/slideshow.php:308
|
3475 |
+
msgid ""
|
3476 |
+
"If your overall theme/images are lighter in color, light will display buttons "
|
3477 |
+
"in a darker color scheme and vice versa for dark."
|
3478 |
+
msgstr ""
|
3479 |
+
"Если ваша тема и фотографии в основном светлых оттенков, выберите светлую "
|
3480 |
+
"оболочку с темными иконками, или наоборот, если ваша тема и фотографии темные."
|
3481 |
+
|
3482 |
+
#: modules/slideshow/slideshow.php:318
|
3483 |
+
msgid ""
|
3484 |
+
"Crop set to no will fit the slideshow images to the height you specify and "
|
3485 |
+
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
3486 |
+
"images to all sides of the content area while cropping the left and right to "
|
3487 |
+
"fit the height you specify."
|
3488 |
+
msgstr ""
|
3489 |
+
"Если кадрирование отключено, изображения будут подогнаны под указанную "
|
3490 |
+
"высоту, и будет подобрана пропорциональная ширина. При включенном "
|
3491 |
+
"кадрировании изображение полностью заполнит слайд, но правый и левый края "
|
3492 |
+
"могут быть обрублены, чтобы уместиться в указанной высоте."
|
3493 |
+
|
3494 |
+
#: modules/slideshow/slideshow.php:322
|
3495 |
+
msgid "Disable Right-Click"
|
3496 |
+
msgstr "Отключить правый клик"
|
3497 |
+
|
3498 |
+
#: modules/slideshow/slideshow.php:342
|
3499 |
+
msgctxt "Click action type."
|
3500 |
+
msgid "None"
|
3501 |
+
msgstr "Нет"
|
3502 |
+
|
3503 |
+
#: modules/slideshow/slideshow.php:366
|
3504 |
+
msgid "Playback"
|
3505 |
+
msgstr "Воспроизведение"
|
3506 |
+
|
3507 |
+
#: modules/slideshow/slideshow.php:392
|
3508 |
+
msgctxt "Slideshow transition."
|
3509 |
+
msgid "None"
|
3510 |
+
msgstr "Нет"
|
3511 |
+
|
3512 |
+
#: modules/slideshow/slideshow.php:429
|
3513 |
+
msgid "Controls"
|
3514 |
+
msgstr "Управление"
|
3515 |
+
|
3516 |
+
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3517 |
+
msgid "Navigation Arrows"
|
3518 |
+
msgstr "Стрелки навигации"
|
3519 |
+
|
3520 |
+
#: modules/slideshow/slideshow.php:442
|
3521 |
+
msgid ""
|
3522 |
+
"Navigational arrows allow the visitor to freely move through the images in "
|
3523 |
+
"your slideshow. These are larger arrows that overlay your slideshow images "
|
3524 |
+
"and are separate from the control bar navigational arrows."
|
3525 |
+
msgstr ""
|
3526 |
+
"Стрелки навигации позволяют посетителю свободно перемещаться между "
|
3527 |
+
"изображениями в слайд-шоу. Это крупные стрелки, которые перекрывают "
|
3528 |
+
"изображения в слайд-шоу и отделены от стрелок навигации по панели управления."
|
3529 |
+
|
3530 |
+
#: modules/slideshow/slideshow.php:447
|
3531 |
+
msgid "Control Bar"
|
3532 |
+
msgstr "Панель управления"
|
3533 |
+
|
3534 |
+
#: modules/slideshow/slideshow.php:451
|
3535 |
+
msgid "Nav Type"
|
3536 |
+
msgstr "Тип навигации"
|
3537 |
+
|
3538 |
+
#: modules/slideshow/slideshow.php:454
|
3539 |
+
msgctxt "Nav type."
|
3540 |
+
msgid "None"
|
3541 |
+
msgstr "Нет"
|
3542 |
+
|
3543 |
+
#: modules/slideshow/slideshow.php:455
|
3544 |
+
msgid "Buttons"
|
3545 |
+
msgstr "Кнопки"
|
3546 |
+
|
3547 |
+
#: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
|
3548 |
+
msgid "Thumbs"
|
3549 |
+
msgstr "Миниатюры"
|
3550 |
+
|
3551 |
+
#: modules/slideshow/slideshow.php:471
|
3552 |
+
msgid "Nav Position"
|
3553 |
+
msgstr "Расположение навигации"
|
3554 |
+
|
3555 |
+
#: modules/slideshow/slideshow.php:481
|
3556 |
+
msgid "Control Bar Buttons"
|
3557 |
+
msgstr "Кнопки панели управления"
|
3558 |
+
|
3559 |
+
#: modules/slideshow/slideshow.php:494
|
3560 |
+
msgid "Play Button"
|
3561 |
+
msgstr "Кнопка воспроизведения"
|
3562 |
+
|
3563 |
+
#: modules/slideshow/slideshow.php:503
|
3564 |
+
msgid "Fullscreen Button"
|
3565 |
+
msgstr "Кнопка полноэкранного режима"
|
3566 |
+
|
3567 |
+
#: modules/slideshow/slideshow.php:512
|
3568 |
+
msgid "Photo Count"
|
3569 |
+
msgstr "Счетчик фотографий"
|
3570 |
+
|
3571 |
+
#: modules/slideshow/slideshow.php:521
|
3572 |
+
msgid "Thumbs Button"
|
3573 |
+
msgstr "Кнопка миниатюр"
|
3574 |
+
|
3575 |
+
#: modules/slideshow/slideshow.php:530
|
3576 |
+
msgid "Caption Button"
|
3577 |
+
msgstr "Кнопка заголовка"
|
3578 |
+
|
3579 |
+
#: modules/slideshow/slideshow.php:539
|
3580 |
+
msgid "Social Button"
|
3581 |
+
msgstr "Кнопка соцсетей"
|
3582 |
+
|
3583 |
+
#: modules/slideshow/slideshow.php:549
|
3584 |
+
msgid "Control Bar Overlay"
|
3585 |
+
msgstr "Наложение панели управления"
|
3586 |
+
|
3587 |
+
#: modules/slideshow/slideshow.php:553
|
3588 |
+
msgid "Overlay Enabled"
|
3589 |
+
msgstr "Наложение включено"
|
3590 |
+
|
3591 |
+
#: modules/slideshow/slideshow.php:564
|
3592 |
+
msgid ""
|
3593 |
+
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
3594 |
+
"your slideshow images or site below the slideshow completely."
|
3595 |
+
msgstr ""
|
3596 |
+
"Наложение панели управления определяет, где отображаются выбранные кнопки: "
|
3597 |
+
"поверх слайд-шоу или под ним."
|
3598 |
+
|
3599 |
+
#: modules/slideshow/slideshow.php:568
|
3600 |
+
msgid "Overlay Hide"
|
3601 |
+
msgstr "Прятать наложение"
|
3602 |
+
|
3603 |
+
#: modules/slideshow/slideshow.php:574
|
3604 |
+
msgid ""
|
3605 |
+
"Overlay hide will hide the control bar after however many seconds you specify "
|
3606 |
+
"below. They will reappear upon mouse over."
|
3607 |
+
msgstr ""
|
3608 |
+
"Элементы управления будут спрятаны после указанной задержки, пока "
|
3609 |
+
"пользователь не наведет на слайд-шоу курсор."
|
3610 |
+
|
3611 |
+
#: modules/slideshow/slideshow.php:578
|
3612 |
+
msgid "Overlay Hide Delay"
|
3613 |
+
msgstr "Задержка скрытия"
|
3614 |
+
|
3615 |
+
#: modules/slideshow/slideshow.php:590
|
3616 |
+
msgid "Thumbs Size"
|
3617 |
+
msgstr "Размер миниатюр"
|
3618 |
+
|
3619 |
+
#: modules/slideshow/slideshow.php:599
|
3620 |
+
msgid "Social"
|
3621 |
+
msgstr "Соцсети"
|
3622 |
+
|
3623 |
+
#: modules/slideshow/slideshow.php:603
|
3624 |
+
msgid "Facebook Button"
|
3625 |
+
msgstr "Кнопка Facebook"
|
3626 |
+
|
3627 |
+
#: modules/slideshow/slideshow.php:615
|
3628 |
+
msgid "Twitter Button"
|
3629 |
+
msgstr "Кнопка Twitter"
|
3630 |
+
|
3631 |
+
#: modules/slideshow/slideshow.php:627
|
3632 |
+
msgid "Google Plus Button"
|
3633 |
+
msgstr "Кнопка Google Plus"
|
3634 |
+
|
3635 |
+
#: modules/slideshow/slideshow.php:639
|
3636 |
+
msgid "Pinterest Button"
|
3637 |
+
msgstr "Кнопка Pinterest"
|
3638 |
+
|
3639 |
+
#: modules/social-buttons/social-buttons.php:14
|
3640 |
+
msgid "Social Buttons"
|
3641 |
+
msgstr "Кнопки соцсетей"
|
3642 |
+
|
3643 |
+
#: modules/social-buttons/social-buttons.php:15
|
3644 |
+
msgid "Displays social buttons."
|
3645 |
+
msgstr "Показывать кнопки соцсетей"
|
3646 |
+
|
3647 |
+
#: modules/social-buttons/social-buttons.php:71
|
3648 |
+
msgid "Target URL"
|
3649 |
+
msgstr "Адрес URL"
|
3650 |
+
|
3651 |
+
#: modules/social-buttons/social-buttons.php:75
|
3652 |
+
msgid "Current Page"
|
3653 |
+
msgstr "Данная страница"
|
3654 |
+
|
3655 |
+
#: modules/social-buttons/social-buttons.php:82
|
3656 |
+
msgid ""
|
3657 |
+
"The Target URL field correlates to the page you would like your social icons "
|
3658 |
+
"to interface with. For example, if you show Facebook, the user will \"Like\" "
|
3659 |
+
"whatever you put in this field."
|
3660 |
+
msgstr ""
|
3661 |
+
"Адрес URL определяет, к какой странице относятся кнопки соцсетей. Например "
|
3662 |
+
"Facebook показывается, пользователь поставит «Like» тому, что указано в этом "
|
3663 |
+
"поле."
|
3664 |
+
|
3665 |
+
#: modules/social-buttons/social-buttons.php:89
|
3666 |
+
msgid "Custom URL"
|
3667 |
+
msgstr "Укажите URL"
|
3668 |
+
|
3669 |
+
#: modules/social-buttons/social-buttons.php:107
|
3670 |
+
msgid "Show Facebook"
|
3671 |
+
msgstr "Показать Facebook"
|
3672 |
+
|
3673 |
+
#: modules/social-buttons/social-buttons.php:116
|
3674 |
+
msgid "Show Twitter"
|
3675 |
+
msgstr "Показать Twitter"
|
3676 |
+
|
3677 |
+
#: modules/social-buttons/social-buttons.php:125
|
3678 |
+
msgid "Show Google+"
|
3679 |
+
msgstr "Показать Google+"
|
3680 |
+
|
3681 |
+
#: modules/tabs/tabs.php:14
|
3682 |
+
msgid "Tabs"
|
3683 |
+
msgstr "Вкладки"
|
3684 |
+
|
3685 |
+
#: modules/tabs/tabs.php:15
|
3686 |
+
msgid "Display a collection of tabbed content."
|
3687 |
+
msgstr "Показать содержимое во вкладках."
|
3688 |
+
|
3689 |
+
#: modules/tabs/tabs.php:55
|
3690 |
+
msgid "Horizontal"
|
3691 |
+
msgstr "Горизонтально"
|
3692 |
+
|
3693 |
+
#: modules/tabs/tabs.php:56
|
3694 |
+
msgid "Vertical"
|
3695 |
+
msgstr "Вертикально"
|
3696 |
+
|
3697 |
+
#: modules/testimonials/testimonials.php:14
|
3698 |
+
#: modules/testimonials/testimonials.php:60
|
3699 |
+
#: modules/testimonials/testimonials.php:174
|
3700 |
+
msgid "Testimonials"
|
3701 |
+
msgstr "Отзывы"
|
3702 |
+
|
3703 |
+
#: modules/testimonials/testimonials.php:15
|
3704 |
+
msgid "An animated tesimonials area."
|
3705 |
+
msgstr "Область анимированных отзывов."
|
3706 |
+
|
3707 |
+
#: modules/testimonials/testimonials.php:41
|
3708 |
+
msgid "Compact"
|
3709 |
+
msgstr "Компактно"
|
3710 |
+
|
3711 |
+
#: modules/testimonials/testimonials.php:51
|
3712 |
+
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
3713 |
+
msgstr ""
|
3714 |
+
"«Широко» подходит для строк с одной колонкой, «компактно» — для строк в "
|
3715 |
+
"несколько колонок."
|
3716 |
+
|
3717 |
+
#: modules/testimonials/testimonials.php:78
|
3718 |
+
msgid "Slider Settings"
|
3719 |
+
msgstr "Настройки слайдера"
|
3720 |
+
|
3721 |
+
#: modules/testimonials/testimonials.php:135
|
3722 |
+
msgid "Arrow Color"
|
3723 |
+
msgstr "Цвет стрелок"
|
3724 |
+
|
3725 |
+
#: modules/testimonials/testimonials.php:165
|
3726 |
+
msgid "Dot Color"
|
3727 |
+
msgstr "Цвет точек"
|
3728 |
+
|
3729 |
+
#: modules/testimonials/testimonials.php:181
|
3730 |
+
msgid "Testimonial"
|
3731 |
+
msgstr "Отзыв"
|
3732 |
+
|
3733 |
+
#: modules/testimonials/testimonials.php:197
|
3734 |
+
msgid "Add Testimonial"
|
3735 |
+
msgstr "Добавить отзыв"
|
3736 |
+
|
3737 |
+
#: modules/video/video.php:20
|
3738 |
+
msgid "Render a WordPress or embedable video."
|
3739 |
+
msgstr "Отобразить встраиваемое видео Вордпресс."
|
3740 |
+
|
3741 |
+
#: modules/video/video.php:83
|
3742 |
+
msgid "Video Type"
|
3743 |
+
msgstr "Источник"
|
3744 |
+
|
3745 |
+
#: modules/video/video.php:87
|
3746 |
+
msgid "Embed"
|
3747 |
+
msgstr "Код вставки"
|
3748 |
+
|
3749 |
+
#: modules/video/video.php:104
|
3750 |
+
msgctxt "Video preview/fallback image."
|
3751 |
+
msgid "Poster"
|
3752 |
+
msgstr "Постре"
|
3753 |
+
|
3754 |
+
#: modules/video/video.php:120
|
3755 |
+
msgid "Loop"
|
3756 |
+
msgstr "Зациклить"
|
3757 |
+
|
3758 |
+
#: modules/widget/includes/frontend.php:35
|
3759 |
+
#: modules/widget/includes/settings-general.php:44
|
3760 |
+
#, php-format
|
3761 |
+
msgctxt "%s stands for widget slug."
|
3762 |
+
msgid "%s no longer exists."
|
3763 |
+
msgstr "%s больше не существует."
|
3764 |
+
|
3765 |
+
#: modules/widget/widget.php:14
|
3766 |
+
msgid "Widget"
|
3767 |
+
msgstr "Виджет"
|
3768 |
+
|
3769 |
+
#: modules/widget/widget.php:15
|
3770 |
+
msgid "Display a WordPress widget."
|
3771 |
+
msgstr "Показать виджет Вордпресс."
|
3772 |
+
|
3773 |
+
#: modules/woocommerce/woocommerce.php:16
|
3774 |
+
msgid "WooCommerce"
|
3775 |
+
msgstr "WooCommerce"
|
3776 |
+
|
3777 |
+
#: modules/woocommerce/woocommerce.php:17
|
3778 |
+
msgid "Display products or categories from your WooCommerce store."
|
3779 |
+
msgstr "Показать товары или категории из вашего магазина WooCommerce."
|
3780 |
+
|
3781 |
+
#: modules/woocommerce/woocommerce.php:60
|
3782 |
+
msgid "Choose..."
|
3783 |
+
msgstr "Выбрать..."
|
3784 |
+
|
3785 |
+
#: modules/woocommerce/woocommerce.php:61
|
3786 |
+
msgid "Single Product"
|
3787 |
+
msgstr "Один продукт"
|
3788 |
+
|
3789 |
+
#: modules/woocommerce/woocommerce.php:62
|
3790 |
+
#: modules/woocommerce/woocommerce.php:113
|
3791 |
+
msgid "Multiple Products"
|
3792 |
+
msgstr "Несколько продуктов"
|
3793 |
+
|
3794 |
+
#: modules/woocommerce/woocommerce.php:63
|
3795 |
+
msgid "\"Add to Cart\" Button"
|
3796 |
+
msgstr "Кнопка «Добавить в корзину»"
|
3797 |
+
|
3798 |
+
#: modules/woocommerce/woocommerce.php:64
|
3799 |
+
msgid "Categories"
|
3800 |
+
msgstr "Категории"
|
3801 |
+
|
3802 |
+
#: modules/woocommerce/woocommerce.php:65
|
3803 |
+
msgid "Cart"
|
3804 |
+
msgstr "Корзина"
|
3805 |
+
|
3806 |
+
#: modules/woocommerce/woocommerce.php:66
|
3807 |
+
msgid "Checkout"
|
3808 |
+
msgstr "Расплатиться"
|
3809 |
+
|
3810 |
+
#: modules/woocommerce/woocommerce.php:67
|
3811 |
+
msgid "Order Tracking"
|
3812 |
+
msgstr "Отслеживание заказа"
|
3813 |
+
|
3814 |
+
#: modules/woocommerce/woocommerce.php:68
|
3815 |
+
msgid "My Account"
|
3816 |
+
msgstr "Мой аккаунт"
|
3817 |
+
|
3818 |
+
#: modules/woocommerce/woocommerce.php:87
|
3819 |
+
msgid "Product ID"
|
3820 |
+
msgstr "ID товара"
|
3821 |
+
|
3822 |
+
#: modules/woocommerce/woocommerce.php:90
|
3823 |
+
msgid ""
|
3824 |
+
"As you add products in the WooCommerce Products area, each will be assigned a "
|
3825 |
+
"unique ID. You can find this unique product ID by visiting the Products area "
|
3826 |
+
"and rolling over the product. The unique ID will be the first attribute."
|
3827 |
+
msgstr ""
|
3828 |
+
"Когда вы добавляете товары во меню товаров WooCommerce, каждому присваивается "
|
3829 |
+
"уникальный идентификатор. Вы можете узнать его, открыв меню товаров и найдя "
|
3830 |
+
"интересующий вас товар. Идентификатор будет указан как первый параметр."
|
3831 |
+
|
3832 |
+
#: modules/woocommerce/woocommerce.php:94
|
3833 |
+
msgid "Parent Category ID"
|
3834 |
+
msgstr "ID родительской категории"
|
3835 |
+
|
3836 |
+
#: modules/woocommerce/woocommerce.php:97
|
3837 |
+
msgid ""
|
3838 |
+
"As you add product categories in the WooCommerce Products area, each will be "
|
3839 |
+
"assigned a unique ID. This ID can be found by hovering on the category in the "
|
3840 |
+
"categories area under Products and looking in the URL that is displayed in "
|
3841 |
+
"your browser. The ID will be the only number value in the URL."
|
3842 |
+
msgstr ""
|
3843 |
+
"Когда вы добавляете категории товаров в меню товаров WooCommerce, каждой из "
|
3844 |
+
"них присваивается уникальный идентификатор. Этот идентификатор может быть "
|
3845 |
+
"найден при наведении на категорию в меню категорий в меню товаров. При "
|
3846 |
+
"наведении в браузере будет отображен URL выбранной категории. ID будет "
|
3847 |
+
"единственным числовым значением в URL."
|
3848 |
+
|
3849 |
+
#: modules/woocommerce/woocommerce.php:101
|
3850 |
+
#: modules/woocommerce/woocommerce.php:172
|
3851 |
+
msgid "Columns"
|
3852 |
+
msgstr "Колонки"
|
3853 |
+
|
3854 |
+
#: modules/woocommerce/woocommerce.php:117
|
3855 |
+
msgid "Products Source"
|
3856 |
+
msgstr "Источник товара"
|
3857 |
+
|
3858 |
+
#: modules/woocommerce/woocommerce.php:120
|
3859 |
+
msgid "Products IDs"
|
3860 |
+
msgstr "ID товара"
|
3861 |
+
|
3862 |
+
#: modules/woocommerce/woocommerce.php:121
|
3863 |
+
msgid "Product Category"
|
3864 |
+
msgstr "Категория товара"
|
3865 |
+
|
3866 |
+
#: modules/woocommerce/woocommerce.php:122
|
3867 |
+
msgid "Recent Products"
|
3868 |
+
msgstr "Недавние товары"
|
3869 |
+
|
3870 |
+
#: modules/woocommerce/woocommerce.php:123
|
3871 |
+
msgid "Featured Products"
|
3872 |
+
msgstr "Продвигаемые товары"
|
3873 |
+
|
3874 |
+
#: modules/woocommerce/woocommerce.php:124
|
3875 |
+
msgid "Sale Products"
|
3876 |
+
msgstr "Товары по распродаже"
|
3877 |
+
|
3878 |
+
#: modules/woocommerce/woocommerce.php:125
|
3879 |
+
msgid "Best Selling Products"
|
3880 |
+
msgstr "Самые продаваемые товары"
|
3881 |
+
|
3882 |
+
#: modules/woocommerce/woocommerce.php:126
|
3883 |
+
msgid "Top Rated Products"
|
3884 |
+
msgstr "Наиболее оцененные товары"
|
3885 |
+
|
3886 |
+
#: modules/woocommerce/woocommerce.php:154
|
3887 |
+
msgid "Product IDs"
|
3888 |
+
msgstr "Идентификаторы товаров"
|
3889 |
+
|
3890 |
+
#: modules/woocommerce/woocommerce.php:156
|
3891 |
+
msgid ""
|
3892 |
+
"As you add products in the WooCommerce Products area, each will be assigned a "
|
3893 |
+
"unique ID. You can find this unique product ID by visiting the Products area "
|
3894 |
+
"and rolling over the product. The unique ID will be the first attribute and "
|
3895 |
+
"you can add several here separated by a comma."
|
3896 |
+
msgstr ""
|
3897 |
+
"Когда вы добавляете товары во меню товаров WooCommerce, каждому присваивается "
|
3898 |
+
"уникальный идентификатор. Вы можете узнать его, открыв меню товаров и найдя "
|
3899 |
+
"интересующий вас товар. Идентификатор будет указан как первый параметр."
|
3900 |
+
|
3901 |
+
#: modules/woocommerce/woocommerce.php:160
|
3902 |
+
msgid "Category Slug"
|
3903 |
+
msgstr "Ярлык категории"
|
3904 |
+
|
3905 |
+
#: modules/woocommerce/woocommerce.php:162
|
3906 |
+
msgid ""
|
3907 |
+
"As you add product categories in the WooCommerce Products area, each will be "
|
3908 |
+
"assigned a unique slug or you can edit and add your own. These slugs can be "
|
3909 |
+
"found in the Categories area under WooCommerce Products. Several can be added "
|
3910 |
+
"here separated by a comma."
|
3911 |
+
msgstr ""
|
3912 |
+
"Когда вы добавляете категории товаров в меню товаров WooCommerce, каждой "
|
3913 |
+
"присваивается ярлык, который вы можете редактировать или указать собственный. "
|
3914 |
+
"Эти ярлыки могут быть найдены в меню категорий в меню товаров WooCommerce. "
|
3915 |
+
"Здесь можно добавить несколько ярлыков, разделенных запятыми."
|
3916 |
+
|
3917 |
+
#: modules/woocommerce/woocommerce.php:166
|
3918 |
+
msgid "Number of Products"
|
3919 |
+
msgstr "Число товаров"
|
3920 |
+
|
3921 |
+
#: modules/woocommerce/woocommerce.php:183
|
3922 |
+
msgid "Sort By"
|
3923 |
+
msgstr "Сортировка"
|
3924 |
+
|
3925 |
+
#: modules/woocommerce/woocommerce.php:186
|
3926 |
+
msgctxt "Sort by."
|
3927 |
+
msgid "Default"
|
3928 |
+
msgstr "По умолчанию"
|
3929 |
+
|
3930 |
+
#: modules/woocommerce/woocommerce.php:187
|
3931 |
+
msgid "Popularity"
|
3932 |
+
msgstr "Популярность"
|
3933 |
+
|
3934 |
+
#: modules/woocommerce/woocommerce.php:188
|
3935 |
+
msgid "Rating"
|
3936 |
+
msgstr "Оценки"
|
3937 |
+
|
3938 |
+
#: modules/woocommerce/woocommerce.php:190
|
3939 |
+
msgid "Price: Low to High"
|
3940 |
+
msgstr "Цена: по возрастанию"
|
3941 |
+
|
3942 |
+
#: modules/woocommerce/woocommerce.php:191
|
3943 |
+
msgid "Price: High to Low"
|
3944 |
+
msgstr "Цена: по убыванию"
|
languages/xx_XX.pot
CHANGED
@@ -1,23 +1,25 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
|
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
12 |
"X-Generator: Poedit 1.7.4\n"
|
13 |
-
"X-Poedit-
|
14 |
-
"X-Poedit-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
|
|
21 |
#: classes/class-fl-builder-admin-settings.php:93
|
22 |
#: includes/global-settings.php:4
|
23 |
#, php-format
|
@@ -25,77 +27,94 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
|
|
25 |
msgid "%s Settings"
|
26 |
msgstr ""
|
27 |
|
|
|
28 |
#: classes/class-fl-builder-admin-settings.php:107
|
29 |
msgid "Settings updated!"
|
30 |
msgstr ""
|
31 |
|
|
|
32 |
#: classes/class-fl-builder-admin-settings.php:118
|
33 |
msgid "License"
|
34 |
msgstr ""
|
35 |
|
|
|
36 |
#: classes/class-fl-builder-admin-settings.php:122
|
37 |
#: includes/admin-settings-upgrade.php:3
|
38 |
msgid "Upgrade"
|
39 |
msgstr ""
|
40 |
|
|
|
41 |
#: classes/class-fl-builder-admin-settings.php:126
|
42 |
#: includes/global-settings.php:90
|
43 |
msgid "Modules"
|
44 |
msgstr ""
|
45 |
|
|
|
46 |
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
|
47 |
msgid "Templates"
|
48 |
msgstr ""
|
49 |
|
|
|
50 |
#: classes/class-fl-builder-admin-settings.php:134
|
51 |
#: includes/admin-settings-post-types.php:3
|
52 |
msgid "Post Types"
|
53 |
msgstr ""
|
54 |
|
|
|
55 |
#: classes/class-fl-builder-admin-settings.php:138
|
56 |
#: modules/icon-group/icon-group.php:27
|
57 |
msgid "Icons"
|
58 |
msgstr ""
|
59 |
|
|
|
60 |
#: classes/class-fl-builder-admin-settings.php:142
|
61 |
msgid "Editing"
|
62 |
msgstr ""
|
63 |
|
|
|
64 |
#: classes/class-fl-builder-admin-settings.php:146
|
65 |
#: includes/admin-settings-branding.php:3
|
66 |
msgid "Branding"
|
67 |
msgstr ""
|
68 |
|
|
|
69 |
#: classes/class-fl-builder-admin-settings.php:150
|
70 |
msgid "Help Button"
|
71 |
msgstr ""
|
72 |
|
|
|
73 |
#: classes/class-fl-builder-admin-settings.php:154
|
74 |
#: includes/admin-settings-uninstall.php:3
|
75 |
#: includes/admin-settings-uninstall.php:15
|
76 |
msgid "Uninstall"
|
77 |
msgstr ""
|
78 |
|
|
|
79 |
#: classes/class-fl-builder-admin-settings.php:376
|
80 |
msgid "Error! You must have at least one icon set enabled."
|
81 |
msgstr ""
|
82 |
|
|
|
83 |
#: classes/class-fl-builder-admin-settings.php:418
|
84 |
msgid "Error! Could not unzip file."
|
85 |
msgstr ""
|
86 |
|
|
|
87 |
#: classes/class-fl-builder-admin-settings.php:452
|
88 |
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
89 |
msgstr ""
|
90 |
|
|
|
91 |
#: classes/class-fl-builder-admin-settings.php:566
|
92 |
msgid "Error! Please enter an iframe for the video embed code."
|
93 |
msgstr ""
|
94 |
|
|
|
95 |
#: classes/class-fl-builder-admin-settings.php:584
|
96 |
msgid "Error! You must have at least one feature of the help button enabled."
|
97 |
msgstr ""
|
98 |
|
|
|
99 |
#: classes/class-fl-builder-admin.php:40
|
100 |
#, php-format
|
101 |
msgid ""
|
@@ -104,28 +123,33 @@ msgid ""
|
|
104 |
"of this plugin."
|
105 |
msgstr ""
|
106 |
|
|
|
107 |
#: classes/class-fl-builder-admin.php:50
|
108 |
msgid ""
|
109 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
110 |
"greater. Please update WordPress before activating the plugin."
|
111 |
msgstr ""
|
112 |
|
|
|
113 |
#: classes/class-fl-builder-admin.php:96
|
114 |
#, php-format
|
115 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
116 |
msgstr ""
|
117 |
|
|
|
118 |
#: classes/class-fl-builder-admin.php:191
|
119 |
msgctxt "Plugin action link label."
|
120 |
msgid "Upgrade"
|
121 |
msgstr ""
|
122 |
|
|
|
123 |
#: classes/class-fl-builder-admin.php:202
|
124 |
-
#: classes/class-fl-builder-model.php:
|
125 |
msgid "Page Builder"
|
126 |
msgstr ""
|
127 |
|
128 |
-
|
|
|
129 |
#, php-format
|
130 |
msgctxt "%s stands for the module filename"
|
131 |
msgid ""
|
@@ -133,15 +157,17 @@ msgid ""
|
|
133 |
"module filenames to ensure compatibility with Beaver Builder."
|
134 |
msgstr ""
|
135 |
|
136 |
-
|
137 |
-
#: classes/class-fl-builder-model.php:
|
|
|
138 |
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
139 |
#: modules/separator/separator.php:16 modules/video/video.php:21
|
140 |
msgid "Basic Modules"
|
141 |
msgstr ""
|
142 |
|
143 |
-
|
144 |
-
#: classes/class-fl-builder-model.php:
|
|
|
145 |
#: modules/button/button.php:16 modules/callout/callout.php:16
|
146 |
#: modules/contact-form/contact-form.php:16
|
147 |
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
@@ -156,38 +182,46 @@ msgstr ""
|
|
156 |
msgid "Advanced Modules"
|
157 |
msgstr ""
|
158 |
|
159 |
-
|
160 |
-
#: classes/class-fl-builder-model.php:
|
|
|
161 |
msgid "Other Modules"
|
162 |
msgstr ""
|
163 |
|
164 |
-
|
165 |
-
#: classes/class-fl-builder-model.php:
|
|
|
|
|
166 |
#: modules/widget/widget.php:16
|
167 |
msgid "WordPress Widgets"
|
168 |
msgstr ""
|
169 |
|
170 |
-
|
|
|
171 |
#, php-format
|
172 |
msgctxt "%s stands for post/page title."
|
173 |
msgid "Copy of %s"
|
174 |
msgstr ""
|
175 |
|
|
|
176 |
#: classes/class-fl-builder-photo.php:75
|
177 |
msgctxt "Image size."
|
178 |
msgid "Full Size"
|
179 |
msgstr ""
|
180 |
|
|
|
181 |
#: classes/class-fl-builder-photo.php:76
|
182 |
msgctxt "Image size."
|
183 |
msgid "Large"
|
184 |
msgstr ""
|
185 |
|
|
|
186 |
#: classes/class-fl-builder-photo.php:77
|
187 |
msgctxt "Image size."
|
188 |
msgid "Medium"
|
189 |
msgstr ""
|
190 |
|
|
|
191 |
#: classes/class-fl-builder-photo.php:78
|
192 |
msgctxt "Image size."
|
193 |
msgid "Thumbnail"
|
@@ -197,121 +231,129 @@ msgstr ""
|
|
197 |
msgid "Page Builder Templates"
|
198 |
msgstr ""
|
199 |
|
|
|
200 |
#: classes/class-fl-builder.php:709
|
201 |
#, php-format
|
202 |
msgctxt "Field name to add."
|
203 |
msgid "Add %s"
|
204 |
msgstr ""
|
205 |
|
|
|
206 |
#: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
|
207 |
msgctxt "Custom post type label."
|
208 |
msgid "Layout Templates"
|
209 |
msgstr ""
|
210 |
|
|
|
211 |
#: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
|
212 |
msgctxt "Custom post type label."
|
213 |
msgid "Layout Template"
|
214 |
msgstr ""
|
215 |
|
|
|
216 |
#: classes/class-fl-builder.php:776
|
217 |
msgctxt "Custom post type label."
|
218 |
msgid "Add New"
|
219 |
msgstr ""
|
220 |
|
|
|
221 |
#: classes/class-fl-builder.php:777
|
222 |
msgctxt "Custom post type label."
|
223 |
msgid "Add New Layout Template"
|
224 |
msgstr ""
|
225 |
|
|
|
226 |
#: classes/class-fl-builder.php:778
|
227 |
msgctxt "Custom post type label."
|
228 |
msgid "New Layout Template"
|
229 |
msgstr ""
|
230 |
|
|
|
231 |
#: classes/class-fl-builder.php:779
|
232 |
msgctxt "Custom post type label."
|
233 |
msgid "Edit Layout Template"
|
234 |
msgstr ""
|
235 |
|
|
|
236 |
#: classes/class-fl-builder.php:780
|
237 |
msgctxt "Custom post type label."
|
238 |
msgid "View Layout Template"
|
239 |
msgstr ""
|
240 |
|
|
|
241 |
#: classes/class-fl-builder.php:781
|
242 |
msgctxt "Custom post type label."
|
243 |
msgid "All Layout Templates"
|
244 |
msgstr ""
|
245 |
|
|
|
246 |
#: classes/class-fl-builder.php:782
|
247 |
msgctxt "Custom post type label."
|
248 |
msgid "Search Layout Templates"
|
249 |
msgstr ""
|
250 |
|
|
|
251 |
#: classes/class-fl-builder.php:783
|
252 |
msgctxt "Custom post type label."
|
253 |
msgid "Parent Layout Templates:"
|
254 |
msgstr ""
|
255 |
|
|
|
256 |
#: classes/class-fl-builder.php:784
|
257 |
msgctxt "Custom post type label."
|
258 |
msgid "No layout templates found."
|
259 |
msgstr ""
|
260 |
|
|
|
261 |
#: classes/class-fl-builder.php:785
|
262 |
msgctxt "Custom post type label."
|
263 |
msgid "No layout templates found in Trash."
|
264 |
msgstr ""
|
265 |
|
266 |
-
|
|
|
267 |
#, php-format
|
268 |
msgctxt "%s stands for module name."
|
269 |
msgid "%s Settings"
|
270 |
msgstr ""
|
271 |
|
|
|
272 |
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
273 |
msgid "Text Editor"
|
274 |
msgstr ""
|
275 |
|
|
|
276 |
#: includes/admin-posts.php:7
|
277 |
#, php-format
|
278 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
279 |
msgid "%s is currently active for this page."
|
280 |
msgstr ""
|
281 |
|
|
|
282 |
#: includes/admin-posts.php:8
|
283 |
#, php-format
|
284 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
285 |
msgid "Launch %s"
|
286 |
msgstr ""
|
287 |
|
288 |
-
|
289 |
-
#, php-format
|
290 |
-
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
291 |
-
msgid ""
|
292 |
-
"Switching to Text Editor mode will disable your %s layout until it is "
|
293 |
-
"enabled again. Any edits made while in Text Editor mode will not be made on "
|
294 |
-
"your %s layout. Do you want to continue?"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
#: includes/admin-settings-branding.php:7
|
298 |
msgid "White label the page builder by entering a custom name below."
|
299 |
msgstr ""
|
300 |
|
|
|
301 |
#: includes/admin-settings-branding.php:10
|
302 |
msgid ""
|
303 |
"Additionally, you may also add a custom icon by entering the URL of an image "
|
304 |
"below. Leave the field blank if you do not wish to use an icon."
|
305 |
msgstr ""
|
306 |
|
307 |
-
|
308 |
-
msgid "Save Branding"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
#: includes/admin-settings-editing.php:3
|
312 |
msgid "Editing Settings"
|
313 |
msgstr ""
|
314 |
|
|
|
315 |
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
316 |
#: includes/admin-settings-modules.php:10
|
317 |
#: includes/admin-settings-post-types.php:10
|
@@ -319,6 +361,7 @@ msgstr ""
|
|
319 |
msgid "Override network settings?"
|
320 |
msgstr ""
|
321 |
|
|
|
322 |
#: includes/admin-settings-editing.php:16
|
323 |
#, php-format
|
324 |
msgid ""
|
@@ -326,74 +369,82 @@ msgid ""
|
|
326 |
"editing such as adding, deleting or moving modules."
|
327 |
msgstr ""
|
328 |
|
329 |
-
|
330 |
-
msgid "Save Editing Settings"
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
#: includes/admin-settings-help-button.php:8
|
334 |
msgid "Help Button Settings"
|
335 |
msgstr ""
|
336 |
|
|
|
337 |
#: includes/admin-settings-help-button.php:17
|
338 |
msgid "Enable Help Button"
|
339 |
msgstr ""
|
340 |
|
|
|
341 |
#: includes/admin-settings-help-button.php:23
|
342 |
msgid "Help Tour"
|
343 |
msgstr ""
|
344 |
|
|
|
345 |
#: includes/admin-settings-help-button.php:27
|
346 |
msgid "Enable Help Tour"
|
347 |
msgstr ""
|
348 |
|
|
|
349 |
#: includes/admin-settings-help-button.php:31
|
350 |
msgid "Help Video"
|
351 |
msgstr ""
|
352 |
|
|
|
353 |
#: includes/admin-settings-help-button.php:35
|
354 |
msgid "Enable Help Video"
|
355 |
msgstr ""
|
356 |
|
|
|
357 |
#: includes/admin-settings-help-button.php:39
|
358 |
msgid "Help Video Embed Code"
|
359 |
msgstr ""
|
360 |
|
|
|
361 |
#: includes/admin-settings-help-button.php:45
|
362 |
msgid "Knowledge Base"
|
363 |
msgstr ""
|
364 |
|
|
|
365 |
#: includes/admin-settings-help-button.php:49
|
366 |
msgid "Enable Knowledge Base"
|
367 |
msgstr ""
|
368 |
|
|
|
369 |
#: includes/admin-settings-help-button.php:53
|
370 |
msgid "Knowledge Base URL"
|
371 |
msgstr ""
|
372 |
|
|
|
373 |
#: includes/admin-settings-help-button.php:59
|
374 |
msgid "Forums"
|
375 |
msgstr ""
|
376 |
|
|
|
377 |
#: includes/admin-settings-help-button.php:63
|
378 |
msgid "Enable Forums"
|
379 |
msgstr ""
|
380 |
|
|
|
381 |
#: includes/admin-settings-help-button.php:67
|
382 |
msgid "Forums URL"
|
383 |
msgstr ""
|
384 |
|
385 |
-
|
386 |
-
msgid "Save Help Button Settings"
|
387 |
-
msgstr ""
|
388 |
-
|
389 |
#: includes/admin-settings-icons.php:3
|
390 |
msgid "Icon Settings"
|
391 |
msgstr ""
|
392 |
|
|
|
393 |
#: includes/admin-settings-icons.php:13
|
394 |
msgid "Icons for the main site must be managed in the network admin."
|
395 |
msgstr ""
|
396 |
|
|
|
397 |
#: includes/admin-settings-icons.php:33
|
398 |
#, php-format
|
399 |
msgid ""
|
@@ -401,97 +452,82 @@ msgid ""
|
|
401 |
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
402 |
msgstr ""
|
403 |
|
|
|
404 |
#: includes/admin-settings-icons.php:48
|
405 |
msgctxt "Plugin setup page: Delete icon set."
|
406 |
msgid "Delete"
|
407 |
msgstr ""
|
408 |
|
409 |
-
|
410 |
-
msgid "Upload Icon Set"
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: includes/admin-settings-icons.php:60
|
414 |
-
msgid "Save Icon Settings"
|
415 |
-
msgstr ""
|
416 |
-
|
417 |
-
#: includes/admin-settings-js-config.php:4
|
418 |
-
msgid "Select File"
|
419 |
-
msgstr ""
|
420 |
-
|
421 |
-
#: includes/admin-settings-js-config.php:5
|
422 |
-
msgid ""
|
423 |
-
"Please type \"uninstall\" in the box below to confirm that you really want "
|
424 |
-
"to uninstall the page builder and all of its data."
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
#: includes/admin-settings-modules.php:3
|
428 |
msgid "Enabled Modules"
|
429 |
msgstr ""
|
430 |
|
|
|
431 |
#: includes/admin-settings-modules.php:16
|
432 |
msgid "Check or uncheck modules below to enable or disable them."
|
433 |
msgstr ""
|
434 |
|
435 |
-
|
|
|
436 |
msgctxt "Plugin setup page: Modules."
|
437 |
msgid "All"
|
438 |
msgstr ""
|
439 |
|
440 |
-
|
441 |
-
msgid "Save Module Settings"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
#: includes/admin-settings-post-types.php:18
|
445 |
msgid ""
|
446 |
"Enter a comma separated list of the post types you would like the builder to "
|
447 |
"work with."
|
448 |
msgstr ""
|
449 |
|
|
|
450 |
#: includes/admin-settings-post-types.php:19
|
451 |
#: includes/admin-settings-post-types.php:39
|
452 |
msgid "NOTE: Not all custom post types may be supported."
|
453 |
msgstr ""
|
454 |
|
|
|
455 |
#: includes/admin-settings-post-types.php:34
|
456 |
msgid "Example: page, post, product"
|
457 |
msgstr ""
|
458 |
|
|
|
459 |
#: includes/admin-settings-post-types.php:38
|
460 |
msgid "Select the post types you would like the builder to work with."
|
461 |
msgstr ""
|
462 |
|
463 |
-
|
464 |
-
msgid "Save Post Types"
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
#: includes/admin-settings-templates.php:3 includes/template-settings.php:4
|
468 |
msgid "Template Settings"
|
469 |
msgstr ""
|
470 |
|
|
|
471 |
#: includes/admin-settings-templates.php:16
|
472 |
msgid "Enable or disable templates using the options below."
|
473 |
msgstr ""
|
474 |
|
|
|
475 |
#: includes/admin-settings-templates.php:23
|
476 |
msgid "Enable All Templates"
|
477 |
msgstr ""
|
478 |
|
|
|
479 |
#: includes/admin-settings-templates.php:24
|
480 |
msgid "Enable Core Templates Only"
|
481 |
msgstr ""
|
482 |
|
|
|
483 |
#: includes/admin-settings-templates.php:25
|
484 |
msgid "Enable User Templates Only"
|
485 |
msgstr ""
|
486 |
|
|
|
487 |
#: includes/admin-settings-templates.php:26
|
488 |
msgid "Disable All Templates"
|
489 |
msgstr ""
|
490 |
|
491 |
-
|
492 |
-
msgid "Save Template Settings"
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
#: includes/admin-settings-uninstall.php:5
|
496 |
msgid ""
|
497 |
"Clicking the button below will uninstall the page builder plugin and delete "
|
@@ -499,12 +535,14 @@ msgid ""
|
|
499 |
"builder from the plugins page instead if you do not wish to delete the data."
|
500 |
msgstr ""
|
501 |
|
|
|
502 |
#: includes/admin-settings-uninstall.php:7
|
503 |
#: includes/admin-settings-uninstall.php:10
|
504 |
#: includes/updater/includes/form.php:31
|
505 |
msgid "NOTE:"
|
506 |
msgstr ""
|
507 |
|
|
|
508 |
#: includes/admin-settings-uninstall.php:7
|
509 |
msgid ""
|
510 |
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
@@ -513,11 +551,13 @@ msgid ""
|
|
513 |
"its data using those meta values."
|
514 |
msgstr ""
|
515 |
|
|
|
516 |
#: includes/admin-settings-uninstall.php:10
|
517 |
#: includes/updater/includes/form.php:31
|
518 |
msgid "This applies to all sites on the network."
|
519 |
msgstr ""
|
520 |
|
|
|
521 |
#: includes/admin-settings-upgrade.php:5
|
522 |
msgid ""
|
523 |
"You are currently running the lite version of the Beaver Builder plugin. "
|
@@ -525,10 +565,12 @@ msgid ""
|
|
525 |
"templates, support and more!"
|
526 |
msgstr ""
|
527 |
|
|
|
528 |
#: includes/admin-settings-upgrade.php:7
|
529 |
msgid "Upgrade Now"
|
530 |
msgstr ""
|
531 |
|
|
|
532 |
#: includes/admin-settings-upgrade.php:9
|
533 |
msgid "Learn More"
|
534 |
msgstr ""
|
@@ -542,11 +584,13 @@ msgctxt "Template edit form field label. Template name."
|
|
542 |
msgid "Name"
|
543 |
msgstr ""
|
544 |
|
|
|
545 |
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
|
546 |
#: modules/post-grid/post-grid.php:113
|
547 |
msgid "Image"
|
548 |
msgstr ""
|
549 |
|
|
|
550 |
#: includes/admin-templates-edit.php:16 includes/row-settings.php:155
|
551 |
#: includes/template-settings.php:23 modules/callout/callout.php:353
|
552 |
#: modules/callout/callout.php:373
|
@@ -560,6 +604,7 @@ msgctxt "Template edit form field label. Is template premium one?"
|
|
560 |
msgid "Premium"
|
561 |
msgstr ""
|
562 |
|
|
|
563 |
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
564 |
#: includes/global-settings.php:18 includes/global-settings.php:110
|
565 |
#: includes/row-settings.php:307 includes/template-settings.php:31
|
@@ -589,6 +634,7 @@ msgstr ""
|
|
589 |
msgid "No"
|
590 |
msgstr ""
|
591 |
|
|
|
592 |
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
593 |
#: includes/global-settings.php:19 includes/global-settings.php:111
|
594 |
#: includes/row-settings.php:308 includes/template-settings.php:32
|
@@ -655,23 +701,28 @@ msgctxt "Templates list column label. Is template premium one?"
|
|
655 |
msgid "Premium"
|
656 |
msgstr ""
|
657 |
|
|
|
658 |
#: includes/admin-templates.php:25 includes/field-photo.php:12
|
659 |
#: includes/template-selector.php:83
|
660 |
msgid "Edit"
|
661 |
msgstr ""
|
662 |
|
|
|
663 |
#: includes/admin-templates.php:27 includes/template-selector.php:84
|
664 |
msgid "Delete"
|
665 |
msgstr ""
|
666 |
|
667 |
-
|
|
|
668 |
msgid "Do you really want to delete this template?"
|
669 |
msgstr ""
|
670 |
|
671 |
-
|
|
|
672 |
msgid "Column Settings"
|
673 |
msgstr ""
|
674 |
|
|
|
675 |
#: includes/column-settings.php:7 includes/module-settings.php:87
|
676 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
677 |
#: modules/button/button.php:108 modules/button/button.php:146
|
@@ -687,10 +738,12 @@ msgstr ""
|
|
687 |
msgid "Style"
|
688 |
msgstr ""
|
689 |
|
|
|
690 |
#: includes/column-settings.php:14
|
691 |
msgid "Column Width"
|
692 |
msgstr ""
|
693 |
|
|
|
694 |
#: includes/column-settings.php:26 includes/row-settings.php:48
|
695 |
#: modules/button/button.php:66 modules/callout/callout.php:225
|
696 |
#: modules/callout/callout.php:478 modules/callout/callout.php:494
|
@@ -700,6 +753,7 @@ msgstr ""
|
|
700 |
msgid "Text"
|
701 |
msgstr ""
|
702 |
|
|
|
703 |
#: includes/column-settings.php:30 includes/column-settings.php:43
|
704 |
#: includes/column-settings.php:100 includes/row-settings.php:52
|
705 |
#: includes/row-settings.php:109 includes/row-settings.php:403
|
@@ -710,6 +764,7 @@ msgstr ""
|
|
710 |
msgid "Color"
|
711 |
msgstr ""
|
712 |
|
|
|
713 |
#: includes/column-settings.php:39 includes/row-settings.php:105
|
714 |
#: modules/button/button.php:115 modules/callout/callout.php:404
|
715 |
#: modules/callout/callout.php:508
|
@@ -720,16 +775,19 @@ msgstr ""
|
|
720 |
msgid "Background Color"
|
721 |
msgstr ""
|
722 |
|
|
|
723 |
#: includes/column-settings.php:51 includes/column-settings.php:108
|
724 |
#: includes/row-settings.php:117 includes/row-settings.php:411
|
725 |
#: modules/separator/separator.php:44
|
726 |
msgid "Opacity"
|
727 |
msgstr ""
|
728 |
|
|
|
729 |
#: includes/column-settings.php:63 includes/row-settings.php:366
|
730 |
msgid "Border"
|
731 |
msgstr ""
|
732 |
|
|
|
733 |
#: includes/column-settings.php:67 includes/row-settings.php:65
|
734 |
#: includes/row-settings.php:370 modules/callout/callout.php:474
|
735 |
#: modules/content-slider/content-slider.php:331
|
@@ -740,80 +798,95 @@ msgstr ""
|
|
740 |
msgid "Type"
|
741 |
msgstr ""
|
742 |
|
|
|
743 |
#: includes/column-settings.php:69 includes/row-settings.php:372
|
744 |
msgid ""
|
745 |
"The type of border to use. Double borders must have a width of at least 3px "
|
746 |
"to render properly."
|
747 |
msgstr ""
|
748 |
|
|
|
749 |
#: includes/column-settings.php:71 includes/row-settings.php:374
|
750 |
msgctxt "Border type."
|
751 |
msgid "None"
|
752 |
msgstr ""
|
753 |
|
|
|
754 |
#: includes/column-settings.php:72 includes/row-settings.php:375
|
755 |
#: modules/separator/separator.php:75
|
756 |
msgctxt "Border type."
|
757 |
msgid "Solid"
|
758 |
msgstr ""
|
759 |
|
|
|
760 |
#: includes/column-settings.php:73 includes/row-settings.php:376
|
761 |
#: modules/separator/separator.php:76
|
762 |
msgctxt "Border type."
|
763 |
msgid "Dashed"
|
764 |
msgstr ""
|
765 |
|
|
|
766 |
#: includes/column-settings.php:74 includes/row-settings.php:377
|
767 |
#: modules/separator/separator.php:77
|
768 |
msgctxt "Border type."
|
769 |
msgid "Dotted"
|
770 |
msgstr ""
|
771 |
|
|
|
772 |
#: includes/column-settings.php:75 includes/row-settings.php:378
|
773 |
#: modules/separator/separator.php:78
|
774 |
msgctxt "Border type."
|
775 |
msgid "Double"
|
776 |
msgstr ""
|
777 |
|
|
|
778 |
#: includes/column-settings.php:119 includes/row-settings.php:422
|
779 |
msgid "Top Width"
|
780 |
msgstr ""
|
781 |
|
|
|
782 |
#: includes/column-settings.php:131 includes/row-settings.php:434
|
783 |
msgid "Bottom Width"
|
784 |
msgstr ""
|
785 |
|
|
|
786 |
#: includes/column-settings.php:143 includes/row-settings.php:446
|
787 |
msgid "Left Width"
|
788 |
msgstr ""
|
789 |
|
|
|
790 |
#: includes/column-settings.php:155 includes/row-settings.php:458
|
791 |
msgid "Right Width"
|
792 |
msgstr ""
|
793 |
|
|
|
794 |
#: includes/column-settings.php:170 includes/module-settings.php:6
|
795 |
#: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
|
796 |
msgid "Advanced"
|
797 |
msgstr ""
|
798 |
|
|
|
799 |
#: includes/column-settings.php:173 includes/global-settings.php:41
|
800 |
#: includes/global-settings.php:94 includes/module-settings.php:9
|
801 |
#: includes/row-settings.php:476
|
802 |
msgid "Margins"
|
803 |
msgstr ""
|
804 |
|
|
|
805 |
#: includes/column-settings.php:177 includes/column-settings.php:230
|
806 |
#: includes/module-settings.php:13 includes/row-settings.php:480
|
807 |
#: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
|
808 |
msgid "Top"
|
809 |
msgstr ""
|
810 |
|
|
|
811 |
#: includes/column-settings.php:189 includes/column-settings.php:242
|
812 |
#: includes/module-settings.php:25 includes/row-settings.php:492
|
813 |
#: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
|
814 |
msgid "Bottom"
|
815 |
msgstr ""
|
816 |
|
|
|
817 |
#: includes/column-settings.php:201 includes/column-settings.php:254
|
818 |
#: includes/module-settings.php:37 includes/row-settings.php:504
|
819 |
#: includes/row-settings.php:557 modules/button/button.php:219
|
@@ -825,6 +898,7 @@ msgstr ""
|
|
825 |
msgid "Left"
|
826 |
msgstr ""
|
827 |
|
|
|
828 |
#: includes/column-settings.php:213 includes/column-settings.php:266
|
829 |
#: includes/module-settings.php:49 includes/row-settings.php:516
|
830 |
#: includes/row-settings.php:569 modules/button/button.php:220
|
@@ -836,6 +910,7 @@ msgstr ""
|
|
836 |
msgid "Right"
|
837 |
msgstr ""
|
838 |
|
|
|
839 |
#: includes/column-settings.php:226 includes/global-settings.php:49
|
840 |
#: includes/row-settings.php:529 modules/button/button.php:233
|
841 |
#: modules/callout/callout.php:598
|
@@ -843,58 +918,70 @@ msgstr ""
|
|
843 |
msgid "Padding"
|
844 |
msgstr ""
|
845 |
|
|
|
846 |
#: includes/column-settings.php:279 includes/global-settings.php:103
|
847 |
#: includes/module-settings.php:62 includes/row-settings.php:582
|
848 |
msgid "Responsive Layout"
|
849 |
msgstr ""
|
850 |
|
|
|
851 |
#: includes/column-settings.php:283 includes/module-settings.php:66
|
852 |
#: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
|
853 |
msgid "Display"
|
854 |
msgstr ""
|
855 |
|
|
|
856 |
#: includes/column-settings.php:285 includes/module-settings.php:68
|
857 |
#: includes/row-settings.php:588
|
858 |
msgid "Always"
|
859 |
msgstr ""
|
860 |
|
|
|
861 |
#: includes/column-settings.php:286 includes/module-settings.php:69
|
862 |
#: includes/row-settings.php:589
|
863 |
msgid "Large Devices Only"
|
864 |
msgstr ""
|
865 |
|
|
|
866 |
#: includes/column-settings.php:287 includes/module-settings.php:70
|
867 |
#: includes/row-settings.php:590
|
868 |
msgid "Large & Medium Devices Only"
|
869 |
msgstr ""
|
870 |
|
|
|
871 |
#: includes/column-settings.php:288 includes/module-settings.php:71
|
872 |
#: includes/row-settings.php:591
|
873 |
msgid "Medium Devices Only"
|
874 |
msgstr ""
|
875 |
|
|
|
876 |
#: includes/column-settings.php:289 includes/module-settings.php:72
|
877 |
#: includes/row-settings.php:592
|
878 |
msgid "Medium & Small Devices Only"
|
879 |
msgstr ""
|
880 |
|
|
|
881 |
#: includes/column-settings.php:290 includes/module-settings.php:73
|
882 |
#: includes/row-settings.php:593
|
883 |
msgid "Small Devices Only"
|
884 |
msgstr ""
|
885 |
|
|
|
886 |
#: includes/column-settings.php:292
|
887 |
msgid "Choose whether to show or hide this column at different device sizes."
|
888 |
msgstr ""
|
889 |
|
|
|
890 |
#: includes/column-settings.php:299
|
891 |
msgid "Medium Device Width"
|
892 |
msgstr ""
|
893 |
|
|
|
894 |
#: includes/column-settings.php:300
|
895 |
msgid "The width of this column on medium devices such as tablets."
|
896 |
msgstr ""
|
897 |
|
|
|
898 |
#: includes/column-settings.php:302 includes/column-settings.php:330
|
899 |
#: modules/callout/callout.php:283
|
900 |
#: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
|
@@ -903,6 +990,7 @@ msgstr ""
|
|
903 |
msgid "Default"
|
904 |
msgstr ""
|
905 |
|
|
|
906 |
#: includes/column-settings.php:303 includes/column-settings.php:331
|
907 |
#: modules/button/button.php:193 modules/callout/callout.php:284
|
908 |
#: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
|
@@ -912,42 +1000,51 @@ msgstr ""
|
|
912 |
msgid "Custom"
|
913 |
msgstr ""
|
914 |
|
|
|
915 |
#: includes/column-settings.php:316
|
916 |
msgid "Custom Medium Device Width"
|
917 |
msgstr ""
|
918 |
|
|
|
919 |
#: includes/column-settings.php:327
|
920 |
msgid "Small Device Width"
|
921 |
msgstr ""
|
922 |
|
|
|
923 |
#: includes/column-settings.php:328
|
924 |
msgid "The width of this column on small devices such as phones."
|
925 |
msgstr ""
|
926 |
|
|
|
927 |
#: includes/column-settings.php:344
|
928 |
msgid "Custom Small Device Width"
|
929 |
msgstr ""
|
930 |
|
|
|
931 |
#: includes/column-settings.php:356 includes/module-settings.php:115
|
932 |
#: includes/row-settings.php:603
|
933 |
msgid "CSS Selectors"
|
934 |
msgstr ""
|
935 |
|
|
|
936 |
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
937 |
#: includes/module-settings.php:119 includes/row-settings.php:607
|
938 |
msgid "ID"
|
939 |
msgstr ""
|
940 |
|
|
|
941 |
#: includes/column-settings.php:361
|
942 |
msgid ""
|
943 |
"A unique ID that will be applied to this column's HTML. Must start with a "
|
944 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
945 |
msgstr ""
|
946 |
|
|
|
947 |
#: includes/column-settings.php:368
|
948 |
msgid "CSS Class"
|
949 |
msgstr ""
|
950 |
|
|
|
951 |
#: includes/column-settings.php:369
|
952 |
msgid ""
|
953 |
"A class that will be applied to this column's HTML. Must start with a letter "
|
@@ -955,42 +1052,46 @@ msgid ""
|
|
955 |
"classes with spaces."
|
956 |
msgstr ""
|
957 |
|
|
|
958 |
#: includes/field-form.php:28
|
959 |
#, php-format
|
960 |
msgctxt "%s stands for form field label."
|
961 |
msgid "Edit %s"
|
962 |
msgstr ""
|
963 |
|
|
|
964 |
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
965 |
msgid "Select Icon"
|
966 |
msgstr ""
|
967 |
|
|
|
968 |
#: includes/field-icon.php:5 includes/field-photo.php:13
|
969 |
msgid "Replace"
|
970 |
msgstr ""
|
971 |
|
972 |
-
|
|
|
973 |
msgid "Remove"
|
974 |
msgstr ""
|
975 |
|
|
|
976 |
#: includes/field-link.php:3
|
977 |
msgid "Select"
|
978 |
msgstr ""
|
979 |
|
|
|
980 |
#: includes/field-link.php:5
|
981 |
msgid "Enter a post title to search."
|
982 |
msgstr ""
|
983 |
|
984 |
-
|
985 |
-
msgid "Start typing..."
|
986 |
-
msgstr ""
|
987 |
-
|
988 |
#: includes/field-link.php:7 includes/icon-selector.php:28
|
989 |
-
#: includes/
|
990 |
-
#: includes/
|
991 |
msgid "Cancel"
|
992 |
msgstr ""
|
993 |
|
|
|
994 |
#: includes/field-multiple-photos.php:8
|
995 |
#, php-format
|
996 |
msgid "1 Photo Selected"
|
@@ -998,34 +1099,41 @@ msgid_plural "%d Photos Selected"
|
|
998 |
msgstr[0] ""
|
999 |
msgstr[1] ""
|
1000 |
|
|
|
1001 |
#: includes/field-multiple-photos.php:13
|
1002 |
msgid "Create Gallery"
|
1003 |
msgstr ""
|
1004 |
|
|
|
1005 |
#: includes/field-multiple-photos.php:14
|
1006 |
msgid "Edit Gallery"
|
1007 |
msgstr ""
|
1008 |
|
|
|
1009 |
#: includes/field-multiple-photos.php:15
|
1010 |
msgid "Add Photos"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
|
|
|
1014 |
msgid "Select Photo"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
|
|
|
1018 |
msgid "Select Video"
|
1019 |
msgstr ""
|
1020 |
|
|
|
1021 |
#: includes/field-video.php:17
|
1022 |
msgid "Replace Video"
|
1023 |
msgstr ""
|
1024 |
|
|
|
1025 |
#: includes/global-settings.php:7 includes/template-settings.php:7
|
1026 |
#: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
|
1027 |
#: modules/button/button.php:59 modules/callout/callout.php:209
|
1028 |
-
#: modules/contact-form/contact-form.php:
|
1029 |
#: modules/content-slider/content-slider.php:190
|
1030 |
#: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
|
1031 |
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
@@ -1041,20 +1149,24 @@ msgstr ""
|
|
1041 |
msgid "General"
|
1042 |
msgstr ""
|
1043 |
|
|
|
1044 |
#: includes/global-settings.php:8
|
1045 |
msgid "Note: These settings apply to all posts and pages."
|
1046 |
msgstr ""
|
1047 |
|
|
|
1048 |
#: includes/global-settings.php:11
|
1049 |
msgid "Default Page Heading"
|
1050 |
msgstr ""
|
1051 |
|
|
|
1052 |
#: includes/global-settings.php:15
|
1053 |
msgctxt ""
|
1054 |
"General settings form field label. Intended meaning: \"Show page heading?\""
|
1055 |
msgid "Show"
|
1056 |
msgstr ""
|
1057 |
|
|
|
1058 |
#: includes/global-settings.php:26
|
1059 |
msgid ""
|
1060 |
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
@@ -1062,48 +1174,58 @@ msgid ""
|
|
1062 |
"choose no."
|
1063 |
msgstr ""
|
1064 |
|
|
|
1065 |
#: includes/global-settings.php:30
|
1066 |
msgid "CSS Selector"
|
1067 |
msgstr ""
|
1068 |
|
|
|
1069 |
#: includes/global-settings.php:32
|
1070 |
msgid "Enter a CSS selector for the default page heading to hide it."
|
1071 |
msgstr ""
|
1072 |
|
|
|
1073 |
#: includes/global-settings.php:37
|
1074 |
msgid "Rows"
|
1075 |
msgstr ""
|
1076 |
|
|
|
1077 |
#: includes/global-settings.php:57
|
1078 |
msgid "Max Width"
|
1079 |
msgstr ""
|
1080 |
|
|
|
1081 |
#: includes/global-settings.php:62
|
1082 |
msgid ""
|
1083 |
"All rows will default to this width. You can override this and make a row "
|
1084 |
"full width in the settings for each row."
|
1085 |
msgstr ""
|
1086 |
|
|
|
1087 |
#: includes/global-settings.php:66
|
1088 |
msgid "Default Row Width"
|
1089 |
msgstr ""
|
1090 |
|
|
|
1091 |
#: includes/global-settings.php:69 includes/global-settings.php:83
|
1092 |
#: includes/row-settings.php:19 includes/row-settings.php:37
|
1093 |
#: includes/row-settings.php:179
|
1094 |
msgid "Fixed"
|
1095 |
msgstr ""
|
1096 |
|
|
|
1097 |
#: includes/global-settings.php:70 includes/global-settings.php:84
|
1098 |
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1099 |
#: modules/button/button.php:192 modules/callout/callout.php:585
|
1100 |
msgid "Full Width"
|
1101 |
msgstr ""
|
1102 |
|
|
|
1103 |
#: includes/global-settings.php:80
|
1104 |
msgid "Default Row Content Width"
|
1105 |
msgstr ""
|
1106 |
|
|
|
1107 |
#: includes/global-settings.php:107
|
1108 |
msgctxt ""
|
1109 |
"General settings form field label. Intended meaning: \"Responsive layout "
|
@@ -1111,109 +1233,43 @@ msgctxt ""
|
|
1111 |
msgid "Enabled"
|
1112 |
msgstr ""
|
1113 |
|
|
|
1114 |
#: includes/global-settings.php:121
|
1115 |
msgid "Medium Device Breakpoint"
|
1116 |
msgstr ""
|
1117 |
|
|
|
1118 |
#: includes/global-settings.php:126
|
1119 |
msgid ""
|
1120 |
"The browser width at which the layout will adjust for medium devices such as "
|
1121 |
"tablets."
|
1122 |
msgstr ""
|
1123 |
|
|
|
1124 |
#: includes/global-settings.php:130
|
1125 |
msgid "Small Device Breakpoint"
|
1126 |
msgstr ""
|
1127 |
|
|
|
1128 |
#: includes/global-settings.php:135
|
1129 |
msgid ""
|
1130 |
"The browser width at which the layout will adjust for small devices such as "
|
1131 |
"phones."
|
1132 |
msgstr ""
|
1133 |
|
|
|
1134 |
#: includes/icon-selector.php:5
|
1135 |
msgctxt "Select option for showing all icon libraries."
|
1136 |
msgid "All Libraries"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
|
1140 |
-
msgid "What would you like to do?"
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: includes/js-config.php:20
|
1144 |
-
msgid "Change Template"
|
1145 |
-
msgstr ""
|
1146 |
-
|
1147 |
-
#: includes/js-config.php:21
|
1148 |
-
msgid ""
|
1149 |
-
"Warning! Changing the template will replace your existing layout. Do you "
|
1150 |
-
"really want to do this?"
|
1151 |
-
msgstr ""
|
1152 |
-
|
1153 |
-
#: includes/js-config.php:22
|
1154 |
-
msgid "Column"
|
1155 |
-
msgstr ""
|
1156 |
-
|
1157 |
-
#: includes/js-config.php:24
|
1158 |
-
msgid ""
|
1159 |
-
"Please select either a background layout or content layout before submitting."
|
1160 |
-
msgstr ""
|
1161 |
-
|
1162 |
-
#: includes/js-config.php:25
|
1163 |
-
msgid "Do you really want to delete this item?"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: includes/js-config.php:26
|
1167 |
-
msgid ""
|
1168 |
-
"Do you really want to delete this module? All content data will be "
|
1169 |
-
"permanently deleted."
|
1170 |
-
msgstr ""
|
1171 |
-
|
1172 |
-
#: includes/js-config.php:27
|
1173 |
-
msgid ""
|
1174 |
-
"Do you really want to delete this row? All content data will be permanently "
|
1175 |
-
"deleted."
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: includes/js-config.php:29
|
1179 |
-
msgid "Discard Draft"
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
#: includes/js-config.php:30
|
1183 |
-
msgid ""
|
1184 |
-
"Do you really want to discard this draft? All of your changes that are not "
|
1185 |
-
"published will be lost."
|
1186 |
-
msgstr ""
|
1187 |
-
|
1188 |
-
#: includes/js-config.php:31 includes/ui.php:44
|
1189 |
-
msgid "Done"
|
1190 |
-
msgstr ""
|
1191 |
-
|
1192 |
-
#: includes/js-config.php:32
|
1193 |
-
msgid "Save Draft"
|
1194 |
-
msgstr ""
|
1195 |
-
|
1196 |
#: includes/js-config.php:33
|
1197 |
msgctxt "Duplicate page/post action label."
|
1198 |
msgid "Duplicate"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
|
1202 |
-
msgid "Duplicate This Page"
|
1203 |
-
msgstr ""
|
1204 |
-
|
1205 |
-
#: includes/js-config.php:35
|
1206 |
-
msgid "Duplicate This Template"
|
1207 |
-
msgstr ""
|
1208 |
-
|
1209 |
-
#: includes/js-config.php:36
|
1210 |
-
msgid "Edit Global Settings"
|
1211 |
-
msgstr ""
|
1212 |
-
|
1213 |
-
#: includes/js-config.php:37
|
1214 |
-
msgid "Drop a row layout or module to get started!"
|
1215 |
-
msgstr ""
|
1216 |
-
|
1217 |
#: includes/js-config.php:38
|
1218 |
msgid ""
|
1219 |
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
@@ -1222,376 +1278,157 @@ msgid ""
|
|
1222 |
"each to determine if the issue is related to a third party plugin."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
|
1226 |
-
msgid "Full Size"
|
1227 |
-
msgstr ""
|
1228 |
-
|
1229 |
-
#: includes/js-config.php:40
|
1230 |
-
msgid "Get Help"
|
1231 |
-
msgstr ""
|
1232 |
-
|
1233 |
-
#: includes/js-config.php:41
|
1234 |
-
msgid "Getting Started Video"
|
1235 |
-
msgstr ""
|
1236 |
-
|
1237 |
#: includes/js-config.php:42
|
1238 |
msgid "\"{message}\" on line {line} of {file}."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
|
1242 |
-
msgid "Insert"
|
1243 |
-
msgstr ""
|
1244 |
-
|
1245 |
-
#: includes/js-config.php:44
|
1246 |
-
msgid "Large"
|
1247 |
-
msgstr ""
|
1248 |
-
|
1249 |
-
#: includes/js-config.php:45
|
1250 |
-
msgid "Manage Templates"
|
1251 |
-
msgstr ""
|
1252 |
-
|
1253 |
-
#: includes/js-config.php:46
|
1254 |
-
msgid "Medium"
|
1255 |
-
msgstr ""
|
1256 |
-
|
1257 |
-
#: includes/js-config.php:47
|
1258 |
-
msgid "Module"
|
1259 |
-
msgstr ""
|
1260 |
-
|
1261 |
-
#: includes/js-config.php:48
|
1262 |
-
msgid "Move"
|
1263 |
-
msgstr ""
|
1264 |
-
|
1265 |
-
#: includes/js-config.php:49
|
1266 |
-
msgid "New Column"
|
1267 |
-
msgstr ""
|
1268 |
-
|
1269 |
-
#: includes/js-config.php:50
|
1270 |
-
msgid "New Row"
|
1271 |
-
msgstr ""
|
1272 |
-
|
1273 |
-
#: includes/js-config.php:51
|
1274 |
-
msgid "No results found."
|
1275 |
-
msgstr ""
|
1276 |
-
|
1277 |
-
#: includes/js-config.php:52
|
1278 |
-
msgid "No Thanks"
|
1279 |
-
msgstr ""
|
1280 |
-
|
1281 |
-
#: includes/js-config.php:53
|
1282 |
-
msgid "OK"
|
1283 |
-
msgstr ""
|
1284 |
-
|
1285 |
-
#: includes/js-config.php:54 modules/photo/photo.php:454
|
1286 |
-
msgid "Photo Page"
|
1287 |
-
msgstr ""
|
1288 |
-
|
1289 |
-
#: includes/js-config.php:55
|
1290 |
-
msgid "Photo Selected"
|
1291 |
-
msgstr ""
|
1292 |
-
|
1293 |
-
#: includes/js-config.php:56
|
1294 |
-
msgid "Photos Selected"
|
1295 |
-
msgstr ""
|
1296 |
-
|
1297 |
-
#: includes/js-config.php:57
|
1298 |
-
msgid "Publish Changes"
|
1299 |
-
msgstr ""
|
1300 |
-
|
1301 |
-
#: includes/js-config.php:59
|
1302 |
-
msgid "Row"
|
1303 |
-
msgstr ""
|
1304 |
-
|
1305 |
-
#: includes/js-config.php:60 includes/row-settings.php:6
|
1306 |
-
msgid "Row Settings"
|
1307 |
-
msgstr ""
|
1308 |
-
|
1309 |
-
#: includes/js-config.php:61
|
1310 |
-
msgid "Save Core Template"
|
1311 |
-
msgstr ""
|
1312 |
-
|
1313 |
-
#: includes/js-config.php:62 includes/ui.php:10
|
1314 |
-
#: includes/user-template-settings.php:4
|
1315 |
-
msgid "Save Template"
|
1316 |
-
msgstr ""
|
1317 |
-
|
1318 |
-
#: includes/js-config.php:64
|
1319 |
-
msgid "Select Photos"
|
1320 |
-
msgstr ""
|
1321 |
-
|
1322 |
-
#: includes/js-config.php:67
|
1323 |
-
msgid "Take a Tour"
|
1324 |
-
msgstr ""
|
1325 |
-
|
1326 |
-
#: includes/js-config.php:68
|
1327 |
-
msgid "Append New Layout"
|
1328 |
-
msgstr ""
|
1329 |
-
|
1330 |
-
#: includes/js-config.php:69
|
1331 |
-
msgid "Replace Existing Layout"
|
1332 |
-
msgstr ""
|
1333 |
-
|
1334 |
-
#: includes/js-config.php:70
|
1335 |
-
msgid "Template Saved!"
|
1336 |
-
msgstr ""
|
1337 |
-
|
1338 |
-
#: includes/js-config.php:71
|
1339 |
-
msgid "Thumbnail"
|
1340 |
-
msgstr ""
|
1341 |
-
|
1342 |
-
#: includes/js-config.php:72
|
1343 |
-
msgid "Next"
|
1344 |
-
msgstr ""
|
1345 |
-
|
1346 |
-
#: includes/js-config.php:73
|
1347 |
-
msgid "Get Started"
|
1348 |
-
msgstr ""
|
1349 |
-
|
1350 |
-
#: includes/js-config.php:74
|
1351 |
-
msgid "Choose a Template"
|
1352 |
-
msgstr ""
|
1353 |
-
|
1354 |
-
#: includes/js-config.php:75
|
1355 |
-
msgid ""
|
1356 |
-
"Get started by choosing a layout template to customize, or build a page from "
|
1357 |
-
"scratch by selecting the blank layout template."
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: includes/js-config.php:76
|
1361 |
-
msgid "Add Rows"
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: includes/js-config.php:77
|
1365 |
-
msgid ""
|
1366 |
-
"Add mulit-column rows, adjust spacing, add backgrounds and more by dragging "
|
1367 |
-
"and dropping row layouts onto the page."
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: includes/js-config.php:78 includes/ui.php:49
|
1371 |
-
msgid "Add Content"
|
1372 |
-
msgstr ""
|
1373 |
-
|
1374 |
-
#: includes/js-config.php:79
|
1375 |
-
msgid ""
|
1376 |
-
"Add new content by dragging and dropping modules or widgets into your row "
|
1377 |
-
"layouts or to create a new row layout."
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
-
#: includes/js-config.php:80
|
1381 |
-
msgid "Edit Content"
|
1382 |
-
msgstr ""
|
1383 |
-
|
1384 |
-
#: includes/js-config.php:81
|
1385 |
-
msgid ""
|
1386 |
-
"Move your mouse over rows, columns or modules to edit and interact with them."
|
1387 |
-
msgstr ""
|
1388 |
-
|
1389 |
-
#: includes/js-config.php:82
|
1390 |
-
msgid ""
|
1391 |
-
"Use the action buttons to perform actions such as moving, editing, "
|
1392 |
-
"duplicating, accessing individual column settings or deleting rows, columns "
|
1393 |
-
"and modules."
|
1394 |
-
msgstr ""
|
1395 |
-
|
1396 |
-
#: includes/js-config.php:83
|
1397 |
-
msgid "Add More Content"
|
1398 |
-
msgstr ""
|
1399 |
-
|
1400 |
-
#: includes/js-config.php:84
|
1401 |
-
msgid ""
|
1402 |
-
"Use the Add Content button to open the content panel and add new row layouts "
|
1403 |
-
"or content."
|
1404 |
-
msgstr ""
|
1405 |
-
|
1406 |
-
#: includes/js-config.php:85
|
1407 |
-
msgid "Change Templates"
|
1408 |
-
msgstr ""
|
1409 |
-
|
1410 |
-
#: includes/js-config.php:86
|
1411 |
-
msgid ""
|
1412 |
-
"Use the Templates button to pick a new template or append one to your "
|
1413 |
-
"layout. Appending will insert a new template at the end of your existing "
|
1414 |
-
"page content."
|
1415 |
-
msgstr ""
|
1416 |
-
|
1417 |
-
#: includes/js-config.php:87
|
1418 |
-
msgid "Helpful Tools"
|
1419 |
-
msgstr ""
|
1420 |
-
|
1421 |
-
#: includes/js-config.php:88
|
1422 |
-
msgid ""
|
1423 |
-
"The Tools button lets you duplicate a page, save a template or edit the "
|
1424 |
-
"global settings."
|
1425 |
-
msgstr ""
|
1426 |
-
|
1427 |
-
#: includes/js-config.php:89
|
1428 |
-
msgid "Publish Your Changes"
|
1429 |
-
msgstr ""
|
1430 |
-
|
1431 |
-
#: includes/js-config.php:90
|
1432 |
-
msgid ""
|
1433 |
-
"Once you're finished, click the Done button to publish your changes, save a "
|
1434 |
-
"draft or revert back to the last published state."
|
1435 |
-
msgstr ""
|
1436 |
-
|
1437 |
-
#: includes/js-config.php:91
|
1438 |
-
msgid "Let's Get Building!"
|
1439 |
-
msgstr ""
|
1440 |
-
|
1441 |
-
#: includes/js-config.php:92
|
1442 |
-
msgid ""
|
1443 |
-
"Now that you know the basics, you're ready to start building! If at any time "
|
1444 |
-
"you need help, click the help icon in the upper right corner to access the "
|
1445 |
-
"help menu. Happy building!"
|
1446 |
-
msgstr ""
|
1447 |
-
|
1448 |
-
#: includes/js-config.php:93
|
1449 |
-
msgid ""
|
1450 |
-
"The settings you are currently editing will not be saved if you navigate "
|
1451 |
-
"away from this page."
|
1452 |
-
msgstr ""
|
1453 |
-
|
1454 |
-
#: includes/js-config.php:94
|
1455 |
-
msgid "View the Knowledge Base"
|
1456 |
-
msgstr ""
|
1457 |
-
|
1458 |
-
#: includes/js-config.php:95
|
1459 |
-
msgid "Visit the Forums"
|
1460 |
-
msgstr ""
|
1461 |
-
|
1462 |
-
#: includes/js-config.php:96
|
1463 |
-
msgid "Watch the Video"
|
1464 |
-
msgstr ""
|
1465 |
-
|
1466 |
-
#: includes/js-config.php:97
|
1467 |
-
msgid ""
|
1468 |
-
"Welcome! It looks like this might be your first time using the builder. "
|
1469 |
-
"Would you like to take a tour?"
|
1470 |
-
msgstr ""
|
1471 |
-
|
1472 |
-
#: includes/js-config.php:98
|
1473 |
-
msgid "Yes Please!"
|
1474 |
-
msgstr ""
|
1475 |
-
|
1476 |
#: includes/loop-settings.php:19
|
1477 |
msgid "Post Type"
|
1478 |
msgstr ""
|
1479 |
|
|
|
1480 |
#: includes/loop-settings.php:25
|
1481 |
msgid "Order By"
|
1482 |
msgstr ""
|
1483 |
|
|
|
1484 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1485 |
#: modules/woocommerce/woocommerce.php:189
|
1486 |
msgid "Date"
|
1487 |
msgstr ""
|
1488 |
|
|
|
1489 |
#: includes/loop-settings.php:29
|
1490 |
msgid "Date Last Modified"
|
1491 |
msgstr ""
|
1492 |
|
|
|
1493 |
#: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
|
1494 |
#: modules/pricing-table/pricing-table.php:94
|
1495 |
msgid "Title"
|
1496 |
msgstr ""
|
1497 |
|
|
|
1498 |
#: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
|
1499 |
msgid "Author"
|
1500 |
msgstr ""
|
1501 |
|
|
|
1502 |
#: includes/loop-settings.php:32
|
1503 |
msgid "Comment Count"
|
1504 |
msgstr ""
|
1505 |
|
|
|
1506 |
#: includes/loop-settings.php:33
|
1507 |
msgid "Menu Order"
|
1508 |
msgstr ""
|
1509 |
|
|
|
1510 |
#: includes/loop-settings.php:34
|
1511 |
msgid "Random"
|
1512 |
msgstr ""
|
1513 |
|
|
|
1514 |
#: includes/loop-settings.php:41
|
1515 |
msgid "Order"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
|
|
|
1519 |
msgid "Descending"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
|
|
|
1523 |
msgid "Ascending"
|
1524 |
msgstr ""
|
1525 |
|
|
|
1526 |
#: includes/loop-settings.php:52
|
1527 |
msgid "Filter"
|
1528 |
msgstr ""
|
1529 |
|
|
|
1530 |
#: includes/loop-settings.php:63
|
1531 |
#, php-format
|
1532 |
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1533 |
msgstr ""
|
1534 |
|
|
|
1535 |
#: includes/loop-settings.php:76
|
1536 |
#, php-format
|
1537 |
msgid ""
|
1538 |
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1539 |
msgstr ""
|
1540 |
|
|
|
1541 |
#: includes/loop-settings.php:90
|
1542 |
msgid "Authors"
|
1543 |
msgstr ""
|
1544 |
|
|
|
1545 |
#: includes/loop-settings.php:91
|
1546 |
msgid ""
|
1547 |
"Enter a comma separated list of authors usernames. Only posts with these "
|
1548 |
"authors will be shown."
|
1549 |
msgstr ""
|
1550 |
|
|
|
1551 |
#: includes/module-settings.php:75
|
1552 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1553 |
msgstr ""
|
1554 |
|
|
|
1555 |
#: includes/module-settings.php:83
|
1556 |
msgid "Animation"
|
1557 |
msgstr ""
|
1558 |
|
|
|
1559 |
#: includes/module-settings.php:89
|
1560 |
msgctxt "Animation style."
|
1561 |
msgid "None"
|
1562 |
msgstr ""
|
1563 |
|
|
|
1564 |
#: includes/module-settings.php:90
|
1565 |
msgctxt "Animation style."
|
1566 |
msgid "Fade In"
|
1567 |
msgstr ""
|
1568 |
|
|
|
1569 |
#: includes/module-settings.php:91
|
1570 |
msgctxt "Animation style."
|
1571 |
msgid "Slide Left"
|
1572 |
msgstr ""
|
1573 |
|
|
|
1574 |
#: includes/module-settings.php:92
|
1575 |
msgctxt "Animation style."
|
1576 |
msgid "Slide Right"
|
1577 |
msgstr ""
|
1578 |
|
|
|
1579 |
#: includes/module-settings.php:93
|
1580 |
msgctxt "Animation style."
|
1581 |
msgid "Slide Up"
|
1582 |
msgstr ""
|
1583 |
|
|
|
1584 |
#: includes/module-settings.php:94
|
1585 |
msgctxt "Animation style."
|
1586 |
msgid "Slide Down"
|
1587 |
msgstr ""
|
1588 |
|
|
|
1589 |
#: includes/module-settings.php:102
|
1590 |
#: modules/content-slider/content-slider.php:229
|
1591 |
#: modules/testimonials/testimonials.php:91
|
1592 |
msgid "Delay"
|
1593 |
msgstr ""
|
1594 |
|
|
|
1595 |
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1596 |
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
|
1597 |
#: modules/content-slider/content-slider.php:250
|
@@ -1603,20 +1440,24 @@ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
|
1603 |
msgid "seconds"
|
1604 |
msgstr ""
|
1605 |
|
|
|
1606 |
#: includes/module-settings.php:107
|
1607 |
msgid "The amount of time in seconds before this animation starts."
|
1608 |
msgstr ""
|
1609 |
|
|
|
1610 |
#: includes/module-settings.php:120
|
1611 |
msgid ""
|
1612 |
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1613 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1614 |
msgstr ""
|
1615 |
|
|
|
1616 |
#: includes/module-settings.php:127 includes/row-settings.php:615
|
1617 |
msgid "Class"
|
1618 |
msgstr ""
|
1619 |
|
|
|
1620 |
#: includes/module-settings.php:128
|
1621 |
msgid ""
|
1622 |
"A class that will be applied to this module's HTML. Must start with a letter "
|
@@ -1624,65 +1465,83 @@ msgid ""
|
|
1624 |
"classes with spaces."
|
1625 |
msgstr ""
|
1626 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1627 |
#: includes/row-settings.php:16 modules/button/button.php:188
|
1628 |
#: modules/content-slider/content-slider.php:483
|
1629 |
msgid "Width"
|
1630 |
msgstr ""
|
1631 |
|
|
|
1632 |
#: includes/row-settings.php:27
|
1633 |
msgid ""
|
1634 |
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
1635 |
"no wider than the Row Max Width set in the Global Settings."
|
1636 |
msgstr ""
|
1637 |
|
|
|
1638 |
#: includes/row-settings.php:34
|
1639 |
msgid "Content Width"
|
1640 |
msgstr ""
|
1641 |
|
|
|
1642 |
#: includes/row-settings.php:40
|
1643 |
msgid ""
|
1644 |
"Full width content spans the width of the page from edge to edge. Fixed "
|
1645 |
"content is no wider than the Row Max Width set in the Global Settings."
|
1646 |
msgstr ""
|
1647 |
|
|
|
1648 |
#: includes/row-settings.php:61
|
1649 |
msgid "Background"
|
1650 |
msgstr ""
|
1651 |
|
|
|
1652 |
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
|
1653 |
msgctxt "Background type."
|
1654 |
msgid "None"
|
1655 |
msgstr ""
|
1656 |
|
|
|
1657 |
#: includes/row-settings.php:69
|
1658 |
msgctxt "Background type."
|
1659 |
msgid "Color"
|
1660 |
msgstr ""
|
1661 |
|
|
|
1662 |
#: includes/row-settings.php:70
|
1663 |
msgctxt "Background type."
|
1664 |
msgid "Photo"
|
1665 |
msgstr ""
|
1666 |
|
|
|
1667 |
#: includes/row-settings.php:71
|
1668 |
msgctxt "Background type."
|
1669 |
msgid "Video"
|
1670 |
msgstr ""
|
1671 |
|
|
|
1672 |
#: includes/row-settings.php:73
|
1673 |
msgctxt "Background type."
|
1674 |
msgid "Slideshow"
|
1675 |
msgstr ""
|
1676 |
|
|
|
1677 |
#: includes/row-settings.php:77
|
1678 |
msgctxt "Background type."
|
1679 |
msgid "Parallax"
|
1680 |
msgstr ""
|
1681 |
|
|
|
1682 |
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
|
1683 |
msgid "Background Photo"
|
1684 |
msgstr ""
|
1685 |
|
|
|
1686 |
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1687 |
#: modules/callout/callout.php:316 modules/callout/callout.php:332
|
1688 |
#: modules/callout/callout.php:336
|
@@ -1693,30 +1552,36 @@ msgstr ""
|
|
1693 |
msgid "Photo"
|
1694 |
msgstr ""
|
1695 |
|
|
|
1696 |
#: includes/row-settings.php:140
|
1697 |
msgid "Repeat"
|
1698 |
msgstr ""
|
1699 |
|
|
|
1700 |
#: includes/row-settings.php:143
|
1701 |
msgctxt "Background repeat."
|
1702 |
msgid "None"
|
1703 |
msgstr ""
|
1704 |
|
|
|
1705 |
#: includes/row-settings.php:144
|
1706 |
msgctxt "Background repeat."
|
1707 |
msgid "Tile"
|
1708 |
msgstr ""
|
1709 |
|
|
|
1710 |
#: includes/row-settings.php:145
|
1711 |
msgctxt "Background repeat."
|
1712 |
msgid "Horizontal"
|
1713 |
msgstr ""
|
1714 |
|
|
|
1715 |
#: includes/row-settings.php:146
|
1716 |
msgctxt "Background repeat."
|
1717 |
msgid "Vertical"
|
1718 |
msgstr ""
|
1719 |
|
|
|
1720 |
#: includes/row-settings.php:148
|
1721 |
msgid ""
|
1722 |
"Repeat applies to how the image should display in the row background. "
|
@@ -1725,34 +1590,42 @@ msgid ""
|
|
1725 |
"also specify the image to only repeat horizontally or vertically."
|
1726 |
msgstr ""
|
1727 |
|
|
|
1728 |
#: includes/row-settings.php:158
|
1729 |
msgid "Left Top"
|
1730 |
msgstr ""
|
1731 |
|
|
|
1732 |
#: includes/row-settings.php:159
|
1733 |
msgid "Left Center"
|
1734 |
msgstr ""
|
1735 |
|
|
|
1736 |
#: includes/row-settings.php:160
|
1737 |
msgid "Left Bottom"
|
1738 |
msgstr ""
|
1739 |
|
|
|
1740 |
#: includes/row-settings.php:161
|
1741 |
msgid "Right Top"
|
1742 |
msgstr ""
|
1743 |
|
|
|
1744 |
#: includes/row-settings.php:162
|
1745 |
msgid "Right Center"
|
1746 |
msgstr ""
|
1747 |
|
|
|
1748 |
#: includes/row-settings.php:163
|
1749 |
msgid "Right Bottom"
|
1750 |
msgstr ""
|
1751 |
|
|
|
1752 |
#: includes/row-settings.php:164
|
1753 |
msgid "Center Top"
|
1754 |
msgstr ""
|
1755 |
|
|
|
1756 |
#: includes/row-settings.php:165 modules/button/button.php:218
|
1757 |
#: modules/callout/callout.php:251
|
1758 |
#: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
|
@@ -1762,22 +1635,27 @@ msgstr ""
|
|
1762 |
msgid "Center"
|
1763 |
msgstr ""
|
1764 |
|
|
|
1765 |
#: includes/row-settings.php:166
|
1766 |
msgid "Center Bottom"
|
1767 |
msgstr ""
|
1768 |
|
|
|
1769 |
#: includes/row-settings.php:168
|
1770 |
msgid "Position will tell the image where it should sit in the row background."
|
1771 |
msgstr ""
|
1772 |
|
|
|
1773 |
#: includes/row-settings.php:175
|
1774 |
msgid "Attachment"
|
1775 |
msgstr ""
|
1776 |
|
|
|
1777 |
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1778 |
msgid "Scroll"
|
1779 |
msgstr ""
|
1780 |
|
|
|
1781 |
#: includes/row-settings.php:181
|
1782 |
msgid ""
|
1783 |
"Attachment will specify how the image reacts when scrolling a page. When "
|
@@ -1786,67 +1664,81 @@ msgid ""
|
|
1786 |
"background if fill is selected in the scale setting."
|
1787 |
msgstr ""
|
1788 |
|
|
|
1789 |
#: includes/row-settings.php:188
|
1790 |
msgid "Scale"
|
1791 |
msgstr ""
|
1792 |
|
|
|
1793 |
#: includes/row-settings.php:191
|
1794 |
msgctxt "Background scale."
|
1795 |
msgid "None"
|
1796 |
msgstr ""
|
1797 |
|
|
|
1798 |
#: includes/row-settings.php:192
|
1799 |
msgid "Fit"
|
1800 |
msgstr ""
|
1801 |
|
|
|
1802 |
#: includes/row-settings.php:193
|
1803 |
msgid "Fill"
|
1804 |
msgstr ""
|
1805 |
|
|
|
1806 |
#: includes/row-settings.php:195
|
1807 |
msgid ""
|
1808 |
"Scale applies to how the image should display in the row background. You can "
|
1809 |
"select either fill or fit to the row background."
|
1810 |
msgstr ""
|
1811 |
|
|
|
1812 |
#: includes/row-settings.php:203
|
1813 |
msgid "Background Video"
|
1814 |
msgstr ""
|
1815 |
|
|
|
1816 |
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
|
1817 |
#: modules/video/video.php:19 modules/video/video.php:100
|
1818 |
msgid "Video"
|
1819 |
msgstr ""
|
1820 |
|
|
|
1821 |
#: includes/row-settings.php:208
|
1822 |
msgid ""
|
1823 |
"An HTML5 video to use as the background of this row. Supported types are "
|
1824 |
"MP4, WebM and Ogg."
|
1825 |
msgstr ""
|
1826 |
|
|
|
1827 |
#: includes/row-settings.php:215
|
1828 |
msgid "Fallback Photo"
|
1829 |
msgstr ""
|
1830 |
|
|
|
1831 |
#: includes/row-settings.php:216
|
1832 |
msgid "A photo that will be displayed if the video fails to load."
|
1833 |
msgstr ""
|
1834 |
|
|
|
1835 |
#: includes/row-settings.php:224
|
1836 |
msgid "Background Slideshow"
|
1837 |
msgstr ""
|
1838 |
|
|
|
1839 |
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
1840 |
#: modules/slideshow/slideshow.php:263
|
1841 |
msgid "Source"
|
1842 |
msgstr ""
|
1843 |
|
|
|
1844 |
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
1845 |
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
1846 |
#: modules/video/video.php:86
|
1847 |
msgid "Media Library"
|
1848 |
msgstr ""
|
1849 |
|
|
|
1850 |
#: includes/row-settings.php:234 modules/gallery/gallery.php:240
|
1851 |
#: modules/slideshow/slideshow.php:269
|
1852 |
msgid ""
|
@@ -1855,123 +1747,150 @@ msgid ""
|
|
1855 |
"accessed by using the get a link function in your SmugMug gallery."
|
1856 |
msgstr ""
|
1857 |
|
|
|
1858 |
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
1859 |
#: modules/slideshow/slideshow.php:281
|
1860 |
msgid "Photos"
|
1861 |
msgstr ""
|
1862 |
|
|
|
1863 |
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
1864 |
#: modules/slideshow/slideshow.php:285
|
1865 |
msgid "Feed URL"
|
1866 |
msgstr ""
|
1867 |
|
|
|
1868 |
#: includes/row-settings.php:263 includes/row-settings.php:328
|
1869 |
#: modules/slideshow/slideshow.php:382
|
1870 |
msgid "Speed"
|
1871 |
msgstr ""
|
1872 |
|
|
|
1873 |
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
|
1874 |
#: modules/slideshow/slideshow.php:389
|
1875 |
#: modules/testimonials/testimonials.php:99
|
1876 |
msgid "Transition"
|
1877 |
msgstr ""
|
1878 |
|
|
|
1879 |
#: includes/row-settings.php:276
|
1880 |
msgctxt "Slideshow transition type."
|
1881 |
msgid "None"
|
1882 |
msgstr ""
|
1883 |
|
|
|
1884 |
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
|
1885 |
#: modules/slideshow/slideshow.php:393
|
1886 |
#: modules/testimonials/testimonials.php:103
|
1887 |
msgid "Fade"
|
1888 |
msgstr ""
|
1889 |
|
|
|
1890 |
#: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
|
1891 |
msgid "Ken Burns"
|
1892 |
msgstr ""
|
1893 |
|
|
|
1894 |
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
1895 |
msgid "Slide Horizontal"
|
1896 |
msgstr ""
|
1897 |
|
|
|
1898 |
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
1899 |
msgid "Slide Vertical"
|
1900 |
msgstr ""
|
1901 |
|
|
|
1902 |
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
1903 |
msgid "Blinds"
|
1904 |
msgstr ""
|
1905 |
|
|
|
1906 |
#: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
|
1907 |
msgid "Bars"
|
1908 |
msgstr ""
|
1909 |
|
|
|
1910 |
#: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
|
1911 |
msgid "Random Bars"
|
1912 |
msgstr ""
|
1913 |
|
|
|
1914 |
#: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
|
1915 |
msgid "Boxes"
|
1916 |
msgstr ""
|
1917 |
|
|
|
1918 |
#: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
|
1919 |
msgid "Random Boxes"
|
1920 |
msgstr ""
|
1921 |
|
|
|
1922 |
#: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
|
1923 |
msgid "Boxes Grow"
|
1924 |
msgstr ""
|
1925 |
|
|
|
1926 |
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
|
1927 |
#: modules/slideshow/slideshow.php:407
|
1928 |
#: modules/testimonials/testimonials.php:108
|
1929 |
msgid "Transition Speed"
|
1930 |
msgstr ""
|
1931 |
|
|
|
1932 |
#: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
|
1933 |
msgid "Randomize Photos"
|
1934 |
msgstr ""
|
1935 |
|
|
|
1936 |
#: includes/row-settings.php:317
|
1937 |
msgid "Background Parallax"
|
1938 |
msgstr ""
|
1939 |
|
|
|
1940 |
#: includes/row-settings.php:331
|
1941 |
msgid "Fast"
|
1942 |
msgstr ""
|
1943 |
|
|
|
1944 |
#: includes/row-settings.php:332
|
1945 |
msgctxt "Speed."
|
1946 |
msgid "Medium"
|
1947 |
msgstr ""
|
1948 |
|
|
|
1949 |
#: includes/row-settings.php:333
|
1950 |
msgid "Slow"
|
1951 |
msgstr ""
|
1952 |
|
|
|
1953 |
#: includes/row-settings.php:342
|
1954 |
msgid "Background Overlay"
|
1955 |
msgstr ""
|
1956 |
|
|
|
1957 |
#: includes/row-settings.php:346
|
1958 |
msgid "Overlay Color"
|
1959 |
msgstr ""
|
1960 |
|
|
|
1961 |
#: includes/row-settings.php:354
|
1962 |
msgid "Overlay Opacity"
|
1963 |
msgstr ""
|
1964 |
|
|
|
1965 |
#: includes/row-settings.php:595
|
1966 |
msgid "Choose whether to show or hide this row at different device sizes."
|
1967 |
msgstr ""
|
1968 |
|
|
|
1969 |
#: includes/row-settings.php:608
|
1970 |
msgid ""
|
1971 |
"A unique ID that will be applied to this row's HTML. Must start with a "
|
1972 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1973 |
msgstr ""
|
1974 |
|
|
|
1975 |
#: includes/row-settings.php:616
|
1976 |
msgid ""
|
1977 |
"A class that will be applied to this row's HTML. Must start with a letter "
|
@@ -1979,37 +1898,45 @@ msgid ""
|
|
1979 |
"classes with spaces."
|
1980 |
msgstr ""
|
1981 |
|
|
|
1982 |
#: includes/settings.php:62
|
1983 |
msgid "Save"
|
1984 |
msgstr ""
|
1985 |
|
|
|
1986 |
#: includes/template-selector.php:3
|
1987 |
msgid "Layout Templates"
|
1988 |
msgstr ""
|
1989 |
|
|
|
1990 |
#: includes/template-selector.php:8
|
1991 |
msgid "Home Pages"
|
1992 |
msgstr ""
|
1993 |
|
|
|
1994 |
#: includes/template-selector.php:9
|
1995 |
msgid "Content Pages"
|
1996 |
msgstr ""
|
1997 |
|
|
|
1998 |
#: includes/template-selector.php:13
|
1999 |
msgid "Your Templates"
|
2000 |
msgstr ""
|
2001 |
|
|
|
2002 |
#: includes/template-selector.php:47 includes/template-selector.php:77
|
2003 |
msgctxt "Template name."
|
2004 |
msgid "Blank"
|
2005 |
msgstr ""
|
2006 |
|
|
|
2007 |
#: includes/template-selector.php:72
|
2008 |
msgid ""
|
2009 |
"You haven't saved any templates yet! To do so, create a layout and save it "
|
2010 |
"as a template under <strong>Tools → Save Template</strong>."
|
2011 |
msgstr ""
|
2012 |
|
|
|
2013 |
#: includes/template-settings.php:14 includes/user-template-settings.php:15
|
2014 |
msgctxt "Template name."
|
2015 |
msgid "Name"
|
@@ -2025,198 +1952,253 @@ msgid ""
|
|
2025 |
"templates/\" directory."
|
2026 |
msgstr ""
|
2027 |
|
|
|
2028 |
#: includes/ui.php:7
|
2029 |
#, php-format
|
2030 |
msgid "Template: %s"
|
2031 |
msgstr ""
|
2032 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2033 |
#: includes/ui.php:23
|
2034 |
msgid "Page Builder Demo"
|
2035 |
msgstr ""
|
2036 |
|
|
|
2037 |
#: includes/ui.php:40
|
2038 |
msgid "Buy Now!"
|
2039 |
msgstr ""
|
2040 |
|
|
|
2041 |
#: includes/ui.php:42
|
2042 |
msgid "Upgrade!"
|
2043 |
msgstr ""
|
2044 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2045 |
#: includes/ui.php:45
|
2046 |
msgid "Tools"
|
2047 |
msgstr ""
|
2048 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2049 |
#: includes/ui.php:67
|
2050 |
msgid "Row Layouts"
|
2051 |
msgstr ""
|
2052 |
|
|
|
2053 |
#: includes/ui.php:71
|
2054 |
msgid "1 Column"
|
2055 |
msgstr ""
|
2056 |
|
|
|
2057 |
#: includes/ui.php:72
|
2058 |
msgid "2 Columns"
|
2059 |
msgstr ""
|
2060 |
|
|
|
2061 |
#: includes/ui.php:73
|
2062 |
msgid "3 Columns"
|
2063 |
msgstr ""
|
2064 |
|
|
|
2065 |
#: includes/ui.php:74
|
2066 |
msgid "4 Columns"
|
2067 |
msgstr ""
|
2068 |
|
|
|
2069 |
#: includes/ui.php:75
|
2070 |
msgid "5 Columns"
|
2071 |
msgstr ""
|
2072 |
|
|
|
2073 |
#: includes/ui.php:76
|
2074 |
msgid "6 Columns"
|
2075 |
msgstr ""
|
2076 |
|
|
|
2077 |
#: includes/ui.php:77
|
2078 |
msgid "Left Sidebar"
|
2079 |
msgstr ""
|
2080 |
|
|
|
2081 |
#: includes/ui.php:78
|
2082 |
msgid "Right Sidebar"
|
2083 |
msgstr ""
|
2084 |
|
|
|
2085 |
#: includes/ui.php:79
|
2086 |
msgid "Left & Right Sidebar"
|
2087 |
msgstr ""
|
2088 |
|
|
|
2089 |
#: includes/updater/classes/class-fl-updater.php:107
|
2090 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2091 |
msgstr ""
|
2092 |
|
|
|
2093 |
#: includes/updater/classes/class-fl-updater.php:109
|
2094 |
msgid "Please subscribe to enable automatic updates for this plugin."
|
2095 |
msgstr ""
|
2096 |
|
|
|
2097 |
#: includes/updater/classes/class-fl-updater.php:111
|
2098 |
#: includes/updater/includes/form.php:6
|
2099 |
msgid "Subscribe Now"
|
2100 |
msgstr ""
|
2101 |
|
|
|
2102 |
#: includes/updater/includes/form.php:5
|
2103 |
msgid ""
|
2104 |
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
2105 |
"enable automatic updates."
|
2106 |
msgstr ""
|
2107 |
|
|
|
2108 |
#: includes/updater/includes/form.php:11
|
2109 |
msgid "Updates & Support Subscription"
|
2110 |
msgstr ""
|
2111 |
|
|
|
2112 |
#: includes/updater/includes/form.php:14
|
2113 |
msgid "Active!"
|
2114 |
msgstr ""
|
2115 |
|
|
|
2116 |
#: includes/updater/includes/form.php:16
|
2117 |
msgid "Not Active!"
|
2118 |
msgstr ""
|
2119 |
|
|
|
2120 |
#: includes/updater/includes/form.php:22
|
2121 |
msgid "Email address saved!"
|
2122 |
msgstr ""
|
2123 |
|
|
|
2124 |
#: includes/updater/includes/form.php:27
|
2125 |
#, php-format
|
2126 |
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
|
2130 |
-
msgid "Save Subscription Settings"
|
2131 |
-
msgstr ""
|
2132 |
-
|
2133 |
#: includes/user-template-settings.php:8
|
2134 |
msgid ""
|
2135 |
"Save the current layout as a template that can be reused under "
|
2136 |
"<strong>Templates → Your Templates</strong>."
|
2137 |
msgstr ""
|
2138 |
|
|
|
2139 |
#: modules/accordion/accordion.php:14
|
2140 |
msgid "Accordion"
|
2141 |
msgstr ""
|
2142 |
|
|
|
2143 |
#: modules/accordion/accordion.php:15
|
2144 |
msgid "Display a collapsible accordion of items."
|
2145 |
msgstr ""
|
2146 |
|
|
|
2147 |
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2148 |
msgid "Items"
|
2149 |
msgstr ""
|
2150 |
|
|
|
2151 |
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
2152 |
msgid "Item"
|
2153 |
msgstr ""
|
2154 |
|
|
|
2155 |
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
2156 |
msgid "Border Color"
|
2157 |
msgstr ""
|
2158 |
|
|
|
2159 |
#: modules/accordion/accordion.php:62
|
2160 |
msgid "Label Size"
|
2161 |
msgstr ""
|
2162 |
|
|
|
2163 |
#: modules/accordion/accordion.php:65
|
2164 |
msgctxt "Label size."
|
2165 |
msgid "Small"
|
2166 |
msgstr ""
|
2167 |
|
|
|
2168 |
#: modules/accordion/accordion.php:66
|
2169 |
msgctxt "Label size."
|
2170 |
msgid "Medium"
|
2171 |
msgstr ""
|
2172 |
|
|
|
2173 |
#: modules/accordion/accordion.php:67
|
2174 |
msgctxt "Label size."
|
2175 |
msgid "Large"
|
2176 |
msgstr ""
|
2177 |
|
|
|
2178 |
#: modules/accordion/accordion.php:75
|
2179 |
msgid "Item Spacing"
|
2180 |
msgstr ""
|
2181 |
|
|
|
2182 |
#: modules/accordion/accordion.php:86
|
2183 |
msgid "Collapse Inactive"
|
2184 |
msgstr ""
|
2185 |
|
|
|
2186 |
#: modules/accordion/accordion.php:92
|
2187 |
msgid ""
|
2188 |
"Choosing yes will keep only one item open at a time. Choosing no will allow "
|
2189 |
"multiple items to be open at the same time."
|
2190 |
msgstr ""
|
2191 |
|
|
|
2192 |
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
2193 |
msgid "Add Item"
|
2194 |
msgstr ""
|
2195 |
|
|
|
2196 |
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
2197 |
msgid "Label"
|
2198 |
msgstr ""
|
2199 |
|
|
|
2200 |
#: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
|
2201 |
#: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
|
2202 |
#: modules/tabs/tabs.php:89
|
2203 |
msgid "Content"
|
2204 |
msgstr ""
|
2205 |
|
|
|
2206 |
#: modules/button/button.php:14 modules/callout/callout.php:479
|
2207 |
#: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
|
2208 |
#: modules/pricing-table/pricing-table.php:129
|
2209 |
msgid "Button"
|
2210 |
msgstr ""
|
2211 |
|
|
|
2212 |
#: modules/button/button.php:15
|
2213 |
msgid "A simple call to action button."
|
2214 |
msgstr ""
|
2215 |
|
|
|
2216 |
#: modules/button/button.php:67 modules/cta/cta.php:222
|
2217 |
msgid "Click Here"
|
2218 |
msgstr ""
|
2219 |
|
|
|
2220 |
#: modules/button/button.php:75 modules/callout/callout.php:317
|
2221 |
#: modules/callout/callout.php:365 modules/callout/callout.php:369
|
2222 |
#: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
|
@@ -2225,6 +2207,7 @@ msgstr ""
|
|
2225 |
msgid "Icon"
|
2226 |
msgstr ""
|
2227 |
|
|
|
2228 |
#: modules/button/button.php:81 modules/button/button.php:85
|
2229 |
#: modules/callout/callout.php:445 modules/callout/callout.php:449
|
2230 |
#: modules/content-slider/content-slider.php:573
|
@@ -2236,10 +2219,12 @@ msgstr ""
|
|
2236 |
msgid "Link"
|
2237 |
msgstr ""
|
2238 |
|
|
|
2239 |
#: modules/button/button.php:86
|
2240 |
msgid "http://www.example.com"
|
2241 |
msgstr ""
|
2242 |
|
|
|
2243 |
#: modules/button/button.php:93 modules/callout/callout.php:457
|
2244 |
#: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
|
2245 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
@@ -2247,6 +2232,7 @@ msgstr ""
|
|
2247 |
msgid "Link Target"
|
2248 |
msgstr ""
|
2249 |
|
|
|
2250 |
#: modules/button/button.php:96 modules/callout/callout.php:460
|
2251 |
#: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
|
2252 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
@@ -2254,6 +2240,7 @@ msgstr ""
|
|
2254 |
msgid "Same Window"
|
2255 |
msgstr ""
|
2256 |
|
|
|
2257 |
#: modules/button/button.php:97 modules/callout/callout.php:461
|
2258 |
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
|
2259 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
@@ -2261,12 +2248,14 @@ msgstr ""
|
|
2261 |
msgid "New Window"
|
2262 |
msgstr ""
|
2263 |
|
|
|
2264 |
#: modules/button/button.php:111 modules/cta/cta.php:187
|
2265 |
#: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
|
2266 |
#: modules/icon/icon.php:78
|
2267 |
msgid "Colors"
|
2268 |
msgstr ""
|
2269 |
|
|
|
2270 |
#: modules/button/button.php:121 modules/callout/callout.php:409
|
2271 |
#: modules/callout/callout.php:514
|
2272 |
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
@@ -2274,6 +2263,7 @@ msgstr ""
|
|
2274 |
msgid "Background Hover Color"
|
2275 |
msgstr ""
|
2276 |
|
|
|
2277 |
#: modules/button/button.php:130 modules/callout/callout.php:523
|
2278 |
#: modules/content-slider/content-slider.php:528
|
2279 |
#: modules/content-slider/content-slider.php:641
|
@@ -2282,16 +2272,19 @@ msgstr ""
|
|
2282 |
msgid "Text Color"
|
2283 |
msgstr ""
|
2284 |
|
|
|
2285 |
#: modules/button/button.php:136 modules/callout/callout.php:529
|
2286 |
#: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
|
2287 |
msgid "Text Hover Color"
|
2288 |
msgstr ""
|
2289 |
|
|
|
2290 |
#: modules/button/button.php:153 modules/callout/callout.php:546
|
2291 |
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
|
2292 |
msgid "Flat"
|
2293 |
msgstr ""
|
2294 |
|
|
|
2295 |
#: modules/button/button.php:154 modules/callout/callout.php:417
|
2296 |
#: modules/callout/callout.php:547
|
2297 |
#: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
|
@@ -2299,38 +2292,45 @@ msgstr ""
|
|
2299 |
msgid "Gradient"
|
2300 |
msgstr ""
|
2301 |
|
|
|
2302 |
#: modules/button/button.php:155 modules/callout/callout.php:548
|
2303 |
#: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
|
2304 |
msgid "Transparent"
|
2305 |
msgstr ""
|
2306 |
|
|
|
2307 |
#: modules/button/button.php:165 modules/callout/callout.php:558
|
2308 |
#: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
|
2309 |
#: modules/pricing-table/pricing-table.php:67
|
2310 |
msgid "Border Size"
|
2311 |
msgstr ""
|
2312 |
|
|
|
2313 |
#: modules/button/button.php:174 modules/callout/callout.php:567
|
2314 |
#: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
|
2315 |
#: modules/cta/cta.php:323
|
2316 |
msgid "Background Opacity"
|
2317 |
msgstr ""
|
2318 |
|
|
|
2319 |
#: modules/button/button.php:184 modules/callout/callout.php:244
|
2320 |
#: modules/cta/cta.php:104 modules/heading/heading.php:82
|
2321 |
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
2322 |
msgid "Structure"
|
2323 |
msgstr ""
|
2324 |
|
|
|
2325 |
#: modules/button/button.php:191 modules/callout/callout.php:584
|
2326 |
msgctxt "Width."
|
2327 |
msgid "Auto"
|
2328 |
msgstr ""
|
2329 |
|
|
|
2330 |
#: modules/button/button.php:207
|
2331 |
msgid "Custom Width"
|
2332 |
msgstr ""
|
2333 |
|
|
|
2334 |
#: modules/button/button.php:215 modules/cta/cta.php:122
|
2335 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2336 |
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
@@ -2338,25 +2338,30 @@ msgstr ""
|
|
2338 |
msgid "Alignment"
|
2339 |
msgstr ""
|
2340 |
|
|
|
2341 |
#: modules/button/button.php:225 modules/callout/callout.php:590
|
2342 |
#: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
|
2343 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2344 |
msgid "Font Size"
|
2345 |
msgstr ""
|
2346 |
|
|
|
2347 |
#: modules/button/button.php:241 modules/callout/callout.php:606
|
2348 |
#: modules/cta/cta.php:353
|
2349 |
msgid "Round Corners"
|
2350 |
msgstr ""
|
2351 |
|
|
|
2352 |
#: modules/callout/callout.php:14
|
2353 |
msgid "Callout"
|
2354 |
msgstr ""
|
2355 |
|
|
|
2356 |
#: modules/callout/callout.php:15
|
2357 |
msgid "A heading and snippet of text with an optional link, icon and image."
|
2358 |
msgstr ""
|
2359 |
|
|
|
2360 |
#: modules/callout/callout.php:216
|
2361 |
#: modules/content-slider/content-slider.php:413
|
2362 |
#: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
|
@@ -2366,23 +2371,28 @@ msgstr ""
|
|
2366 |
msgid "Heading"
|
2367 |
msgstr ""
|
2368 |
|
|
|
2369 |
#: modules/callout/callout.php:248
|
2370 |
msgid "Overall Alignment"
|
2371 |
msgstr ""
|
2372 |
|
|
|
2373 |
#: modules/callout/callout.php:255
|
2374 |
msgid "The alignment that will apply to all elements within the callout."
|
2375 |
msgstr ""
|
2376 |
|
|
|
2377 |
#: modules/callout/callout.php:263 modules/cta/cta.php:147
|
2378 |
msgid "Heading Structure"
|
2379 |
msgstr ""
|
2380 |
|
|
|
2381 |
#: modules/callout/callout.php:267
|
2382 |
#: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
|
2383 |
msgid "Heading Tag"
|
2384 |
msgstr ""
|
2385 |
|
|
|
2386 |
#: modules/callout/callout.php:280
|
2387 |
#: modules/content-slider/content-slider.php:445
|
2388 |
#: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
|
@@ -2390,301 +2400,407 @@ msgstr ""
|
|
2390 |
msgid "Heading Size"
|
2391 |
msgstr ""
|
2392 |
|
|
|
2393 |
#: modules/callout/callout.php:294 modules/cta/cta.php:178
|
2394 |
msgid "Heading Custom Size"
|
2395 |
msgstr ""
|
2396 |
|
|
|
2397 |
#: modules/callout/callout.php:312
|
2398 |
msgid "Image Type"
|
2399 |
msgstr ""
|
2400 |
|
|
|
2401 |
#: modules/callout/callout.php:315
|
2402 |
msgctxt "Image type."
|
2403 |
msgid "None"
|
2404 |
msgstr ""
|
2405 |
|
|
|
2406 |
#: modules/callout/callout.php:340 modules/photo/photo.php:401
|
2407 |
#: modules/slideshow/slideshow.php:312
|
2408 |
msgid "Crop"
|
2409 |
msgstr ""
|
2410 |
|
|
|
2411 |
#: modules/callout/callout.php:343
|
2412 |
msgctxt "Crop"
|
2413 |
msgid "None"
|
2414 |
msgstr ""
|
2415 |
|
|
|
2416 |
#: modules/callout/callout.php:344 modules/photo/photo.php:405
|
2417 |
msgid "Landscape"
|
2418 |
msgstr ""
|
2419 |
|
|
|
2420 |
#: modules/callout/callout.php:345 modules/photo/photo.php:406
|
2421 |
msgid "Panorama"
|
2422 |
msgstr ""
|
2423 |
|
|
|
2424 |
#: modules/callout/callout.php:346 modules/photo/photo.php:407
|
2425 |
msgid "Portrait"
|
2426 |
msgstr ""
|
2427 |
|
|
|
2428 |
#: modules/callout/callout.php:347 modules/photo/photo.php:408
|
2429 |
msgid "Square"
|
2430 |
msgstr ""
|
2431 |
|
|
|
2432 |
#: modules/callout/callout.php:348 modules/photo/photo.php:409
|
2433 |
msgid "Circle"
|
2434 |
msgstr ""
|
2435 |
|
|
|
2436 |
#: modules/callout/callout.php:356 modules/callout/callout.php:376
|
2437 |
msgid "Above Heading"
|
2438 |
msgstr ""
|
2439 |
|
|
|
2440 |
#: modules/callout/callout.php:357 modules/callout/callout.php:377
|
2441 |
msgid "Below Heading"
|
2442 |
msgstr ""
|
2443 |
|
|
|
2444 |
#: modules/callout/callout.php:358 modules/callout/callout.php:380
|
2445 |
msgid "Left of Text and Heading"
|
2446 |
msgstr ""
|
2447 |
|
|
|
2448 |
#: modules/callout/callout.php:359 modules/callout/callout.php:381
|
2449 |
msgid "Right of Text and Heading"
|
2450 |
msgstr ""
|
2451 |
|
|
|
2452 |
#: modules/callout/callout.php:378
|
2453 |
msgid "Left of Heading"
|
2454 |
msgstr ""
|
2455 |
|
|
|
2456 |
#: modules/callout/callout.php:379
|
2457 |
msgid "Right of Heading"
|
2458 |
msgstr ""
|
2459 |
|
|
|
2460 |
#: modules/callout/callout.php:387
|
2461 |
msgid "Icon Colors"
|
2462 |
msgstr ""
|
2463 |
|
|
|
2464 |
#: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
|
2465 |
#: modules/icon/icon.php:87
|
2466 |
msgid "Hover Color"
|
2467 |
msgstr ""
|
2468 |
|
|
|
2469 |
#: modules/callout/callout.php:427
|
2470 |
msgid "Icon Structure"
|
2471 |
msgstr ""
|
2472 |
|
|
|
2473 |
#: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
|
2474 |
#: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
|
2475 |
msgid "Size"
|
2476 |
msgstr ""
|
2477 |
|
|
|
2478 |
#: modules/callout/callout.php:442
|
2479 |
#: modules/content-slider/content-slider.php:570
|
2480 |
msgid "Call To Action"
|
2481 |
msgstr ""
|
2482 |
|
|
|
2483 |
#: modules/callout/callout.php:450
|
2484 |
msgid ""
|
2485 |
"The link applies to the entire module. If choosing a call to action type "
|
2486 |
"below, this link will also be used for the text or button."
|
2487 |
msgstr ""
|
2488 |
|
|
|
2489 |
#: modules/callout/callout.php:470
|
2490 |
#: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
|
2491 |
msgid "Call to Action"
|
2492 |
msgstr ""
|
2493 |
|
|
|
2494 |
#: modules/callout/callout.php:477
|
2495 |
#: modules/content-slider/content-slider.php:599
|
2496 |
msgctxt "Call to action."
|
2497 |
msgid "None"
|
2498 |
msgstr ""
|
2499 |
|
|
|
2500 |
#: modules/callout/callout.php:498
|
2501 |
#: modules/content-slider/content-slider.php:620
|
2502 |
msgid "Button Icon"
|
2503 |
msgstr ""
|
2504 |
|
|
|
2505 |
#: modules/callout/callout.php:504
|
2506 |
#: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
|
2507 |
msgid "Button Colors"
|
2508 |
msgstr ""
|
2509 |
|
|
|
2510 |
#: modules/callout/callout.php:539
|
2511 |
#: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
|
2512 |
msgid "Button Style"
|
2513 |
msgstr ""
|
2514 |
|
|
|
2515 |
#: modules/callout/callout.php:577
|
2516 |
#: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
|
2517 |
msgid "Button Structure"
|
2518 |
msgstr ""
|
2519 |
|
|
|
2520 |
#: modules/callout/callout.php:581
|
2521 |
msgid "Button Width"
|
2522 |
msgstr ""
|
2523 |
|
|
|
2524 |
#: modules/contact-form/contact-form.php:14
|
2525 |
msgid "Contact Form"
|
2526 |
msgstr ""
|
2527 |
|
|
|
2528 |
#: modules/contact-form/contact-form.php:15
|
2529 |
msgid "A very simple contact form."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
|
|
|
2533 |
msgid "Contact Form Submission"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: modules/contact-form/contact-form.php:
|
|
|
|
|
|
|
|
|
|
|
2537 |
msgid "Send To Email"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
|
|
|
2541 |
msgid "example@mail.com"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
|
|
|
2545 |
msgid "The contact form will send to this e-mail"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: modules/contact-form/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2549 |
msgctxt "Contact form field label."
|
2550 |
msgid "Name"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
|
|
|
2554 |
msgid "Please enter your name."
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: modules/contact-form/includes/frontend.php:
|
2558 |
-
msgid "
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: modules/contact-form/includes/frontend.php:
|
2562 |
-
msgid "
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
|
2566 |
-
|
|
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
|
2570 |
-
|
|
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: modules/contact-form/includes/frontend.php:
|
2574 |
-
msgid "
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: modules/contact-form/includes/frontend.php:
|
2578 |
-
msgid "Please enter a
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
|
2582 |
-
|
|
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
|
2586 |
-
|
|
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
|
|
|
2590 |
msgid "Message Sent!"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
|
|
|
2594 |
msgid "Message failed. Please try again."
|
2595 |
msgstr ""
|
2596 |
|
|
|
2597 |
#: modules/content-slider/content-slider.php:14
|
2598 |
msgid "Content Slider"
|
2599 |
msgstr ""
|
2600 |
|
|
|
2601 |
#: modules/content-slider/content-slider.php:15
|
2602 |
msgid "Displays multiple slides with an optional heading and call to action."
|
2603 |
msgstr ""
|
2604 |
|
|
|
2605 |
#: modules/content-slider/content-slider.php:197 modules/map/map.php:41
|
2606 |
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2607 |
msgid "Height"
|
2608 |
msgstr ""
|
2609 |
|
|
|
2610 |
#: modules/content-slider/content-slider.php:202
|
2611 |
msgid ""
|
2612 |
"This setting is the minimum height of the content slider. Content will "
|
2613 |
"expand the height automatically."
|
2614 |
msgstr ""
|
2615 |
|
|
|
2616 |
#: modules/content-slider/content-slider.php:206
|
2617 |
#: modules/slideshow/slideshow.php:373
|
2618 |
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
2619 |
msgid "Auto Play"
|
2620 |
msgstr ""
|
2621 |
|
|
|
2622 |
#: modules/content-slider/content-slider.php:220
|
2623 |
msgid "Show Play/Pause"
|
2624 |
msgstr ""
|
2625 |
|
|
|
2626 |
#: modules/content-slider/content-slider.php:240
|
2627 |
#: modules/testimonials/testimonials.php:102
|
2628 |
msgctxt "Transition type."
|
2629 |
msgid "Slide"
|
2630 |
msgstr ""
|
2631 |
|
|
|
2632 |
#: modules/content-slider/content-slider.php:254
|
2633 |
#: modules/testimonials/testimonials.php:121
|
2634 |
msgid "Show Arrows"
|
2635 |
msgstr ""
|
2636 |
|
|
|
2637 |
#: modules/content-slider/content-slider.php:263
|
2638 |
#: modules/testimonials/testimonials.php:151
|
2639 |
msgid "Show Dots"
|
2640 |
msgstr ""
|
2641 |
|
|
|
2642 |
#: modules/content-slider/content-slider.php:277
|
2643 |
msgid "Max Content Width"
|
2644 |
msgstr ""
|
2645 |
|
|
|
2646 |
#: modules/content-slider/content-slider.php:282
|
2647 |
msgid "The max width that the content area will be within your slides."
|
2648 |
msgstr ""
|
2649 |
|
|
|
2650 |
#: modules/content-slider/content-slider.php:289
|
2651 |
msgid "Slides"
|
2652 |
msgstr ""
|
2653 |
|
|
|
2654 |
#: modules/content-slider/content-slider.php:296
|
2655 |
msgid "Slide"
|
2656 |
msgstr ""
|
2657 |
|
|
|
2658 |
#: modules/content-slider/content-slider.php:311
|
2659 |
msgid "Slide Settings"
|
2660 |
msgstr ""
|
2661 |
|
|
|
2662 |
#: modules/content-slider/content-slider.php:321
|
2663 |
msgid "Slide Label"
|
2664 |
msgstr ""
|
2665 |
|
|
|
2666 |
#: modules/content-slider/content-slider.php:322
|
2667 |
msgid ""
|
2668 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
2669 |
"settings."
|
2670 |
msgstr ""
|
2671 |
|
|
|
2672 |
#: modules/content-slider/content-slider.php:327
|
2673 |
msgid "Background Layout"
|
2674 |
msgstr ""
|
2675 |
|
|
|
2676 |
#: modules/content-slider/content-slider.php:333
|
2677 |
msgid "This setting is for the entire background of your slide."
|
2678 |
msgstr ""
|
2679 |
|
|
|
2680 |
#: modules/content-slider/content-slider.php:368
|
2681 |
msgid "Background Video Code"
|
2682 |
msgstr ""
|
2683 |
|
|
|
2684 |
#: modules/content-slider/content-slider.php:374
|
2685 |
msgid "Content Layout"
|
2686 |
msgstr ""
|
2687 |
|
|
|
2688 |
#: modules/content-slider/content-slider.php:380
|
2689 |
msgid ""
|
2690 |
"This allows you to add content over or in addition to the background "
|
@@ -2692,139 +2808,170 @@ msgid ""
|
|
2692 |
"style tab."
|
2693 |
msgstr ""
|
2694 |
|
|
|
2695 |
#: modules/content-slider/content-slider.php:383
|
2696 |
msgid "Text & Photo"
|
2697 |
msgstr ""
|
2698 |
|
|
|
2699 |
#: modules/content-slider/content-slider.php:384
|
2700 |
msgid "Text & Video"
|
2701 |
msgstr ""
|
2702 |
|
|
|
2703 |
#: modules/content-slider/content-slider.php:385
|
2704 |
msgctxt "Content type."
|
2705 |
msgid "None"
|
2706 |
msgstr ""
|
2707 |
|
|
|
2708 |
#: modules/content-slider/content-slider.php:408 modules/video/video.php:132
|
2709 |
msgid "Video Embed Code"
|
2710 |
msgstr ""
|
2711 |
|
|
|
2712 |
#: modules/content-slider/content-slider.php:468
|
2713 |
msgid "Text Position"
|
2714 |
msgstr ""
|
2715 |
|
|
|
2716 |
#: modules/content-slider/content-slider.php:474
|
2717 |
msgid ""
|
2718 |
"The position will move the content layout selections left, right or center "
|
2719 |
"over the background of the slide."
|
2720 |
msgstr ""
|
2721 |
|
|
|
2722 |
#: modules/content-slider/content-slider.php:491
|
2723 |
msgid "Top Margin"
|
2724 |
msgstr ""
|
2725 |
|
|
|
2726 |
#: modules/content-slider/content-slider.php:499
|
2727 |
msgid "Bottom Margin"
|
2728 |
msgstr ""
|
2729 |
|
|
|
2730 |
#: modules/content-slider/content-slider.php:507
|
2731 |
msgid "Left Margin"
|
2732 |
msgstr ""
|
2733 |
|
|
|
2734 |
#: modules/content-slider/content-slider.php:515
|
2735 |
msgid "Right Margin"
|
2736 |
msgstr ""
|
2737 |
|
|
|
2738 |
#: modules/content-slider/content-slider.php:524
|
2739 |
msgid "Text Colors"
|
2740 |
msgstr ""
|
2741 |
|
|
|
2742 |
#: modules/content-slider/content-slider.php:534
|
2743 |
msgid "Text Shadow"
|
2744 |
msgstr ""
|
2745 |
|
|
|
2746 |
#: modules/content-slider/content-slider.php:543
|
2747 |
#: modules/content-slider/content-slider.php:760
|
2748 |
msgid "Text Background Color"
|
2749 |
msgstr ""
|
2750 |
|
|
|
2751 |
#: modules/content-slider/content-slider.php:544
|
2752 |
msgid ""
|
2753 |
"The color applies to the overlay behind text over the background selections."
|
2754 |
msgstr ""
|
2755 |
|
|
|
2756 |
#: modules/content-slider/content-slider.php:549
|
2757 |
msgid "Text Background Opacity"
|
2758 |
msgstr ""
|
2759 |
|
|
|
2760 |
#: modules/content-slider/content-slider.php:557
|
2761 |
msgid "Text Background Height"
|
2762 |
msgstr ""
|
2763 |
|
|
|
2764 |
#: modules/content-slider/content-slider.php:559
|
2765 |
msgid ""
|
2766 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
2767 |
"will fit the overlay to the top and bottom of the slide."
|
2768 |
msgstr ""
|
2769 |
|
|
|
2770 |
#: modules/content-slider/content-slider.php:561
|
2771 |
msgctxt "Background height."
|
2772 |
msgid "Auto"
|
2773 |
msgstr ""
|
2774 |
|
|
|
2775 |
#: modules/content-slider/content-slider.php:578
|
2776 |
msgid ""
|
2777 |
"The link applies to the entire slide. If choosing a call to action type "
|
2778 |
"below, this link will also be used for the text or button."
|
2779 |
msgstr ""
|
2780 |
|
|
|
2781 |
#: modules/content-slider/content-slider.php:711
|
2782 |
msgid "Border Radius"
|
2783 |
msgstr ""
|
2784 |
|
|
|
2785 |
#: modules/content-slider/content-slider.php:722
|
2786 |
msgctxt "Module settings form tab. Display on mobile devices."
|
2787 |
msgid "Mobile"
|
2788 |
msgstr ""
|
2789 |
|
|
|
2790 |
#: modules/content-slider/content-slider.php:725
|
2791 |
msgid "Mobile Photo"
|
2792 |
msgstr ""
|
2793 |
|
|
|
2794 |
#: modules/content-slider/content-slider.php:731
|
2795 |
msgid ""
|
2796 |
"You can choose a different photo that the slide will change to on mobile "
|
2797 |
"devices or no photo if desired."
|
2798 |
msgstr ""
|
2799 |
|
|
|
2800 |
#: modules/content-slider/content-slider.php:733
|
2801 |
msgid "Use Main Photo"
|
2802 |
msgstr ""
|
2803 |
|
|
|
2804 |
#: modules/content-slider/content-slider.php:734
|
2805 |
msgid "Choose Another Photo"
|
2806 |
msgstr ""
|
2807 |
|
|
|
2808 |
#: modules/content-slider/content-slider.php:735
|
2809 |
msgid "No Photo"
|
2810 |
msgstr ""
|
2811 |
|
|
|
2812 |
#: modules/content-slider/content-slider.php:750
|
2813 |
msgid "Mobile Text Colors"
|
2814 |
msgstr ""
|
2815 |
|
|
|
2816 |
#: modules/cta/cta.php:15
|
2817 |
msgid "Display a heading, subheading and a button."
|
2818 |
msgstr ""
|
2819 |
|
|
|
2820 |
#: modules/cta/cta.php:75
|
2821 |
msgid "Ready to find out more?"
|
2822 |
msgstr ""
|
2823 |
|
|
|
2824 |
#: modules/cta/cta.php:90
|
2825 |
msgid "Drop us a line today for a free quote!"
|
2826 |
msgstr ""
|
2827 |
|
|
|
2828 |
#: modules/cta/cta.php:108 modules/gallery/gallery.php:220
|
2829 |
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
2830 |
#: modules/testimonials/testimonials.php:37
|
@@ -2832,78 +2979,96 @@ msgstr ""
|
|
2832 |
msgid "Layout"
|
2833 |
msgstr ""
|
2834 |
|
|
|
2835 |
#: modules/cta/cta.php:111
|
2836 |
msgid "Inline"
|
2837 |
msgstr ""
|
2838 |
|
|
|
2839 |
#: modules/cta/cta.php:112
|
2840 |
msgid "Stacked"
|
2841 |
msgstr ""
|
2842 |
|
|
|
2843 |
#: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
|
2844 |
msgid "Spacing"
|
2845 |
msgstr ""
|
2846 |
|
|
|
2847 |
#: modules/cta/cta.php:236
|
2848 |
msgid "Button Link"
|
2849 |
msgstr ""
|
2850 |
|
|
|
2851 |
#: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
|
2852 |
msgid "Gallery"
|
2853 |
msgstr ""
|
2854 |
|
|
|
2855 |
#: modules/gallery/gallery.php:15
|
2856 |
msgid "Display multiple photos in a gallery view."
|
2857 |
msgstr ""
|
2858 |
|
|
|
2859 |
#: modules/gallery/gallery.php:223
|
2860 |
msgid "Collage"
|
2861 |
msgstr ""
|
2862 |
|
|
|
2863 |
#: modules/gallery/gallery.php:224
|
2864 |
msgctxt "Gallery layout: thumbnails."
|
2865 |
msgid "Thumbs"
|
2866 |
msgstr ""
|
2867 |
|
|
|
2868 |
#: modules/gallery/gallery.php:260
|
2869 |
msgid "Photo Size"
|
2870 |
msgstr ""
|
2871 |
|
|
|
2872 |
#: modules/gallery/gallery.php:263
|
2873 |
msgctxt "Photo size."
|
2874 |
msgid "Small"
|
2875 |
msgstr ""
|
2876 |
|
|
|
2877 |
#: modules/gallery/gallery.php:264
|
2878 |
msgctxt "Photo size."
|
2879 |
msgid "Medium"
|
2880 |
msgstr ""
|
2881 |
|
|
|
2882 |
#: modules/gallery/gallery.php:265
|
2883 |
msgctxt "Photo size."
|
2884 |
msgid "Large"
|
2885 |
msgstr ""
|
2886 |
|
|
|
2887 |
#: modules/gallery/gallery.php:270
|
2888 |
msgid "Photo Spacing"
|
2889 |
msgstr ""
|
2890 |
|
|
|
2891 |
#: modules/gallery/gallery.php:278
|
2892 |
msgid "Show Captions"
|
2893 |
msgstr ""
|
2894 |
|
|
|
2895 |
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
2896 |
msgid "Never"
|
2897 |
msgstr ""
|
2898 |
|
|
|
2899 |
#: modules/gallery/gallery.php:282 modules/photo/photo.php:433
|
2900 |
msgid "On Hover"
|
2901 |
msgstr ""
|
2902 |
|
|
|
2903 |
#: modules/gallery/gallery.php:283 modules/photo/photo.php:434
|
2904 |
msgid "Below Photo"
|
2905 |
msgstr ""
|
2906 |
|
|
|
2907 |
#: modules/gallery/gallery.php:285
|
2908 |
msgid ""
|
2909 |
"The caption pulls from whatever text you put in the caption area in the "
|
@@ -2911,143 +3076,182 @@ msgid ""
|
|
2911 |
"SmugMug if you have captions set in your gallery."
|
2912 |
msgstr ""
|
2913 |
|
|
|
2914 |
#: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
|
2915 |
msgid "Click Action"
|
2916 |
msgstr ""
|
2917 |
|
|
|
2918 |
#: modules/gallery/gallery.php:292
|
2919 |
msgctxt "Click action."
|
2920 |
msgid "None"
|
2921 |
msgstr ""
|
2922 |
|
|
|
2923 |
#: modules/gallery/gallery.php:293 modules/photo/photo.php:452
|
2924 |
msgid "Lightbox"
|
2925 |
msgstr ""
|
2926 |
|
|
|
2927 |
#: modules/gallery/gallery.php:294
|
2928 |
msgid "Photo Link"
|
2929 |
msgstr ""
|
2930 |
|
|
|
2931 |
#: modules/heading/heading.php:15
|
2932 |
msgid "Display a title/page heading."
|
2933 |
msgstr ""
|
2934 |
|
|
|
2935 |
#: modules/heading/heading.php:101
|
2936 |
msgid "HTML Tag"
|
2937 |
msgstr ""
|
2938 |
|
|
|
2939 |
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
2940 |
msgid "Custom Font Size"
|
2941 |
msgstr ""
|
2942 |
|
|
|
2943 |
#: modules/heading/heading.php:137
|
2944 |
msgid "Mobile Structure"
|
2945 |
msgstr ""
|
2946 |
|
|
|
2947 |
#: modules/heading/heading.php:158
|
2948 |
msgid "Custom Alignment"
|
2949 |
msgstr ""
|
2950 |
|
|
|
2951 |
#: modules/html/html.php:14
|
2952 |
msgid "HTML"
|
2953 |
msgstr ""
|
2954 |
|
|
|
2955 |
#: modules/html/html.php:15
|
2956 |
msgid "Display raw HTML code."
|
2957 |
msgstr ""
|
2958 |
|
|
|
2959 |
#: modules/icon-group/icon-group.php:14
|
2960 |
msgid "Icon Group"
|
2961 |
msgstr ""
|
2962 |
|
|
|
2963 |
#: modules/icon-group/icon-group.php:15
|
2964 |
msgid "Display a group of linked Font Awesome icons."
|
2965 |
msgstr ""
|
2966 |
|
|
|
2967 |
#: modules/icon-group/icon-group.php:125
|
2968 |
msgid "Add Icon"
|
2969 |
msgstr ""
|
2970 |
|
|
|
2971 |
#: modules/icon/icon.php:15
|
2972 |
msgid "Display an icon and optional title."
|
2973 |
msgstr ""
|
2974 |
|
|
|
2975 |
#: modules/map/map.php:14
|
2976 |
msgid "Map"
|
2977 |
msgstr ""
|
2978 |
|
|
|
2979 |
#: modules/map/map.php:15
|
2980 |
msgid "Display a Google map."
|
2981 |
msgstr ""
|
2982 |
|
|
|
2983 |
#: modules/map/map.php:33
|
2984 |
msgid "Address"
|
2985 |
msgstr ""
|
2986 |
|
|
|
2987 |
#: modules/map/map.php:34
|
2988 |
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
2989 |
msgstr ""
|
2990 |
|
|
|
2991 |
#: modules/photo/photo.php:26
|
2992 |
msgid "Upload a photo or display one from the media library."
|
2993 |
msgstr ""
|
2994 |
|
|
|
2995 |
#: modules/photo/photo.php:375
|
2996 |
msgid "Photo Source"
|
2997 |
msgstr ""
|
2998 |
|
|
|
2999 |
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
3000 |
msgid "URL"
|
3001 |
msgstr ""
|
3002 |
|
|
|
3003 |
#: modules/photo/photo.php:396
|
3004 |
msgid "Photo URL"
|
3005 |
msgstr ""
|
3006 |
|
|
|
3007 |
#: modules/photo/photo.php:397
|
3008 |
msgid "http://www.example.com/my-photo.jpg"
|
3009 |
msgstr ""
|
3010 |
|
|
|
3011 |
#: modules/photo/photo.php:404
|
3012 |
msgctxt "Crop."
|
3013 |
msgid "None"
|
3014 |
msgstr ""
|
3015 |
|
|
|
3016 |
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
3017 |
msgid "Caption"
|
3018 |
msgstr ""
|
3019 |
|
|
|
3020 |
#: modules/photo/photo.php:429
|
3021 |
msgid "Show Caption"
|
3022 |
msgstr ""
|
3023 |
|
|
|
3024 |
#: modules/photo/photo.php:448
|
3025 |
msgid "Link Type"
|
3026 |
msgstr ""
|
3027 |
|
|
|
3028 |
#: modules/photo/photo.php:450
|
3029 |
msgctxt "Link type."
|
3030 |
msgid "None"
|
3031 |
msgstr ""
|
3032 |
|
|
|
3033 |
#: modules/photo/photo.php:453
|
3034 |
msgid "Photo File"
|
3035 |
msgstr ""
|
3036 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3037 |
#: modules/photo/photo.php:464
|
3038 |
msgid ""
|
3039 |
"Link type applies to how the image should be linked on click. You can choose "
|
3040 |
"a specific URL, the individual photo or a separate page with the photo."
|
3041 |
msgstr ""
|
3042 |
|
|
|
3043 |
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
3044 |
msgid "Link URL"
|
3045 |
msgstr ""
|
3046 |
|
|
|
3047 |
#: modules/post-grid/includes/frontend.php:41
|
3048 |
msgid "No posts found."
|
3049 |
msgstr ""
|
3050 |
|
|
|
3051 |
#: modules/post-grid/includes/post-feed.php:14
|
3052 |
#: modules/post-grid/includes/post-grid.php:24
|
3053 |
#, php-format
|
@@ -3055,269 +3259,318 @@ msgctxt "%s stands for author name."
|
|
3055 |
msgid "By %s"
|
3056 |
msgstr ""
|
3057 |
|
|
|
3058 |
#: modules/post-grid/post-grid.php:14
|
3059 |
msgid "Posts"
|
3060 |
msgstr ""
|
3061 |
|
|
|
3062 |
#: modules/post-grid/post-grid.php:15
|
3063 |
msgid "Display a grid of your WordPress posts."
|
3064 |
msgstr ""
|
3065 |
|
|
|
3066 |
#: modules/post-grid/post-grid.php:51
|
3067 |
msgid "Layout Style"
|
3068 |
msgstr ""
|
3069 |
|
|
|
3070 |
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
3071 |
msgid "Grid"
|
3072 |
msgstr ""
|
3073 |
|
|
|
3074 |
#: modules/post-grid/post-grid.php:56
|
3075 |
msgid "Feed"
|
3076 |
msgstr ""
|
3077 |
|
|
|
3078 |
#: modules/post-grid/post-grid.php:71
|
3079 |
msgid "Pagination Style"
|
3080 |
msgstr ""
|
3081 |
|
|
|
3082 |
#: modules/post-grid/post-grid.php:74
|
3083 |
msgid "Numbers"
|
3084 |
msgstr ""
|
3085 |
|
|
|
3086 |
#: modules/post-grid/post-grid.php:76
|
3087 |
msgctxt "Pagination style."
|
3088 |
msgid "None"
|
3089 |
msgstr ""
|
3090 |
|
|
|
3091 |
#: modules/post-grid/post-grid.php:81
|
3092 |
msgid "Posts Per Page"
|
3093 |
msgstr ""
|
3094 |
|
|
|
3095 |
#: modules/post-grid/post-grid.php:92
|
3096 |
msgid "Post Width"
|
3097 |
msgstr ""
|
3098 |
|
|
|
3099 |
#: modules/post-grid/post-grid.php:100
|
3100 |
msgid "Post Spacing"
|
3101 |
msgstr ""
|
3102 |
|
|
|
3103 |
#: modules/post-grid/post-grid.php:109
|
3104 |
msgid "Featured Image"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
|
3108 |
-
#: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
|
3109 |
-
#: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
|
3110 |
-
msgid "Show"
|
3111 |
-
msgstr ""
|
3112 |
-
|
3113 |
-
#: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
|
3114 |
-
#: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
|
3115 |
-
#: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
|
3116 |
-
msgid "Hide"
|
3117 |
-
msgstr ""
|
3118 |
-
|
3119 |
#: modules/post-grid/post-grid.php:130
|
3120 |
msgid "Above Text"
|
3121 |
msgstr ""
|
3122 |
|
|
|
3123 |
#: modules/post-grid/post-grid.php:131
|
3124 |
msgid "Beside Text"
|
3125 |
msgstr ""
|
3126 |
|
|
|
3127 |
#: modules/post-grid/post-grid.php:142
|
3128 |
msgid "Post Info"
|
3129 |
msgstr ""
|
3130 |
|
|
|
3131 |
#: modules/post-grid/post-grid.php:169
|
3132 |
msgid "Date Format"
|
3133 |
msgstr ""
|
3134 |
|
|
|
3135 |
#: modules/post-grid/post-grid.php:185
|
3136 |
msgid "Comments"
|
3137 |
msgstr ""
|
3138 |
|
|
|
3139 |
#: modules/post-grid/post-grid.php:213
|
3140 |
msgid "More Link"
|
3141 |
msgstr ""
|
3142 |
|
|
|
3143 |
#: modules/post-grid/post-grid.php:227
|
3144 |
msgid "More Link Text"
|
3145 |
msgstr ""
|
3146 |
|
|
|
3147 |
#: modules/post-grid/post-grid.php:228
|
3148 |
msgid "Read More"
|
3149 |
msgstr ""
|
3150 |
|
|
|
3151 |
#: modules/pricing-table/pricing-table.php:14
|
3152 |
msgid "Pricing Table"
|
3153 |
msgstr ""
|
3154 |
|
|
|
3155 |
#: modules/pricing-table/pricing-table.php:15
|
3156 |
msgid "A simple pricing table generator."
|
3157 |
msgstr ""
|
3158 |
|
|
|
3159 |
#: modules/pricing-table/pricing-table.php:26
|
3160 |
msgid "Pricing Boxes"
|
3161 |
msgstr ""
|
3162 |
|
|
|
3163 |
#: modules/pricing-table/pricing-table.php:33
|
3164 |
msgid "Pricing Box"
|
3165 |
msgstr ""
|
3166 |
|
|
|
3167 |
#: modules/pricing-table/pricing-table.php:50
|
3168 |
msgid "Box Spacing"
|
3169 |
msgstr ""
|
3170 |
|
|
|
3171 |
#: modules/pricing-table/pricing-table.php:53
|
3172 |
#: modules/testimonials/testimonials.php:40
|
3173 |
msgid "Wide"
|
3174 |
msgstr ""
|
3175 |
|
|
|
3176 |
#: modules/pricing-table/pricing-table.php:54
|
3177 |
msgid "Tight"
|
3178 |
msgstr ""
|
3179 |
|
|
|
3180 |
#: modules/pricing-table/pricing-table.php:59
|
3181 |
msgid "Features Min Height"
|
3182 |
msgstr ""
|
3183 |
|
|
|
3184 |
#: modules/pricing-table/pricing-table.php:63
|
3185 |
msgid ""
|
3186 |
"Use this to normalize the height of your boxes when they have different "
|
3187 |
"numbers of features."
|
3188 |
msgstr ""
|
3189 |
|
|
|
3190 |
#: modules/pricing-table/pricing-table.php:70
|
3191 |
msgctxt "Border size."
|
3192 |
msgid "Wide"
|
3193 |
msgstr ""
|
3194 |
|
|
|
3195 |
#: modules/pricing-table/pricing-table.php:71
|
3196 |
msgctxt "Border size."
|
3197 |
msgid "Tight"
|
3198 |
msgstr ""
|
3199 |
|
|
|
3200 |
#: modules/pricing-table/pricing-table.php:84
|
3201 |
msgid "Add Pricing Box"
|
3202 |
msgstr ""
|
3203 |
|
|
|
3204 |
#: modules/pricing-table/pricing-table.php:98
|
3205 |
msgid "Title Size"
|
3206 |
msgstr ""
|
3207 |
|
|
|
3208 |
#: modules/pricing-table/pricing-table.php:107
|
3209 |
msgid "Price Box"
|
3210 |
msgstr ""
|
3211 |
|
|
|
3212 |
#: modules/pricing-table/pricing-table.php:111
|
|
|
3213 |
msgid "Price"
|
3214 |
msgstr ""
|
3215 |
|
|
|
3216 |
#: modules/pricing-table/pricing-table.php:115
|
3217 |
msgid "Duration"
|
3218 |
msgstr ""
|
3219 |
|
|
|
3220 |
#: modules/pricing-table/pricing-table.php:116
|
3221 |
msgid "per Year"
|
3222 |
msgstr ""
|
3223 |
|
|
|
3224 |
#: modules/pricing-table/pricing-table.php:120
|
3225 |
msgid "Price Size"
|
3226 |
msgstr ""
|
3227 |
|
|
|
3228 |
#: modules/pricing-table/pricing-table.php:133
|
3229 |
msgid "Button Text"
|
3230 |
msgstr ""
|
3231 |
|
|
|
3232 |
#: modules/pricing-table/pricing-table.php:137
|
3233 |
msgid "Button URL"
|
3234 |
msgstr ""
|
3235 |
|
|
|
3236 |
#: modules/pricing-table/pricing-table.php:142
|
3237 |
msgctxt "Price features displayed in pricing box."
|
3238 |
msgid "Features"
|
3239 |
msgstr ""
|
3240 |
|
|
|
3241 |
#: modules/pricing-table/pricing-table.php:147
|
3242 |
msgid "One feature per line. HTML is okay."
|
3243 |
msgstr ""
|
3244 |
|
|
|
3245 |
#: modules/pricing-table/pricing-table.php:162
|
3246 |
msgid "Box Background"
|
3247 |
msgstr ""
|
3248 |
|
|
|
3249 |
#: modules/pricing-table/pricing-table.php:167
|
3250 |
msgid "Box Foreground"
|
3251 |
msgstr ""
|
3252 |
|
|
|
3253 |
#: modules/pricing-table/pricing-table.php:173
|
3254 |
msgid "Accent Color"
|
3255 |
msgstr ""
|
3256 |
|
|
|
3257 |
#: modules/pricing-table/pricing-table.php:178
|
3258 |
msgid "Accent Text Color"
|
3259 |
msgstr ""
|
3260 |
|
|
|
3261 |
#: modules/pricing-table/pricing-table.php:182
|
3262 |
msgid "Box Top Margin"
|
3263 |
msgstr ""
|
3264 |
|
|
|
3265 |
#: modules/rich-text/rich-text.php:15
|
3266 |
msgid "A WYSIWYG text editor."
|
3267 |
msgstr ""
|
3268 |
|
|
|
3269 |
#: modules/separator/separator.php:14
|
3270 |
msgid "Separator"
|
3271 |
msgstr ""
|
3272 |
|
|
|
3273 |
#: modules/separator/separator.php:15
|
3274 |
msgid "A divider line to separate content."
|
3275 |
msgstr ""
|
3276 |
|
|
|
3277 |
#: modules/separator/separator.php:85
|
3278 |
msgid ""
|
3279 |
"The type of border to use. Double borders must have a height of at least 3px "
|
3280 |
"to render properly."
|
3281 |
msgstr ""
|
3282 |
|
|
|
3283 |
#: modules/sidebar/includes/settings-general.php:5
|
3284 |
#: modules/sidebar/sidebar.php:14
|
3285 |
msgid "Sidebar"
|
3286 |
msgstr ""
|
3287 |
|
|
|
3288 |
#: modules/sidebar/sidebar.php:15
|
3289 |
msgid ""
|
3290 |
"Display a WordPress sidebar that has been registered by the current theme."
|
3291 |
msgstr ""
|
3292 |
|
|
|
3293 |
#: modules/slideshow/slideshow.php:14
|
3294 |
msgid "Slideshow"
|
3295 |
msgstr ""
|
3296 |
|
|
|
3297 |
#: modules/slideshow/slideshow.php:15
|
3298 |
msgid "Display multiple photos in a slideshow view."
|
3299 |
msgstr ""
|
3300 |
|
|
|
3301 |
#: modules/slideshow/slideshow.php:302
|
3302 |
msgid "Skin Color"
|
3303 |
msgstr ""
|
3304 |
|
|
|
3305 |
#: modules/slideshow/slideshow.php:305
|
3306 |
msgctxt "Color."
|
3307 |
msgid "Light"
|
3308 |
msgstr ""
|
3309 |
|
|
|
3310 |
#: modules/slideshow/slideshow.php:306
|
3311 |
msgctxt "Color."
|
3312 |
msgid "Dark"
|
3313 |
msgstr ""
|
3314 |
|
|
|
3315 |
#: modules/slideshow/slideshow.php:308
|
3316 |
msgid ""
|
3317 |
"If your overall theme/images are lighter in color, light will display "
|
3318 |
"buttons in a darker color scheme and vice versa for dark."
|
3319 |
msgstr ""
|
3320 |
|
|
|
3321 |
#: modules/slideshow/slideshow.php:318
|
3322 |
msgid ""
|
3323 |
"Crop set to no will fit the slideshow images to the height you specify and "
|
@@ -3326,32 +3579,39 @@ msgid ""
|
|
3326 |
"fit the height you specify."
|
3327 |
msgstr ""
|
3328 |
|
|
|
3329 |
#: modules/slideshow/slideshow.php:322
|
3330 |
msgid "Disable Right-Click"
|
3331 |
msgstr ""
|
3332 |
|
|
|
3333 |
#: modules/slideshow/slideshow.php:342
|
3334 |
msgctxt "Click action type."
|
3335 |
msgid "None"
|
3336 |
msgstr ""
|
3337 |
|
|
|
3338 |
#: modules/slideshow/slideshow.php:366
|
3339 |
msgid "Playback"
|
3340 |
msgstr ""
|
3341 |
|
|
|
3342 |
#: modules/slideshow/slideshow.php:392
|
3343 |
msgctxt "Slideshow transition."
|
3344 |
msgid "None"
|
3345 |
msgstr ""
|
3346 |
|
|
|
3347 |
#: modules/slideshow/slideshow.php:429
|
3348 |
msgid "Controls"
|
3349 |
msgstr ""
|
3350 |
|
|
|
3351 |
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3352 |
msgid "Navigation Arrows"
|
3353 |
msgstr ""
|
3354 |
|
|
|
3355 |
#: modules/slideshow/slideshow.php:442
|
3356 |
msgid ""
|
3357 |
"Navigational arrows allow the visitor to freely move through the images in "
|
@@ -3359,127 +3619,157 @@ msgid ""
|
|
3359 |
"and are separate from the control bar navigational arrows."
|
3360 |
msgstr ""
|
3361 |
|
|
|
3362 |
#: modules/slideshow/slideshow.php:447
|
3363 |
msgid "Control Bar"
|
3364 |
msgstr ""
|
3365 |
|
|
|
3366 |
#: modules/slideshow/slideshow.php:451
|
3367 |
msgid "Nav Type"
|
3368 |
msgstr ""
|
3369 |
|
|
|
3370 |
#: modules/slideshow/slideshow.php:454
|
3371 |
msgctxt "Nav type."
|
3372 |
msgid "None"
|
3373 |
msgstr ""
|
3374 |
|
|
|
3375 |
#: modules/slideshow/slideshow.php:455
|
3376 |
msgid "Buttons"
|
3377 |
msgstr ""
|
3378 |
|
|
|
3379 |
#: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
|
3380 |
msgid "Thumbs"
|
3381 |
msgstr ""
|
3382 |
|
|
|
3383 |
#: modules/slideshow/slideshow.php:471
|
3384 |
msgid "Nav Position"
|
3385 |
msgstr ""
|
3386 |
|
|
|
3387 |
#: modules/slideshow/slideshow.php:481
|
3388 |
msgid "Control Bar Buttons"
|
3389 |
msgstr ""
|
3390 |
|
|
|
3391 |
#: modules/slideshow/slideshow.php:494
|
3392 |
msgid "Play Button"
|
3393 |
msgstr ""
|
3394 |
|
|
|
3395 |
#: modules/slideshow/slideshow.php:503
|
3396 |
msgid "Fullscreen Button"
|
3397 |
msgstr ""
|
3398 |
|
|
|
3399 |
#: modules/slideshow/slideshow.php:512
|
3400 |
msgid "Photo Count"
|
3401 |
msgstr ""
|
3402 |
|
|
|
3403 |
#: modules/slideshow/slideshow.php:521
|
3404 |
msgid "Thumbs Button"
|
3405 |
msgstr ""
|
3406 |
|
|
|
3407 |
#: modules/slideshow/slideshow.php:530
|
3408 |
msgid "Caption Button"
|
3409 |
msgstr ""
|
3410 |
|
|
|
3411 |
#: modules/slideshow/slideshow.php:539
|
3412 |
msgid "Social Button"
|
3413 |
msgstr ""
|
3414 |
|
|
|
3415 |
#: modules/slideshow/slideshow.php:549
|
3416 |
msgid "Control Bar Overlay"
|
3417 |
msgstr ""
|
3418 |
|
|
|
3419 |
#: modules/slideshow/slideshow.php:553
|
3420 |
msgid "Overlay Enabled"
|
3421 |
msgstr ""
|
3422 |
|
|
|
3423 |
#: modules/slideshow/slideshow.php:564
|
3424 |
msgid ""
|
3425 |
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
3426 |
"your slideshow images or site below the slideshow completely."
|
3427 |
msgstr ""
|
3428 |
|
|
|
3429 |
#: modules/slideshow/slideshow.php:568
|
3430 |
msgid "Overlay Hide"
|
3431 |
msgstr ""
|
3432 |
|
|
|
3433 |
#: modules/slideshow/slideshow.php:574
|
3434 |
msgid ""
|
3435 |
"Overlay hide will hide the control bar after however many seconds you "
|
3436 |
"specify below. They will reappear upon mouse over."
|
3437 |
msgstr ""
|
3438 |
|
|
|
3439 |
#: modules/slideshow/slideshow.php:578
|
3440 |
msgid "Overlay Hide Delay"
|
3441 |
msgstr ""
|
3442 |
|
|
|
3443 |
#: modules/slideshow/slideshow.php:590
|
3444 |
msgid "Thumbs Size"
|
3445 |
msgstr ""
|
3446 |
|
|
|
3447 |
#: modules/slideshow/slideshow.php:599
|
3448 |
msgid "Social"
|
3449 |
msgstr ""
|
3450 |
|
|
|
3451 |
#: modules/slideshow/slideshow.php:603
|
3452 |
msgid "Facebook Button"
|
3453 |
msgstr ""
|
3454 |
|
|
|
3455 |
#: modules/slideshow/slideshow.php:615
|
3456 |
msgid "Twitter Button"
|
3457 |
msgstr ""
|
3458 |
|
|
|
3459 |
#: modules/slideshow/slideshow.php:627
|
3460 |
msgid "Google Plus Button"
|
3461 |
msgstr ""
|
3462 |
|
|
|
3463 |
#: modules/slideshow/slideshow.php:639
|
3464 |
msgid "Pinterest Button"
|
3465 |
msgstr ""
|
3466 |
|
|
|
3467 |
#: modules/social-buttons/social-buttons.php:14
|
3468 |
msgid "Social Buttons"
|
3469 |
msgstr ""
|
3470 |
|
|
|
3471 |
#: modules/social-buttons/social-buttons.php:15
|
3472 |
msgid "Displays social buttons."
|
3473 |
msgstr ""
|
3474 |
|
|
|
3475 |
#: modules/social-buttons/social-buttons.php:71
|
3476 |
msgid "Target URL"
|
3477 |
msgstr ""
|
3478 |
|
|
|
3479 |
#: modules/social-buttons/social-buttons.php:75
|
3480 |
msgid "Current Page"
|
3481 |
msgstr ""
|
3482 |
|
|
|
3483 |
#: modules/social-buttons/social-buttons.php:82
|
3484 |
msgid ""
|
3485 |
"The Target URL field correlates to the page you would like your social icons "
|
@@ -3487,161 +3777,199 @@ msgid ""
|
|
3487 |
"whatever you put in this field."
|
3488 |
msgstr ""
|
3489 |
|
|
|
3490 |
#: modules/social-buttons/social-buttons.php:89
|
3491 |
msgid "Custom URL"
|
3492 |
msgstr ""
|
3493 |
|
|
|
3494 |
#: modules/social-buttons/social-buttons.php:107
|
3495 |
msgid "Show Facebook"
|
3496 |
msgstr ""
|
3497 |
|
|
|
3498 |
#: modules/social-buttons/social-buttons.php:116
|
3499 |
msgid "Show Twitter"
|
3500 |
msgstr ""
|
3501 |
|
|
|
3502 |
#: modules/social-buttons/social-buttons.php:125
|
3503 |
msgid "Show Google+"
|
3504 |
msgstr ""
|
3505 |
|
|
|
3506 |
#: modules/tabs/tabs.php:14
|
3507 |
msgid "Tabs"
|
3508 |
msgstr ""
|
3509 |
|
|
|
3510 |
#: modules/tabs/tabs.php:15
|
3511 |
msgid "Display a collection of tabbed content."
|
3512 |
msgstr ""
|
3513 |
|
|
|
3514 |
#: modules/tabs/tabs.php:55
|
3515 |
msgid "Horizontal"
|
3516 |
msgstr ""
|
3517 |
|
|
|
3518 |
#: modules/tabs/tabs.php:56
|
3519 |
msgid "Vertical"
|
3520 |
msgstr ""
|
3521 |
|
|
|
3522 |
#: modules/testimonials/testimonials.php:14
|
3523 |
#: modules/testimonials/testimonials.php:60
|
3524 |
#: modules/testimonials/testimonials.php:174
|
3525 |
msgid "Testimonials"
|
3526 |
msgstr ""
|
3527 |
|
|
|
3528 |
#: modules/testimonials/testimonials.php:15
|
3529 |
msgid "An animated tesimonials area."
|
3530 |
msgstr ""
|
3531 |
|
|
|
3532 |
#: modules/testimonials/testimonials.php:41
|
3533 |
msgid "Compact"
|
3534 |
msgstr ""
|
3535 |
|
|
|
3536 |
#: modules/testimonials/testimonials.php:51
|
3537 |
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
3538 |
msgstr ""
|
3539 |
|
|
|
3540 |
#: modules/testimonials/testimonials.php:78
|
3541 |
msgid "Slider Settings"
|
3542 |
msgstr ""
|
3543 |
|
|
|
3544 |
#: modules/testimonials/testimonials.php:135
|
3545 |
msgid "Arrow Color"
|
3546 |
msgstr ""
|
3547 |
|
|
|
3548 |
#: modules/testimonials/testimonials.php:165
|
3549 |
msgid "Dot Color"
|
3550 |
msgstr ""
|
3551 |
|
|
|
3552 |
#: modules/testimonials/testimonials.php:181
|
3553 |
msgid "Testimonial"
|
3554 |
msgstr ""
|
3555 |
|
|
|
3556 |
#: modules/testimonials/testimonials.php:197
|
3557 |
msgid "Add Testimonial"
|
3558 |
msgstr ""
|
3559 |
|
|
|
3560 |
#: modules/video/video.php:20
|
3561 |
msgid "Render a WordPress or embedable video."
|
3562 |
msgstr ""
|
3563 |
|
|
|
3564 |
#: modules/video/video.php:83
|
3565 |
msgid "Video Type"
|
3566 |
msgstr ""
|
3567 |
|
|
|
3568 |
#: modules/video/video.php:87
|
3569 |
msgid "Embed"
|
3570 |
msgstr ""
|
3571 |
|
|
|
3572 |
#: modules/video/video.php:104
|
3573 |
msgctxt "Video preview/fallback image."
|
3574 |
msgid "Poster"
|
3575 |
msgstr ""
|
3576 |
|
|
|
3577 |
#: modules/video/video.php:120
|
3578 |
msgid "Loop"
|
3579 |
msgstr ""
|
3580 |
|
|
|
3581 |
#: modules/widget/includes/frontend.php:35
|
3582 |
-
#: modules/widget/includes/settings-general.php:
|
3583 |
#, php-format
|
3584 |
msgctxt "%s stands for widget slug."
|
3585 |
msgid "%s no longer exists."
|
3586 |
msgstr ""
|
3587 |
|
|
|
3588 |
#: modules/widget/widget.php:14
|
3589 |
msgid "Widget"
|
3590 |
msgstr ""
|
3591 |
|
|
|
3592 |
#: modules/widget/widget.php:15
|
3593 |
msgid "Display a WordPress widget."
|
3594 |
msgstr ""
|
3595 |
|
|
|
3596 |
#: modules/woocommerce/woocommerce.php:16
|
3597 |
msgid "WooCommerce"
|
3598 |
msgstr ""
|
3599 |
|
|
|
3600 |
#: modules/woocommerce/woocommerce.php:17
|
3601 |
msgid "Display products or categories from your WooCommerce store."
|
3602 |
msgstr ""
|
3603 |
|
|
|
3604 |
#: modules/woocommerce/woocommerce.php:60
|
3605 |
msgid "Choose..."
|
3606 |
msgstr ""
|
3607 |
|
|
|
3608 |
#: modules/woocommerce/woocommerce.php:61
|
3609 |
msgid "Single Product"
|
3610 |
msgstr ""
|
3611 |
|
|
|
3612 |
#: modules/woocommerce/woocommerce.php:62
|
3613 |
#: modules/woocommerce/woocommerce.php:113
|
3614 |
msgid "Multiple Products"
|
3615 |
msgstr ""
|
3616 |
|
|
|
3617 |
#: modules/woocommerce/woocommerce.php:63
|
3618 |
msgid "\"Add to Cart\" Button"
|
3619 |
msgstr ""
|
3620 |
|
|
|
3621 |
#: modules/woocommerce/woocommerce.php:64
|
3622 |
msgid "Categories"
|
3623 |
msgstr ""
|
3624 |
|
|
|
3625 |
#: modules/woocommerce/woocommerce.php:65
|
3626 |
msgid "Cart"
|
3627 |
msgstr ""
|
3628 |
|
|
|
3629 |
#: modules/woocommerce/woocommerce.php:66
|
3630 |
msgid "Checkout"
|
3631 |
msgstr ""
|
3632 |
|
|
|
3633 |
#: modules/woocommerce/woocommerce.php:67
|
3634 |
msgid "Order Tracking"
|
3635 |
msgstr ""
|
3636 |
|
|
|
3637 |
#: modules/woocommerce/woocommerce.php:68
|
3638 |
msgid "My Account"
|
3639 |
msgstr ""
|
3640 |
|
|
|
3641 |
#: modules/woocommerce/woocommerce.php:87
|
3642 |
msgid "Product ID"
|
3643 |
msgstr ""
|
3644 |
|
|
|
3645 |
#: modules/woocommerce/woocommerce.php:90
|
3646 |
msgid ""
|
3647 |
"As you add products in the WooCommerce Products area, each will be assigned "
|
@@ -3649,10 +3977,12 @@ msgid ""
|
|
3649 |
"area and rolling over the product. The unique ID will be the first attribute."
|
3650 |
msgstr ""
|
3651 |
|
|
|
3652 |
#: modules/woocommerce/woocommerce.php:94
|
3653 |
msgid "Parent Category ID"
|
3654 |
msgstr ""
|
3655 |
|
|
|
3656 |
#: modules/woocommerce/woocommerce.php:97
|
3657 |
msgid ""
|
3658 |
"As you add product categories in the WooCommerce Products area, each will be "
|
@@ -3661,47 +3991,58 @@ msgid ""
|
|
3661 |
"in your browser. The ID will be the only number value in the URL."
|
3662 |
msgstr ""
|
3663 |
|
|
|
3664 |
#: modules/woocommerce/woocommerce.php:101
|
3665 |
#: modules/woocommerce/woocommerce.php:172
|
3666 |
msgid "Columns"
|
3667 |
msgstr ""
|
3668 |
|
|
|
3669 |
#: modules/woocommerce/woocommerce.php:117
|
3670 |
msgid "Products Source"
|
3671 |
msgstr ""
|
3672 |
|
|
|
3673 |
#: modules/woocommerce/woocommerce.php:120
|
3674 |
msgid "Products IDs"
|
3675 |
msgstr ""
|
3676 |
|
|
|
3677 |
#: modules/woocommerce/woocommerce.php:121
|
3678 |
msgid "Product Category"
|
3679 |
msgstr ""
|
3680 |
|
|
|
3681 |
#: modules/woocommerce/woocommerce.php:122
|
3682 |
msgid "Recent Products"
|
3683 |
msgstr ""
|
3684 |
|
|
|
3685 |
#: modules/woocommerce/woocommerce.php:123
|
3686 |
msgid "Featured Products"
|
3687 |
msgstr ""
|
3688 |
|
|
|
3689 |
#: modules/woocommerce/woocommerce.php:124
|
3690 |
msgid "Sale Products"
|
3691 |
msgstr ""
|
3692 |
|
|
|
3693 |
#: modules/woocommerce/woocommerce.php:125
|
3694 |
msgid "Best Selling Products"
|
3695 |
msgstr ""
|
3696 |
|
|
|
3697 |
#: modules/woocommerce/woocommerce.php:126
|
3698 |
msgid "Top Rated Products"
|
3699 |
msgstr ""
|
3700 |
|
|
|
3701 |
#: modules/woocommerce/woocommerce.php:154
|
3702 |
msgid "Product IDs"
|
3703 |
msgstr ""
|
3704 |
|
|
|
3705 |
#: modules/woocommerce/woocommerce.php:156
|
3706 |
msgid ""
|
3707 |
"As you add products in the WooCommerce Products area, each will be assigned "
|
@@ -3710,10 +4051,12 @@ msgid ""
|
|
3710 |
"and you can add several here separated by a comma."
|
3711 |
msgstr ""
|
3712 |
|
|
|
3713 |
#: modules/woocommerce/woocommerce.php:160
|
3714 |
msgid "Category Slug"
|
3715 |
msgstr ""
|
3716 |
|
|
|
3717 |
#: modules/woocommerce/woocommerce.php:162
|
3718 |
msgid ""
|
3719 |
"As you add product categories in the WooCommerce Products area, each will be "
|
@@ -3722,31 +4065,32 @@ msgid ""
|
|
3722 |
"added here separated by a comma."
|
3723 |
msgstr ""
|
3724 |
|
|
|
3725 |
#: modules/woocommerce/woocommerce.php:166
|
3726 |
msgid "Number of Products"
|
3727 |
msgstr ""
|
3728 |
|
|
|
3729 |
#: modules/woocommerce/woocommerce.php:183
|
3730 |
msgid "Sort By"
|
3731 |
msgstr ""
|
3732 |
|
|
|
3733 |
#: modules/woocommerce/woocommerce.php:186
|
3734 |
msgctxt "Sort by."
|
3735 |
msgid "Default"
|
3736 |
msgstr ""
|
3737 |
|
|
|
3738 |
#: modules/woocommerce/woocommerce.php:187
|
3739 |
msgid "Popularity"
|
3740 |
msgstr ""
|
3741 |
|
|
|
3742 |
#: modules/woocommerce/woocommerce.php:188
|
3743 |
msgid "Rating"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: modules/woocommerce/woocommerce.php:
|
3747 |
-
msgid "
|
3748 |
-
msgstr ""
|
3749 |
-
|
3750 |
-
#: modules/woocommerce/woocommerce.php:191
|
3751 |
-
msgid "Price: High to Low"
|
3752 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-03-22 13:17-0800\n"
|
6 |
+
"PO-Revision-Date: 2015-03-22 13:18-0800\n"
|
7 |
+
"Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en_US\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: Poedit 1.7.4\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_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-Textdomain-Support: yes\n"
|
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
|
22 |
+
# @ fl-builder
|
23 |
#: classes/class-fl-builder-admin-settings.php:93
|
24 |
#: includes/global-settings.php:4
|
25 |
#, php-format
|
27 |
msgid "%s Settings"
|
28 |
msgstr ""
|
29 |
|
30 |
+
# @ fl-builder
|
31 |
#: classes/class-fl-builder-admin-settings.php:107
|
32 |
msgid "Settings updated!"
|
33 |
msgstr ""
|
34 |
|
35 |
+
# @ fl-builder
|
36 |
#: classes/class-fl-builder-admin-settings.php:118
|
37 |
msgid "License"
|
38 |
msgstr ""
|
39 |
|
40 |
+
# @ fl-builder
|
41 |
#: classes/class-fl-builder-admin-settings.php:122
|
42 |
#: includes/admin-settings-upgrade.php:3
|
43 |
msgid "Upgrade"
|
44 |
msgstr ""
|
45 |
|
46 |
+
# @ fl-builder
|
47 |
#: classes/class-fl-builder-admin-settings.php:126
|
48 |
#: includes/global-settings.php:90
|
49 |
msgid "Modules"
|
50 |
msgstr ""
|
51 |
|
52 |
+
# @ fl-builder
|
53 |
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:47
|
54 |
msgid "Templates"
|
55 |
msgstr ""
|
56 |
|
57 |
+
# @ fl-builder
|
58 |
#: classes/class-fl-builder-admin-settings.php:134
|
59 |
#: includes/admin-settings-post-types.php:3
|
60 |
msgid "Post Types"
|
61 |
msgstr ""
|
62 |
|
63 |
+
# @ fl-builder
|
64 |
#: classes/class-fl-builder-admin-settings.php:138
|
65 |
#: modules/icon-group/icon-group.php:27
|
66 |
msgid "Icons"
|
67 |
msgstr ""
|
68 |
|
69 |
+
# @ fl-builder
|
70 |
#: classes/class-fl-builder-admin-settings.php:142
|
71 |
msgid "Editing"
|
72 |
msgstr ""
|
73 |
|
74 |
+
# @ fl-builder
|
75 |
#: classes/class-fl-builder-admin-settings.php:146
|
76 |
#: includes/admin-settings-branding.php:3
|
77 |
msgid "Branding"
|
78 |
msgstr ""
|
79 |
|
80 |
+
# @ fl-builder
|
81 |
#: classes/class-fl-builder-admin-settings.php:150
|
82 |
msgid "Help Button"
|
83 |
msgstr ""
|
84 |
|
85 |
+
# @ fl-builder
|
86 |
#: classes/class-fl-builder-admin-settings.php:154
|
87 |
#: includes/admin-settings-uninstall.php:3
|
88 |
#: includes/admin-settings-uninstall.php:15
|
89 |
msgid "Uninstall"
|
90 |
msgstr ""
|
91 |
|
92 |
+
# @ fl-builder
|
93 |
#: classes/class-fl-builder-admin-settings.php:376
|
94 |
msgid "Error! You must have at least one icon set enabled."
|
95 |
msgstr ""
|
96 |
|
97 |
+
# @ fl-builder
|
98 |
#: classes/class-fl-builder-admin-settings.php:418
|
99 |
msgid "Error! Could not unzip file."
|
100 |
msgstr ""
|
101 |
|
102 |
+
# @ fl-builder
|
103 |
#: classes/class-fl-builder-admin-settings.php:452
|
104 |
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
105 |
msgstr ""
|
106 |
|
107 |
+
# @ fl-builder
|
108 |
#: classes/class-fl-builder-admin-settings.php:566
|
109 |
msgid "Error! Please enter an iframe for the video embed code."
|
110 |
msgstr ""
|
111 |
|
112 |
+
# @ fl-builder
|
113 |
#: classes/class-fl-builder-admin-settings.php:584
|
114 |
msgid "Error! You must have at least one feature of the help button enabled."
|
115 |
msgstr ""
|
116 |
|
117 |
+
# @ fl-builder
|
118 |
#: classes/class-fl-builder-admin.php:40
|
119 |
#, php-format
|
120 |
msgid ""
|
123 |
"of this plugin."
|
124 |
msgstr ""
|
125 |
|
126 |
+
# @ fl-builder
|
127 |
#: classes/class-fl-builder-admin.php:50
|
128 |
msgid ""
|
129 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
130 |
"greater. Please update WordPress before activating the plugin."
|
131 |
msgstr ""
|
132 |
|
133 |
+
# @ fl-builder
|
134 |
#: classes/class-fl-builder-admin.php:96
|
135 |
#, php-format
|
136 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
137 |
msgstr ""
|
138 |
|
139 |
+
# @ fl-builder
|
140 |
#: classes/class-fl-builder-admin.php:191
|
141 |
msgctxt "Plugin action link label."
|
142 |
msgid "Upgrade"
|
143 |
msgstr ""
|
144 |
|
145 |
+
# @ fl-builder
|
146 |
#: classes/class-fl-builder-admin.php:202
|
147 |
+
#: classes/class-fl-builder-model.php:2613
|
148 |
msgid "Page Builder"
|
149 |
msgstr ""
|
150 |
|
151 |
+
# @ fl-builder
|
152 |
+
#: classes/class-fl-builder-model.php:1404
|
153 |
#, php-format
|
154 |
msgctxt "%s stands for the module filename"
|
155 |
msgid ""
|
157 |
"module filenames to ensure compatibility with Beaver Builder."
|
158 |
msgstr ""
|
159 |
|
160 |
+
# @ fl-builder
|
161 |
+
#: classes/class-fl-builder-model.php:1462
|
162 |
+
#: classes/class-fl-builder-model.php:1516 modules/heading/heading.php:16
|
163 |
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
164 |
#: modules/separator/separator.php:16 modules/video/video.php:21
|
165 |
msgid "Basic Modules"
|
166 |
msgstr ""
|
167 |
|
168 |
+
# @ fl-builder
|
169 |
+
#: classes/class-fl-builder-model.php:1463
|
170 |
+
#: classes/class-fl-builder-model.php:1517 modules/accordion/accordion.php:16
|
171 |
#: modules/button/button.php:16 modules/callout/callout.php:16
|
172 |
#: modules/contact-form/contact-form.php:16
|
173 |
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
182 |
msgid "Advanced Modules"
|
183 |
msgstr ""
|
184 |
|
185 |
+
# @ fl-builder
|
186 |
+
#: classes/class-fl-builder-model.php:1464
|
187 |
+
#: classes/class-fl-builder-model.php:1518
|
188 |
msgid "Other Modules"
|
189 |
msgstr ""
|
190 |
|
191 |
+
# @ fl-builder
|
192 |
+
#: classes/class-fl-builder-model.php:1465
|
193 |
+
#: classes/class-fl-builder-model.php:1519
|
194 |
+
#: includes/admin-settings-modules.php:32 includes/ui.php:88
|
195 |
#: modules/widget/widget.php:16
|
196 |
msgid "WordPress Widgets"
|
197 |
msgstr ""
|
198 |
|
199 |
+
# @ fl-builder
|
200 |
+
#: classes/class-fl-builder-model.php:2028
|
201 |
#, php-format
|
202 |
msgctxt "%s stands for post/page title."
|
203 |
msgid "Copy of %s"
|
204 |
msgstr ""
|
205 |
|
206 |
+
# @ fl-builder
|
207 |
#: classes/class-fl-builder-photo.php:75
|
208 |
msgctxt "Image size."
|
209 |
msgid "Full Size"
|
210 |
msgstr ""
|
211 |
|
212 |
+
# @ fl-builder
|
213 |
#: classes/class-fl-builder-photo.php:76
|
214 |
msgctxt "Image size."
|
215 |
msgid "Large"
|
216 |
msgstr ""
|
217 |
|
218 |
+
# @ fl-builder
|
219 |
#: classes/class-fl-builder-photo.php:77
|
220 |
msgctxt "Image size."
|
221 |
msgid "Medium"
|
222 |
msgstr ""
|
223 |
|
224 |
+
# @ fl-builder
|
225 |
#: classes/class-fl-builder-photo.php:78
|
226 |
msgctxt "Image size."
|
227 |
msgid "Thumbnail"
|
231 |
msgid "Page Builder Templates"
|
232 |
msgstr ""
|
233 |
|
234 |
+
# @ fl-builder
|
235 |
#: classes/class-fl-builder.php:709
|
236 |
#, php-format
|
237 |
msgctxt "Field name to add."
|
238 |
msgid "Add %s"
|
239 |
msgstr ""
|
240 |
|
241 |
+
# @ fl-builder
|
242 |
#: classes/class-fl-builder.php:772 classes/class-fl-builder.php:774
|
243 |
msgctxt "Custom post type label."
|
244 |
msgid "Layout Templates"
|
245 |
msgstr ""
|
246 |
|
247 |
+
# @ fl-builder
|
248 |
#: classes/class-fl-builder.php:773 classes/class-fl-builder.php:775
|
249 |
msgctxt "Custom post type label."
|
250 |
msgid "Layout Template"
|
251 |
msgstr ""
|
252 |
|
253 |
+
# @ fl-builder
|
254 |
#: classes/class-fl-builder.php:776
|
255 |
msgctxt "Custom post type label."
|
256 |
msgid "Add New"
|
257 |
msgstr ""
|
258 |
|
259 |
+
# @ fl-builder
|
260 |
#: classes/class-fl-builder.php:777
|
261 |
msgctxt "Custom post type label."
|
262 |
msgid "Add New Layout Template"
|
263 |
msgstr ""
|
264 |
|
265 |
+
# @ fl-builder
|
266 |
#: classes/class-fl-builder.php:778
|
267 |
msgctxt "Custom post type label."
|
268 |
msgid "New Layout Template"
|
269 |
msgstr ""
|
270 |
|
271 |
+
# @ fl-builder
|
272 |
#: classes/class-fl-builder.php:779
|
273 |
msgctxt "Custom post type label."
|
274 |
msgid "Edit Layout Template"
|
275 |
msgstr ""
|
276 |
|
277 |
+
# @ fl-builder
|
278 |
#: classes/class-fl-builder.php:780
|
279 |
msgctxt "Custom post type label."
|
280 |
msgid "View Layout Template"
|
281 |
msgstr ""
|
282 |
|
283 |
+
# @ fl-builder
|
284 |
#: classes/class-fl-builder.php:781
|
285 |
msgctxt "Custom post type label."
|
286 |
msgid "All Layout Templates"
|
287 |
msgstr ""
|
288 |
|
289 |
+
# @ fl-builder
|
290 |
#: classes/class-fl-builder.php:782
|
291 |
msgctxt "Custom post type label."
|
292 |
msgid "Search Layout Templates"
|
293 |
msgstr ""
|
294 |
|
295 |
+
# @ fl-builder
|
296 |
#: classes/class-fl-builder.php:783
|
297 |
msgctxt "Custom post type label."
|
298 |
msgid "Parent Layout Templates:"
|
299 |
msgstr ""
|
300 |
|
301 |
+
# @ fl-builder
|
302 |
#: classes/class-fl-builder.php:784
|
303 |
msgctxt "Custom post type label."
|
304 |
msgid "No layout templates found."
|
305 |
msgstr ""
|
306 |
|
307 |
+
# @ fl-builder
|
308 |
#: classes/class-fl-builder.php:785
|
309 |
msgctxt "Custom post type label."
|
310 |
msgid "No layout templates found in Trash."
|
311 |
msgstr ""
|
312 |
|
313 |
+
# @ fl-builder
|
314 |
+
#: classes/class-fl-builder.php:1152 includes/js-config.php:66
|
315 |
#, php-format
|
316 |
msgctxt "%s stands for module name."
|
317 |
msgid "%s Settings"
|
318 |
msgstr ""
|
319 |
|
320 |
+
# @ fl-builder
|
321 |
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
322 |
msgid "Text Editor"
|
323 |
msgstr ""
|
324 |
|
325 |
+
# @ fl-builder
|
326 |
#: includes/admin-posts.php:7
|
327 |
#, php-format
|
328 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
329 |
msgid "%s is currently active for this page."
|
330 |
msgstr ""
|
331 |
|
332 |
+
# @ fl-builder
|
333 |
#: includes/admin-posts.php:8
|
334 |
#, php-format
|
335 |
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
336 |
msgid "Launch %s"
|
337 |
msgstr ""
|
338 |
|
339 |
+
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
#: includes/admin-settings-branding.php:7
|
341 |
msgid "White label the page builder by entering a custom name below."
|
342 |
msgstr ""
|
343 |
|
344 |
+
# @ fl-builder
|
345 |
#: includes/admin-settings-branding.php:10
|
346 |
msgid ""
|
347 |
"Additionally, you may also add a custom icon by entering the URL of an image "
|
348 |
"below. Leave the field blank if you do not wish to use an icon."
|
349 |
msgstr ""
|
350 |
|
351 |
+
# @ fl-builder
|
|
|
|
|
|
|
352 |
#: includes/admin-settings-editing.php:3
|
353 |
msgid "Editing Settings"
|
354 |
msgstr ""
|
355 |
|
356 |
+
# @ fl-builder
|
357 |
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
358 |
#: includes/admin-settings-modules.php:10
|
359 |
#: includes/admin-settings-post-types.php:10
|
361 |
msgid "Override network settings?"
|
362 |
msgstr ""
|
363 |
|
364 |
+
# @ fl-builder
|
365 |
#: includes/admin-settings-editing.php:16
|
366 |
#, php-format
|
367 |
msgid ""
|
369 |
"editing such as adding, deleting or moving modules."
|
370 |
msgstr ""
|
371 |
|
372 |
+
# @ fl-builder
|
|
|
|
|
|
|
373 |
#: includes/admin-settings-help-button.php:8
|
374 |
msgid "Help Button Settings"
|
375 |
msgstr ""
|
376 |
|
377 |
+
# @ fl-builder
|
378 |
#: includes/admin-settings-help-button.php:17
|
379 |
msgid "Enable Help Button"
|
380 |
msgstr ""
|
381 |
|
382 |
+
# @ fl-builder
|
383 |
#: includes/admin-settings-help-button.php:23
|
384 |
msgid "Help Tour"
|
385 |
msgstr ""
|
386 |
|
387 |
+
# @ fl-builder
|
388 |
#: includes/admin-settings-help-button.php:27
|
389 |
msgid "Enable Help Tour"
|
390 |
msgstr ""
|
391 |
|
392 |
+
# @ fl-builder
|
393 |
#: includes/admin-settings-help-button.php:31
|
394 |
msgid "Help Video"
|
395 |
msgstr ""
|
396 |
|
397 |
+
# @ fl-builder
|
398 |
#: includes/admin-settings-help-button.php:35
|
399 |
msgid "Enable Help Video"
|
400 |
msgstr ""
|
401 |
|
402 |
+
# @ fl-builder
|
403 |
#: includes/admin-settings-help-button.php:39
|
404 |
msgid "Help Video Embed Code"
|
405 |
msgstr ""
|
406 |
|
407 |
+
# @ fl-builder
|
408 |
#: includes/admin-settings-help-button.php:45
|
409 |
msgid "Knowledge Base"
|
410 |
msgstr ""
|
411 |
|
412 |
+
# @ fl-builder
|
413 |
#: includes/admin-settings-help-button.php:49
|
414 |
msgid "Enable Knowledge Base"
|
415 |
msgstr ""
|
416 |
|
417 |
+
# @ fl-builder
|
418 |
#: includes/admin-settings-help-button.php:53
|
419 |
msgid "Knowledge Base URL"
|
420 |
msgstr ""
|
421 |
|
422 |
+
# @ fl-builder
|
423 |
#: includes/admin-settings-help-button.php:59
|
424 |
msgid "Forums"
|
425 |
msgstr ""
|
426 |
|
427 |
+
# @ fl-builder
|
428 |
#: includes/admin-settings-help-button.php:63
|
429 |
msgid "Enable Forums"
|
430 |
msgstr ""
|
431 |
|
432 |
+
# @ fl-builder
|
433 |
#: includes/admin-settings-help-button.php:67
|
434 |
msgid "Forums URL"
|
435 |
msgstr ""
|
436 |
|
437 |
+
# @ fl-builder
|
|
|
|
|
|
|
438 |
#: includes/admin-settings-icons.php:3
|
439 |
msgid "Icon Settings"
|
440 |
msgstr ""
|
441 |
|
442 |
+
# @ fl-builder
|
443 |
#: includes/admin-settings-icons.php:13
|
444 |
msgid "Icons for the main site must be managed in the network admin."
|
445 |
msgstr ""
|
446 |
|
447 |
+
# @ fl-builder
|
448 |
#: includes/admin-settings-icons.php:33
|
449 |
#, php-format
|
450 |
msgid ""
|
452 |
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
453 |
msgstr ""
|
454 |
|
455 |
+
# @ fl-builder
|
456 |
#: includes/admin-settings-icons.php:48
|
457 |
msgctxt "Plugin setup page: Delete icon set."
|
458 |
msgid "Delete"
|
459 |
msgstr ""
|
460 |
|
461 |
+
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
#: includes/admin-settings-modules.php:3
|
463 |
msgid "Enabled Modules"
|
464 |
msgstr ""
|
465 |
|
466 |
+
# @ fl-builder
|
467 |
#: includes/admin-settings-modules.php:16
|
468 |
msgid "Check or uncheck modules below to enable or disable them."
|
469 |
msgstr ""
|
470 |
|
471 |
+
# @ fl-builder
|
472 |
+
#: includes/admin-settings-modules.php:26
|
473 |
msgctxt "Plugin setup page: Modules."
|
474 |
msgid "All"
|
475 |
msgstr ""
|
476 |
|
477 |
+
# @ fl-builder
|
|
|
|
|
|
|
478 |
#: includes/admin-settings-post-types.php:18
|
479 |
msgid ""
|
480 |
"Enter a comma separated list of the post types you would like the builder to "
|
481 |
"work with."
|
482 |
msgstr ""
|
483 |
|
484 |
+
# @ fl-builder
|
485 |
#: includes/admin-settings-post-types.php:19
|
486 |
#: includes/admin-settings-post-types.php:39
|
487 |
msgid "NOTE: Not all custom post types may be supported."
|
488 |
msgstr ""
|
489 |
|
490 |
+
# @ fl-builder
|
491 |
#: includes/admin-settings-post-types.php:34
|
492 |
msgid "Example: page, post, product"
|
493 |
msgstr ""
|
494 |
|
495 |
+
# @ fl-builder
|
496 |
#: includes/admin-settings-post-types.php:38
|
497 |
msgid "Select the post types you would like the builder to work with."
|
498 |
msgstr ""
|
499 |
|
500 |
+
# @ fl-builder
|
|
|
|
|
|
|
501 |
#: includes/admin-settings-templates.php:3 includes/template-settings.php:4
|
502 |
msgid "Template Settings"
|
503 |
msgstr ""
|
504 |
|
505 |
+
# @ fl-builder
|
506 |
#: includes/admin-settings-templates.php:16
|
507 |
msgid "Enable or disable templates using the options below."
|
508 |
msgstr ""
|
509 |
|
510 |
+
# @ fl-builder
|
511 |
#: includes/admin-settings-templates.php:23
|
512 |
msgid "Enable All Templates"
|
513 |
msgstr ""
|
514 |
|
515 |
+
# @ fl-builder
|
516 |
#: includes/admin-settings-templates.php:24
|
517 |
msgid "Enable Core Templates Only"
|
518 |
msgstr ""
|
519 |
|
520 |
+
# @ fl-builder
|
521 |
#: includes/admin-settings-templates.php:25
|
522 |
msgid "Enable User Templates Only"
|
523 |
msgstr ""
|
524 |
|
525 |
+
# @ fl-builder
|
526 |
#: includes/admin-settings-templates.php:26
|
527 |
msgid "Disable All Templates"
|
528 |
msgstr ""
|
529 |
|
530 |
+
# @ fl-builder
|
|
|
|
|
|
|
531 |
#: includes/admin-settings-uninstall.php:5
|
532 |
msgid ""
|
533 |
"Clicking the button below will uninstall the page builder plugin and delete "
|
535 |
"builder from the plugins page instead if you do not wish to delete the data."
|
536 |
msgstr ""
|
537 |
|
538 |
+
# @ fl-builder
|
539 |
#: includes/admin-settings-uninstall.php:7
|
540 |
#: includes/admin-settings-uninstall.php:10
|
541 |
#: includes/updater/includes/form.php:31
|
542 |
msgid "NOTE:"
|
543 |
msgstr ""
|
544 |
|
545 |
+
# @ fl-builder
|
546 |
#: includes/admin-settings-uninstall.php:7
|
547 |
msgid ""
|
548 |
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
551 |
"its data using those meta values."
|
552 |
msgstr ""
|
553 |
|
554 |
+
# @ fl-builder
|
555 |
#: includes/admin-settings-uninstall.php:10
|
556 |
#: includes/updater/includes/form.php:31
|
557 |
msgid "This applies to all sites on the network."
|
558 |
msgstr ""
|
559 |
|
560 |
+
# @ fl-builder
|
561 |
#: includes/admin-settings-upgrade.php:5
|
562 |
msgid ""
|
563 |
"You are currently running the lite version of the Beaver Builder plugin. "
|
565 |
"templates, support and more!"
|
566 |
msgstr ""
|
567 |
|
568 |
+
# @ fl-builder
|
569 |
#: includes/admin-settings-upgrade.php:7
|
570 |
msgid "Upgrade Now"
|
571 |
msgstr ""
|
572 |
|
573 |
+
# @ fl-builder
|
574 |
#: includes/admin-settings-upgrade.php:9
|
575 |
msgid "Learn More"
|
576 |
msgstr ""
|
584 |
msgid "Name"
|
585 |
msgstr ""
|
586 |
|
587 |
+
# @ fl-builder
|
588 |
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
|
589 |
#: modules/post-grid/post-grid.php:113
|
590 |
msgid "Image"
|
591 |
msgstr ""
|
592 |
|
593 |
+
# @ fl-builder
|
594 |
#: includes/admin-templates-edit.php:16 includes/row-settings.php:155
|
595 |
#: includes/template-settings.php:23 modules/callout/callout.php:353
|
596 |
#: modules/callout/callout.php:373
|
604 |
msgid "Premium"
|
605 |
msgstr ""
|
606 |
|
607 |
+
# @ fl-builder
|
608 |
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
609 |
#: includes/global-settings.php:18 includes/global-settings.php:110
|
610 |
#: includes/row-settings.php:307 includes/template-settings.php:31
|
634 |
msgid "No"
|
635 |
msgstr ""
|
636 |
|
637 |
+
# @ fl-builder
|
638 |
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
639 |
#: includes/global-settings.php:19 includes/global-settings.php:111
|
640 |
#: includes/row-settings.php:308 includes/template-settings.php:32
|
701 |
msgid "Premium"
|
702 |
msgstr ""
|
703 |
|
704 |
+
# @ fl-builder
|
705 |
#: includes/admin-templates.php:25 includes/field-photo.php:12
|
706 |
#: includes/template-selector.php:83
|
707 |
msgid "Edit"
|
708 |
msgstr ""
|
709 |
|
710 |
+
# @ fl-builder
|
711 |
#: includes/admin-templates.php:27 includes/template-selector.php:84
|
712 |
msgid "Delete"
|
713 |
msgstr ""
|
714 |
|
715 |
+
# @ fl-builder
|
716 |
+
#: includes/admin-templates.php:40
|
717 |
msgid "Do you really want to delete this template?"
|
718 |
msgstr ""
|
719 |
|
720 |
+
# @ fl-builder
|
721 |
+
#: includes/column-settings.php:4
|
722 |
msgid "Column Settings"
|
723 |
msgstr ""
|
724 |
|
725 |
+
# @ fl-builder
|
726 |
#: includes/column-settings.php:7 includes/module-settings.php:87
|
727 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
728 |
#: modules/button/button.php:108 modules/button/button.php:146
|
738 |
msgid "Style"
|
739 |
msgstr ""
|
740 |
|
741 |
+
# @ fl-builder
|
742 |
#: includes/column-settings.php:14
|
743 |
msgid "Column Width"
|
744 |
msgstr ""
|
745 |
|
746 |
+
# @ fl-builder
|
747 |
#: includes/column-settings.php:26 includes/row-settings.php:48
|
748 |
#: modules/button/button.php:66 modules/callout/callout.php:225
|
749 |
#: modules/callout/callout.php:478 modules/callout/callout.php:494
|
753 |
msgid "Text"
|
754 |
msgstr ""
|
755 |
|
756 |
+
# @ fl-builder
|
757 |
#: includes/column-settings.php:30 includes/column-settings.php:43
|
758 |
#: includes/column-settings.php:100 includes/row-settings.php:52
|
759 |
#: includes/row-settings.php:109 includes/row-settings.php:403
|
764 |
msgid "Color"
|
765 |
msgstr ""
|
766 |
|
767 |
+
# @ fl-builder
|
768 |
#: includes/column-settings.php:39 includes/row-settings.php:105
|
769 |
#: modules/button/button.php:115 modules/callout/callout.php:404
|
770 |
#: modules/callout/callout.php:508
|
775 |
msgid "Background Color"
|
776 |
msgstr ""
|
777 |
|
778 |
+
# @ fl-builder
|
779 |
#: includes/column-settings.php:51 includes/column-settings.php:108
|
780 |
#: includes/row-settings.php:117 includes/row-settings.php:411
|
781 |
#: modules/separator/separator.php:44
|
782 |
msgid "Opacity"
|
783 |
msgstr ""
|
784 |
|
785 |
+
# @ fl-builder
|
786 |
#: includes/column-settings.php:63 includes/row-settings.php:366
|
787 |
msgid "Border"
|
788 |
msgstr ""
|
789 |
|
790 |
+
# @ fl-builder
|
791 |
#: includes/column-settings.php:67 includes/row-settings.php:65
|
792 |
#: includes/row-settings.php:370 modules/callout/callout.php:474
|
793 |
#: modules/content-slider/content-slider.php:331
|
798 |
msgid "Type"
|
799 |
msgstr ""
|
800 |
|
801 |
+
# @ fl-builder
|
802 |
#: includes/column-settings.php:69 includes/row-settings.php:372
|
803 |
msgid ""
|
804 |
"The type of border to use. Double borders must have a width of at least 3px "
|
805 |
"to render properly."
|
806 |
msgstr ""
|
807 |
|
808 |
+
# @ fl-builder
|
809 |
#: includes/column-settings.php:71 includes/row-settings.php:374
|
810 |
msgctxt "Border type."
|
811 |
msgid "None"
|
812 |
msgstr ""
|
813 |
|
814 |
+
# @ fl-builder
|
815 |
#: includes/column-settings.php:72 includes/row-settings.php:375
|
816 |
#: modules/separator/separator.php:75
|
817 |
msgctxt "Border type."
|
818 |
msgid "Solid"
|
819 |
msgstr ""
|
820 |
|
821 |
+
# @ fl-builder
|
822 |
#: includes/column-settings.php:73 includes/row-settings.php:376
|
823 |
#: modules/separator/separator.php:76
|
824 |
msgctxt "Border type."
|
825 |
msgid "Dashed"
|
826 |
msgstr ""
|
827 |
|
828 |
+
# @ fl-builder
|
829 |
#: includes/column-settings.php:74 includes/row-settings.php:377
|
830 |
#: modules/separator/separator.php:77
|
831 |
msgctxt "Border type."
|
832 |
msgid "Dotted"
|
833 |
msgstr ""
|
834 |
|
835 |
+
# @ fl-builder
|
836 |
#: includes/column-settings.php:75 includes/row-settings.php:378
|
837 |
#: modules/separator/separator.php:78
|
838 |
msgctxt "Border type."
|
839 |
msgid "Double"
|
840 |
msgstr ""
|
841 |
|
842 |
+
# @ fl-builder
|
843 |
#: includes/column-settings.php:119 includes/row-settings.php:422
|
844 |
msgid "Top Width"
|
845 |
msgstr ""
|
846 |
|
847 |
+
# @ fl-builder
|
848 |
#: includes/column-settings.php:131 includes/row-settings.php:434
|
849 |
msgid "Bottom Width"
|
850 |
msgstr ""
|
851 |
|
852 |
+
# @ fl-builder
|
853 |
#: includes/column-settings.php:143 includes/row-settings.php:446
|
854 |
msgid "Left Width"
|
855 |
msgstr ""
|
856 |
|
857 |
+
# @ fl-builder
|
858 |
#: includes/column-settings.php:155 includes/row-settings.php:458
|
859 |
msgid "Right Width"
|
860 |
msgstr ""
|
861 |
|
862 |
+
# @ fl-builder
|
863 |
#: includes/column-settings.php:170 includes/module-settings.php:6
|
864 |
#: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
|
865 |
msgid "Advanced"
|
866 |
msgstr ""
|
867 |
|
868 |
+
# @ fl-builder
|
869 |
#: includes/column-settings.php:173 includes/global-settings.php:41
|
870 |
#: includes/global-settings.php:94 includes/module-settings.php:9
|
871 |
#: includes/row-settings.php:476
|
872 |
msgid "Margins"
|
873 |
msgstr ""
|
874 |
|
875 |
+
# @ fl-builder
|
876 |
#: includes/column-settings.php:177 includes/column-settings.php:230
|
877 |
#: includes/module-settings.php:13 includes/row-settings.php:480
|
878 |
#: includes/row-settings.php:533 modules/slideshow/slideshow.php:475
|
879 |
msgid "Top"
|
880 |
msgstr ""
|
881 |
|
882 |
+
# @ fl-builder
|
883 |
#: includes/column-settings.php:189 includes/column-settings.php:242
|
884 |
#: includes/module-settings.php:25 includes/row-settings.php:492
|
885 |
#: includes/row-settings.php:545 modules/slideshow/slideshow.php:474
|
886 |
msgid "Bottom"
|
887 |
msgstr ""
|
888 |
|
889 |
+
# @ fl-builder
|
890 |
#: includes/column-settings.php:201 includes/column-settings.php:254
|
891 |
#: includes/module-settings.php:37 includes/row-settings.php:504
|
892 |
#: includes/row-settings.php:557 modules/button/button.php:219
|
898 |
msgid "Left"
|
899 |
msgstr ""
|
900 |
|
901 |
+
# @ fl-builder
|
902 |
#: includes/column-settings.php:213 includes/column-settings.php:266
|
903 |
#: includes/module-settings.php:49 includes/row-settings.php:516
|
904 |
#: includes/row-settings.php:569 modules/button/button.php:220
|
910 |
msgid "Right"
|
911 |
msgstr ""
|
912 |
|
913 |
+
# @ fl-builder
|
914 |
#: includes/column-settings.php:226 includes/global-settings.php:49
|
915 |
#: includes/row-settings.php:529 modules/button/button.php:233
|
916 |
#: modules/callout/callout.php:598
|
918 |
msgid "Padding"
|
919 |
msgstr ""
|
920 |
|
921 |
+
# @ fl-builder
|
922 |
#: includes/column-settings.php:279 includes/global-settings.php:103
|
923 |
#: includes/module-settings.php:62 includes/row-settings.php:582
|
924 |
msgid "Responsive Layout"
|
925 |
msgstr ""
|
926 |
|
927 |
+
# @ fl-builder
|
928 |
#: includes/column-settings.php:283 includes/module-settings.php:66
|
929 |
#: includes/row-settings.php:586 modules/slideshow/slideshow.php:290
|
930 |
msgid "Display"
|
931 |
msgstr ""
|
932 |
|
933 |
+
# @ fl-builder
|
934 |
#: includes/column-settings.php:285 includes/module-settings.php:68
|
935 |
#: includes/row-settings.php:588
|
936 |
msgid "Always"
|
937 |
msgstr ""
|
938 |
|
939 |
+
# @ fl-builder
|
940 |
#: includes/column-settings.php:286 includes/module-settings.php:69
|
941 |
#: includes/row-settings.php:589
|
942 |
msgid "Large Devices Only"
|
943 |
msgstr ""
|
944 |
|
945 |
+
# @ fl-builder
|
946 |
#: includes/column-settings.php:287 includes/module-settings.php:70
|
947 |
#: includes/row-settings.php:590
|
948 |
msgid "Large & Medium Devices Only"
|
949 |
msgstr ""
|
950 |
|
951 |
+
# @ fl-builder
|
952 |
#: includes/column-settings.php:288 includes/module-settings.php:71
|
953 |
#: includes/row-settings.php:591
|
954 |
msgid "Medium Devices Only"
|
955 |
msgstr ""
|
956 |
|
957 |
+
# @ fl-builder
|
958 |
#: includes/column-settings.php:289 includes/module-settings.php:72
|
959 |
#: includes/row-settings.php:592
|
960 |
msgid "Medium & Small Devices Only"
|
961 |
msgstr ""
|
962 |
|
963 |
+
# @ fl-builder
|
964 |
#: includes/column-settings.php:290 includes/module-settings.php:73
|
965 |
#: includes/row-settings.php:593
|
966 |
msgid "Small Devices Only"
|
967 |
msgstr ""
|
968 |
|
969 |
+
# @ fl-builder
|
970 |
#: includes/column-settings.php:292
|
971 |
msgid "Choose whether to show or hide this column at different device sizes."
|
972 |
msgstr ""
|
973 |
|
974 |
+
# @ fl-builder
|
975 |
#: includes/column-settings.php:299
|
976 |
msgid "Medium Device Width"
|
977 |
msgstr ""
|
978 |
|
979 |
+
# @ fl-builder
|
980 |
#: includes/column-settings.php:300
|
981 |
msgid "The width of this column on medium devices such as tablets."
|
982 |
msgstr ""
|
983 |
|
984 |
+
# @ fl-builder
|
985 |
#: includes/column-settings.php:302 includes/column-settings.php:330
|
986 |
#: modules/callout/callout.php:283
|
987 |
#: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
|
990 |
msgid "Default"
|
991 |
msgstr ""
|
992 |
|
993 |
+
# @ fl-builder
|
994 |
#: includes/column-settings.php:303 includes/column-settings.php:331
|
995 |
#: modules/button/button.php:193 modules/callout/callout.php:284
|
996 |
#: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
|
1000 |
msgid "Custom"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
# @ fl-builder
|
1004 |
#: includes/column-settings.php:316
|
1005 |
msgid "Custom Medium Device Width"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
# @ fl-builder
|
1009 |
#: includes/column-settings.php:327
|
1010 |
msgid "Small Device Width"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
# @ fl-builder
|
1014 |
#: includes/column-settings.php:328
|
1015 |
msgid "The width of this column on small devices such as phones."
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
# @ fl-builder
|
1019 |
#: includes/column-settings.php:344
|
1020 |
msgid "Custom Small Device Width"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
# @ fl-builder
|
1024 |
#: includes/column-settings.php:356 includes/module-settings.php:115
|
1025 |
#: includes/row-settings.php:603
|
1026 |
msgid "CSS Selectors"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
# @ fl-builder
|
1030 |
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
1031 |
#: includes/module-settings.php:119 includes/row-settings.php:607
|
1032 |
msgid "ID"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
# @ fl-builder
|
1036 |
#: includes/column-settings.php:361
|
1037 |
msgid ""
|
1038 |
"A unique ID that will be applied to this column's HTML. Must start with a "
|
1039 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
# @ fl-builder
|
1043 |
#: includes/column-settings.php:368
|
1044 |
msgid "CSS Class"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
# @ fl-builder
|
1048 |
#: includes/column-settings.php:369
|
1049 |
msgid ""
|
1050 |
"A class that will be applied to this column's HTML. Must start with a letter "
|
1052 |
"classes with spaces."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
# @ fl-builder
|
1056 |
#: includes/field-form.php:28
|
1057 |
#, php-format
|
1058 |
msgctxt "%s stands for form field label."
|
1059 |
msgid "Edit %s"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
# @ fl-builder
|
1063 |
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
1064 |
msgid "Select Icon"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
# @ fl-builder
|
1068 |
#: includes/field-icon.php:5 includes/field-photo.php:13
|
1069 |
msgid "Replace"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
# @ fl-builder
|
1073 |
+
#: includes/field-icon.php:7
|
1074 |
msgid "Remove"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
# @ fl-builder
|
1078 |
#: includes/field-link.php:3
|
1079 |
msgid "Select"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
# @ fl-builder
|
1083 |
#: includes/field-link.php:5
|
1084 |
msgid "Enter a post title to search."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
# @ fl-builder
|
|
|
|
|
|
|
1088 |
#: includes/field-link.php:7 includes/icon-selector.php:28
|
1089 |
+
#: includes/settings.php:63 includes/template-selector.php:102
|
1090 |
+
#: includes/ui.php:11
|
1091 |
msgid "Cancel"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
# @ fl-builder
|
1095 |
#: includes/field-multiple-photos.php:8
|
1096 |
#, php-format
|
1097 |
msgid "1 Photo Selected"
|
1099 |
msgstr[0] ""
|
1100 |
msgstr[1] ""
|
1101 |
|
1102 |
+
# @ fl-builder
|
1103 |
#: includes/field-multiple-photos.php:13
|
1104 |
msgid "Create Gallery"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
# @ fl-builder
|
1108 |
#: includes/field-multiple-photos.php:14
|
1109 |
msgid "Edit Gallery"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
# @ fl-builder
|
1113 |
#: includes/field-multiple-photos.php:15
|
1114 |
msgid "Add Photos"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
# @ fl-builder
|
1118 |
+
#: includes/field-photo.php:3
|
1119 |
msgid "Select Photo"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
# @ fl-builder
|
1123 |
+
#: includes/field-video.php:3
|
1124 |
msgid "Select Video"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
# @ fl-builder
|
1128 |
#: includes/field-video.php:17
|
1129 |
msgid "Replace Video"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
# @ fl-builder
|
1133 |
#: includes/global-settings.php:7 includes/template-settings.php:7
|
1134 |
#: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
|
1135 |
#: modules/button/button.php:59 modules/callout/callout.php:209
|
1136 |
+
#: modules/contact-form/contact-form.php:58
|
1137 |
#: modules/content-slider/content-slider.php:190
|
1138 |
#: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
|
1139 |
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
1149 |
msgid "General"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
# @ fl-builder
|
1153 |
#: includes/global-settings.php:8
|
1154 |
msgid "Note: These settings apply to all posts and pages."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
# @ fl-builder
|
1158 |
#: includes/global-settings.php:11
|
1159 |
msgid "Default Page Heading"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
# @ fl-builder
|
1163 |
#: includes/global-settings.php:15
|
1164 |
msgctxt ""
|
1165 |
"General settings form field label. Intended meaning: \"Show page heading?\""
|
1166 |
msgid "Show"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
# @ fl-builder
|
1170 |
#: includes/global-settings.php:26
|
1171 |
msgid ""
|
1172 |
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
1174 |
"choose no."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
# @ fl-builder
|
1178 |
#: includes/global-settings.php:30
|
1179 |
msgid "CSS Selector"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
# @ fl-builder
|
1183 |
#: includes/global-settings.php:32
|
1184 |
msgid "Enter a CSS selector for the default page heading to hide it."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
# @ fl-builder
|
1188 |
#: includes/global-settings.php:37
|
1189 |
msgid "Rows"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
# @ fl-builder
|
1193 |
#: includes/global-settings.php:57
|
1194 |
msgid "Max Width"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
# @ fl-builder
|
1198 |
#: includes/global-settings.php:62
|
1199 |
msgid ""
|
1200 |
"All rows will default to this width. You can override this and make a row "
|
1201 |
"full width in the settings for each row."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
# @ fl-builder
|
1205 |
#: includes/global-settings.php:66
|
1206 |
msgid "Default Row Width"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
# @ fl-builder
|
1210 |
#: includes/global-settings.php:69 includes/global-settings.php:83
|
1211 |
#: includes/row-settings.php:19 includes/row-settings.php:37
|
1212 |
#: includes/row-settings.php:179
|
1213 |
msgid "Fixed"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
# @ fl-builder
|
1217 |
#: includes/global-settings.php:70 includes/global-settings.php:84
|
1218 |
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1219 |
#: modules/button/button.php:192 modules/callout/callout.php:585
|
1220 |
msgid "Full Width"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
# @ fl-builder
|
1224 |
#: includes/global-settings.php:80
|
1225 |
msgid "Default Row Content Width"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
# @ fl-builder
|
1229 |
#: includes/global-settings.php:107
|
1230 |
msgctxt ""
|
1231 |
"General settings form field label. Intended meaning: \"Responsive layout "
|
1233 |
msgid "Enabled"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
# @ fl-builder
|
1237 |
#: includes/global-settings.php:121
|
1238 |
msgid "Medium Device Breakpoint"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
# @ fl-builder
|
1242 |
#: includes/global-settings.php:126
|
1243 |
msgid ""
|
1244 |
"The browser width at which the layout will adjust for medium devices such as "
|
1245 |
"tablets."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
# @ fl-builder
|
1249 |
#: includes/global-settings.php:130
|
1250 |
msgid "Small Device Breakpoint"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
# @ fl-builder
|
1254 |
#: includes/global-settings.php:135
|
1255 |
msgid ""
|
1256 |
"The browser width at which the layout will adjust for small devices such as "
|
1257 |
"phones."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
# @ fl-builder
|
1261 |
#: includes/icon-selector.php:5
|
1262 |
msgctxt "Select option for showing all icon libraries."
|
1263 |
msgid "All Libraries"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1267 |
#: includes/js-config.php:33
|
1268 |
msgctxt "Duplicate page/post action label."
|
1269 |
msgid "Duplicate"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1273 |
#: includes/js-config.php:38
|
1274 |
msgid ""
|
1275 |
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1278 |
"each to determine if the issue is related to a third party plugin."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1282 |
#: includes/js-config.php:42
|
1283 |
msgid "\"{message}\" on line {line} of {file}."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1287 |
#: includes/loop-settings.php:19
|
1288 |
msgid "Post Type"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
# @ fl-builder
|
1292 |
#: includes/loop-settings.php:25
|
1293 |
msgid "Order By"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
# @ fl-builder
|
1297 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1298 |
#: modules/woocommerce/woocommerce.php:189
|
1299 |
msgid "Date"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
# @ fl-builder
|
1303 |
#: includes/loop-settings.php:29
|
1304 |
msgid "Date Last Modified"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
# @ fl-builder
|
1308 |
#: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
|
1309 |
#: modules/pricing-table/pricing-table.php:94
|
1310 |
msgid "Title"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
# @ fl-builder
|
1314 |
#: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
|
1315 |
msgid "Author"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
# @ fl-builder
|
1319 |
#: includes/loop-settings.php:32
|
1320 |
msgid "Comment Count"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
# @ fl-builder
|
1324 |
#: includes/loop-settings.php:33
|
1325 |
msgid "Menu Order"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
# @ fl-builder
|
1329 |
#: includes/loop-settings.php:34
|
1330 |
msgid "Random"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
# @ fl-builder
|
1334 |
#: includes/loop-settings.php:41
|
1335 |
msgid "Order"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
# @ fl-builder
|
1339 |
+
#: includes/loop-settings.php:43 modules/woocommerce/woocommerce.php:199
|
1340 |
msgid "Descending"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
# @ fl-builder
|
1344 |
+
#: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:198
|
1345 |
msgid "Ascending"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
# @ fl-builder
|
1349 |
#: includes/loop-settings.php:52
|
1350 |
msgid "Filter"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
# @ fl-builder
|
1354 |
#: includes/loop-settings.php:63
|
1355 |
#, php-format
|
1356 |
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
# @ fl-builder
|
1360 |
#: includes/loop-settings.php:76
|
1361 |
#, php-format
|
1362 |
msgid ""
|
1363 |
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
# @ fl-builder
|
1367 |
#: includes/loop-settings.php:90
|
1368 |
msgid "Authors"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
# @ fl-builder
|
1372 |
#: includes/loop-settings.php:91
|
1373 |
msgid ""
|
1374 |
"Enter a comma separated list of authors usernames. Only posts with these "
|
1375 |
"authors will be shown."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
# @ fl-builder
|
1379 |
#: includes/module-settings.php:75
|
1380 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
# @ fl-builder
|
1384 |
#: includes/module-settings.php:83
|
1385 |
msgid "Animation"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
# @ fl-builder
|
1389 |
#: includes/module-settings.php:89
|
1390 |
msgctxt "Animation style."
|
1391 |
msgid "None"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
# @ fl-builder
|
1395 |
#: includes/module-settings.php:90
|
1396 |
msgctxt "Animation style."
|
1397 |
msgid "Fade In"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
# @ fl-builder
|
1401 |
#: includes/module-settings.php:91
|
1402 |
msgctxt "Animation style."
|
1403 |
msgid "Slide Left"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
# @ fl-builder
|
1407 |
#: includes/module-settings.php:92
|
1408 |
msgctxt "Animation style."
|
1409 |
msgid "Slide Right"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
# @ fl-builder
|
1413 |
#: includes/module-settings.php:93
|
1414 |
msgctxt "Animation style."
|
1415 |
msgid "Slide Up"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
# @ fl-builder
|
1419 |
#: includes/module-settings.php:94
|
1420 |
msgctxt "Animation style."
|
1421 |
msgid "Slide Down"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
# @ fl-builder
|
1425 |
#: includes/module-settings.php:102
|
1426 |
#: modules/content-slider/content-slider.php:229
|
1427 |
#: modules/testimonials/testimonials.php:91
|
1428 |
msgid "Delay"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
# @ fl-builder
|
1432 |
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1433 |
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
|
1434 |
#: modules/content-slider/content-slider.php:250
|
1440 |
msgid "seconds"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
# @ fl-builder
|
1444 |
#: includes/module-settings.php:107
|
1445 |
msgid "The amount of time in seconds before this animation starts."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
# @ fl-builder
|
1449 |
#: includes/module-settings.php:120
|
1450 |
msgid ""
|
1451 |
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1452 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
# @ fl-builder
|
1456 |
#: includes/module-settings.php:127 includes/row-settings.php:615
|
1457 |
msgid "Class"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
# @ fl-builder
|
1461 |
#: includes/module-settings.php:128
|
1462 |
msgid ""
|
1463 |
"A class that will be applied to this module's HTML. Must start with a letter "
|
1465 |
"classes with spaces."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
# @ fl-builder
|
1469 |
+
#: includes/row-settings.php:6
|
1470 |
+
msgid "Row Settings"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
# @ fl-builder
|
1474 |
#: includes/row-settings.php:16 modules/button/button.php:188
|
1475 |
#: modules/content-slider/content-slider.php:483
|
1476 |
msgid "Width"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
# @ fl-builder
|
1480 |
#: includes/row-settings.php:27
|
1481 |
msgid ""
|
1482 |
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
1483 |
"no wider than the Row Max Width set in the Global Settings."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
# @ fl-builder
|
1487 |
#: includes/row-settings.php:34
|
1488 |
msgid "Content Width"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
# @ fl-builder
|
1492 |
#: includes/row-settings.php:40
|
1493 |
msgid ""
|
1494 |
"Full width content spans the width of the page from edge to edge. Fixed "
|
1495 |
"content is no wider than the Row Max Width set in the Global Settings."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
# @ fl-builder
|
1499 |
#: includes/row-settings.php:61
|
1500 |
msgid "Background"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
# @ fl-builder
|
1504 |
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:338
|
1505 |
msgctxt "Background type."
|
1506 |
msgid "None"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
# @ fl-builder
|
1510 |
#: includes/row-settings.php:69
|
1511 |
msgctxt "Background type."
|
1512 |
msgid "Color"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
# @ fl-builder
|
1516 |
#: includes/row-settings.php:70
|
1517 |
msgctxt "Background type."
|
1518 |
msgid "Photo"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
# @ fl-builder
|
1522 |
#: includes/row-settings.php:71
|
1523 |
msgctxt "Background type."
|
1524 |
msgid "Video"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
# @ fl-builder
|
1528 |
#: includes/row-settings.php:73
|
1529 |
msgctxt "Background type."
|
1530 |
msgid "Slideshow"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
# @ fl-builder
|
1534 |
#: includes/row-settings.php:77
|
1535 |
msgctxt "Background type."
|
1536 |
msgid "Parallax"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
# @ fl-builder
|
1540 |
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:359
|
1541 |
msgid "Background Photo"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
# @ fl-builder
|
1545 |
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1546 |
#: modules/callout/callout.php:316 modules/callout/callout.php:332
|
1547 |
#: modules/callout/callout.php:336
|
1552 |
msgid "Photo"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
# @ fl-builder
|
1556 |
#: includes/row-settings.php:140
|
1557 |
msgid "Repeat"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
# @ fl-builder
|
1561 |
#: includes/row-settings.php:143
|
1562 |
msgctxt "Background repeat."
|
1563 |
msgid "None"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
# @ fl-builder
|
1567 |
#: includes/row-settings.php:144
|
1568 |
msgctxt "Background repeat."
|
1569 |
msgid "Tile"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
# @ fl-builder
|
1573 |
#: includes/row-settings.php:145
|
1574 |
msgctxt "Background repeat."
|
1575 |
msgid "Horizontal"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
# @ fl-builder
|
1579 |
#: includes/row-settings.php:146
|
1580 |
msgctxt "Background repeat."
|
1581 |
msgid "Vertical"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
# @ fl-builder
|
1585 |
#: includes/row-settings.php:148
|
1586 |
msgid ""
|
1587 |
"Repeat applies to how the image should display in the row background. "
|
1590 |
"also specify the image to only repeat horizontally or vertically."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
# @ fl-builder
|
1594 |
#: includes/row-settings.php:158
|
1595 |
msgid "Left Top"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
# @ fl-builder
|
1599 |
#: includes/row-settings.php:159
|
1600 |
msgid "Left Center"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
# @ fl-builder
|
1604 |
#: includes/row-settings.php:160
|
1605 |
msgid "Left Bottom"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
# @ fl-builder
|
1609 |
#: includes/row-settings.php:161
|
1610 |
msgid "Right Top"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
# @ fl-builder
|
1614 |
#: includes/row-settings.php:162
|
1615 |
msgid "Right Center"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
# @ fl-builder
|
1619 |
#: includes/row-settings.php:163
|
1620 |
msgid "Right Bottom"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
# @ fl-builder
|
1624 |
#: includes/row-settings.php:164
|
1625 |
msgid "Center Top"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
# @ fl-builder
|
1629 |
#: includes/row-settings.php:165 modules/button/button.php:218
|
1630 |
#: modules/callout/callout.php:251
|
1631 |
#: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
|
1635 |
msgid "Center"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
# @ fl-builder
|
1639 |
#: includes/row-settings.php:166
|
1640 |
msgid "Center Bottom"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
# @ fl-builder
|
1644 |
#: includes/row-settings.php:168
|
1645 |
msgid "Position will tell the image where it should sit in the row background."
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
# @ fl-builder
|
1649 |
#: includes/row-settings.php:175
|
1650 |
msgid "Attachment"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
# @ fl-builder
|
1654 |
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1655 |
msgid "Scroll"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
# @ fl-builder
|
1659 |
#: includes/row-settings.php:181
|
1660 |
msgid ""
|
1661 |
"Attachment will specify how the image reacts when scrolling a page. When "
|
1664 |
"background if fill is selected in the scale setting."
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
# @ fl-builder
|
1668 |
#: includes/row-settings.php:188
|
1669 |
msgid "Scale"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
# @ fl-builder
|
1673 |
#: includes/row-settings.php:191
|
1674 |
msgctxt "Background scale."
|
1675 |
msgid "None"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
# @ fl-builder
|
1679 |
#: includes/row-settings.php:192
|
1680 |
msgid "Fit"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
# @ fl-builder
|
1684 |
#: includes/row-settings.php:193
|
1685 |
msgid "Fill"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
# @ fl-builder
|
1689 |
#: includes/row-settings.php:195
|
1690 |
msgid ""
|
1691 |
"Scale applies to how the image should display in the row background. You can "
|
1692 |
"select either fill or fit to the row background."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
# @ fl-builder
|
1696 |
#: includes/row-settings.php:203
|
1697 |
msgid "Background Video"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
# @ fl-builder
|
1701 |
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
|
1702 |
#: modules/video/video.php:19 modules/video/video.php:100
|
1703 |
msgid "Video"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
# @ fl-builder
|
1707 |
#: includes/row-settings.php:208
|
1708 |
msgid ""
|
1709 |
"An HTML5 video to use as the background of this row. Supported types are "
|
1710 |
"MP4, WebM and Ogg."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
# @ fl-builder
|
1714 |
#: includes/row-settings.php:215
|
1715 |
msgid "Fallback Photo"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
# @ fl-builder
|
1719 |
#: includes/row-settings.php:216
|
1720 |
msgid "A photo that will be displayed if the video fails to load."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
# @ fl-builder
|
1724 |
#: includes/row-settings.php:224
|
1725 |
msgid "Background Slideshow"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
# @ fl-builder
|
1729 |
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
1730 |
#: modules/slideshow/slideshow.php:263
|
1731 |
msgid "Source"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
# @ fl-builder
|
1735 |
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
1736 |
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
1737 |
#: modules/video/video.php:86
|
1738 |
msgid "Media Library"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
# @ fl-builder
|
1742 |
#: includes/row-settings.php:234 modules/gallery/gallery.php:240
|
1743 |
#: modules/slideshow/slideshow.php:269
|
1744 |
msgid ""
|
1747 |
"accessed by using the get a link function in your SmugMug gallery."
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
# @ fl-builder
|
1751 |
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
1752 |
#: modules/slideshow/slideshow.php:281
|
1753 |
msgid "Photos"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
# @ fl-builder
|
1757 |
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
1758 |
#: modules/slideshow/slideshow.php:285
|
1759 |
msgid "Feed URL"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
# @ fl-builder
|
1763 |
#: includes/row-settings.php:263 includes/row-settings.php:328
|
1764 |
#: modules/slideshow/slideshow.php:382
|
1765 |
msgid "Speed"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
# @ fl-builder
|
1769 |
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
|
1770 |
#: modules/slideshow/slideshow.php:389
|
1771 |
#: modules/testimonials/testimonials.php:99
|
1772 |
msgid "Transition"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
# @ fl-builder
|
1776 |
#: includes/row-settings.php:276
|
1777 |
msgctxt "Slideshow transition type."
|
1778 |
msgid "None"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
# @ fl-builder
|
1782 |
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
|
1783 |
#: modules/slideshow/slideshow.php:393
|
1784 |
#: modules/testimonials/testimonials.php:103
|
1785 |
msgid "Fade"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
# @ fl-builder
|
1789 |
#: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
|
1790 |
msgid "Ken Burns"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
# @ fl-builder
|
1794 |
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
1795 |
msgid "Slide Horizontal"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
# @ fl-builder
|
1799 |
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
1800 |
msgid "Slide Vertical"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
# @ fl-builder
|
1804 |
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
1805 |
msgid "Blinds"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
# @ fl-builder
|
1809 |
#: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
|
1810 |
msgid "Bars"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
+
# @ fl-builder
|
1814 |
#: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
|
1815 |
msgid "Random Bars"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
# @ fl-builder
|
1819 |
#: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
|
1820 |
msgid "Boxes"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
# @ fl-builder
|
1824 |
#: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
|
1825 |
msgid "Random Boxes"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
# @ fl-builder
|
1829 |
#: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
|
1830 |
msgid "Boxes Grow"
|
1831 |
msgstr ""
|
1832 |
|
1833 |
+
# @ fl-builder
|
1834 |
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
|
1835 |
#: modules/slideshow/slideshow.php:407
|
1836 |
#: modules/testimonials/testimonials.php:108
|
1837 |
msgid "Transition Speed"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
+
# @ fl-builder
|
1841 |
#: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
|
1842 |
msgid "Randomize Photos"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
+
# @ fl-builder
|
1846 |
#: includes/row-settings.php:317
|
1847 |
msgid "Background Parallax"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
# @ fl-builder
|
1851 |
#: includes/row-settings.php:331
|
1852 |
msgid "Fast"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
# @ fl-builder
|
1856 |
#: includes/row-settings.php:332
|
1857 |
msgctxt "Speed."
|
1858 |
msgid "Medium"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
# @ fl-builder
|
1862 |
#: includes/row-settings.php:333
|
1863 |
msgid "Slow"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
# @ fl-builder
|
1867 |
#: includes/row-settings.php:342
|
1868 |
msgid "Background Overlay"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
# @ fl-builder
|
1872 |
#: includes/row-settings.php:346
|
1873 |
msgid "Overlay Color"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
# @ fl-builder
|
1877 |
#: includes/row-settings.php:354
|
1878 |
msgid "Overlay Opacity"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
+
# @ fl-builder
|
1882 |
#: includes/row-settings.php:595
|
1883 |
msgid "Choose whether to show or hide this row at different device sizes."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
# @ fl-builder
|
1887 |
#: includes/row-settings.php:608
|
1888 |
msgid ""
|
1889 |
"A unique ID that will be applied to this row's HTML. Must start with a "
|
1890 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
# @ fl-builder
|
1894 |
#: includes/row-settings.php:616
|
1895 |
msgid ""
|
1896 |
"A class that will be applied to this row's HTML. Must start with a letter "
|
1898 |
"classes with spaces."
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
# @ fl-builder
|
1902 |
#: includes/settings.php:62
|
1903 |
msgid "Save"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
# @ fl-builder
|
1907 |
#: includes/template-selector.php:3
|
1908 |
msgid "Layout Templates"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
# @ fl-builder
|
1912 |
#: includes/template-selector.php:8
|
1913 |
msgid "Home Pages"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
# @ fl-builder
|
1917 |
#: includes/template-selector.php:9
|
1918 |
msgid "Content Pages"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
# @ fl-builder
|
1922 |
#: includes/template-selector.php:13
|
1923 |
msgid "Your Templates"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
# @ fl-builder
|
1927 |
#: includes/template-selector.php:47 includes/template-selector.php:77
|
1928 |
msgctxt "Template name."
|
1929 |
msgid "Blank"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
# @ fl-builder
|
1933 |
#: includes/template-selector.php:72
|
1934 |
msgid ""
|
1935 |
"You haven't saved any templates yet! To do so, create a layout and save it "
|
1936 |
"as a template under <strong>Tools → Save Template</strong>."
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
# @ fl-builder
|
1940 |
#: includes/template-settings.php:14 includes/user-template-settings.php:15
|
1941 |
msgctxt "Template name."
|
1942 |
msgid "Name"
|
1952 |
"templates/\" directory."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
# @ fl-builder
|
1956 |
#: includes/ui.php:7
|
1957 |
#, php-format
|
1958 |
msgid "Template: %s"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
# @ fl-builder
|
1962 |
+
#: includes/ui.php:10 includes/user-template-settings.php:4
|
1963 |
+
msgid "Save Template"
|
1964 |
+
msgstr ""
|
1965 |
+
|
1966 |
+
# @ fl-builder
|
1967 |
#: includes/ui.php:23
|
1968 |
msgid "Page Builder Demo"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
# @ fl-builder
|
1972 |
#: includes/ui.php:40
|
1973 |
msgid "Buy Now!"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
# @ fl-builder
|
1977 |
#: includes/ui.php:42
|
1978 |
msgid "Upgrade!"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
# @ fl-builder
|
1982 |
+
#: includes/ui.php:44
|
1983 |
+
msgid "Done"
|
1984 |
+
msgstr ""
|
1985 |
+
|
1986 |
+
# @ fl-builder
|
1987 |
#: includes/ui.php:45
|
1988 |
msgid "Tools"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
# @ fl-builder
|
1992 |
+
#: includes/ui.php:49
|
1993 |
+
msgid "Add Content"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
# @ fl-builder
|
1997 |
#: includes/ui.php:67
|
1998 |
msgid "Row Layouts"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
# @ fl-builder
|
2002 |
#: includes/ui.php:71
|
2003 |
msgid "1 Column"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
# @ fl-builder
|
2007 |
#: includes/ui.php:72
|
2008 |
msgid "2 Columns"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
# @ fl-builder
|
2012 |
#: includes/ui.php:73
|
2013 |
msgid "3 Columns"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
# @ fl-builder
|
2017 |
#: includes/ui.php:74
|
2018 |
msgid "4 Columns"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
# @ fl-builder
|
2022 |
#: includes/ui.php:75
|
2023 |
msgid "5 Columns"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
# @ fl-builder
|
2027 |
#: includes/ui.php:76
|
2028 |
msgid "6 Columns"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
# @ fl-builder
|
2032 |
#: includes/ui.php:77
|
2033 |
msgid "Left Sidebar"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
# @ fl-builder
|
2037 |
#: includes/ui.php:78
|
2038 |
msgid "Right Sidebar"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
# @ fl-builder
|
2042 |
#: includes/ui.php:79
|
2043 |
msgid "Left & Right Sidebar"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
# @ fl-builder
|
2047 |
#: includes/updater/classes/class-fl-updater.php:107
|
2048 |
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
# @ fl-builder
|
2052 |
#: includes/updater/classes/class-fl-updater.php:109
|
2053 |
msgid "Please subscribe to enable automatic updates for this plugin."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
# @ fl-builder
|
2057 |
#: includes/updater/classes/class-fl-updater.php:111
|
2058 |
#: includes/updater/includes/form.php:6
|
2059 |
msgid "Subscribe Now"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
# @ fl-builder
|
2063 |
#: includes/updater/includes/form.php:5
|
2064 |
msgid ""
|
2065 |
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
2066 |
"enable automatic updates."
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
# @ fl-builder
|
2070 |
#: includes/updater/includes/form.php:11
|
2071 |
msgid "Updates & Support Subscription"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
# @ fl-builder
|
2075 |
#: includes/updater/includes/form.php:14
|
2076 |
msgid "Active!"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
# @ fl-builder
|
2080 |
#: includes/updater/includes/form.php:16
|
2081 |
msgid "Not Active!"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
# @ fl-builder
|
2085 |
#: includes/updater/includes/form.php:22
|
2086 |
msgid "Email address saved!"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
# @ fl-builder
|
2090 |
#: includes/updater/includes/form.php:27
|
2091 |
#, php-format
|
2092 |
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
# @ fl-builder
|
|
|
|
|
|
|
2096 |
#: includes/user-template-settings.php:8
|
2097 |
msgid ""
|
2098 |
"Save the current layout as a template that can be reused under "
|
2099 |
"<strong>Templates → Your Templates</strong>."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
# @ fl-builder
|
2103 |
#: modules/accordion/accordion.php:14
|
2104 |
msgid "Accordion"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
# @ fl-builder
|
2108 |
#: modules/accordion/accordion.php:15
|
2109 |
msgid "Display a collapsible accordion of items."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
# @ fl-builder
|
2113 |
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2114 |
msgid "Items"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
# @ fl-builder
|
2118 |
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
2119 |
msgid "Item"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
# @ fl-builder
|
2123 |
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
2124 |
msgid "Border Color"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
# @ fl-builder
|
2128 |
#: modules/accordion/accordion.php:62
|
2129 |
msgid "Label Size"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
# @ fl-builder
|
2133 |
#: modules/accordion/accordion.php:65
|
2134 |
msgctxt "Label size."
|
2135 |
msgid "Small"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
# @ fl-builder
|
2139 |
#: modules/accordion/accordion.php:66
|
2140 |
msgctxt "Label size."
|
2141 |
msgid "Medium"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
# @ fl-builder
|
2145 |
#: modules/accordion/accordion.php:67
|
2146 |
msgctxt "Label size."
|
2147 |
msgid "Large"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
# @ fl-builder
|
2151 |
#: modules/accordion/accordion.php:75
|
2152 |
msgid "Item Spacing"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
# @ fl-builder
|
2156 |
#: modules/accordion/accordion.php:86
|
2157 |
msgid "Collapse Inactive"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
# @ fl-builder
|
2161 |
#: modules/accordion/accordion.php:92
|
2162 |
msgid ""
|
2163 |
"Choosing yes will keep only one item open at a time. Choosing no will allow "
|
2164 |
"multiple items to be open at the same time."
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
# @ fl-builder
|
2168 |
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
2169 |
msgid "Add Item"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
# @ fl-builder
|
2173 |
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
2174 |
msgid "Label"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
# @ fl-builder
|
2178 |
#: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
|
2179 |
#: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
|
2180 |
#: modules/tabs/tabs.php:89
|
2181 |
msgid "Content"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
# @ fl-builder
|
2185 |
#: modules/button/button.php:14 modules/callout/callout.php:479
|
2186 |
#: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
|
2187 |
#: modules/pricing-table/pricing-table.php:129
|
2188 |
msgid "Button"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
# @ fl-builder
|
2192 |
#: modules/button/button.php:15
|
2193 |
msgid "A simple call to action button."
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
# @ fl-builder
|
2197 |
#: modules/button/button.php:67 modules/cta/cta.php:222
|
2198 |
msgid "Click Here"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
# @ fl-builder
|
2202 |
#: modules/button/button.php:75 modules/callout/callout.php:317
|
2203 |
#: modules/callout/callout.php:365 modules/callout/callout.php:369
|
2204 |
#: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
|
2207 |
msgid "Icon"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
# @ fl-builder
|
2211 |
#: modules/button/button.php:81 modules/button/button.php:85
|
2212 |
#: modules/callout/callout.php:445 modules/callout/callout.php:449
|
2213 |
#: modules/content-slider/content-slider.php:573
|
2219 |
msgid "Link"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
# @ fl-builder
|
2223 |
#: modules/button/button.php:86
|
2224 |
msgid "http://www.example.com"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
# @ fl-builder
|
2228 |
#: modules/button/button.php:93 modules/callout/callout.php:457
|
2229 |
#: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
|
2230 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
2232 |
msgid "Link Target"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
# @ fl-builder
|
2236 |
#: modules/button/button.php:96 modules/callout/callout.php:460
|
2237 |
#: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
|
2238 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
2240 |
msgid "Same Window"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
# @ fl-builder
|
2244 |
#: modules/button/button.php:97 modules/callout/callout.php:461
|
2245 |
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
|
2246 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
2248 |
msgid "New Window"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
# @ fl-builder
|
2252 |
#: modules/button/button.php:111 modules/cta/cta.php:187
|
2253 |
#: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
|
2254 |
#: modules/icon/icon.php:78
|
2255 |
msgid "Colors"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
# @ fl-builder
|
2259 |
#: modules/button/button.php:121 modules/callout/callout.php:409
|
2260 |
#: modules/callout/callout.php:514
|
2261 |
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
2263 |
msgid "Background Hover Color"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
# @ fl-builder
|
2267 |
#: modules/button/button.php:130 modules/callout/callout.php:523
|
2268 |
#: modules/content-slider/content-slider.php:528
|
2269 |
#: modules/content-slider/content-slider.php:641
|
2272 |
msgid "Text Color"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
# @ fl-builder
|
2276 |
#: modules/button/button.php:136 modules/callout/callout.php:529
|
2277 |
#: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
|
2278 |
msgid "Text Hover Color"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
# @ fl-builder
|
2282 |
#: modules/button/button.php:153 modules/callout/callout.php:546
|
2283 |
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
|
2284 |
msgid "Flat"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
# @ fl-builder
|
2288 |
#: modules/button/button.php:154 modules/callout/callout.php:417
|
2289 |
#: modules/callout/callout.php:547
|
2290 |
#: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
|
2292 |
msgid "Gradient"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
# @ fl-builder
|
2296 |
#: modules/button/button.php:155 modules/callout/callout.php:548
|
2297 |
#: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
|
2298 |
msgid "Transparent"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
# @ fl-builder
|
2302 |
#: modules/button/button.php:165 modules/callout/callout.php:558
|
2303 |
#: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
|
2304 |
#: modules/pricing-table/pricing-table.php:67
|
2305 |
msgid "Border Size"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
# @ fl-builder
|
2309 |
#: modules/button/button.php:174 modules/callout/callout.php:567
|
2310 |
#: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
|
2311 |
#: modules/cta/cta.php:323
|
2312 |
msgid "Background Opacity"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
# @ fl-builder
|
2316 |
#: modules/button/button.php:184 modules/callout/callout.php:244
|
2317 |
#: modules/cta/cta.php:104 modules/heading/heading.php:82
|
2318 |
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
2319 |
msgid "Structure"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
# @ fl-builder
|
2323 |
#: modules/button/button.php:191 modules/callout/callout.php:584
|
2324 |
msgctxt "Width."
|
2325 |
msgid "Auto"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
# @ fl-builder
|
2329 |
#: modules/button/button.php:207
|
2330 |
msgid "Custom Width"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
# @ fl-builder
|
2334 |
#: modules/button/button.php:215 modules/cta/cta.php:122
|
2335 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2336 |
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
2338 |
msgid "Alignment"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
# @ fl-builder
|
2342 |
#: modules/button/button.php:225 modules/callout/callout.php:590
|
2343 |
#: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
|
2344 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2345 |
msgid "Font Size"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
# @ fl-builder
|
2349 |
#: modules/button/button.php:241 modules/callout/callout.php:606
|
2350 |
#: modules/cta/cta.php:353
|
2351 |
msgid "Round Corners"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
# @ fl-builder
|
2355 |
#: modules/callout/callout.php:14
|
2356 |
msgid "Callout"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
# @ fl-builder
|
2360 |
#: modules/callout/callout.php:15
|
2361 |
msgid "A heading and snippet of text with an optional link, icon and image."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
# @ fl-builder
|
2365 |
#: modules/callout/callout.php:216
|
2366 |
#: modules/content-slider/content-slider.php:413
|
2367 |
#: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
|
2371 |
msgid "Heading"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
# @ fl-builder
|
2375 |
#: modules/callout/callout.php:248
|
2376 |
msgid "Overall Alignment"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
# @ fl-builder
|
2380 |
#: modules/callout/callout.php:255
|
2381 |
msgid "The alignment that will apply to all elements within the callout."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
# @ fl-builder
|
2385 |
#: modules/callout/callout.php:263 modules/cta/cta.php:147
|
2386 |
msgid "Heading Structure"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
# @ fl-builder
|
2390 |
#: modules/callout/callout.php:267
|
2391 |
#: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
|
2392 |
msgid "Heading Tag"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
# @ fl-builder
|
2396 |
#: modules/callout/callout.php:280
|
2397 |
#: modules/content-slider/content-slider.php:445
|
2398 |
#: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
|
2400 |
msgid "Heading Size"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
# @ fl-builder
|
2404 |
#: modules/callout/callout.php:294 modules/cta/cta.php:178
|
2405 |
msgid "Heading Custom Size"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
# @ fl-builder
|
2409 |
#: modules/callout/callout.php:312
|
2410 |
msgid "Image Type"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
# @ fl-builder
|
2414 |
#: modules/callout/callout.php:315
|
2415 |
msgctxt "Image type."
|
2416 |
msgid "None"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
# @ fl-builder
|
2420 |
#: modules/callout/callout.php:340 modules/photo/photo.php:401
|
2421 |
#: modules/slideshow/slideshow.php:312
|
2422 |
msgid "Crop"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
# @ fl-builder
|
2426 |
#: modules/callout/callout.php:343
|
2427 |
msgctxt "Crop"
|
2428 |
msgid "None"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
# @ fl-builder
|
2432 |
#: modules/callout/callout.php:344 modules/photo/photo.php:405
|
2433 |
msgid "Landscape"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
# @ fl-builder
|
2437 |
#: modules/callout/callout.php:345 modules/photo/photo.php:406
|
2438 |
msgid "Panorama"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
# @ fl-builder
|
2442 |
#: modules/callout/callout.php:346 modules/photo/photo.php:407
|
2443 |
msgid "Portrait"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
# @ fl-builder
|
2447 |
#: modules/callout/callout.php:347 modules/photo/photo.php:408
|
2448 |
msgid "Square"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
# @ fl-builder
|
2452 |
#: modules/callout/callout.php:348 modules/photo/photo.php:409
|
2453 |
msgid "Circle"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
# @ fl-builder
|
2457 |
#: modules/callout/callout.php:356 modules/callout/callout.php:376
|
2458 |
msgid "Above Heading"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
# @ fl-builder
|
2462 |
#: modules/callout/callout.php:357 modules/callout/callout.php:377
|
2463 |
msgid "Below Heading"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
# @ fl-builder
|
2467 |
#: modules/callout/callout.php:358 modules/callout/callout.php:380
|
2468 |
msgid "Left of Text and Heading"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
# @ fl-builder
|
2472 |
#: modules/callout/callout.php:359 modules/callout/callout.php:381
|
2473 |
msgid "Right of Text and Heading"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
# @ fl-builder
|
2477 |
#: modules/callout/callout.php:378
|
2478 |
msgid "Left of Heading"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
# @ fl-builder
|
2482 |
#: modules/callout/callout.php:379
|
2483 |
msgid "Right of Heading"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
# @ fl-builder
|
2487 |
#: modules/callout/callout.php:387
|
2488 |
msgid "Icon Colors"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
# @ fl-builder
|
2492 |
#: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
|
2493 |
#: modules/icon/icon.php:87
|
2494 |
msgid "Hover Color"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
# @ fl-builder
|
2498 |
#: modules/callout/callout.php:427
|
2499 |
msgid "Icon Structure"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
# @ fl-builder
|
2503 |
#: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
|
2504 |
#: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
|
2505 |
msgid "Size"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
# @ fl-builder
|
2509 |
#: modules/callout/callout.php:442
|
2510 |
#: modules/content-slider/content-slider.php:570
|
2511 |
msgid "Call To Action"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
# @ fl-builder
|
2515 |
#: modules/callout/callout.php:450
|
2516 |
msgid ""
|
2517 |
"The link applies to the entire module. If choosing a call to action type "
|
2518 |
"below, this link will also be used for the text or button."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
# @ fl-builder
|
2522 |
#: modules/callout/callout.php:470
|
2523 |
#: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
|
2524 |
msgid "Call to Action"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
# @ fl-builder
|
2528 |
#: modules/callout/callout.php:477
|
2529 |
#: modules/content-slider/content-slider.php:599
|
2530 |
msgctxt "Call to action."
|
2531 |
msgid "None"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
# @ fl-builder
|
2535 |
#: modules/callout/callout.php:498
|
2536 |
#: modules/content-slider/content-slider.php:620
|
2537 |
msgid "Button Icon"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
# @ fl-builder
|
2541 |
#: modules/callout/callout.php:504
|
2542 |
#: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
|
2543 |
msgid "Button Colors"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
# @ fl-builder
|
2547 |
#: modules/callout/callout.php:539
|
2548 |
#: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
|
2549 |
msgid "Button Style"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
# @ fl-builder
|
2553 |
#: modules/callout/callout.php:577
|
2554 |
#: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
|
2555 |
msgid "Button Structure"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
# @ fl-builder
|
2559 |
#: modules/callout/callout.php:581
|
2560 |
msgid "Button Width"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
# @ fl-builder
|
2564 |
#: modules/contact-form/contact-form.php:14
|
2565 |
msgid "Contact Form"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
# @ fl-builder
|
2569 |
#: modules/contact-form/contact-form.php:15
|
2570 |
msgid "A very simple contact form."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
# @ fl-builder
|
2574 |
+
#: modules/contact-form/contact-form.php:31
|
2575 |
msgid "Contact Form Submission"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: modules/contact-form/contact-form.php:41
|
2579 |
+
msgid "Message"
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
# @ fl-builder
|
2583 |
+
#: modules/contact-form/contact-form.php:65
|
2584 |
msgid "Send To Email"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
# @ fl-builder
|
2588 |
+
#: modules/contact-form/contact-form.php:67
|
2589 |
msgid "example@mail.com"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
# @ fl-builder
|
2593 |
+
#: modules/contact-form/contact-form.php:68
|
2594 |
msgid "The contact form will send to this e-mail"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: modules/contact-form/contact-form.php:75
|
2598 |
+
msgid "Name Field"
|
2599 |
+
msgstr ""
|
2600 |
+
|
2601 |
+
# @ fl-builder
|
2602 |
+
#: modules/contact-form/contact-form.php:78
|
2603 |
+
#: modules/contact-form/contact-form.php:87
|
2604 |
+
#: modules/contact-form/contact-form.php:96
|
2605 |
+
#: modules/contact-form/contact-form.php:105
|
2606 |
+
#: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
|
2607 |
+
#: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
|
2608 |
+
#: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
|
2609 |
+
msgid "Show"
|
2610 |
+
msgstr ""
|
2611 |
+
|
2612 |
+
# @ fl-builder
|
2613 |
+
#: modules/contact-form/contact-form.php:79
|
2614 |
+
#: modules/contact-form/contact-form.php:88
|
2615 |
+
#: modules/contact-form/contact-form.php:97
|
2616 |
+
#: modules/contact-form/contact-form.php:106
|
2617 |
+
#: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
|
2618 |
+
#: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
|
2619 |
+
#: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
|
2620 |
+
msgid "Hide"
|
2621 |
+
msgstr ""
|
2622 |
+
|
2623 |
+
#: modules/contact-form/contact-form.php:84
|
2624 |
+
msgid "Subject Field"
|
2625 |
+
msgstr ""
|
2626 |
+
|
2627 |
+
#: modules/contact-form/contact-form.php:93
|
2628 |
+
msgid "Email Field"
|
2629 |
+
msgstr ""
|
2630 |
+
|
2631 |
+
#: modules/contact-form/contact-form.php:102
|
2632 |
+
msgid "Phone Field"
|
2633 |
+
msgstr ""
|
2634 |
+
|
2635 |
+
# @ fl-builder
|
2636 |
+
#: modules/contact-form/includes/frontend.php:5
|
2637 |
msgctxt "Contact form field label."
|
2638 |
msgid "Name"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
# @ fl-builder
|
2642 |
+
#: modules/contact-form/includes/frontend.php:6
|
2643 |
msgid "Please enter your name."
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: modules/contact-form/includes/frontend.php:13
|
2647 |
+
msgid "Subject"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: modules/contact-form/includes/frontend.php:14
|
2651 |
+
msgid "Please enter a subject."
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
# @ fl-builder
|
2655 |
+
#: modules/contact-form/includes/frontend.php:21
|
2656 |
+
msgid "Email"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
# @ fl-builder
|
2660 |
+
#: modules/contact-form/includes/frontend.php:22
|
2661 |
+
msgid "Please enter a valid email."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: modules/contact-form/includes/frontend.php:29
|
2665 |
+
msgid "Phone"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: modules/contact-form/includes/frontend.php:30
|
2669 |
+
msgid "Please enter a valid phone number."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
# @ fl-builder
|
2673 |
+
#: modules/contact-form/includes/frontend.php:36
|
2674 |
+
msgid "Your Message"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
# @ fl-builder
|
2678 |
+
#: modules/contact-form/includes/frontend.php:37
|
2679 |
+
msgid "Please enter a message."
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
# @ fl-builder
|
2683 |
+
#: modules/contact-form/includes/frontend.php:44
|
2684 |
msgid "Message Sent!"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
# @ fl-builder
|
2688 |
+
#: modules/contact-form/includes/frontend.php:45
|
2689 |
msgid "Message failed. Please try again."
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
# @ fl-builder
|
2693 |
#: modules/content-slider/content-slider.php:14
|
2694 |
msgid "Content Slider"
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
# @ fl-builder
|
2698 |
#: modules/content-slider/content-slider.php:15
|
2699 |
msgid "Displays multiple slides with an optional heading and call to action."
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
# @ fl-builder
|
2703 |
#: modules/content-slider/content-slider.php:197 modules/map/map.php:41
|
2704 |
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2705 |
msgid "Height"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
# @ fl-builder
|
2709 |
#: modules/content-slider/content-slider.php:202
|
2710 |
msgid ""
|
2711 |
"This setting is the minimum height of the content slider. Content will "
|
2712 |
"expand the height automatically."
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
# @ fl-builder
|
2716 |
#: modules/content-slider/content-slider.php:206
|
2717 |
#: modules/slideshow/slideshow.php:373
|
2718 |
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
2719 |
msgid "Auto Play"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
# @ fl-builder
|
2723 |
#: modules/content-slider/content-slider.php:220
|
2724 |
msgid "Show Play/Pause"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
# @ fl-builder
|
2728 |
#: modules/content-slider/content-slider.php:240
|
2729 |
#: modules/testimonials/testimonials.php:102
|
2730 |
msgctxt "Transition type."
|
2731 |
msgid "Slide"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
# @ fl-builder
|
2735 |
#: modules/content-slider/content-slider.php:254
|
2736 |
#: modules/testimonials/testimonials.php:121
|
2737 |
msgid "Show Arrows"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
# @ fl-builder
|
2741 |
#: modules/content-slider/content-slider.php:263
|
2742 |
#: modules/testimonials/testimonials.php:151
|
2743 |
msgid "Show Dots"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
# @ fl-builder
|
2747 |
#: modules/content-slider/content-slider.php:277
|
2748 |
msgid "Max Content Width"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
# @ fl-builder
|
2752 |
#: modules/content-slider/content-slider.php:282
|
2753 |
msgid "The max width that the content area will be within your slides."
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
# @ fl-builder
|
2757 |
#: modules/content-slider/content-slider.php:289
|
2758 |
msgid "Slides"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
# @ fl-builder
|
2762 |
#: modules/content-slider/content-slider.php:296
|
2763 |
msgid "Slide"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
# @ fl-builder
|
2767 |
#: modules/content-slider/content-slider.php:311
|
2768 |
msgid "Slide Settings"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
# @ fl-builder
|
2772 |
#: modules/content-slider/content-slider.php:321
|
2773 |
msgid "Slide Label"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
# @ fl-builder
|
2777 |
#: modules/content-slider/content-slider.php:322
|
2778 |
msgid ""
|
2779 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
2780 |
"settings."
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
# @ fl-builder
|
2784 |
#: modules/content-slider/content-slider.php:327
|
2785 |
msgid "Background Layout"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
# @ fl-builder
|
2789 |
#: modules/content-slider/content-slider.php:333
|
2790 |
msgid "This setting is for the entire background of your slide."
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
# @ fl-builder
|
2794 |
#: modules/content-slider/content-slider.php:368
|
2795 |
msgid "Background Video Code"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
# @ fl-builder
|
2799 |
#: modules/content-slider/content-slider.php:374
|
2800 |
msgid "Content Layout"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
# @ fl-builder
|
2804 |
#: modules/content-slider/content-slider.php:380
|
2805 |
msgid ""
|
2806 |
"This allows you to add content over or in addition to the background "
|
2808 |
"style tab."
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
# @ fl-builder
|
2812 |
#: modules/content-slider/content-slider.php:383
|
2813 |
msgid "Text & Photo"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
# @ fl-builder
|
2817 |
#: modules/content-slider/content-slider.php:384
|
2818 |
msgid "Text & Video"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
+
# @ fl-builder
|
2822 |
#: modules/content-slider/content-slider.php:385
|
2823 |
msgctxt "Content type."
|
2824 |
msgid "None"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
# @ fl-builder
|
2828 |
#: modules/content-slider/content-slider.php:408 modules/video/video.php:132
|
2829 |
msgid "Video Embed Code"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
# @ fl-builder
|
2833 |
#: modules/content-slider/content-slider.php:468
|
2834 |
msgid "Text Position"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
# @ fl-builder
|
2838 |
#: modules/content-slider/content-slider.php:474
|
2839 |
msgid ""
|
2840 |
"The position will move the content layout selections left, right or center "
|
2841 |
"over the background of the slide."
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
# @ fl-builder
|
2845 |
#: modules/content-slider/content-slider.php:491
|
2846 |
msgid "Top Margin"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
+
# @ fl-builder
|
2850 |
#: modules/content-slider/content-slider.php:499
|
2851 |
msgid "Bottom Margin"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
# @ fl-builder
|
2855 |
#: modules/content-slider/content-slider.php:507
|
2856 |
msgid "Left Margin"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
# @ fl-builder
|
2860 |
#: modules/content-slider/content-slider.php:515
|
2861 |
msgid "Right Margin"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
# @ fl-builder
|
2865 |
#: modules/content-slider/content-slider.php:524
|
2866 |
msgid "Text Colors"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
# @ fl-builder
|
2870 |
#: modules/content-slider/content-slider.php:534
|
2871 |
msgid "Text Shadow"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
# @ fl-builder
|
2875 |
#: modules/content-slider/content-slider.php:543
|
2876 |
#: modules/content-slider/content-slider.php:760
|
2877 |
msgid "Text Background Color"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
# @ fl-builder
|
2881 |
#: modules/content-slider/content-slider.php:544
|
2882 |
msgid ""
|
2883 |
"The color applies to the overlay behind text over the background selections."
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
# @ fl-builder
|
2887 |
#: modules/content-slider/content-slider.php:549
|
2888 |
msgid "Text Background Opacity"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
# @ fl-builder
|
2892 |
#: modules/content-slider/content-slider.php:557
|
2893 |
msgid "Text Background Height"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
# @ fl-builder
|
2897 |
#: modules/content-slider/content-slider.php:559
|
2898 |
msgid ""
|
2899 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
2900 |
"will fit the overlay to the top and bottom of the slide."
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
# @ fl-builder
|
2904 |
#: modules/content-slider/content-slider.php:561
|
2905 |
msgctxt "Background height."
|
2906 |
msgid "Auto"
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
# @ fl-builder
|
2910 |
#: modules/content-slider/content-slider.php:578
|
2911 |
msgid ""
|
2912 |
"The link applies to the entire slide. If choosing a call to action type "
|
2913 |
"below, this link will also be used for the text or button."
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
# @ fl-builder
|
2917 |
#: modules/content-slider/content-slider.php:711
|
2918 |
msgid "Border Radius"
|
2919 |
msgstr ""
|
2920 |
|
2921 |
+
# @ fl-builder
|
2922 |
#: modules/content-slider/content-slider.php:722
|
2923 |
msgctxt "Module settings form tab. Display on mobile devices."
|
2924 |
msgid "Mobile"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
# @ fl-builder
|
2928 |
#: modules/content-slider/content-slider.php:725
|
2929 |
msgid "Mobile Photo"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
# @ fl-builder
|
2933 |
#: modules/content-slider/content-slider.php:731
|
2934 |
msgid ""
|
2935 |
"You can choose a different photo that the slide will change to on mobile "
|
2936 |
"devices or no photo if desired."
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
# @ fl-builder
|
2940 |
#: modules/content-slider/content-slider.php:733
|
2941 |
msgid "Use Main Photo"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
# @ fl-builder
|
2945 |
#: modules/content-slider/content-slider.php:734
|
2946 |
msgid "Choose Another Photo"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
+
# @ fl-builder
|
2950 |
#: modules/content-slider/content-slider.php:735
|
2951 |
msgid "No Photo"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
# @ fl-builder
|
2955 |
#: modules/content-slider/content-slider.php:750
|
2956 |
msgid "Mobile Text Colors"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
# @ fl-builder
|
2960 |
#: modules/cta/cta.php:15
|
2961 |
msgid "Display a heading, subheading and a button."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
# @ fl-builder
|
2965 |
#: modules/cta/cta.php:75
|
2966 |
msgid "Ready to find out more?"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
# @ fl-builder
|
2970 |
#: modules/cta/cta.php:90
|
2971 |
msgid "Drop us a line today for a free quote!"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
# @ fl-builder
|
2975 |
#: modules/cta/cta.php:108 modules/gallery/gallery.php:220
|
2976 |
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
2977 |
#: modules/testimonials/testimonials.php:37
|
2979 |
msgid "Layout"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
# @ fl-builder
|
2983 |
#: modules/cta/cta.php:111
|
2984 |
msgid "Inline"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
# @ fl-builder
|
2988 |
#: modules/cta/cta.php:112
|
2989 |
msgid "Stacked"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
# @ fl-builder
|
2993 |
#: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
|
2994 |
msgid "Spacing"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
+
# @ fl-builder
|
2998 |
#: modules/cta/cta.php:236
|
2999 |
msgid "Button Link"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
# @ fl-builder
|
3003 |
#: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
|
3004 |
msgid "Gallery"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
# @ fl-builder
|
3008 |
#: modules/gallery/gallery.php:15
|
3009 |
msgid "Display multiple photos in a gallery view."
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
# @ fl-builder
|
3013 |
#: modules/gallery/gallery.php:223
|
3014 |
msgid "Collage"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
# @ fl-builder
|
3018 |
#: modules/gallery/gallery.php:224
|
3019 |
msgctxt "Gallery layout: thumbnails."
|
3020 |
msgid "Thumbs"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
# @ fl-builder
|
3024 |
#: modules/gallery/gallery.php:260
|
3025 |
msgid "Photo Size"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
# @ fl-builder
|
3029 |
#: modules/gallery/gallery.php:263
|
3030 |
msgctxt "Photo size."
|
3031 |
msgid "Small"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
# @ fl-builder
|
3035 |
#: modules/gallery/gallery.php:264
|
3036 |
msgctxt "Photo size."
|
3037 |
msgid "Medium"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
# @ fl-builder
|
3041 |
#: modules/gallery/gallery.php:265
|
3042 |
msgctxt "Photo size."
|
3043 |
msgid "Large"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
# @ fl-builder
|
3047 |
#: modules/gallery/gallery.php:270
|
3048 |
msgid "Photo Spacing"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
# @ fl-builder
|
3052 |
#: modules/gallery/gallery.php:278
|
3053 |
msgid "Show Captions"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
# @ fl-builder
|
3057 |
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
3058 |
msgid "Never"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
# @ fl-builder
|
3062 |
#: modules/gallery/gallery.php:282 modules/photo/photo.php:433
|
3063 |
msgid "On Hover"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
# @ fl-builder
|
3067 |
#: modules/gallery/gallery.php:283 modules/photo/photo.php:434
|
3068 |
msgid "Below Photo"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
+
# @ fl-builder
|
3072 |
#: modules/gallery/gallery.php:285
|
3073 |
msgid ""
|
3074 |
"The caption pulls from whatever text you put in the caption area in the "
|
3076 |
"SmugMug if you have captions set in your gallery."
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
# @ fl-builder
|
3080 |
#: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
|
3081 |
msgid "Click Action"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
# @ fl-builder
|
3085 |
#: modules/gallery/gallery.php:292
|
3086 |
msgctxt "Click action."
|
3087 |
msgid "None"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
# @ fl-builder
|
3091 |
#: modules/gallery/gallery.php:293 modules/photo/photo.php:452
|
3092 |
msgid "Lightbox"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
# @ fl-builder
|
3096 |
#: modules/gallery/gallery.php:294
|
3097 |
msgid "Photo Link"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
# @ fl-builder
|
3101 |
#: modules/heading/heading.php:15
|
3102 |
msgid "Display a title/page heading."
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
# @ fl-builder
|
3106 |
#: modules/heading/heading.php:101
|
3107 |
msgid "HTML Tag"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
# @ fl-builder
|
3111 |
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
3112 |
msgid "Custom Font Size"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
# @ fl-builder
|
3116 |
#: modules/heading/heading.php:137
|
3117 |
msgid "Mobile Structure"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
# @ fl-builder
|
3121 |
#: modules/heading/heading.php:158
|
3122 |
msgid "Custom Alignment"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
# @ fl-builder
|
3126 |
#: modules/html/html.php:14
|
3127 |
msgid "HTML"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
# @ fl-builder
|
3131 |
#: modules/html/html.php:15
|
3132 |
msgid "Display raw HTML code."
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
# @ fl-builder
|
3136 |
#: modules/icon-group/icon-group.php:14
|
3137 |
msgid "Icon Group"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
# @ fl-builder
|
3141 |
#: modules/icon-group/icon-group.php:15
|
3142 |
msgid "Display a group of linked Font Awesome icons."
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
# @ fl-builder
|
3146 |
#: modules/icon-group/icon-group.php:125
|
3147 |
msgid "Add Icon"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
# @ fl-builder
|
3151 |
#: modules/icon/icon.php:15
|
3152 |
msgid "Display an icon and optional title."
|
3153 |
msgstr ""
|
3154 |
|
3155 |
+
# @ fl-builder
|
3156 |
#: modules/map/map.php:14
|
3157 |
msgid "Map"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
# @ fl-builder
|
3161 |
#: modules/map/map.php:15
|
3162 |
msgid "Display a Google map."
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
# @ fl-builder
|
3166 |
#: modules/map/map.php:33
|
3167 |
msgid "Address"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
# @ fl-builder
|
3171 |
#: modules/map/map.php:34
|
3172 |
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
# @ fl-builder
|
3176 |
#: modules/photo/photo.php:26
|
3177 |
msgid "Upload a photo or display one from the media library."
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
# @ fl-builder
|
3181 |
#: modules/photo/photo.php:375
|
3182 |
msgid "Photo Source"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
# @ fl-builder
|
3186 |
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
3187 |
msgid "URL"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
# @ fl-builder
|
3191 |
#: modules/photo/photo.php:396
|
3192 |
msgid "Photo URL"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
# @ fl-builder
|
3196 |
#: modules/photo/photo.php:397
|
3197 |
msgid "http://www.example.com/my-photo.jpg"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
# @ fl-builder
|
3201 |
#: modules/photo/photo.php:404
|
3202 |
msgctxt "Crop."
|
3203 |
msgid "None"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
# @ fl-builder
|
3207 |
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
3208 |
msgid "Caption"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
# @ fl-builder
|
3212 |
#: modules/photo/photo.php:429
|
3213 |
msgid "Show Caption"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
# @ fl-builder
|
3217 |
#: modules/photo/photo.php:448
|
3218 |
msgid "Link Type"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
# @ fl-builder
|
3222 |
#: modules/photo/photo.php:450
|
3223 |
msgctxt "Link type."
|
3224 |
msgid "None"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
# @ fl-builder
|
3228 |
#: modules/photo/photo.php:453
|
3229 |
msgid "Photo File"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
# @ fl-builder
|
3233 |
+
#: modules/photo/photo.php:454
|
3234 |
+
msgid "Photo Page"
|
3235 |
+
msgstr ""
|
3236 |
+
|
3237 |
+
# @ fl-builder
|
3238 |
#: modules/photo/photo.php:464
|
3239 |
msgid ""
|
3240 |
"Link type applies to how the image should be linked on click. You can choose "
|
3241 |
"a specific URL, the individual photo or a separate page with the photo."
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
# @ fl-builder
|
3245 |
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
3246 |
msgid "Link URL"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
# @ fl-builder
|
3250 |
#: modules/post-grid/includes/frontend.php:41
|
3251 |
msgid "No posts found."
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
# @ fl-builder
|
3255 |
#: modules/post-grid/includes/post-feed.php:14
|
3256 |
#: modules/post-grid/includes/post-grid.php:24
|
3257 |
#, php-format
|
3259 |
msgid "By %s"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
# @ fl-builder
|
3263 |
#: modules/post-grid/post-grid.php:14
|
3264 |
msgid "Posts"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
# @ fl-builder
|
3268 |
#: modules/post-grid/post-grid.php:15
|
3269 |
msgid "Display a grid of your WordPress posts."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
# @ fl-builder
|
3273 |
#: modules/post-grid/post-grid.php:51
|
3274 |
msgid "Layout Style"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
# @ fl-builder
|
3278 |
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
3279 |
msgid "Grid"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
# @ fl-builder
|
3283 |
#: modules/post-grid/post-grid.php:56
|
3284 |
msgid "Feed"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
# @ fl-builder
|
3288 |
#: modules/post-grid/post-grid.php:71
|
3289 |
msgid "Pagination Style"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
# @ fl-builder
|
3293 |
#: modules/post-grid/post-grid.php:74
|
3294 |
msgid "Numbers"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
# @ fl-builder
|
3298 |
#: modules/post-grid/post-grid.php:76
|
3299 |
msgctxt "Pagination style."
|
3300 |
msgid "None"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
# @ fl-builder
|
3304 |
#: modules/post-grid/post-grid.php:81
|
3305 |
msgid "Posts Per Page"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
# @ fl-builder
|
3309 |
#: modules/post-grid/post-grid.php:92
|
3310 |
msgid "Post Width"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
# @ fl-builder
|
3314 |
#: modules/post-grid/post-grid.php:100
|
3315 |
msgid "Post Spacing"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
# @ fl-builder
|
3319 |
#: modules/post-grid/post-grid.php:109
|
3320 |
msgid "Featured Image"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3324 |
#: modules/post-grid/post-grid.php:130
|
3325 |
msgid "Above Text"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
# @ fl-builder
|
3329 |
#: modules/post-grid/post-grid.php:131
|
3330 |
msgid "Beside Text"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
# @ fl-builder
|
3334 |
#: modules/post-grid/post-grid.php:142
|
3335 |
msgid "Post Info"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
# @ fl-builder
|
3339 |
#: modules/post-grid/post-grid.php:169
|
3340 |
msgid "Date Format"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
# @ fl-builder
|
3344 |
#: modules/post-grid/post-grid.php:185
|
3345 |
msgid "Comments"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
# @ fl-builder
|
3349 |
#: modules/post-grid/post-grid.php:213
|
3350 |
msgid "More Link"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
# @ fl-builder
|
3354 |
#: modules/post-grid/post-grid.php:227
|
3355 |
msgid "More Link Text"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
# @ fl-builder
|
3359 |
#: modules/post-grid/post-grid.php:228
|
3360 |
msgid "Read More"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
# @ fl-builder
|
3364 |
#: modules/pricing-table/pricing-table.php:14
|
3365 |
msgid "Pricing Table"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
# @ fl-builder
|
3369 |
#: modules/pricing-table/pricing-table.php:15
|
3370 |
msgid "A simple pricing table generator."
|
3371 |
msgstr ""
|
3372 |
|
3373 |
+
# @ fl-builder
|
3374 |
#: modules/pricing-table/pricing-table.php:26
|
3375 |
msgid "Pricing Boxes"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
# @ fl-builder
|
3379 |
#: modules/pricing-table/pricing-table.php:33
|
3380 |
msgid "Pricing Box"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
# @ fl-builder
|
3384 |
#: modules/pricing-table/pricing-table.php:50
|
3385 |
msgid "Box Spacing"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
# @ fl-builder
|
3389 |
#: modules/pricing-table/pricing-table.php:53
|
3390 |
#: modules/testimonials/testimonials.php:40
|
3391 |
msgid "Wide"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
# @ fl-builder
|
3395 |
#: modules/pricing-table/pricing-table.php:54
|
3396 |
msgid "Tight"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
# @ fl-builder
|
3400 |
#: modules/pricing-table/pricing-table.php:59
|
3401 |
msgid "Features Min Height"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
# @ fl-builder
|
3405 |
#: modules/pricing-table/pricing-table.php:63
|
3406 |
msgid ""
|
3407 |
"Use this to normalize the height of your boxes when they have different "
|
3408 |
"numbers of features."
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
# @ fl-builder
|
3412 |
#: modules/pricing-table/pricing-table.php:70
|
3413 |
msgctxt "Border size."
|
3414 |
msgid "Wide"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
# @ fl-builder
|
3418 |
#: modules/pricing-table/pricing-table.php:71
|
3419 |
msgctxt "Border size."
|
3420 |
msgid "Tight"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
# @ fl-builder
|
3424 |
#: modules/pricing-table/pricing-table.php:84
|
3425 |
msgid "Add Pricing Box"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
# @ fl-builder
|
3429 |
#: modules/pricing-table/pricing-table.php:98
|
3430 |
msgid "Title Size"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
# @ fl-builder
|
3434 |
#: modules/pricing-table/pricing-table.php:107
|
3435 |
msgid "Price Box"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
# @ fl-builder
|
3439 |
#: modules/pricing-table/pricing-table.php:111
|
3440 |
+
#: modules/woocommerce/woocommerce.php:190
|
3441 |
msgid "Price"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
# @ fl-builder
|
3445 |
#: modules/pricing-table/pricing-table.php:115
|
3446 |
msgid "Duration"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
# @ fl-builder
|
3450 |
#: modules/pricing-table/pricing-table.php:116
|
3451 |
msgid "per Year"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
# @ fl-builder
|
3455 |
#: modules/pricing-table/pricing-table.php:120
|
3456 |
msgid "Price Size"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
# @ fl-builder
|
3460 |
#: modules/pricing-table/pricing-table.php:133
|
3461 |
msgid "Button Text"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
# @ fl-builder
|
3465 |
#: modules/pricing-table/pricing-table.php:137
|
3466 |
msgid "Button URL"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
# @ fl-builder
|
3470 |
#: modules/pricing-table/pricing-table.php:142
|
3471 |
msgctxt "Price features displayed in pricing box."
|
3472 |
msgid "Features"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
# @ fl-builder
|
3476 |
#: modules/pricing-table/pricing-table.php:147
|
3477 |
msgid "One feature per line. HTML is okay."
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
# @ fl-builder
|
3481 |
#: modules/pricing-table/pricing-table.php:162
|
3482 |
msgid "Box Background"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
# @ fl-builder
|
3486 |
#: modules/pricing-table/pricing-table.php:167
|
3487 |
msgid "Box Foreground"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
# @ fl-builder
|
3491 |
#: modules/pricing-table/pricing-table.php:173
|
3492 |
msgid "Accent Color"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
# @ fl-builder
|
3496 |
#: modules/pricing-table/pricing-table.php:178
|
3497 |
msgid "Accent Text Color"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
# @ fl-builder
|
3501 |
#: modules/pricing-table/pricing-table.php:182
|
3502 |
msgid "Box Top Margin"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
# @ fl-builder
|
3506 |
#: modules/rich-text/rich-text.php:15
|
3507 |
msgid "A WYSIWYG text editor."
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
# @ fl-builder
|
3511 |
#: modules/separator/separator.php:14
|
3512 |
msgid "Separator"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
# @ fl-builder
|
3516 |
#: modules/separator/separator.php:15
|
3517 |
msgid "A divider line to separate content."
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
# @ fl-builder
|
3521 |
#: modules/separator/separator.php:85
|
3522 |
msgid ""
|
3523 |
"The type of border to use. Double borders must have a height of at least 3px "
|
3524 |
"to render properly."
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
# @ fl-builder
|
3528 |
#: modules/sidebar/includes/settings-general.php:5
|
3529 |
#: modules/sidebar/sidebar.php:14
|
3530 |
msgid "Sidebar"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
# @ fl-builder
|
3534 |
#: modules/sidebar/sidebar.php:15
|
3535 |
msgid ""
|
3536 |
"Display a WordPress sidebar that has been registered by the current theme."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
# @ fl-builder
|
3540 |
#: modules/slideshow/slideshow.php:14
|
3541 |
msgid "Slideshow"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
# @ fl-builder
|
3545 |
#: modules/slideshow/slideshow.php:15
|
3546 |
msgid "Display multiple photos in a slideshow view."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
# @ fl-builder
|
3550 |
#: modules/slideshow/slideshow.php:302
|
3551 |
msgid "Skin Color"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
+
# @ fl-builder
|
3555 |
#: modules/slideshow/slideshow.php:305
|
3556 |
msgctxt "Color."
|
3557 |
msgid "Light"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
# @ fl-builder
|
3561 |
#: modules/slideshow/slideshow.php:306
|
3562 |
msgctxt "Color."
|
3563 |
msgid "Dark"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
# @ fl-builder
|
3567 |
#: modules/slideshow/slideshow.php:308
|
3568 |
msgid ""
|
3569 |
"If your overall theme/images are lighter in color, light will display "
|
3570 |
"buttons in a darker color scheme and vice versa for dark."
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
# @ fl-builder
|
3574 |
#: modules/slideshow/slideshow.php:318
|
3575 |
msgid ""
|
3576 |
"Crop set to no will fit the slideshow images to the height you specify and "
|
3579 |
"fit the height you specify."
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
# @ fl-builder
|
3583 |
#: modules/slideshow/slideshow.php:322
|
3584 |
msgid "Disable Right-Click"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
# @ fl-builder
|
3588 |
#: modules/slideshow/slideshow.php:342
|
3589 |
msgctxt "Click action type."
|
3590 |
msgid "None"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
# @ fl-builder
|
3594 |
#: modules/slideshow/slideshow.php:366
|
3595 |
msgid "Playback"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
# @ fl-builder
|
3599 |
#: modules/slideshow/slideshow.php:392
|
3600 |
msgctxt "Slideshow transition."
|
3601 |
msgid "None"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
# @ fl-builder
|
3605 |
#: modules/slideshow/slideshow.php:429
|
3606 |
msgid "Controls"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
# @ fl-builder
|
3610 |
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3611 |
msgid "Navigation Arrows"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
# @ fl-builder
|
3615 |
#: modules/slideshow/slideshow.php:442
|
3616 |
msgid ""
|
3617 |
"Navigational arrows allow the visitor to freely move through the images in "
|
3619 |
"and are separate from the control bar navigational arrows."
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
# @ fl-builder
|
3623 |
#: modules/slideshow/slideshow.php:447
|
3624 |
msgid "Control Bar"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
# @ fl-builder
|
3628 |
#: modules/slideshow/slideshow.php:451
|
3629 |
msgid "Nav Type"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
# @ fl-builder
|
3633 |
#: modules/slideshow/slideshow.php:454
|
3634 |
msgctxt "Nav type."
|
3635 |
msgid "None"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
# @ fl-builder
|
3639 |
#: modules/slideshow/slideshow.php:455
|
3640 |
msgid "Buttons"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
# @ fl-builder
|
3644 |
#: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
|
3645 |
msgid "Thumbs"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
# @ fl-builder
|
3649 |
#: modules/slideshow/slideshow.php:471
|
3650 |
msgid "Nav Position"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
# @ fl-builder
|
3654 |
#: modules/slideshow/slideshow.php:481
|
3655 |
msgid "Control Bar Buttons"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
# @ fl-builder
|
3659 |
#: modules/slideshow/slideshow.php:494
|
3660 |
msgid "Play Button"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
# @ fl-builder
|
3664 |
#: modules/slideshow/slideshow.php:503
|
3665 |
msgid "Fullscreen Button"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
# @ fl-builder
|
3669 |
#: modules/slideshow/slideshow.php:512
|
3670 |
msgid "Photo Count"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
# @ fl-builder
|
3674 |
#: modules/slideshow/slideshow.php:521
|
3675 |
msgid "Thumbs Button"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
# @ fl-builder
|
3679 |
#: modules/slideshow/slideshow.php:530
|
3680 |
msgid "Caption Button"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
# @ fl-builder
|
3684 |
#: modules/slideshow/slideshow.php:539
|
3685 |
msgid "Social Button"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
# @ fl-builder
|
3689 |
#: modules/slideshow/slideshow.php:549
|
3690 |
msgid "Control Bar Overlay"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
# @ fl-builder
|
3694 |
#: modules/slideshow/slideshow.php:553
|
3695 |
msgid "Overlay Enabled"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
# @ fl-builder
|
3699 |
#: modules/slideshow/slideshow.php:564
|
3700 |
msgid ""
|
3701 |
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
3702 |
"your slideshow images or site below the slideshow completely."
|
3703 |
msgstr ""
|
3704 |
|
3705 |
+
# @ fl-builder
|
3706 |
#: modules/slideshow/slideshow.php:568
|
3707 |
msgid "Overlay Hide"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
# @ fl-builder
|
3711 |
#: modules/slideshow/slideshow.php:574
|
3712 |
msgid ""
|
3713 |
"Overlay hide will hide the control bar after however many seconds you "
|
3714 |
"specify below. They will reappear upon mouse over."
|
3715 |
msgstr ""
|
3716 |
|
3717 |
+
# @ fl-builder
|
3718 |
#: modules/slideshow/slideshow.php:578
|
3719 |
msgid "Overlay Hide Delay"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
# @ fl-builder
|
3723 |
#: modules/slideshow/slideshow.php:590
|
3724 |
msgid "Thumbs Size"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
# @ fl-builder
|
3728 |
#: modules/slideshow/slideshow.php:599
|
3729 |
msgid "Social"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
# @ fl-builder
|
3733 |
#: modules/slideshow/slideshow.php:603
|
3734 |
msgid "Facebook Button"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
# @ fl-builder
|
3738 |
#: modules/slideshow/slideshow.php:615
|
3739 |
msgid "Twitter Button"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
# @ fl-builder
|
3743 |
#: modules/slideshow/slideshow.php:627
|
3744 |
msgid "Google Plus Button"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
# @ fl-builder
|
3748 |
#: modules/slideshow/slideshow.php:639
|
3749 |
msgid "Pinterest Button"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
# @ fl-builder
|
3753 |
#: modules/social-buttons/social-buttons.php:14
|
3754 |
msgid "Social Buttons"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
# @ fl-builder
|
3758 |
#: modules/social-buttons/social-buttons.php:15
|
3759 |
msgid "Displays social buttons."
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
# @ fl-builder
|
3763 |
#: modules/social-buttons/social-buttons.php:71
|
3764 |
msgid "Target URL"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
# @ fl-builder
|
3768 |
#: modules/social-buttons/social-buttons.php:75
|
3769 |
msgid "Current Page"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
# @ fl-builder
|
3773 |
#: modules/social-buttons/social-buttons.php:82
|
3774 |
msgid ""
|
3775 |
"The Target URL field correlates to the page you would like your social icons "
|
3777 |
"whatever you put in this field."
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
# @ fl-builder
|
3781 |
#: modules/social-buttons/social-buttons.php:89
|
3782 |
msgid "Custom URL"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
# @ fl-builder
|
3786 |
#: modules/social-buttons/social-buttons.php:107
|
3787 |
msgid "Show Facebook"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
# @ fl-builder
|
3791 |
#: modules/social-buttons/social-buttons.php:116
|
3792 |
msgid "Show Twitter"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
# @ fl-builder
|
3796 |
#: modules/social-buttons/social-buttons.php:125
|
3797 |
msgid "Show Google+"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
# @ fl-builder
|
3801 |
#: modules/tabs/tabs.php:14
|
3802 |
msgid "Tabs"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
# @ fl-builder
|
3806 |
#: modules/tabs/tabs.php:15
|
3807 |
msgid "Display a collection of tabbed content."
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
# @ fl-builder
|
3811 |
#: modules/tabs/tabs.php:55
|
3812 |
msgid "Horizontal"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
# @ fl-builder
|
3816 |
#: modules/tabs/tabs.php:56
|
3817 |
msgid "Vertical"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
# @ fl-builder
|
3821 |
#: modules/testimonials/testimonials.php:14
|
3822 |
#: modules/testimonials/testimonials.php:60
|
3823 |
#: modules/testimonials/testimonials.php:174
|
3824 |
msgid "Testimonials"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
# @ fl-builder
|
3828 |
#: modules/testimonials/testimonials.php:15
|
3829 |
msgid "An animated tesimonials area."
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
# @ fl-builder
|
3833 |
#: modules/testimonials/testimonials.php:41
|
3834 |
msgid "Compact"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
+
# @ fl-builder
|
3838 |
#: modules/testimonials/testimonials.php:51
|
3839 |
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
# @ fl-builder
|
3843 |
#: modules/testimonials/testimonials.php:78
|
3844 |
msgid "Slider Settings"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
# @ fl-builder
|
3848 |
#: modules/testimonials/testimonials.php:135
|
3849 |
msgid "Arrow Color"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
# @ fl-builder
|
3853 |
#: modules/testimonials/testimonials.php:165
|
3854 |
msgid "Dot Color"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
# @ fl-builder
|
3858 |
#: modules/testimonials/testimonials.php:181
|
3859 |
msgid "Testimonial"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
# @ fl-builder
|
3863 |
#: modules/testimonials/testimonials.php:197
|
3864 |
msgid "Add Testimonial"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
# @ fl-builder
|
3868 |
#: modules/video/video.php:20
|
3869 |
msgid "Render a WordPress or embedable video."
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
# @ fl-builder
|
3873 |
#: modules/video/video.php:83
|
3874 |
msgid "Video Type"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
# @ fl-builder
|
3878 |
#: modules/video/video.php:87
|
3879 |
msgid "Embed"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
# @ fl-builder
|
3883 |
#: modules/video/video.php:104
|
3884 |
msgctxt "Video preview/fallback image."
|
3885 |
msgid "Poster"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
# @ fl-builder
|
3889 |
#: modules/video/video.php:120
|
3890 |
msgid "Loop"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
# @ fl-builder
|
3894 |
#: modules/widget/includes/frontend.php:35
|
3895 |
+
#: modules/widget/includes/settings-general.php:46
|
3896 |
#, php-format
|
3897 |
msgctxt "%s stands for widget slug."
|
3898 |
msgid "%s no longer exists."
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
# @ fl-builder
|
3902 |
#: modules/widget/widget.php:14
|
3903 |
msgid "Widget"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
# @ fl-builder
|
3907 |
#: modules/widget/widget.php:15
|
3908 |
msgid "Display a WordPress widget."
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
# @ fl-builder
|
3912 |
#: modules/woocommerce/woocommerce.php:16
|
3913 |
msgid "WooCommerce"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
# @ fl-builder
|
3917 |
#: modules/woocommerce/woocommerce.php:17
|
3918 |
msgid "Display products or categories from your WooCommerce store."
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
# @ fl-builder
|
3922 |
#: modules/woocommerce/woocommerce.php:60
|
3923 |
msgid "Choose..."
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
# @ fl-builder
|
3927 |
#: modules/woocommerce/woocommerce.php:61
|
3928 |
msgid "Single Product"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
# @ fl-builder
|
3932 |
#: modules/woocommerce/woocommerce.php:62
|
3933 |
#: modules/woocommerce/woocommerce.php:113
|
3934 |
msgid "Multiple Products"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
# @ fl-builder
|
3938 |
#: modules/woocommerce/woocommerce.php:63
|
3939 |
msgid "\"Add to Cart\" Button"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
# @ fl-builder
|
3943 |
#: modules/woocommerce/woocommerce.php:64
|
3944 |
msgid "Categories"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
# @ fl-builder
|
3948 |
#: modules/woocommerce/woocommerce.php:65
|
3949 |
msgid "Cart"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
# @ fl-builder
|
3953 |
#: modules/woocommerce/woocommerce.php:66
|
3954 |
msgid "Checkout"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
# @ fl-builder
|
3958 |
#: modules/woocommerce/woocommerce.php:67
|
3959 |
msgid "Order Tracking"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
# @ fl-builder
|
3963 |
#: modules/woocommerce/woocommerce.php:68
|
3964 |
msgid "My Account"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
# @ fl-builder
|
3968 |
#: modules/woocommerce/woocommerce.php:87
|
3969 |
msgid "Product ID"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
# @ fl-builder
|
3973 |
#: modules/woocommerce/woocommerce.php:90
|
3974 |
msgid ""
|
3975 |
"As you add products in the WooCommerce Products area, each will be assigned "
|
3977 |
"area and rolling over the product. The unique ID will be the first attribute."
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
# @ fl-builder
|
3981 |
#: modules/woocommerce/woocommerce.php:94
|
3982 |
msgid "Parent Category ID"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
# @ fl-builder
|
3986 |
#: modules/woocommerce/woocommerce.php:97
|
3987 |
msgid ""
|
3988 |
"As you add product categories in the WooCommerce Products area, each will be "
|
3991 |
"in your browser. The ID will be the only number value in the URL."
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
# @ fl-builder
|
3995 |
#: modules/woocommerce/woocommerce.php:101
|
3996 |
#: modules/woocommerce/woocommerce.php:172
|
3997 |
msgid "Columns"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
# @ fl-builder
|
4001 |
#: modules/woocommerce/woocommerce.php:117
|
4002 |
msgid "Products Source"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
# @ fl-builder
|
4006 |
#: modules/woocommerce/woocommerce.php:120
|
4007 |
msgid "Products IDs"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
# @ fl-builder
|
4011 |
#: modules/woocommerce/woocommerce.php:121
|
4012 |
msgid "Product Category"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
# @ fl-builder
|
4016 |
#: modules/woocommerce/woocommerce.php:122
|
4017 |
msgid "Recent Products"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
# @ fl-builder
|
4021 |
#: modules/woocommerce/woocommerce.php:123
|
4022 |
msgid "Featured Products"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
# @ fl-builder
|
4026 |
#: modules/woocommerce/woocommerce.php:124
|
4027 |
msgid "Sale Products"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
# @ fl-builder
|
4031 |
#: modules/woocommerce/woocommerce.php:125
|
4032 |
msgid "Best Selling Products"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
# @ fl-builder
|
4036 |
#: modules/woocommerce/woocommerce.php:126
|
4037 |
msgid "Top Rated Products"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
# @ fl-builder
|
4041 |
#: modules/woocommerce/woocommerce.php:154
|
4042 |
msgid "Product IDs"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
# @ fl-builder
|
4046 |
#: modules/woocommerce/woocommerce.php:156
|
4047 |
msgid ""
|
4048 |
"As you add products in the WooCommerce Products area, each will be assigned "
|
4051 |
"and you can add several here separated by a comma."
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
# @ fl-builder
|
4055 |
#: modules/woocommerce/woocommerce.php:160
|
4056 |
msgid "Category Slug"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
# @ fl-builder
|
4060 |
#: modules/woocommerce/woocommerce.php:162
|
4061 |
msgid ""
|
4062 |
"As you add product categories in the WooCommerce Products area, each will be "
|
4065 |
"added here separated by a comma."
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
# @ fl-builder
|
4069 |
#: modules/woocommerce/woocommerce.php:166
|
4070 |
msgid "Number of Products"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
# @ fl-builder
|
4074 |
#: modules/woocommerce/woocommerce.php:183
|
4075 |
msgid "Sort By"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
# @ fl-builder
|
4079 |
#: modules/woocommerce/woocommerce.php:186
|
4080 |
msgctxt "Sort by."
|
4081 |
msgid "Default"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
# @ fl-builder
|
4085 |
#: modules/woocommerce/woocommerce.php:187
|
4086 |
msgid "Popularity"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
# @ fl-builder
|
4090 |
#: modules/woocommerce/woocommerce.php:188
|
4091 |
msgid "Rating"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: modules/woocommerce/woocommerce.php:195
|
4095 |
+
msgid "Sort Direction"
|
|
|
|
|
|
|
|
|
4096 |
msgstr ""
|
modules/photo/includes/frontend.php
CHANGED
@@ -6,7 +6,7 @@ $link = $module->get_link();
|
|
6 |
$alt = $module->get_alt();
|
7 |
|
8 |
?>
|
9 |
-
<div class="fl-photo fl-photo-crop
|
10 |
<div class="fl-photo-content">
|
11 |
<?php if(!empty($link)) : ?>
|
12 |
<a href="<?php echo $link; ?>" target="<?php echo $settings->link_target; ?>" itemprop="url">
|
6 |
$alt = $module->get_alt();
|
7 |
|
8 |
?>
|
9 |
+
<div class="fl-photo<?php if ( ! empty( $settings->crop ) ) echo ' fl-photo-crop-' . $settings->crop ; ?> fl-photo-align-<?php echo $settings->align; ?>" itemscope itemtype="http://schema.org/ImageObject">
|
10 |
<div class="fl-photo-content">
|
11 |
<?php if(!empty($link)) : ?>
|
12 |
<a href="<?php echo $link; ?>" target="<?php echo $settings->link_target; ?>" itemprop="url">
|
modules/widget/includes/settings-general.php
CHANGED
@@ -34,6 +34,8 @@ if(isset($widget_slug) && isset($wp_widget_factory->widgets[$widget_slug])) {
|
|
34 |
// Widget form
|
35 |
echo '<div class="fl-field" data-preview=\'{"type":"widget"}\'>';
|
36 |
$widget_instance->form($widget_settings);
|
|
|
|
|
37 |
echo '<input type="hidden" name="widget" value="' . $widget_slug . '" />';
|
38 |
echo '</div>';
|
39 |
}
|
34 |
// Widget form
|
35 |
echo '<div class="fl-field" data-preview=\'{"type":"widget"}\'>';
|
36 |
$widget_instance->form($widget_settings);
|
37 |
+
// Uncommenting this will display custom fields from plugins like ACF, but we don't have a way to save them, yet..
|
38 |
+
//do_action_ref_array( 'in_widget_form', array( &$widget_instance, true, $widget_settings ) );
|
39 |
echo '<input type="hidden" name="widget" value="' . $widget_slug . '" />';
|
40 |
echo '</div>';
|
41 |
}
|
readme.txt
CHANGED
@@ -15,7 +15,7 @@ Beaver Builder is a drag and drop frontend WordPress page builder that works wit
|
|
15 |
|
16 |
Beaver Builder is a drag and drop page builder that works on the frontend of WordPress and allows you to create beautiful layouts without having to write any code. If you haven't already, watch the video below or [try out the demo](http://demo.wpbeaverbuilder.com/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-description) to see it in action!
|
17 |
|
18 |
-
[
|
19 |
|
20 |
Head on over to [our website](https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-description) to learn more about the Beaver Builder WordPress page builder and what it can do for you.
|
21 |
|
15 |
|
16 |
Beaver Builder is a drag and drop page builder that works on the frontend of WordPress and allows you to create beautiful layouts without having to write any code. If you haven't already, watch the video below or [try out the demo](http://demo.wpbeaverbuilder.com/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-description) to see it in action!
|
17 |
|
18 |
+
[vimeo https://vimeo.com/122546221]
|
19 |
|
20 |
Head on over to [our website](https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-description) to learn more about the Beaver Builder WordPress page builder and what it can do for you.
|
21 |
|