Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | WordPress Page Builder – Beaver Builder |
Version | 1.4.6 |
Comparing to | |
See all releases |
Code changes from version 1.4.5 to 1.4.6
- changelog.txt +19 -0
- classes/class-fl-builder-admin-settings.php +399 -61
- classes/class-fl-builder-admin.php +24 -25
- classes/class-fl-builder-icons.php +263 -17
- classes/class-fl-builder-model.php +168 -32
- classes/class-fl-builder-module.php +0 -1
- classes/class-fl-builder-update.php +23 -0
- classes/class-fl-builder-utils.php +30 -14
- classes/class-fl-builder.php +84 -53
- css/fl-builder-admin-settings.css +3 -132
- css/fl-builder.css +11 -4
- css/fl-lightbox.css +1 -1
- fl-builder.php +9 -9
- includes/admin-settings-editing.php +26 -0
- includes/admin-settings-js-config.php +8 -0
- includes/admin-settings-modules.php +47 -0
- includes/admin-settings-post-types.php +74 -0
- includes/admin-settings-uninstall.php +19 -0
- includes/admin-settings-upgrade.php +11 -0
- includes/admin-settings.php +8 -270
- includes/column-group.php +4 -4
- includes/column-settings.php +98 -90
- includes/field-form.php +21 -10
- includes/field.php +2 -2
- includes/js-config.php +50 -47
- includes/module-settings.php +43 -30
- includes/module.php +1 -1
- includes/row-settings.php +43 -30
- includes/row.php +5 -5
- includes/updater-config.php +1 -1
- includes/updater/includes/form.php +2 -2
- js/fl-builder-admin-settings.js +52 -1
- js/fl-builder-preview.js +4 -1
- js/fl-builder.js +134 -23
- languages/fr_FR.mo +0 -0
- languages/fr_FR.po +3480 -0
- languages/it_IT.mo +0 -0
- languages/it_IT.po +4392 -0
- languages/pt_BR.mo +0 -0
- languages/pt_BR.po +4152 -0
- languages/sk_SK.mo +0 -0
- languages/sk_SK.po +589 -444
- languages/xx_XX.mo +0 -0
- languages/xx_XX.pot +482 -379
- readme.txt +8 -8
changelog.txt
CHANGED
@@ -1,3 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h4>1.4.5 - 01/26/2015</h4>
|
2 |
<p><strong>Enhancements</strong></p>
|
3 |
<ul>
|
1 |
+
<h4>1.4.6 - 02/15/2015</h4>
|
2 |
+
<p><strong>Enhancements</strong></p>
|
3 |
+
<ul>
|
4 |
+
<li>Added the ability to upload Icomoon and Fontello font icons under Settings > Page Builder > Icons.</li>
|
5 |
+
<li>Added the ability to disable core font icons.</li>
|
6 |
+
<li>Added an ID field to row, column and module settings.</li>
|
7 |
+
<li>Added French translation.</li>
|
8 |
+
<li>Added Itailian translation.</li>
|
9 |
+
<li>Added fl_builder_upgrade_url filter. This filter can be used by theme developers to add their affiliate link to the upgrade buttons in the lite version.</li>
|
10 |
+
<li>Added fl_builder_settings_form_defaults filter for overriding default form settings.</li>
|
11 |
+
<li>Enhanced SSL check for servers behind load balancers.</li>
|
12 |
+
<li>Single repeater fields can now be duplicated.</li>
|
13 |
+
</ul>
|
14 |
+
<p><strong>Bug Fixes</strong></p>
|
15 |
+
<ul>
|
16 |
+
<li>Row text color no longer overrides heading text color.</li>
|
17 |
+
<li>Preview text for form fields now shows the option label for select inputs instead of the option value.</li>
|
18 |
+
</ul>
|
19 |
+
|
20 |
<h4>1.4.5 - 01/26/2015</h4>
|
21 |
<p><strong>Enhancements</strong></p>
|
22 |
<ul>
|
classes/class-fl-builder-admin-settings.php
CHANGED
@@ -6,6 +6,11 @@
|
|
6 |
* @class FLBuilderAdminSettings
|
7 |
*/
|
8 |
final class FLBuilderAdminSettings {
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
/**
|
11 |
* @method init
|
@@ -30,6 +35,9 @@ final class FLBuilderAdminSettings {
|
|
30 |
|
31 |
// Scripts
|
32 |
wp_enqueue_script('fl-builder-admin-settings', FL_BUILDER_URL . 'js/fl-builder-admin-settings.js', array(), FL_BUILDER_VERSION);
|
|
|
|
|
|
|
33 |
}
|
34 |
|
35 |
/**
|
@@ -53,131 +61,461 @@ final class FLBuilderAdminSettings {
|
|
53 |
*/
|
54 |
static public function render()
|
55 |
{
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
}
|
59 |
}
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
/**
|
62 |
* @method save
|
63 |
-
* @private
|
64 |
*/
|
65 |
-
static
|
66 |
{
|
67 |
// Only admins can save settings.
|
68 |
if(!current_user_can('delete_plugins')) {
|
69 |
return;
|
70 |
}
|
71 |
|
72 |
-
self::
|
73 |
-
self::
|
74 |
-
self::
|
75 |
-
self::
|
76 |
-
self::
|
|
|
77 |
self::uninstall();
|
78 |
}
|
79 |
|
80 |
/**
|
81 |
-
* @method
|
82 |
* @private
|
83 |
*/
|
84 |
-
static private function
|
85 |
{
|
86 |
-
$modules
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
89 |
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
92 |
}
|
93 |
else {
|
94 |
-
|
95 |
-
if(is_array($_POST['fl-modules'])) {
|
96 |
-
$modules = array_map('sanitize_text_field', $_POST['fl-modules']);
|
97 |
-
}
|
98 |
-
|
99 |
-
update_option('_fl_builder_enabled_modules', $modules);
|
100 |
}
|
101 |
}
|
102 |
}
|
103 |
|
104 |
/**
|
105 |
-
* @method
|
106 |
* @private
|
107 |
*/
|
108 |
-
static private function
|
109 |
{
|
110 |
-
if(isset($_POST['fl-templates-nonce']) && wp_verify_nonce($_POST['fl-templates-nonce'], 'templates')) {
|
|
|
|
|
111 |
|
112 |
-
|
113 |
-
|
|
|
|
|
|
|
114 |
}
|
115 |
else {
|
116 |
-
|
117 |
-
$enabled_templates = sanitize_text_field($_POST['fl-template-settings']);
|
118 |
-
|
119 |
-
update_option('_fl_builder_enabled_templates', $enabled_templates);
|
120 |
}
|
121 |
}
|
122 |
}
|
123 |
|
124 |
/**
|
125 |
-
* @method
|
126 |
* @private
|
127 |
*/
|
128 |
-
static private function
|
129 |
{
|
130 |
-
$
|
131 |
-
|
132 |
-
if(isset($_POST['fl-post-types-nonce']) && wp_verify_nonce($_POST['fl-post-types-nonce'], 'post-types')) {
|
133 |
|
134 |
-
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
}
|
137 |
else {
|
|
|
|
|
138 |
|
139 |
-
if(is_array($_POST['fl-post-types'])) {
|
140 |
-
$post_types = array_map('sanitize_text_field', $_POST['fl-post-types']);
|
141 |
}
|
142 |
|
143 |
-
update_option('_fl_builder_post_types', $post_types);
|
144 |
}
|
145 |
}
|
146 |
}
|
147 |
|
148 |
/**
|
149 |
-
* @method
|
150 |
* @private
|
151 |
*/
|
152 |
-
static private function
|
153 |
{
|
154 |
-
if(isset($_POST['fl-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
|
156 |
-
|
157 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
}
|
159 |
else {
|
160 |
-
|
161 |
-
$capability = sanitize_text_field($_POST['fl-editing-capability']);
|
162 |
-
|
163 |
-
update_option('_fl_builder_editing_capability', $capability);
|
164 |
}
|
165 |
}
|
166 |
}
|
167 |
|
168 |
/**
|
169 |
-
* @method
|
170 |
* @private
|
171 |
*/
|
172 |
-
static private function
|
173 |
{
|
174 |
-
if(isset($_POST['fl-branding-nonce']) && wp_verify_nonce($_POST['fl-branding-nonce'], 'branding')) {
|
175 |
|
176 |
-
$branding = wp_kses_post($_POST['fl-branding']);
|
177 |
-
$branding_icon = sanitize_text_field($_POST['fl-branding-icon']);
|
178 |
|
179 |
-
|
180 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
}
|
182 |
}
|
183 |
|
@@ -187,15 +525,15 @@ final class FLBuilderAdminSettings {
|
|
187 |
*/
|
188 |
static private function uninstall()
|
189 |
{
|
190 |
-
if(!current_user_can('delete_plugins')) {
|
191 |
return;
|
192 |
}
|
193 |
-
else if(isset($_POST['fl-uninstall']) && wp_verify_nonce($_POST['fl-uninstall'], 'uninstall')) {
|
194 |
-
if(is_multisite() && class_exists('FLBuilderMultisite')) {
|
195 |
FLBuilderMultisite::uninstall();
|
196 |
}
|
197 |
else {
|
198 |
-
|
199 |
}
|
200 |
}
|
201 |
}
|
6 |
* @class FLBuilderAdminSettings
|
7 |
*/
|
8 |
final class FLBuilderAdminSettings {
|
9 |
+
|
10 |
+
/**
|
11 |
+
* @property $errors
|
12 |
+
*/
|
13 |
+
static public $errors = array();
|
14 |
|
15 |
/**
|
16 |
* @method init
|
35 |
|
36 |
// Scripts
|
37 |
wp_enqueue_script('fl-builder-admin-settings', FL_BUILDER_URL . 'js/fl-builder-admin-settings.js', array(), FL_BUILDER_VERSION);
|
38 |
+
|
39 |
+
// Media Uploader
|
40 |
+
wp_enqueue_media();
|
41 |
}
|
42 |
|
43 |
/**
|
61 |
*/
|
62 |
static public function render()
|
63 |
{
|
64 |
+
include FL_BUILDER_DIR . 'includes/admin-settings-js-config.php';
|
65 |
+
include FL_BUILDER_DIR . 'includes/admin-settings.php';
|
66 |
+
}
|
67 |
+
|
68 |
+
/**
|
69 |
+
* @method render_page_class
|
70 |
+
*/
|
71 |
+
static public function render_page_class()
|
72 |
+
{
|
73 |
+
if ( self::multisite_support() ) {
|
74 |
+
echo 'fl-settings-network-admin';
|
75 |
+
}
|
76 |
+
else {
|
77 |
+
echo 'fl-settings-single-install';
|
78 |
+
}
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* @method render_page_heading
|
83 |
+
*/
|
84 |
+
static public function render_page_heading()
|
85 |
+
{
|
86 |
+
$icon = FLBuilderModel::get_branding_icon();
|
87 |
+
$name = FLBuilderModel::get_branding();
|
88 |
+
|
89 |
+
if ( ! empty( $icon ) ) {
|
90 |
+
echo '<img src="' . $icon . '" />';
|
91 |
+
}
|
92 |
+
|
93 |
+
echo '<span>' . sprintf( _x( '%s Settings', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding() ) . '</span>';
|
94 |
+
}
|
95 |
+
|
96 |
+
/**
|
97 |
+
* @method render_update_message
|
98 |
+
*/
|
99 |
+
static public function render_update_message()
|
100 |
+
{
|
101 |
+
if ( ! empty( self::$errors ) ) {
|
102 |
+
foreach ( self::$errors as $message ) {
|
103 |
+
echo '<div class="error"><p>' . $message . '</p></div>';
|
104 |
+
}
|
105 |
+
}
|
106 |
+
else if( ! empty( $_POST ) && ! isset( $_POST['email'] ) ) {
|
107 |
+
echo '<div class="updated"><p>' . __( 'Settings updated!', 'fl-builder' ) . '</p></div>';
|
108 |
+
}
|
109 |
+
}
|
110 |
+
|
111 |
+
/**
|
112 |
+
* @method render_nav_items
|
113 |
+
*/
|
114 |
+
static public function render_nav_items()
|
115 |
+
{
|
116 |
+
$item_data = array(
|
117 |
+
'license' => array(
|
118 |
+
'title' => __( 'License', 'fl-builder' ),
|
119 |
+
'show' => FL_BUILDER_LITE !== true && ( is_network_admin() || ! self::multisite_support() )
|
120 |
+
),
|
121 |
+
'upgrade' => array(
|
122 |
+
'title' => __( 'Upgrade', 'fl-builder' ),
|
123 |
+
'show' => FL_BUILDER_LITE === true
|
124 |
+
),
|
125 |
+
'modules' => array(
|
126 |
+
'title' => __( 'Modules', 'fl-builder' ),
|
127 |
+
'show' => true
|
128 |
+
),
|
129 |
+
'templates' => array(
|
130 |
+
'title' => __( 'Templates', 'fl-builder' ),
|
131 |
+
'show' => FL_BUILDER_LITE !== true
|
132 |
+
),
|
133 |
+
'post-types' => array(
|
134 |
+
'title' => __( 'Post Types', 'fl-builder' ),
|
135 |
+
'show' => true
|
136 |
+
),
|
137 |
+
'icons' => array(
|
138 |
+
'title' => __( 'Icons', 'fl-builder' ),
|
139 |
+
'show' => FL_BUILDER_LITE !== true
|
140 |
+
),
|
141 |
+
'editing' => array(
|
142 |
+
'title' => __( 'Editing', 'fl-builder' ),
|
143 |
+
'show' => true
|
144 |
+
),
|
145 |
+
'branding' => array(
|
146 |
+
'title' => __( 'Branding', 'fl-builder' ),
|
147 |
+
'show' => self::has_support( 'branding' ) && ( is_network_admin() || ! self::multisite_support() )
|
148 |
+
),
|
149 |
+
'uninstall' => array(
|
150 |
+
'title' => __( 'Uninstall', 'fl-builder' ),
|
151 |
+
'show' => is_network_admin() || ! self::multisite_support()
|
152 |
+
),
|
153 |
+
);
|
154 |
+
|
155 |
+
foreach ( $item_data as $key => $data ) {
|
156 |
+
if ( $data['show'] ) {
|
157 |
+
echo '<li><a href="#' . $key . '">' . $data['title'] . '</a></li>';
|
158 |
+
}
|
159 |
+
}
|
160 |
+
}
|
161 |
+
|
162 |
+
/**
|
163 |
+
* @method render_forms
|
164 |
+
*/
|
165 |
+
static public function render_forms()
|
166 |
+
{
|
167 |
+
// License
|
168 |
+
if ( is_network_admin() || ! self::multisite_support() ) {
|
169 |
+
self::render_form( 'license' );
|
170 |
+
}
|
171 |
+
|
172 |
+
// Upgrade
|
173 |
+
if ( FL_BUILDER_LITE === true ) {
|
174 |
+
self::render_form( 'upgrade' );
|
175 |
+
}
|
176 |
+
|
177 |
+
// Modules
|
178 |
+
self::render_form( 'modules' );
|
179 |
+
|
180 |
+
// Templates
|
181 |
+
self::render_form( 'templates' );
|
182 |
+
|
183 |
+
// Post Types
|
184 |
+
self::render_form( 'post-types' );
|
185 |
+
|
186 |
+
// Icons
|
187 |
+
self::render_form( 'icons' );
|
188 |
+
|
189 |
+
// Editing
|
190 |
+
self::render_form( 'editing' );
|
191 |
+
|
192 |
+
// Branding
|
193 |
+
self::render_form( 'branding' );
|
194 |
+
|
195 |
+
// Uninstall
|
196 |
+
self::render_form( 'uninstall' );
|
197 |
+
}
|
198 |
+
|
199 |
+
/**
|
200 |
+
* @method render_form
|
201 |
+
*/
|
202 |
+
static public function render_form( $type )
|
203 |
+
{
|
204 |
+
if ( self::has_support( $type ) ) {
|
205 |
+
include FL_BUILDER_DIR . 'includes/admin-settings-' . $type . '.php';
|
206 |
+
}
|
207 |
+
}
|
208 |
+
|
209 |
+
/**
|
210 |
+
* @method render_form_action
|
211 |
+
*/
|
212 |
+
static public function render_form_action( $type = '' )
|
213 |
+
{
|
214 |
+
if ( is_network_admin() ) {
|
215 |
+
echo network_admin_url( '/settings.php?page=fl-builder-multisite-settings#' . $type );
|
216 |
+
}
|
217 |
+
else {
|
218 |
+
echo admin_url( '/options-general.php?page=fl-builder-settings#' . $type );
|
219 |
+
}
|
220 |
+
}
|
221 |
+
|
222 |
+
/**
|
223 |
+
* @method get_form_action
|
224 |
+
*/
|
225 |
+
static public function get_form_action( $type = '' )
|
226 |
+
{
|
227 |
+
if ( is_network_admin() ) {
|
228 |
+
return network_admin_url( '/settings.php?page=fl-builder-multisite-settings#' . $type );
|
229 |
+
}
|
230 |
+
else {
|
231 |
+
return admin_url( '/options-general.php?page=fl-builder-settings#' . $type );
|
232 |
}
|
233 |
}
|
234 |
|
235 |
+
/**
|
236 |
+
* @method supports
|
237 |
+
*/
|
238 |
+
static public function has_support( $type )
|
239 |
+
{
|
240 |
+
return file_exists( FL_BUILDER_DIR . 'includes/admin-settings-' . $type . '.php' );
|
241 |
+
}
|
242 |
+
|
243 |
+
/**
|
244 |
+
* @method multisite_support
|
245 |
+
*/
|
246 |
+
static public function multisite_support()
|
247 |
+
{
|
248 |
+
return is_multisite() && class_exists( 'FLBuilderMultisiteSettings' );
|
249 |
+
}
|
250 |
+
|
251 |
+
/**
|
252 |
+
* @method add_error
|
253 |
+
*/
|
254 |
+
static public function add_error( $message )
|
255 |
+
{
|
256 |
+
self::$errors[] = $message;
|
257 |
+
}
|
258 |
+
|
259 |
/**
|
260 |
* @method save
|
|
|
261 |
*/
|
262 |
+
static public function save()
|
263 |
{
|
264 |
// Only admins can save settings.
|
265 |
if(!current_user_can('delete_plugins')) {
|
266 |
return;
|
267 |
}
|
268 |
|
269 |
+
self::save_enabled_modules();
|
270 |
+
self::save_enabled_templates();
|
271 |
+
self::save_enabled_post_types();
|
272 |
+
self::save_enabled_icons();
|
273 |
+
self::save_editing_capability();
|
274 |
+
self::save_branding();
|
275 |
self::uninstall();
|
276 |
}
|
277 |
|
278 |
/**
|
279 |
+
* @method save_enabled_modules
|
280 |
* @private
|
281 |
*/
|
282 |
+
static private function save_enabled_modules()
|
283 |
{
|
284 |
+
if ( isset( $_POST['fl-modules-nonce'] ) && wp_verify_nonce( $_POST['fl-modules-nonce'], 'modules' ) ) {
|
285 |
+
|
286 |
+
$modules = array();
|
287 |
+
|
288 |
+
if ( is_array( $_POST['fl-modules'] ) ) {
|
289 |
+
$modules = array_map( 'sanitize_text_field', $_POST['fl-modules'] );
|
290 |
+
}
|
291 |
|
292 |
+
if ( is_network_admin() ) {
|
293 |
+
update_site_option( '_fl_builder_enabled_modules', $modules );
|
294 |
+
}
|
295 |
+
else if ( self::multisite_support() && ! isset( $_POST['fl-override-ms'] ) ) {
|
296 |
+
delete_option( '_fl_builder_enabled_modules' );
|
297 |
}
|
298 |
else {
|
299 |
+
update_option( '_fl_builder_enabled_modules', $modules );
|
|
|
|
|
|
|
|
|
|
|
300 |
}
|
301 |
}
|
302 |
}
|
303 |
|
304 |
/**
|
305 |
+
* @method save_enabled_templates
|
306 |
* @private
|
307 |
*/
|
308 |
+
static private function save_enabled_templates()
|
309 |
{
|
310 |
+
if ( isset( $_POST['fl-templates-nonce'] ) && wp_verify_nonce( $_POST['fl-templates-nonce'], 'templates' ) ) {
|
311 |
+
|
312 |
+
$enabled_templates = sanitize_text_field( $_POST['fl-template-settings'] );
|
313 |
|
314 |
+
if ( is_network_admin() ) {
|
315 |
+
update_site_option( '_fl_builder_enabled_templates', $enabled_templates );
|
316 |
+
}
|
317 |
+
else if ( self::multisite_support() && ! isset( $_POST['fl-override-ms'] ) ) {
|
318 |
+
delete_option( '_fl_builder_enabled_templates' );
|
319 |
}
|
320 |
else {
|
321 |
+
update_option( '_fl_builder_enabled_templates', $enabled_templates );
|
|
|
|
|
|
|
322 |
}
|
323 |
}
|
324 |
}
|
325 |
|
326 |
/**
|
327 |
+
* @method save_enabled_post_types
|
328 |
* @private
|
329 |
*/
|
330 |
+
static private function save_enabled_post_types()
|
331 |
{
|
332 |
+
if ( isset( $_POST['fl-post-types-nonce'] ) && wp_verify_nonce( $_POST['fl-post-types-nonce'], 'post-types' ) ) {
|
|
|
|
|
333 |
|
334 |
+
if ( is_network_admin() ) {
|
335 |
+
|
336 |
+
$post_types = sanitize_text_field( $_POST['fl-post-types'] );
|
337 |
+
$post_types = str_replace( ' ', '', $post_types );
|
338 |
+
$post_types = explode( ',', $post_types );
|
339 |
+
|
340 |
+
update_site_option( '_fl_builder_post_types', $post_types );
|
341 |
+
}
|
342 |
+
else if ( self::multisite_support() && ! isset($_POST['fl-override-ms'] ) ) {
|
343 |
+
delete_option( '_fl_builder_post_types' );
|
344 |
}
|
345 |
else {
|
346 |
+
|
347 |
+
$post_types = array();
|
348 |
|
349 |
+
if ( is_array( $_POST['fl-post-types'] ) ) {
|
350 |
+
$post_types = array_map( 'sanitize_text_field', $_POST['fl-post-types'] );
|
351 |
}
|
352 |
|
353 |
+
update_option( '_fl_builder_post_types', $post_types );
|
354 |
}
|
355 |
}
|
356 |
}
|
357 |
|
358 |
/**
|
359 |
+
* @method save_enabled_icons
|
360 |
* @private
|
361 |
*/
|
362 |
+
static private function save_enabled_icons()
|
363 |
{
|
364 |
+
if ( isset( $_POST['fl-icons-nonce'] ) && wp_verify_nonce( $_POST['fl-icons-nonce'], 'icons' ) ) {
|
365 |
+
|
366 |
+
// Make sure we have at least one enabled icon set.
|
367 |
+
if ( ! isset( $_POST['fl-enabled-icons'] ) && empty( $_POST['fl-new-icon-set'] ) ) {
|
368 |
+
self::add_error( __( "Error! You must have at least one icon set enabled.", 'fl-builder' ) );
|
369 |
+
return;
|
370 |
+
}
|
371 |
+
|
372 |
+
$filesystem = FLBuilderUtils::get_filesystem();
|
373 |
+
$enabled_icons = array();
|
374 |
+
|
375 |
+
// Sanitize the enabled icons.
|
376 |
+
if ( isset( $_POST['fl-enabled-icons'] ) && is_array( $_POST['fl-enabled-icons'] ) ) {
|
377 |
+
$enabled_icons = array_map( 'sanitize_text_field', $_POST['fl-enabled-icons'] );
|
378 |
+
}
|
379 |
+
|
380 |
+
// Update the enabled sets.
|
381 |
+
self::update_enabled_icons( $enabled_icons );
|
382 |
|
383 |
+
// Delete a set?
|
384 |
+
if ( ! empty( $_POST['fl-delete-icon-set'] ) ) {
|
385 |
+
|
386 |
+
$sets = FLBuilderIcons::get_sets();
|
387 |
+
$key = sanitize_text_field( $_POST['fl-delete-icon-set'] );
|
388 |
+
$index = array_search( $key, $enabled_icons );
|
389 |
+
|
390 |
+
if ( false !== $index ) {
|
391 |
+
unset( $enabled_icons[ $index ] );
|
392 |
+
}
|
393 |
+
if ( isset( $sets[ $key ] ) ) {
|
394 |
+
$filesystem->rmdir( $sets[ $key ]['path'], true );
|
395 |
+
FLBuilderIcons::remove_set( $key );
|
396 |
+
}
|
397 |
+
}
|
398 |
+
|
399 |
+
// Upload a new set?
|
400 |
+
if ( ! empty( $_POST['fl-new-icon-set'] ) ) {
|
401 |
+
|
402 |
+
$dir = FLBuilderModel::get_cache_dir( 'icons' );
|
403 |
+
$id = (int) $_POST['fl-new-icon-set'];
|
404 |
+
$path = get_attached_file( $id );
|
405 |
+
$new_path = $dir['path'] . 'icon-' . time() . '/';
|
406 |
+
$unzipped = unzip_file( $path, $new_path );
|
407 |
+
|
408 |
+
// Unzip failed.
|
409 |
+
if ( ! $unzipped ) {
|
410 |
+
self::add_error( __( "Error! Could not unzip file.", 'fl-builder' ) );
|
411 |
+
return;
|
412 |
+
}
|
413 |
+
|
414 |
+
// Move files if unzipped into a subfolder.
|
415 |
+
$files = $filesystem->dirlist( $new_path );
|
416 |
+
|
417 |
+
if ( 1 == count( $files ) ) {
|
418 |
+
|
419 |
+
$values = array_values( $files );
|
420 |
+
$subfolder_info = array_shift( $values );
|
421 |
+
$subfolder = $new_path . $subfolder_info['name'] . '/';
|
422 |
+
|
423 |
+
if ( file_exists( $subfolder ) && is_dir( $subfolder ) ) {
|
424 |
+
|
425 |
+
$files = $filesystem->dirlist( $subfolder );
|
426 |
+
|
427 |
+
if ( $files ) {
|
428 |
+
foreach ( $files as $file ) {
|
429 |
+
$filesystem->move( $subfolder . $file['name'], $new_path . $file['name'] );
|
430 |
+
}
|
431 |
+
}
|
432 |
+
|
433 |
+
$filesystem->rmdir( $subfolder );
|
434 |
+
}
|
435 |
+
}
|
436 |
+
|
437 |
+
// Check for supported sets.
|
438 |
+
$is_icomoon = file_exists( $new_path . 'selection.json' );
|
439 |
+
$is_fontello = file_exists( $new_path . 'config.json' );
|
440 |
+
|
441 |
+
// Show an error if we don't have a supported icon set.
|
442 |
+
if ( ! $is_icomoon && ! $is_fontello ) {
|
443 |
+
$filesystem->rmdir( $new_path, true );
|
444 |
+
self::add_error( __( "Error! Please upload an icon set from either Icomoon or Fontello.", 'fl-builder' ) );
|
445 |
+
return;
|
446 |
+
}
|
447 |
+
|
448 |
+
// Enable the new set.
|
449 |
+
if ( is_array( $enabled_icons ) ) {
|
450 |
+
$key = FLBuilderIcons::get_key_from_path( $new_path );
|
451 |
+
$enabled_icons[] = $key;
|
452 |
+
}
|
453 |
+
}
|
454 |
+
|
455 |
+
// Update the enabled sets again in case they have changed.
|
456 |
+
self::update_enabled_icons( $enabled_icons );
|
457 |
+
}
|
458 |
+
}
|
459 |
+
|
460 |
+
/**
|
461 |
+
* @method update_enabled_icons
|
462 |
+
* @private
|
463 |
+
*/
|
464 |
+
static private function update_enabled_icons( $enabled_icons = array() )
|
465 |
+
{
|
466 |
+
if ( is_network_admin() ) {
|
467 |
+
update_site_option( '_fl_builder_enabled_icons', $enabled_icons );
|
468 |
+
update_option( '_fl_builder_enabled_icons', $enabled_icons );
|
469 |
+
}
|
470 |
+
else if ( self::multisite_support() && ! isset( $_POST['fl-override-ms'] ) ) {
|
471 |
+
delete_option( '_fl_builder_enabled_icons' );
|
472 |
+
}
|
473 |
+
else {
|
474 |
+
update_option( '_fl_builder_enabled_icons', $enabled_icons );
|
475 |
+
}
|
476 |
+
}
|
477 |
+
|
478 |
+
/**
|
479 |
+
* @method save_editing_capability
|
480 |
+
* @private
|
481 |
+
*/
|
482 |
+
static private function save_editing_capability()
|
483 |
+
{
|
484 |
+
if ( isset( $_POST['fl-editing-nonce'] ) && wp_verify_nonce( $_POST['fl-editing-nonce'], 'editing' ) ) {
|
485 |
+
|
486 |
+
$capability = sanitize_text_field( $_POST['fl-editing-capability'] );
|
487 |
+
|
488 |
+
if ( is_network_admin() ) {
|
489 |
+
update_site_option( '_fl_builder_editing_capability', $capability );
|
490 |
+
}
|
491 |
+
else if ( self::multisite_support() && ! isset( $_POST['fl-override-ms'] ) ) {
|
492 |
+
delete_option( '_fl_builder_editing_capability' );
|
493 |
}
|
494 |
else {
|
495 |
+
update_option( '_fl_builder_editing_capability', $capability );
|
|
|
|
|
|
|
496 |
}
|
497 |
}
|
498 |
}
|
499 |
|
500 |
/**
|
501 |
+
* @method save_branding
|
502 |
* @private
|
503 |
*/
|
504 |
+
static private function save_branding()
|
505 |
{
|
506 |
+
if ( isset( $_POST['fl-branding-nonce'] ) && wp_verify_nonce( $_POST['fl-branding-nonce'], 'branding' ) ) {
|
507 |
|
508 |
+
$branding = wp_kses_post( $_POST['fl-branding'] );
|
509 |
+
$branding_icon = sanitize_text_field( $_POST['fl-branding-icon'] );
|
510 |
|
511 |
+
if ( is_network_admin() ) {
|
512 |
+
update_site_option( '_fl_builder_branding', $branding );
|
513 |
+
update_site_option( '_fl_builder_branding_icon', $branding_icon );
|
514 |
+
}
|
515 |
+
else {
|
516 |
+
update_option( '_fl_builder_branding', $branding );
|
517 |
+
update_option( '_fl_builder_branding_icon', $branding_icon );
|
518 |
+
}
|
519 |
}
|
520 |
}
|
521 |
|
525 |
*/
|
526 |
static private function uninstall()
|
527 |
{
|
528 |
+
if ( ! current_user_can( 'delete_plugins' ) ) {
|
529 |
return;
|
530 |
}
|
531 |
+
else if ( isset( $_POST['fl-uninstall'] ) && wp_verify_nonce( $_POST['fl-uninstall'], 'uninstall' ) ) {
|
532 |
+
if ( is_multisite() && class_exists( 'FLBuilderMultisite' ) ) {
|
533 |
FLBuilderMultisite::uninstall();
|
534 |
}
|
535 |
else {
|
536 |
+
FLBuilderAdmin::uninstall();
|
537 |
}
|
538 |
}
|
539 |
}
|
classes/class-fl-builder-admin.php
CHANGED
@@ -36,7 +36,8 @@ final class FLBuilderAdmin {
|
|
36 |
}
|
37 |
// This version doesn't have multisite support.
|
38 |
else {
|
39 |
-
|
|
|
40 |
}
|
41 |
}
|
42 |
// No multisite, standard install.
|
@@ -60,9 +61,9 @@ final class FLBuilderAdmin {
|
|
60 |
*/
|
61 |
static public function show_activate_error($message)
|
62 |
{
|
63 |
-
deactivate_plugins(plugin_basename(
|
64 |
|
65 |
-
die($message);
|
66 |
}
|
67 |
|
68 |
/**
|
@@ -84,8 +85,13 @@ final class FLBuilderAdmin {
|
|
84 |
*/
|
85 |
static public function activate_notice()
|
86 |
{
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
89 |
echo '<div class="updated" style="background: #d3ebc1;">';
|
90 |
echo '<p><strong>' . sprintf( __( 'Page Builder activated! <a%s>Click here</a> to enable remote updates.', 'fl-builder' ), ' href="' . esc_url( $href ) . '"' ) . '</strong></p>';
|
91 |
echo '</div>';
|
@@ -109,11 +115,11 @@ final class FLBuilderAdmin {
|
|
109 |
*/
|
110 |
static public function init()
|
111 |
{
|
112 |
-
self::show_activate_notice();
|
113 |
self::init_classes();
|
114 |
self::init_settings();
|
115 |
self::init_multisite();
|
116 |
self::init_templates();
|
|
|
117 |
}
|
118 |
|
119 |
/**
|
@@ -133,7 +139,7 @@ final class FLBuilderAdmin {
|
|
133 |
if(file_exists($ms_class)) {
|
134 |
require_once $ms_class;
|
135 |
}
|
136 |
-
if(file_exists($ms_settings_class)
|
137 |
require_once $ms_settings_class;
|
138 |
}
|
139 |
}
|
@@ -181,7 +187,8 @@ final class FLBuilderAdmin {
|
|
181 |
static public function render_plugin_action_links($actions)
|
182 |
{
|
183 |
if(FL_BUILDER_LITE === true) {
|
184 |
-
|
|
|
185 |
}
|
186 |
|
187 |
return $actions;
|
@@ -192,24 +199,16 @@ final class FLBuilderAdmin {
|
|
192 |
*/
|
193 |
static public function white_label_plugins_page($plugins)
|
194 |
{
|
|
|
195 |
$branding = FLBuilderModel::get_branding();
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
$plugins['fl-builder/fl-builder.php']['PluginURI'] = '';
|
205 |
-
}
|
206 |
-
else if(isset($plugins['bb-plugin/fl-builder.php'])) {
|
207 |
-
$plugins['bb-plugin/fl-builder.php']['Name'] = $branding;
|
208 |
-
$plugins['bb-plugin/fl-builder.php']['Title'] = $branding;
|
209 |
-
$plugins['bb-plugin/fl-builder.php']['Author'] = '';
|
210 |
-
$plugins['bb-plugin/fl-builder.php']['AuthorName'] = '';
|
211 |
-
$plugins['bb-plugin/fl-builder.php']['PluginURI'] = '';
|
212 |
-
}
|
213 |
}
|
214 |
|
215 |
return $plugins;
|
36 |
}
|
37 |
// This version doesn't have multisite support.
|
38 |
else {
|
39 |
+
$url = FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'no-multisite-support' ) );
|
40 |
+
self::show_activate_error( sprintf( __( 'This version of the <strong>Page Builder</strong> plugin is not compatible with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version of this plugin.', 'fl-builder' ), ' href="' . $url . '" target="_blank"' ) );
|
41 |
}
|
42 |
}
|
43 |
// No multisite, standard install.
|
61 |
*/
|
62 |
static public function show_activate_error($message)
|
63 |
{
|
64 |
+
deactivate_plugins( FLBuilderModel::plugin_basename(), false, is_network_admin() );
|
65 |
|
66 |
+
die( $message );
|
67 |
}
|
68 |
|
69 |
/**
|
85 |
*/
|
86 |
static public function activate_notice()
|
87 |
{
|
88 |
+
if ( class_exists('FLBuilderMultisiteSettings') && is_multisite() && current_user_can( 'manage_network_plugins' ) ) {
|
89 |
+
$href = esc_url( network_admin_url( '/settings.php?page=fl-builder-multisite-settings#license' ) );
|
90 |
+
}
|
91 |
+
else {
|
92 |
+
$href = esc_url( admin_url( '/options-general.php?page=fl-builder-settings#license' ) );
|
93 |
+
}
|
94 |
+
|
95 |
echo '<div class="updated" style="background: #d3ebc1;">';
|
96 |
echo '<p><strong>' . sprintf( __( 'Page Builder activated! <a%s>Click here</a> to enable remote updates.', 'fl-builder' ), ' href="' . esc_url( $href ) . '"' ) . '</strong></p>';
|
97 |
echo '</div>';
|
115 |
*/
|
116 |
static public function init()
|
117 |
{
|
|
|
118 |
self::init_classes();
|
119 |
self::init_settings();
|
120 |
self::init_multisite();
|
121 |
self::init_templates();
|
122 |
+
self::show_activate_notice();
|
123 |
}
|
124 |
|
125 |
/**
|
139 |
if(file_exists($ms_class)) {
|
140 |
require_once $ms_class;
|
141 |
}
|
142 |
+
if(file_exists($ms_settings_class)) {
|
143 |
require_once $ms_settings_class;
|
144 |
}
|
145 |
}
|
187 |
static public function render_plugin_action_links($actions)
|
188 |
{
|
189 |
if(FL_BUILDER_LITE === true) {
|
190 |
+
$url = FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'plugins-page' ) );
|
191 |
+
$actions[] = '<a href="' . $url . '" style="color:#3db634;" target="_blank">' . _x( 'Upgrade', 'Plugin action link label.', 'fl-builder' ) . '</a>';
|
192 |
}
|
193 |
|
194 |
return $actions;
|
199 |
*/
|
200 |
static public function white_label_plugins_page($plugins)
|
201 |
{
|
202 |
+
$default = __( 'Page Builder', 'fl-builder' );
|
203 |
$branding = FLBuilderModel::get_branding();
|
204 |
+
$key = FLBuilderModel::plugin_basename();
|
205 |
+
|
206 |
+
if ( isset( $plugins[ $key ] ) && $branding != $default ) {
|
207 |
+
$plugins[ $key ]['Name'] = $branding;
|
208 |
+
$plugins[ $key ]['Title'] = $branding;
|
209 |
+
$plugins[ $key ]['Author'] = '';
|
210 |
+
$plugins[ $key ]['AuthorName'] = '';
|
211 |
+
$plugins[ $key ]['PluginURI'] = '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
}
|
213 |
|
214 |
return $plugins;
|
classes/class-fl-builder-icons.php
CHANGED
@@ -19,32 +19,245 @@ final class FLBuilderIcons {
|
|
19 |
*/
|
20 |
static public function get_sets()
|
21 |
{
|
|
|
22 |
if ( self::$sets ) {
|
23 |
return self::$sets;
|
24 |
}
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
'name' => 'WordPress Dashicons',
|
37 |
-
'prefix' => 'dashicons dashicons-before'
|
38 |
-
)
|
39 |
-
);
|
40 |
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
|
|
|
46 |
return self::$sets;
|
47 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
/**
|
50 |
* @method enqueue_styles_for_module
|
@@ -89,6 +302,7 @@ final class FLBuilderIcons {
|
|
89 |
*/
|
90 |
static private function enqueue_styles_for_icon( $icon )
|
91 |
{
|
|
|
92 |
if ( stristr( $icon, 'fa-' ) ) {
|
93 |
wp_enqueue_style( 'font-awesome' );
|
94 |
}
|
@@ -98,5 +312,37 @@ final class FLBuilderIcons {
|
|
98 |
else if ( stristr( $icon, 'dashicon' ) ) {
|
99 |
wp_enqueue_style( 'dashicons' );
|
100 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
}
|
102 |
}
|
19 |
*/
|
20 |
static public function get_sets()
|
21 |
{
|
22 |
+
// Return the sets if already registered.
|
23 |
if ( self::$sets ) {
|
24 |
return self::$sets;
|
25 |
}
|
26 |
|
27 |
+
// Check to see if we should pull sets from the main site.
|
28 |
+
if ( is_multisite()) {
|
29 |
+
|
30 |
+
$blog_id = defined( 'BLOG_ID_CURRENT_SITE' ) ? BLOG_ID_CURRENT_SITE : 1;
|
31 |
+
$enabled_icons = get_option( '_fl_builder_enabled_icons' );
|
32 |
+
|
33 |
+
if ( empty( $enabled_icons ) ) {
|
34 |
+
switch_to_blog( $blog_id );
|
35 |
+
}
|
36 |
+
}
|
|
|
|
|
|
|
|
|
37 |
|
38 |
+
// Register the icon sets.
|
39 |
+
self::register_custom_sets();
|
40 |
+
self::register_core_sets();
|
41 |
+
|
42 |
+
// Revert to the current site if we pulled from the main site.
|
43 |
+
if ( is_multisite() && empty( $enabled_icons ) ) {
|
44 |
+
restore_current_blog();
|
45 |
}
|
46 |
|
47 |
+
// Return the sets.
|
48 |
return self::$sets;
|
49 |
}
|
50 |
+
|
51 |
+
/**
|
52 |
+
* @method get_sets
|
53 |
+
*/
|
54 |
+
static public function get_sets_for_current_site()
|
55 |
+
{
|
56 |
+
if ( ! is_multisite() ) {
|
57 |
+
return self::get_sets();
|
58 |
+
}
|
59 |
+
|
60 |
+
// Store the original sets.
|
61 |
+
$original_sets = self::$sets;
|
62 |
+
|
63 |
+
// Register the icon sets.
|
64 |
+
self::register_custom_sets();
|
65 |
+
self::register_core_sets();
|
66 |
+
|
67 |
+
// Get the new sets.
|
68 |
+
$sets = self::$sets;
|
69 |
+
|
70 |
+
// Revert to the original sets.
|
71 |
+
self::$sets = $original_sets;
|
72 |
+
|
73 |
+
// Return the sets.
|
74 |
+
return $sets;
|
75 |
+
}
|
76 |
+
|
77 |
+
/**
|
78 |
+
* @method remove_set
|
79 |
+
*/
|
80 |
+
static public function remove_set( $key )
|
81 |
+
{
|
82 |
+
if ( self::$sets && isset( self::$sets[ $key ] ) ) {
|
83 |
+
unset( self::$sets[ $key ] );
|
84 |
+
}
|
85 |
+
}
|
86 |
+
|
87 |
+
/**
|
88 |
+
* @method get_key_from_path
|
89 |
+
*/
|
90 |
+
static public function get_key_from_path( $path )
|
91 |
+
{
|
92 |
+
$sets = self::get_sets();
|
93 |
+
|
94 |
+
foreach ( $sets as $key => $set ) {
|
95 |
+
if ( $path == $set['path'] ) {
|
96 |
+
return $key;
|
97 |
+
}
|
98 |
+
}
|
99 |
+
}
|
100 |
+
|
101 |
+
/**
|
102 |
+
* @method register_core_sets
|
103 |
+
* @private
|
104 |
+
*/
|
105 |
+
static private function register_core_sets()
|
106 |
+
{
|
107 |
+
$enabled_icons = FLBuilderModel::get_enabled_icons();
|
108 |
+
$core_sets = array(
|
109 |
+
'font-awesome' => array(
|
110 |
+
'name' => 'Font Awesome',
|
111 |
+
'prefix' => 'fa'
|
112 |
+
),
|
113 |
+
'foundation-icons' => array(
|
114 |
+
'name' => 'Foundation Icons',
|
115 |
+
'prefix' => ''
|
116 |
+
),
|
117 |
+
'dashicons' => array(
|
118 |
+
'name' => 'WordPress Dashicons',
|
119 |
+
'prefix' => 'dashicons dashicons-before'
|
120 |
+
)
|
121 |
+
);
|
122 |
+
|
123 |
+
// Add the core sets.
|
124 |
+
foreach ( $core_sets as $set_key => $set_data ) {
|
125 |
+
if ( is_admin() || in_array( $set_key, $enabled_icons ) ) {
|
126 |
+
self::$sets[ $set_key ] = array(
|
127 |
+
'name' => $set_data['name'],
|
128 |
+
'prefix' => $set_data['prefix'],
|
129 |
+
'type' => 'core'
|
130 |
+
);
|
131 |
+
}
|
132 |
+
}
|
133 |
+
|
134 |
+
// Loop through core sets and add icons.
|
135 |
+
foreach ( self::$sets as $set_key => $set_data ) {
|
136 |
+
if ( 'core' == $set_data['type'] ) {
|
137 |
+
$icons = json_decode( file_get_contents( FL_BUILDER_DIR . 'json/' . $set_key . '.json' ) );
|
138 |
+
self::$sets[ $set_key ]['icons'] = $icons;
|
139 |
+
}
|
140 |
+
}
|
141 |
+
}
|
142 |
+
|
143 |
+
/**
|
144 |
+
* @method register_custom_sets
|
145 |
+
* @private
|
146 |
+
*/
|
147 |
+
static private function register_custom_sets()
|
148 |
+
{
|
149 |
+
// Get uploaded sets.
|
150 |
+
$enabled_icons = FLBuilderModel::get_enabled_icons();
|
151 |
+
$upload_info = FLBuilderModel::get_cache_dir( 'icons' );
|
152 |
+
$folders = glob( $upload_info['path'] . '*' );
|
153 |
+
|
154 |
+
// Loop through uploaded sets.
|
155 |
+
foreach ( $folders as $folder ) {
|
156 |
+
|
157 |
+
$folder = trailingslashit( $folder );
|
158 |
+
|
159 |
+
// This is an Icomoon font.
|
160 |
+
if ( file_exists( $folder . 'selection.json' ) ) {
|
161 |
+
|
162 |
+
$data = json_decode( file_get_contents( $folder . 'selection.json' ) );
|
163 |
+
$key = basename( $folder );
|
164 |
+
$url = str_ireplace( $upload_info['path'], $upload_info['url'], $folder );
|
165 |
+
|
166 |
+
if ( isset( $data->icons ) ) {
|
167 |
+
|
168 |
+
if ( is_admin() || in_array( $key, $enabled_icons ) ) {
|
169 |
+
|
170 |
+
self::$sets[ $key ] = array(
|
171 |
+
'name' => $data->metadata->name,
|
172 |
+
'prefix' => '',
|
173 |
+
'type' => 'icomoon',
|
174 |
+
'path' => $folder,
|
175 |
+
'url' => $url,
|
176 |
+
'stylesheet' => $url . 'style.css',
|
177 |
+
'icons' => array()
|
178 |
+
);
|
179 |
+
|
180 |
+
foreach ( $data->icons as $icon ) {
|
181 |
+
|
182 |
+
$prefs = $data->preferences->fontPref;
|
183 |
+
$postfix = isset( $prefs->postfix ) ? $prefs->postfix : '';
|
184 |
+
|
185 |
+
if ( isset( $prefs->selector ) && 'class' == $prefs->selector ) {
|
186 |
+
$selector = trim( str_replace( '.', ' ', $prefs->classSelector ) ) . ' ';
|
187 |
+
}
|
188 |
+
else {
|
189 |
+
$selector = '';
|
190 |
+
}
|
191 |
+
|
192 |
+
self::$sets[ $key ]['icons'][] = $selector . $prefs->prefix . $icon->properties->name . $postfix;
|
193 |
+
}
|
194 |
+
}
|
195 |
+
}
|
196 |
+
}
|
197 |
+
// This is a Fontello font.
|
198 |
+
else if ( file_exists( $folder . 'config.json' ) ) {
|
199 |
+
|
200 |
+
$data = json_decode( file_get_contents( $folder . 'config.json' ) );
|
201 |
+
$key = basename( $folder );
|
202 |
+
$name = empty( $data->name ) ? 'Fontello' : $data->name;
|
203 |
+
$url = str_ireplace( $upload_info['path'], $upload_info['url'], $folder );
|
204 |
+
$style = empty( $data->name ) ? 'fontello' : $data->name;
|
205 |
+
|
206 |
+
// Append the date to the name?
|
207 |
+
if ( empty( $data->name ) ) {
|
208 |
+
$time = str_replace( 'icon-', '', $key );
|
209 |
+
$date_format = get_option( 'date_format' );
|
210 |
+
$time_format = get_option( 'time_format' );
|
211 |
+
$date = date( $date_format . ' ' . $time_format );
|
212 |
+
$name .= ' (' . $date . ')';
|
213 |
+
}
|
214 |
+
|
215 |
+
if ( isset( $data->glyphs ) ) {
|
216 |
+
|
217 |
+
if ( is_admin() || in_array( $key, $enabled_icons ) ) {
|
218 |
+
|
219 |
+
self::$sets[ $key ] = array(
|
220 |
+
'name' => $name,
|
221 |
+
'prefix' => '',
|
222 |
+
'type' => 'fontello',
|
223 |
+
'path' => $folder,
|
224 |
+
'url' => $url,
|
225 |
+
'stylesheet' => $url . 'css/' . $style . '.css',
|
226 |
+
'icons' => array()
|
227 |
+
);
|
228 |
+
|
229 |
+
foreach ( $data->glyphs as $icon ) {
|
230 |
+
if ( $data->css_use_suffix ) {
|
231 |
+
self::$sets[ $key ]['icons'][] = $icon->css . $data->css_prefix_text;
|
232 |
+
}
|
233 |
+
else {
|
234 |
+
self::$sets[ $key ]['icons'][] = $data->css_prefix_text . $icon->css;
|
235 |
+
}
|
236 |
+
}
|
237 |
+
}
|
238 |
+
}
|
239 |
+
}
|
240 |
+
}
|
241 |
+
}
|
242 |
+
|
243 |
+
/**
|
244 |
+
* @method enqueue_all_custom_icons_styles
|
245 |
+
*/
|
246 |
+
static public function enqueue_all_custom_icons_styles()
|
247 |
+
{
|
248 |
+
$sets = self::get_sets();
|
249 |
+
|
250 |
+
foreach ( $sets as $key => $data ) {
|
251 |
+
|
252 |
+
// Don't enqueue core icons.
|
253 |
+
if ( 'core' == $data['type'] ) {
|
254 |
+
continue;
|
255 |
+
}
|
256 |
+
|
257 |
+
// Enqueue the custom icon styles.
|
258 |
+
self::enqueue_custom_styles_by_key( $key );
|
259 |
+
}
|
260 |
+
}
|
261 |
|
262 |
/**
|
263 |
* @method enqueue_styles_for_module
|
302 |
*/
|
303 |
static private function enqueue_styles_for_icon( $icon )
|
304 |
{
|
305 |
+
// Is this a core icon?
|
306 |
if ( stristr( $icon, 'fa-' ) ) {
|
307 |
wp_enqueue_style( 'font-awesome' );
|
308 |
}
|
312 |
else if ( stristr( $icon, 'dashicon' ) ) {
|
313 |
wp_enqueue_style( 'dashicons' );
|
314 |
}
|
315 |
+
// It must be a custom icon.
|
316 |
+
else {
|
317 |
+
|
318 |
+
$sets = self::get_sets();
|
319 |
+
|
320 |
+
foreach ( $sets as $key => $data ) {
|
321 |
+
if ( in_array( $icon, $data['icons'] ) ) {
|
322 |
+
self::enqueue_custom_styles_by_key( $key );
|
323 |
+
}
|
324 |
+
}
|
325 |
+
}
|
326 |
+
}
|
327 |
+
|
328 |
+
/**
|
329 |
+
* @method enqueue_custom_styles_by_key
|
330 |
+
* @private
|
331 |
+
*/
|
332 |
+
static private function enqueue_custom_styles_by_key( $key )
|
333 |
+
{
|
334 |
+
$sets = self::get_sets();
|
335 |
+
|
336 |
+
if ( isset( $sets[ $key ] ) ) {
|
337 |
+
|
338 |
+
$set = $sets[ $key ];
|
339 |
+
|
340 |
+
if ( 'icomoon' == $set['type'] ) {
|
341 |
+
wp_enqueue_style( $key, $set['stylesheet'], array(), FL_BUILDER_VERSION );
|
342 |
+
}
|
343 |
+
if ( 'fontello' == $set['type'] ) {
|
344 |
+
wp_enqueue_style( $key, $set['stylesheet'], array(), FL_BUILDER_VERSION );
|
345 |
+
}
|
346 |
+
}
|
347 |
}
|
348 |
}
|
classes/class-fl-builder-model.php
CHANGED
@@ -30,6 +30,12 @@ final class FLBuilderModel {
|
|
30 |
*/
|
31 |
static public $settings_forms = array();
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
/**
|
34 |
* @property $modules
|
35 |
* @type array
|
@@ -141,6 +147,16 @@ final class FLBuilderModel {
|
|
141 |
return set_url_scheme( $url );
|
142 |
}
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
/**
|
145 |
* @method get_post_data
|
146 |
*/
|
@@ -242,7 +258,17 @@ final class FLBuilderModel {
|
|
242 |
*/
|
243 |
static public function is_ssl()
|
244 |
{
|
245 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
}
|
247 |
|
248 |
/**
|
@@ -408,26 +434,59 @@ final class FLBuilderModel {
|
|
408 |
}
|
409 |
|
410 |
/**
|
411 |
-
* @method
|
412 |
*/
|
413 |
-
static public function
|
414 |
{
|
415 |
-
$wp_info
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
|
417 |
// SSL workaround.
|
418 |
-
if(self::is_ssl()) {
|
419 |
-
$wp_info['baseurl'] = str_ireplace('http://', 'https://', $wp_info['baseurl']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
}
|
421 |
|
422 |
// Build the paths.
|
423 |
$dir_info = array(
|
424 |
-
'path' => $
|
425 |
-
'url' => $
|
426 |
);
|
427 |
|
428 |
// Create the cache dir if it doesn't exist.
|
429 |
-
if(!file_exists($dir_info['path'])) {
|
430 |
-
mkdir($dir_info['path']);
|
431 |
}
|
432 |
|
433 |
return $dir_info;
|
@@ -985,7 +1044,7 @@ final class FLBuilderModel {
|
|
985 |
*/
|
986 |
static public function get_row_defaults()
|
987 |
{
|
988 |
-
return self::get_settings_form_defaults(
|
989 |
}
|
990 |
|
991 |
/**
|
@@ -1248,7 +1307,7 @@ final class FLBuilderModel {
|
|
1248 |
*/
|
1249 |
static public function get_col_defaults()
|
1250 |
{
|
1251 |
-
return self::get_settings_form_defaults(
|
1252 |
}
|
1253 |
|
1254 |
/**
|
@@ -1298,16 +1357,25 @@ final class FLBuilderModel {
|
|
1298 |
|
1299 |
// Create a new instance of the module.
|
1300 |
$instance = new $class();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1301 |
|
1302 |
// Only register modules that are enabled.
|
1303 |
-
if($
|
1304 |
|
1305 |
// Save the instance in the modules array.
|
1306 |
self::$modules[$instance->slug] = $instance;
|
1307 |
|
1308 |
// Add the form to the instance.
|
1309 |
self::$modules[$instance->slug]->form = $form;
|
1310 |
-
self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['
|
1311 |
}
|
1312 |
}
|
1313 |
}
|
@@ -1369,7 +1437,7 @@ final class FLBuilderModel {
|
|
1369 |
if(!isset($categories[$module->category])) {
|
1370 |
$categories[$module->category] = array();
|
1371 |
}
|
1372 |
-
|
1373 |
$categories[$module->category][$module->name] = $module;
|
1374 |
}
|
1375 |
else {
|
@@ -1591,7 +1659,7 @@ final class FLBuilderModel {
|
|
1591 |
$defaults = new StdClass();
|
1592 |
|
1593 |
if(isset(self::$modules[$type]->form)) {
|
1594 |
-
$defaults = self::get_settings_form_defaults(
|
1595 |
$defaults->type = $type;
|
1596 |
}
|
1597 |
|
@@ -1655,6 +1723,14 @@ final class FLBuilderModel {
|
|
1655 |
self::$settings_forms[$id] = $form;
|
1656 |
}
|
1657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1658 |
/**
|
1659 |
* @method get_settings_form_fields
|
1660 |
*/
|
@@ -1680,10 +1756,32 @@ final class FLBuilderModel {
|
|
1680 |
/**
|
1681 |
* @method get_settings_form_defaults
|
1682 |
*/
|
1683 |
-
static public function get_settings_form_defaults($
|
1684 |
{
|
1685 |
-
|
1686 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1687 |
foreach($tabs as $tab) {
|
1688 |
if(isset($tab['sections'])) {
|
1689 |
foreach($tab['sections'] as $section) {
|
@@ -1705,8 +1803,11 @@ final class FLBuilderModel {
|
|
1705 |
}
|
1706 |
}
|
1707 |
}
|
|
|
|
|
|
|
1708 |
|
1709 |
-
return $
|
1710 |
}
|
1711 |
|
1712 |
/**
|
@@ -1796,7 +1897,7 @@ final class FLBuilderModel {
|
|
1796 |
*/
|
1797 |
static public function get_global_defaults()
|
1798 |
{
|
1799 |
-
return self::get_settings_form_defaults(
|
1800 |
}
|
1801 |
|
1802 |
/**
|
@@ -2478,6 +2579,35 @@ final class FLBuilderModel {
|
|
2478 |
}
|
2479 |
}
|
2480 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2481 |
/**
|
2482 |
* @method get_editing_capability
|
2483 |
*/
|
@@ -2507,6 +2637,14 @@ final class FLBuilderModel {
|
|
2507 |
}
|
2508 |
}
|
2509 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2510 |
/**
|
2511 |
* We don't delete _fl_builder_enabled, _fl_builder_data and _fl_builder_draft
|
2512 |
* so layouts can be recovered should the plugin be installed again.
|
@@ -2522,25 +2660,23 @@ final class FLBuilderModel {
|
|
2522 |
delete_option('_fl_builder_enabled_modules');
|
2523 |
delete_option('_fl_builder_enabled_templates');
|
2524 |
delete_option('_fl_builder_post_types');
|
|
|
2525 |
delete_option('_fl_builder_branding');
|
2526 |
delete_option('_fl_builder_editing_capability');
|
2527 |
|
2528 |
-
// Delete
|
2529 |
-
$
|
2530 |
-
$
|
2531 |
-
|
2532 |
-
foreach($cache_files as $file) {
|
2533 |
-
unlink($file);
|
2534 |
-
}
|
2535 |
-
|
2536 |
-
rmdir($cache_dir['path']);
|
2537 |
|
2538 |
// Deactivate and delete the plugin.
|
2539 |
-
deactivate_plugins(array(
|
2540 |
-
delete_plugins(array(
|
2541 |
|
2542 |
// Redirect to the plugins page.
|
2543 |
wp_redirect(admin_url('plugins.php?deleted=true&plugin_status=all&paged=1&s='));
|
|
|
|
|
2544 |
}
|
2545 |
}
|
2546 |
}
|
30 |
*/
|
31 |
static public $settings_forms = array();
|
32 |
|
33 |
+
/**
|
34 |
+
* @property $settings_form_defaults
|
35 |
+
* @type array
|
36 |
+
*/
|
37 |
+
static public $settings_form_defaults = array();
|
38 |
+
|
39 |
/**
|
40 |
* @property $modules
|
41 |
* @type array
|
147 |
return set_url_scheme( $url );
|
148 |
}
|
149 |
|
150 |
+
/**
|
151 |
+
* @method get_upgrade_url
|
152 |
+
*/
|
153 |
+
static public function get_upgrade_url( $params = array() )
|
154 |
+
{
|
155 |
+
$url = FL_BUILDER_UPGRADE_URL . '?' . http_build_query( $params, '', '&' );
|
156 |
+
|
157 |
+
return apply_filters( 'fl_builder_upgrade_url', $url );
|
158 |
+
}
|
159 |
+
|
160 |
/**
|
161 |
* @method get_post_data
|
162 |
*/
|
258 |
*/
|
259 |
static public function is_ssl()
|
260 |
{
|
261 |
+
if ( is_ssl() ) {
|
262 |
+
return true;
|
263 |
+
}
|
264 |
+
else if ( 0 === stripos( get_option( 'siteurl' ), 'https://' ) ) {
|
265 |
+
return true;
|
266 |
+
}
|
267 |
+
else if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && 'https' == $_SERVER['HTTP_X_FORWARDED_PROTO'] ) {
|
268 |
+
return true;
|
269 |
+
}
|
270 |
+
|
271 |
+
return false;
|
272 |
}
|
273 |
|
274 |
/**
|
434 |
}
|
435 |
|
436 |
/**
|
437 |
+
* @method get_upload_dir
|
438 |
*/
|
439 |
+
static public function get_upload_dir()
|
440 |
{
|
441 |
+
$wp_info = wp_upload_dir();
|
442 |
+
$dir_name = basename( FL_BUILDER_DIR );
|
443 |
+
|
444 |
+
// We use bb-plugin for the lite version as well.
|
445 |
+
if ( $dir_name == 'beaver-builder-lite-version' ) {
|
446 |
+
$dir_name = 'bb-plugin';
|
447 |
+
}
|
448 |
|
449 |
// SSL workaround.
|
450 |
+
if ( self::is_ssl() ) {
|
451 |
+
$wp_info['baseurl'] = str_ireplace( 'http://', 'https://', $wp_info['baseurl'] );
|
452 |
+
}
|
453 |
+
|
454 |
+
// Build the paths.
|
455 |
+
$dir_info = array(
|
456 |
+
'path' => $wp_info['basedir'] . '/' . $dir_name . '/',
|
457 |
+
'url' => $wp_info['baseurl'] . '/' . $dir_name . '/'
|
458 |
+
);
|
459 |
+
|
460 |
+
// Create the upload dir if it doesn't exist.
|
461 |
+
if ( ! file_exists( $dir_info['path'] ) ) {
|
462 |
+
mkdir( $dir_info['path'] );
|
463 |
+
}
|
464 |
+
|
465 |
+
return $dir_info;
|
466 |
+
}
|
467 |
+
|
468 |
+
/**
|
469 |
+
* @method get_cache_dir
|
470 |
+
*/
|
471 |
+
static public function get_cache_dir( $name = 'cache' )
|
472 |
+
{
|
473 |
+
$upload_info = self::get_upload_dir();
|
474 |
+
$allowed = array( 'cache', 'icons' );
|
475 |
+
|
476 |
+
// Make sure the dir name is allowed.
|
477 |
+
if ( ! in_array( $name, $allowed ) ) {
|
478 |
+
return false;
|
479 |
}
|
480 |
|
481 |
// Build the paths.
|
482 |
$dir_info = array(
|
483 |
+
'path' => $upload_info['path'] . $name . '/',
|
484 |
+
'url' => $upload_info['url'] . $name . '/'
|
485 |
);
|
486 |
|
487 |
// Create the cache dir if it doesn't exist.
|
488 |
+
if( ! file_exists( $dir_info['path'] ) ) {
|
489 |
+
mkdir( $dir_info['path'] );
|
490 |
}
|
491 |
|
492 |
return $dir_info;
|
1044 |
*/
|
1045 |
static public function get_row_defaults()
|
1046 |
{
|
1047 |
+
return self::get_settings_form_defaults( 'row' );
|
1048 |
}
|
1049 |
|
1050 |
/**
|
1307 |
*/
|
1308 |
static public function get_col_defaults()
|
1309 |
{
|
1310 |
+
return self::get_settings_form_defaults( 'col' );
|
1311 |
}
|
1312 |
|
1313 |
/**
|
1357 |
|
1358 |
// Create a new instance of the module.
|
1359 |
$instance = new $class();
|
1360 |
+
|
1361 |
+
// Log an error if a module with this slug already exists.
|
1362 |
+
if ( isset( self::$modules[ $instance->slug ] ) ) {
|
1363 |
+
error_log( sprintf( _x( 'A module with the filename %s.php already exists! Please namespace your module filenames to ensure compatibility with Beaver Builder.', '%s stands for the module filename', 'fl-builder' ), $instance->slug ) );
|
1364 |
+
return;
|
1365 |
+
}
|
1366 |
+
|
1367 |
+
// See if the module is enabled or not.
|
1368 |
+
$enabled = apply_filters( 'fl_builder_register_module', $instance->enabled, $instance );
|
1369 |
|
1370 |
// Only register modules that are enabled.
|
1371 |
+
if( $enabled ) {
|
1372 |
|
1373 |
// Save the instance in the modules array.
|
1374 |
self::$modules[$instance->slug] = $instance;
|
1375 |
|
1376 |
// Add the form to the instance.
|
1377 |
self::$modules[$instance->slug]->form = $form;
|
1378 |
+
self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['module_advanced'];
|
1379 |
}
|
1380 |
}
|
1381 |
}
|
1437 |
if(!isset($categories[$module->category])) {
|
1438 |
$categories[$module->category] = array();
|
1439 |
}
|
1440 |
+
|
1441 |
$categories[$module->category][$module->name] = $module;
|
1442 |
}
|
1443 |
else {
|
1659 |
$defaults = new StdClass();
|
1660 |
|
1661 |
if(isset(self::$modules[$type]->form)) {
|
1662 |
+
$defaults = self::get_settings_form_defaults( $type );
|
1663 |
$defaults->type = $type;
|
1664 |
}
|
1665 |
|
1723 |
self::$settings_forms[$id] = $form;
|
1724 |
}
|
1725 |
|
1726 |
+
/**
|
1727 |
+
* @method get_settings_form
|
1728 |
+
*/
|
1729 |
+
static public function get_settings_form( $id )
|
1730 |
+
{
|
1731 |
+
return self::$settings_forms[ $id ];
|
1732 |
+
}
|
1733 |
+
|
1734 |
/**
|
1735 |
* @method get_settings_form_fields
|
1736 |
*/
|
1756 |
/**
|
1757 |
* @method get_settings_form_defaults
|
1758 |
*/
|
1759 |
+
static public function get_settings_form_defaults( $type )
|
1760 |
{
|
1761 |
+
// Check to see if the defaults are cached first.
|
1762 |
+
if ( isset( self::$settings_form_defaults[ $type ] ) ) {
|
1763 |
+
return self::$settings_form_defaults[ $type ];
|
1764 |
+
}
|
1765 |
+
|
1766 |
+
// They aren't cached, let's get them.
|
1767 |
+
$defaults = new StdClass();
|
1768 |
+
|
1769 |
+
// Check the registered forms first.
|
1770 |
+
if ( isset( self::$settings_forms[ $type ] ) ) {
|
1771 |
+
$form_type = $type;
|
1772 |
+
$tabs = self::$settings_forms[ $type ]['tabs'];
|
1773 |
+
}
|
1774 |
+
// If it's not a registered form, it must be a module form.
|
1775 |
+
else if ( isset( self::$modules[ $type ] ) ) {
|
1776 |
+
$form_type = $type . '-module';
|
1777 |
+
$tabs = self::$modules[ $type ]->form;
|
1778 |
+
}
|
1779 |
+
// The form can't be found.
|
1780 |
+
else {
|
1781 |
+
return $defaults;
|
1782 |
+
}
|
1783 |
+
|
1784 |
+
// Loop through the tabs and get the defaults.
|
1785 |
foreach($tabs as $tab) {
|
1786 |
if(isset($tab['sections'])) {
|
1787 |
foreach($tab['sections'] as $section) {
|
1803 |
}
|
1804 |
}
|
1805 |
}
|
1806 |
+
|
1807 |
+
// Cache the defaults.
|
1808 |
+
self::$settings_form_defaults[ $type ] = apply_filters( 'fl_builder_settings_form_defaults', $defaults, $form_type );
|
1809 |
|
1810 |
+
return self::$settings_form_defaults[ $type ];
|
1811 |
}
|
1812 |
|
1813 |
/**
|
1897 |
*/
|
1898 |
static public function get_global_defaults()
|
1899 |
{
|
1900 |
+
return self::get_settings_form_defaults( 'global' );
|
1901 |
}
|
1902 |
|
1903 |
/**
|
2579 |
}
|
2580 |
}
|
2581 |
|
2582 |
+
/**
|
2583 |
+
* @method get_enabled_icons
|
2584 |
+
*/
|
2585 |
+
static public function get_enabled_icons()
|
2586 |
+
{
|
2587 |
+
$key = '_fl_builder_enabled_icons';
|
2588 |
+
$default = array( 'font-awesome', 'foundation-icons', 'dashicons' );
|
2589 |
+
|
2590 |
+
// Get the value.
|
2591 |
+
if(is_network_admin()) {
|
2592 |
+
$value = get_site_option($key);
|
2593 |
+
}
|
2594 |
+
else if(class_exists('FLBuilderMultisiteSettings')) {
|
2595 |
+
$value = get_option($key);
|
2596 |
+
$value = !$value ? get_site_option($key) : $value;
|
2597 |
+
}
|
2598 |
+
else {
|
2599 |
+
$value = get_option($key);
|
2600 |
+
}
|
2601 |
+
|
2602 |
+
// Return the value.
|
2603 |
+
if(!$value) {
|
2604 |
+
return $default;
|
2605 |
+
}
|
2606 |
+
else {
|
2607 |
+
return $value;
|
2608 |
+
}
|
2609 |
+
}
|
2610 |
+
|
2611 |
/**
|
2612 |
* @method get_editing_capability
|
2613 |
*/
|
2637 |
}
|
2638 |
}
|
2639 |
|
2640 |
+
/**
|
2641 |
+
* @method plugin_basename
|
2642 |
+
*/
|
2643 |
+
static public function plugin_basename()
|
2644 |
+
{
|
2645 |
+
return plugin_basename( FL_BUILDER_DIR . 'fl-builder.php' );
|
2646 |
+
}
|
2647 |
+
|
2648 |
/**
|
2649 |
* We don't delete _fl_builder_enabled, _fl_builder_data and _fl_builder_draft
|
2650 |
* so layouts can be recovered should the plugin be installed again.
|
2660 |
delete_option('_fl_builder_enabled_modules');
|
2661 |
delete_option('_fl_builder_enabled_templates');
|
2662 |
delete_option('_fl_builder_post_types');
|
2663 |
+
delete_option('_fl_builder_enabled_icons');
|
2664 |
delete_option('_fl_builder_branding');
|
2665 |
delete_option('_fl_builder_editing_capability');
|
2666 |
|
2667 |
+
// Delete uploaded files and folders.
|
2668 |
+
$upload_dir = self::get_upload_dir();
|
2669 |
+
$filesystem = FLBuilderUtils::get_filesystem();
|
2670 |
+
$filesystem->rmdir( $upload_dir['path'], true );
|
|
|
|
|
|
|
|
|
|
|
2671 |
|
2672 |
// Deactivate and delete the plugin.
|
2673 |
+
deactivate_plugins(array(self::plugin_basename()), false, is_network_admin());
|
2674 |
+
delete_plugins(array(self::plugin_basename()));
|
2675 |
|
2676 |
// Redirect to the plugins page.
|
2677 |
wp_redirect(admin_url('plugins.php?deleted=true&plugin_status=all&paged=1&s='));
|
2678 |
+
|
2679 |
+
exit;
|
2680 |
}
|
2681 |
}
|
2682 |
}
|
classes/class-fl-builder-module.php
CHANGED
@@ -151,7 +151,6 @@ class FLBuilderModule {
|
|
151 |
else if(stristr($dir_path, get_template_directory())) {
|
152 |
$this->url = str_replace(get_template_directory(), get_template_directory_uri(), $dir_path) . '/';
|
153 |
$this->dir = $dir_path . '/';
|
154 |
-
error_log($this->url);
|
155 |
}
|
156 |
else {
|
157 |
$this->url = isset($params['url']) ? $params['url'] : FL_BUILDER_URL . 'modules/' . $this->slug . '/';
|
151 |
else if(stristr($dir_path, get_template_directory())) {
|
152 |
$this->url = str_replace(get_template_directory(), get_template_directory_uri(), $dir_path) . '/';
|
153 |
$this->dir = $dir_path . '/';
|
|
|
154 |
}
|
155 |
else {
|
156 |
$this->url = isset($params['url']) ? $params['url'] : FL_BUILDER_URL . 'modules/' . $this->slug . '/';
|
classes/class-fl-builder-update.php
CHANGED
@@ -55,6 +55,11 @@ final class FLBuilderUpdate {
|
|
55 |
self::v_1_2_8();
|
56 |
}
|
57 |
|
|
|
|
|
|
|
|
|
|
|
58 |
// Clear all asset cache.
|
59 |
FLBuilderModel::delete_all_asset_cache();
|
60 |
|
@@ -347,4 +352,22 @@ final class FLBuilderUpdate {
|
|
347 |
|
348 |
return $settings;
|
349 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
}
|
55 |
self::v_1_2_8();
|
56 |
}
|
57 |
|
58 |
+
// Update to 1.4.6 or greater.
|
59 |
+
if(version_compare($version, '1.4.6', '<')) {
|
60 |
+
self::v_1_4_6();
|
61 |
+
}
|
62 |
+
|
63 |
// Clear all asset cache.
|
64 |
FLBuilderModel::delete_all_asset_cache();
|
65 |
|
352 |
|
353 |
return $settings;
|
354 |
}
|
355 |
+
|
356 |
+
/**
|
357 |
+
* Update to version 1.4.6 or later.
|
358 |
+
*
|
359 |
+
* @method v_1_4_6
|
360 |
+
* @private
|
361 |
+
*/
|
362 |
+
static private function v_1_4_6()
|
363 |
+
{
|
364 |
+
// Remove the old fl-builder uploads folder.
|
365 |
+
$filesystem = FLBuilderUtils::get_filesystem();
|
366 |
+
$upload_dir = wp_upload_dir();
|
367 |
+
$path = trailingslashit( $upload_dir['basedir'] ) . 'fl-builder';
|
368 |
+
|
369 |
+
if ( file_exists( $path ) ) {
|
370 |
+
$filesystem->rmdir( $path, true );
|
371 |
+
}
|
372 |
+
}
|
373 |
}
|
classes/class-fl-builder-utils.php
CHANGED
@@ -9,6 +9,36 @@
|
|
9 |
final class FLBuilderUtils {
|
10 |
|
11 |
/**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
* @method snippetwop
|
13 |
*/
|
14 |
static public function snippetwop($text, $length = 64, $tail = "...")
|
@@ -28,18 +58,4 @@ final class FLBuilderUtils {
|
|
28 |
|
29 |
return $text;
|
30 |
}
|
31 |
-
|
32 |
-
/**
|
33 |
-
* @method array_to_object
|
34 |
-
*/
|
35 |
-
static public function array_to_object($array)
|
36 |
-
{
|
37 |
-
$object = new StdClass();
|
38 |
-
|
39 |
-
foreach($array as $key => $val) {
|
40 |
-
$object->$key = $val;
|
41 |
-
}
|
42 |
-
|
43 |
-
return $object;
|
44 |
-
}
|
45 |
}
|
9 |
final class FLBuilderUtils {
|
10 |
|
11 |
/**
|
12 |
+
* Get an instance of WP_Filesystem_Direct.
|
13 |
+
*
|
14 |
+
* @method get_filesystem
|
15 |
+
*/
|
16 |
+
static public function get_filesystem()
|
17 |
+
{
|
18 |
+
global $wp_filesystem;
|
19 |
+
|
20 |
+
require_once ABSPATH .'/wp-admin/includes/file.php';
|
21 |
+
|
22 |
+
add_filter('filesystem_method', 'FLBuilderUtils::filesystem_method');
|
23 |
+
|
24 |
+
WP_Filesystem();
|
25 |
+
|
26 |
+
remove_filter('filesystem_method', 'FLBuilderUtils::filesystem_method');
|
27 |
+
|
28 |
+
return $wp_filesystem;
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* @method filesystem_method
|
33 |
+
*/
|
34 |
+
static public function filesystem_method()
|
35 |
+
{
|
36 |
+
return 'direct';
|
37 |
+
}
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Return a snippet without punctuation at the end.
|
41 |
+
*
|
42 |
* @method snippetwop
|
43 |
*/
|
44 |
static public function snippetwop($text, $length = 64, $tail = "...")
|
58 |
|
59 |
return $text;
|
60 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
classes/class-fl-builder.php
CHANGED
@@ -25,7 +25,7 @@ final class FLBuilder {
|
|
25 |
$mofile_global = trailingslashit( WP_LANG_DIR ) . 'plugins/beaver-builder/' . $locale . '.mo';
|
26 |
|
27 |
if ( file_exists( $mofile_local ) ) {
|
28 |
-
|
29 |
return load_textdomain( 'fl-builder', $mofile_local );
|
30 |
}
|
31 |
else if ( file_exists( $mofile_global ) ) {
|
@@ -352,6 +352,9 @@ final class FLBuilder {
|
|
352 |
wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
|
353 |
wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
|
354 |
wp_enqueue_style('fl-builder', $css_url . 'fl-builder.css', array(), $ver);
|
|
|
|
|
|
|
355 |
|
356 |
/* RTL Support */
|
357 |
if(is_rtl()) {
|
@@ -716,14 +719,14 @@ final class FLBuilder {
|
|
716 |
$post_data = FLBuilderModel::get_post_data();
|
717 |
$type = isset($post_data['type']) ? $post_data['type'] : $type;
|
718 |
$settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
|
719 |
-
$form = FLBuilderModel
|
720 |
|
721 |
if(isset($settings) && !empty($settings)) {
|
722 |
-
$defaults = FLBuilderModel::get_settings_form_defaults($
|
723 |
$settings = (object)array_merge((array)$defaults, (array)$settings);
|
724 |
}
|
725 |
else {
|
726 |
-
$settings = FLBuilderModel::get_settings_form_defaults($
|
727 |
}
|
728 |
|
729 |
self::render_settings(array(
|
@@ -806,8 +809,8 @@ final class FLBuilder {
|
|
806 |
*/
|
807 |
static public function render_user_template_settings()
|
808 |
{
|
809 |
-
$defaults = FLBuilderModel::get_settings_form_defaults(
|
810 |
-
$form = FLBuilderModel
|
811 |
|
812 |
FLBuilder::render_settings(array(
|
813 |
'class' => 'fl-builder-user-template-settings',
|
@@ -889,41 +892,34 @@ final class FLBuilder {
|
|
889 |
}
|
890 |
|
891 |
/**
|
892 |
-
* @method
|
893 |
*/
|
894 |
-
static public function
|
895 |
{
|
896 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
897 |
echo ' fl-row-' . $row->settings->width . '-width';
|
898 |
echo ' fl-row-bg-' . $row->settings->bg_type;
|
899 |
echo ' fl-node-' . $row->node;
|
900 |
|
901 |
-
if(!empty($row->settings->class)) {
|
902 |
echo apply_filters( 'fl_builder_row_custom_class', ' ' . $row->settings->class, $row );
|
903 |
}
|
904 |
-
if(!empty($row->settings->responsive_display)) {
|
905 |
echo ' fl-visible-' . $row->settings->responsive_display;
|
906 |
}
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
*/
|
912 |
-
static public function render_row_content_class($row)
|
913 |
-
{
|
914 |
-
echo 'fl-row-content';
|
915 |
-
echo ' fl-row-' . $row->settings->content_width . '-width';
|
916 |
-
echo ' fl-node-content';
|
917 |
-
}
|
918 |
-
|
919 |
-
/**
|
920 |
-
* @method render_row_data_attrs
|
921 |
-
*/
|
922 |
-
static public function render_row_data_attrs($row)
|
923 |
-
{
|
924 |
echo ' data-node="' . $row->node . '"';
|
925 |
|
926 |
-
if($row->settings->bg_type == 'parallax' && !empty($row->settings->bg_parallax_image_src)) {
|
927 |
echo ' data-parallax-speed="' . $row->settings->bg_parallax_speed . '"';
|
928 |
echo ' data-parallax-image="' . $row->settings->bg_parallax_image_src . '"';
|
929 |
}
|
@@ -947,6 +943,16 @@ final class FLBuilder {
|
|
947 |
}
|
948 |
}
|
949 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
950 |
/**
|
951 |
* @method render_row_settings
|
952 |
*/
|
@@ -994,6 +1000,15 @@ final class FLBuilder {
|
|
994 |
}
|
995 |
}
|
996 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
997 |
/**
|
998 |
* @method render_column_settings
|
999 |
*/
|
@@ -1014,23 +1029,38 @@ final class FLBuilder {
|
|
1014 |
}
|
1015 |
|
1016 |
/**
|
1017 |
-
* @method
|
1018 |
*/
|
1019 |
-
static public function
|
1020 |
{
|
1021 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
|
1023 |
-
if($col->settings->size <= 50) {
|
1024 |
echo ' fl-col-small';
|
1025 |
}
|
1026 |
-
|
|
|
|
|
|
|
1027 |
echo apply_filters( 'fl_builder_column_custom_class', ' ' . $col->settings->class, $col );
|
1028 |
}
|
1029 |
-
if(!empty($col->settings->responsive_display)) {
|
1030 |
echo ' fl-visible-' . $col->settings->responsive_display;
|
1031 |
}
|
1032 |
-
|
1033 |
-
echo '
|
|
|
|
|
|
|
|
|
|
|
|
|
1034 |
}
|
1035 |
|
1036 |
/**
|
@@ -1122,7 +1152,6 @@ final class FLBuilder {
|
|
1122 |
{
|
1123 |
// Settings
|
1124 |
$defaults = FLBuilderModel::get_module_defaults($type);
|
1125 |
-
$settings = FLBuilderUtils::array_to_object($settings);
|
1126 |
$settings = (object)array_merge((array)$defaults, (array)$settings);
|
1127 |
|
1128 |
// Module
|
@@ -1137,34 +1166,37 @@ final class FLBuilder {
|
|
1137 |
}
|
1138 |
|
1139 |
/**
|
1140 |
-
* @method
|
1141 |
*/
|
1142 |
-
static public function
|
1143 |
{
|
1144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1145 |
echo ' fl-module-' . $module->settings->type;
|
1146 |
echo ' fl-node-' . $module->node;
|
1147 |
|
1148 |
-
if(!empty($module->settings->class)) {
|
1149 |
echo apply_filters( 'fl_builder_module_custom_class', ' ' . $module->settings->class, $module );
|
1150 |
}
|
1151 |
-
if(!empty($module->settings->responsive_display)) {
|
1152 |
echo ' fl-visible-' . $module->settings->responsive_display;
|
1153 |
}
|
1154 |
-
if(!empty($module->settings->animation)) {
|
1155 |
echo ' fl-animation fl-' . $module->settings->animation;
|
1156 |
}
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
*/
|
1162 |
-
static public function render_module_data_attrs($module)
|
1163 |
-
{
|
1164 |
echo ' data-node="' . $module->node . '" ';
|
1165 |
echo ' data-animation-delay="' . $module->settings->animation_delay . '" ';
|
1166 |
|
1167 |
-
if(FLBuilderModel::is_builder_active()) {
|
1168 |
echo ' data-parent="' . $module->parent . '" ';
|
1169 |
echo ' data-type="' . $module->settings->type . '" ';
|
1170 |
echo ' data-name="' . $module->name . '" ';
|
@@ -1179,7 +1211,6 @@ final class FLBuilder {
|
|
1179 |
// Settings
|
1180 |
$global_settings = FLBuilderModel::get_global_settings();
|
1181 |
$defaults = FLBuilderModel::get_module_defaults($type);
|
1182 |
-
$settings = FLBuilderUtils::array_to_object($settings);
|
1183 |
$settings = (object)array_merge((array)$defaults, (array)$settings);
|
1184 |
|
1185 |
// Module
|
25 |
$mofile_global = trailingslashit( WP_LANG_DIR ) . 'plugins/beaver-builder/' . $locale . '.mo';
|
26 |
|
27 |
if ( file_exists( $mofile_local ) ) {
|
28 |
+
//Look in local /wp-content/plugins/beaver-builder/languages/ folder
|
29 |
return load_textdomain( 'fl-builder', $mofile_local );
|
30 |
}
|
31 |
else if ( file_exists( $mofile_global ) ) {
|
352 |
wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
|
353 |
wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
|
354 |
wp_enqueue_style('fl-builder', $css_url . 'fl-builder.css', array(), $ver);
|
355 |
+
|
356 |
+
/* Custom Icons */
|
357 |
+
FLBuilderIcons::enqueue_all_custom_icons_styles();
|
358 |
|
359 |
/* RTL Support */
|
360 |
if(is_rtl()) {
|
719 |
$post_data = FLBuilderModel::get_post_data();
|
720 |
$type = isset($post_data['type']) ? $post_data['type'] : $type;
|
721 |
$settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
|
722 |
+
$form = FLBuilderModel::get_settings_form( $type );
|
723 |
|
724 |
if(isset($settings) && !empty($settings)) {
|
725 |
+
$defaults = FLBuilderModel::get_settings_form_defaults( $type );
|
726 |
$settings = (object)array_merge((array)$defaults, (array)$settings);
|
727 |
}
|
728 |
else {
|
729 |
+
$settings = FLBuilderModel::get_settings_form_defaults( $type );
|
730 |
}
|
731 |
|
732 |
self::render_settings(array(
|
809 |
*/
|
810 |
static public function render_user_template_settings()
|
811 |
{
|
812 |
+
$defaults = FLBuilderModel::get_settings_form_defaults( 'user_template' );
|
813 |
+
$form = FLBuilderModel::get_settings_form( 'user_template' );
|
814 |
|
815 |
FLBuilder::render_settings(array(
|
816 |
'class' => 'fl-builder-user-template-settings',
|
892 |
}
|
893 |
|
894 |
/**
|
895 |
+
* @method render_row_attributes
|
896 |
*/
|
897 |
+
static public function render_row_attributes( $row )
|
898 |
{
|
899 |
+
// ID
|
900 |
+
if ( ! empty( $row->settings->id ) ) {
|
901 |
+
echo ' id="' . $row->settings->id . '"';
|
902 |
+
}
|
903 |
+
|
904 |
+
// Class
|
905 |
+
echo ' class="fl-row';
|
906 |
echo ' fl-row-' . $row->settings->width . '-width';
|
907 |
echo ' fl-row-bg-' . $row->settings->bg_type;
|
908 |
echo ' fl-node-' . $row->node;
|
909 |
|
910 |
+
if ( ! empty( $row->settings->class ) ) {
|
911 |
echo apply_filters( 'fl_builder_row_custom_class', ' ' . $row->settings->class, $row );
|
912 |
}
|
913 |
+
if ( ! empty( $row->settings->responsive_display ) ) {
|
914 |
echo ' fl-visible-' . $row->settings->responsive_display;
|
915 |
}
|
916 |
+
|
917 |
+
echo '"';
|
918 |
+
|
919 |
+
// Data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
920 |
echo ' data-node="' . $row->node . '"';
|
921 |
|
922 |
+
if ( $row->settings->bg_type == 'parallax' && ! empty( $row->settings->bg_parallax_image_src ) ) {
|
923 |
echo ' data-parallax-speed="' . $row->settings->bg_parallax_speed . '"';
|
924 |
echo ' data-parallax-image="' . $row->settings->bg_parallax_image_src . '"';
|
925 |
}
|
943 |
}
|
944 |
}
|
945 |
|
946 |
+
/**
|
947 |
+
* @method render_row_content_class
|
948 |
+
*/
|
949 |
+
static public function render_row_content_class($row)
|
950 |
+
{
|
951 |
+
echo 'fl-row-content';
|
952 |
+
echo ' fl-row-' . $row->settings->content_width . '-width';
|
953 |
+
echo ' fl-node-content';
|
954 |
+
}
|
955 |
+
|
956 |
/**
|
957 |
* @method render_row_settings
|
958 |
*/
|
1000 |
}
|
1001 |
}
|
1002 |
|
1003 |
+
/**
|
1004 |
+
* @method render_column_group_attributes
|
1005 |
+
*/
|
1006 |
+
static public function render_column_group_attributes( $group )
|
1007 |
+
{
|
1008 |
+
echo ' class="fl-col-group fl-node-' . $group->node . '"';
|
1009 |
+
echo ' data-node="' . $group->node . '"';
|
1010 |
+
}
|
1011 |
+
|
1012 |
/**
|
1013 |
* @method render_column_settings
|
1014 |
*/
|
1029 |
}
|
1030 |
|
1031 |
/**
|
1032 |
+
* @method render_column_attributes
|
1033 |
*/
|
1034 |
+
static public function render_column_attributes( $col )
|
1035 |
{
|
1036 |
+
// ID
|
1037 |
+
if ( ! empty( $col->settings->id ) ) {
|
1038 |
+
echo ' id="' . $col->settings->id . '"';
|
1039 |
+
}
|
1040 |
+
|
1041 |
+
// Class
|
1042 |
+
echo ' class="fl-col';
|
1043 |
|
1044 |
+
if ( $col->settings->size <= 50 ) {
|
1045 |
echo ' fl-col-small';
|
1046 |
}
|
1047 |
+
|
1048 |
+
echo ' fl-node-' . $col->node;
|
1049 |
+
|
1050 |
+
if ( ! empty( $col->settings->class ) ) {
|
1051 |
echo apply_filters( 'fl_builder_column_custom_class', ' ' . $col->settings->class, $col );
|
1052 |
}
|
1053 |
+
if ( ! empty( $col->settings->responsive_display ) ) {
|
1054 |
echo ' fl-visible-' . $col->settings->responsive_display;
|
1055 |
}
|
1056 |
+
|
1057 |
+
echo '"';
|
1058 |
+
|
1059 |
+
// Width
|
1060 |
+
echo ' style="width: ' . $col->settings->size . '%;"';
|
1061 |
+
|
1062 |
+
// Data
|
1063 |
+
echo ' data-node="' . $col->node . '"';
|
1064 |
}
|
1065 |
|
1066 |
/**
|
1152 |
{
|
1153 |
// Settings
|
1154 |
$defaults = FLBuilderModel::get_module_defaults($type);
|
|
|
1155 |
$settings = (object)array_merge((array)$defaults, (array)$settings);
|
1156 |
|
1157 |
// Module
|
1166 |
}
|
1167 |
|
1168 |
/**
|
1169 |
+
* @method render_module_attributes
|
1170 |
*/
|
1171 |
+
static public function render_module_attributes( $module )
|
1172 |
{
|
1173 |
+
// ID
|
1174 |
+
if ( ! empty( $module->settings->id ) ) {
|
1175 |
+
echo ' id="' . $module->settings->id . '"';
|
1176 |
+
}
|
1177 |
+
|
1178 |
+
// Class
|
1179 |
+
echo ' class="fl-module';
|
1180 |
echo ' fl-module-' . $module->settings->type;
|
1181 |
echo ' fl-node-' . $module->node;
|
1182 |
|
1183 |
+
if ( ! empty( $module->settings->class ) ) {
|
1184 |
echo apply_filters( 'fl_builder_module_custom_class', ' ' . $module->settings->class, $module );
|
1185 |
}
|
1186 |
+
if ( ! empty( $module->settings->responsive_display ) ) {
|
1187 |
echo ' fl-visible-' . $module->settings->responsive_display;
|
1188 |
}
|
1189 |
+
if ( ! empty( $module->settings->animation ) ) {
|
1190 |
echo ' fl-animation fl-' . $module->settings->animation;
|
1191 |
}
|
1192 |
+
|
1193 |
+
echo '"';
|
1194 |
+
|
1195 |
+
// Data
|
|
|
|
|
|
|
1196 |
echo ' data-node="' . $module->node . '" ';
|
1197 |
echo ' data-animation-delay="' . $module->settings->animation_delay . '" ';
|
1198 |
|
1199 |
+
if ( FLBuilderModel::is_builder_active() ) {
|
1200 |
echo ' data-parent="' . $module->parent . '" ';
|
1201 |
echo ' data-type="' . $module->settings->type . '" ';
|
1202 |
echo ' data-name="' . $module->name . '" ';
|
1211 |
// Settings
|
1212 |
$global_settings = FLBuilderModel::get_global_settings();
|
1213 |
$defaults = FLBuilderModel::get_module_defaults($type);
|
|
|
1214 |
$settings = (object)array_merge((array)$defaults, (array)$settings);
|
1215 |
|
1216 |
// Module
|
css/fl-builder-admin-settings.css
CHANGED
@@ -58,13 +58,6 @@
|
|
58 |
margin-top: 15px;
|
59 |
width: 78%;
|
60 |
}
|
61 |
-
h2.fl-settings-content-header {
|
62 |
-
padding-top: 0;
|
63 |
-
font-size: 20px;
|
64 |
-
}
|
65 |
-
.fl-settings-content .fl-settings-save {
|
66 |
-
float: right;
|
67 |
-
}
|
68 |
|
69 |
/* Settings Forms
|
70 |
----------------------------------------------------------- */
|
@@ -97,133 +90,11 @@ h2.fl-settings-content-header {
|
|
97 |
display: block;
|
98 |
}
|
99 |
|
100 |
-
/*
|
101 |
-
----------------------------------------------------------- */
|
102 |
-
|
103 |
-
.fl-settings-section {
|
104 |
-
background: #fff;
|
105 |
-
border: 1px solid #e5e5e5;
|
106 |
-
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.04);
|
107 |
-
box-shadow: 0 1px 1px rgba(0,0,0,.04);
|
108 |
-
margin-bottom: 20px;
|
109 |
-
}
|
110 |
-
.fl-settings-section-header {
|
111 |
-
border-bottom: 1px solid #eee;
|
112 |
-
font-size: 14px;
|
113 |
-
padding: 8px 12px;
|
114 |
-
margin: 0;
|
115 |
-
line-height: 1.4;
|
116 |
-
}
|
117 |
-
|
118 |
-
/* Settings Form Fields
|
119 |
----------------------------------------------------------- */
|
120 |
|
121 |
-
.fl-
|
122 |
-
|
123 |
-
margin-right: 10px;
|
124 |
-
}
|
125 |
-
|
126 |
-
/* Tooltips */
|
127 |
-
.fl-tooltip {
|
128 |
-
display: inline-block;
|
129 |
-
margin: 0 5px;
|
130 |
-
position: relative;
|
131 |
-
top: 6px;
|
132 |
-
}
|
133 |
-
.fl-tooltip-icon {
|
134 |
-
background: url(../img/help.png) center center no-repeat;
|
135 |
-
cursor: pointer;
|
136 |
-
display: inline-block;
|
137 |
-
height: 20px;
|
138 |
-
width: 20px;
|
139 |
-
}
|
140 |
-
.fl-tooltip-text {
|
141 |
-
background: #fff;
|
142 |
-
border: 1px solid #ccc;
|
143 |
-
box-shadow: 0 0 5px #ccc;
|
144 |
-
-moz-box-shadow: 0 0 5px #ccc;
|
145 |
-
-webkit-box-shadow: 0 0 5px #ccc;
|
146 |
-
display: none;
|
147 |
-
font-weight: normal;
|
148 |
-
left: 23px;
|
149 |
-
padding: 10px 13px;
|
150 |
-
position: absolute;
|
151 |
-
top: -6px;
|
152 |
-
width: 250px;
|
153 |
-
}
|
154 |
-
|
155 |
-
/* Help After */
|
156 |
-
.fl-help-after {
|
157 |
-
display: inline-block;
|
158 |
-
padding-top: 10px;
|
159 |
-
}
|
160 |
-
|
161 |
-
/* Hidden */
|
162 |
-
.fl-hidden {
|
163 |
-
display: none;
|
164 |
-
}
|
165 |
-
|
166 |
-
/* Textarea */
|
167 |
-
.fl-settings-form textarea {
|
168 |
-
width: 100%;
|
169 |
-
}
|
170 |
-
|
171 |
-
/* Code editors */
|
172 |
-
.ace_editor {
|
173 |
-
border: 1px solid #e5e5e5;
|
174 |
-
}
|
175 |
-
|
176 |
-
/* Images */
|
177 |
-
.fl-img-wrap {
|
178 |
-
display: inline;
|
179 |
-
}
|
180 |
-
.fl-img {
|
181 |
-
display: block;
|
182 |
-
margin-bottom: 7px;
|
183 |
-
max-height: 75px;
|
184 |
-
}
|
185 |
-
.fl-img-empty .fl-img-select,
|
186 |
-
.fl-img-replace {
|
187 |
-
display: inline;
|
188 |
-
}
|
189 |
-
.fl-img-select,
|
190 |
-
.fl-img-empty .fl-img,
|
191 |
-
.fl-img-empty .fl-img-replace {
|
192 |
-
display: none;
|
193 |
-
}
|
194 |
-
|
195 |
-
/* Color Picker */
|
196 |
-
.fl-color-picker {
|
197 |
-
cursor: pointer;
|
198 |
-
height: 30px;
|
199 |
-
width: 48px;
|
200 |
-
}
|
201 |
-
.fl-color-picker.fl-empty .fl-color-picker-color {
|
202 |
-
background: url(../img/eyedropper.png) center center no-repeat;
|
203 |
-
}
|
204 |
-
.fl-color-picker .fl-color-picker-color {
|
205 |
-
border: 1px solid #ccc;
|
206 |
-
float: left;
|
207 |
-
height: 30px;
|
208 |
-
width: 30px;
|
209 |
-
}
|
210 |
-
.fl-color-picker.fl-empty .fl-color-picker-clear {
|
211 |
-
display: none;
|
212 |
-
}
|
213 |
-
.fl-color-picker .fl-color-picker-clear {
|
214 |
-
background: url(../img/x.png) center center no-repeat;
|
215 |
-
border: 1px solid #ccc;
|
216 |
-
border-left: none;
|
217 |
-
float: left;
|
218 |
-
height: 30px;
|
219 |
-
width: 15px;
|
220 |
-
}
|
221 |
-
.fl-color-picker .fl-color-picker-clear:hover {
|
222 |
-
background-color: #ededed;
|
223 |
-
}
|
224 |
-
.colorpicker input {
|
225 |
-
border: none;
|
226 |
-
color: #fff;
|
227 |
}
|
228 |
|
229 |
/* Media Query - Max Width 900px
|
58 |
margin-top: 15px;
|
59 |
width: 78%;
|
60 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
/* Settings Forms
|
63 |
----------------------------------------------------------- */
|
90 |
display: block;
|
91 |
}
|
92 |
|
93 |
+
/* Icons
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
----------------------------------------------------------- */
|
95 |
|
96 |
+
.fl-delete-icon-set {
|
97 |
+
color: #d34e2a;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
}
|
99 |
|
100 |
/* Media Query - Max Width 900px
|
css/fl-builder.css
CHANGED
@@ -73,10 +73,10 @@ html.fl-builder-edit {
|
|
73 |
display: inline-block;
|
74 |
text-decoration: none;
|
75 |
font-size: 13px !important;
|
76 |
-
line-height:
|
77 |
height: 28px;
|
78 |
margin: 0;
|
79 |
-
padding:
|
80 |
cursor: pointer;
|
81 |
border-width: 1px;
|
82 |
border-style: solid;
|
@@ -110,12 +110,12 @@ html.fl-builder-edit {
|
|
110 |
}
|
111 |
.fl-builder-button-large {
|
112 |
height: 30px;
|
113 |
-
line-height:
|
114 |
padding: 0 12px 2px;
|
115 |
}
|
116 |
.fl-builder-button-small {
|
117 |
font-size: 11px !important;
|
118 |
-
line-height:
|
119 |
height: 24px;
|
120 |
}
|
121 |
|
@@ -1146,6 +1146,13 @@ form.fl-builder-settings {
|
|
1146 |
border: 1px dashed #cccccc;
|
1147 |
height: 30px;
|
1148 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1149 |
|
1150 |
/* Wordpress Widgets */
|
1151 |
.fl-builder-widget-settings input {
|
73 |
display: inline-block;
|
74 |
text-decoration: none;
|
75 |
font-size: 13px !important;
|
76 |
+
line-height: 13px !important;
|
77 |
height: 28px;
|
78 |
margin: 0;
|
79 |
+
padding: 7px 10px;
|
80 |
cursor: pointer;
|
81 |
border-width: 1px;
|
82 |
border-style: solid;
|
110 |
}
|
111 |
.fl-builder-button-large {
|
112 |
height: 30px;
|
113 |
+
line-height: 30px !important;
|
114 |
padding: 0 12px 2px;
|
115 |
}
|
116 |
.fl-builder-button-small {
|
117 |
font-size: 11px !important;
|
118 |
+
line-height: 11px !important;
|
119 |
height: 24px;
|
120 |
}
|
121 |
|
1146 |
border: 1px dashed #cccccc;
|
1147 |
height: 30px;
|
1148 |
}
|
1149 |
+
.fl-builder-field-actions-single {
|
1150 |
+
width: auto;
|
1151 |
+
}
|
1152 |
+
.fl-builder-field-actions-single i.fl-builder-field-delete,
|
1153 |
+
.fl-builder-field-actions-single i.fl-builder-field-move {
|
1154 |
+
display: none;
|
1155 |
+
}
|
1156 |
|
1157 |
/* Wordpress Widgets */
|
1158 |
.fl-builder-widget-settings input {
|
css/fl-lightbox.css
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
position: relative;
|
34 |
z-index: 100011;
|
35 |
}
|
36 |
-
.fl-lightbox
|
37 |
color: #333;
|
38 |
font-family: Helvetica, Verdana, sans-serif;
|
39 |
font-size: 12px;
|
33 |
position: relative;
|
34 |
z-index: 100011;
|
35 |
}
|
36 |
+
.fl-lightbox *:not(i) {
|
37 |
color: #333;
|
38 |
font-family: Helvetica, Verdana, sans-serif;
|
39 |
font-size: 12px;
|
fl-builder.php
CHANGED
@@ -1,25 +1,25 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
-
* Plugin URI:
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
-
* Version: 1.4.
|
7 |
* Author: The Beaver Builder Team
|
8 |
-
* Author URI:
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
10 |
* License: GNU General Public License v2.0
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
-
define('FL_BUILDER_VERSION', '1.4.
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
18 |
-
define('FL_BUILDER_SUPPORT_URL', 'https://www.wpbeaverbuilder.com/support');
|
19 |
-
define('FL_BUILDER_UPGRADE_URL', 'https://www.wpbeaverbuilder.com/pricing
|
20 |
define('FL_BUILDER_DEMO_URL', 'http://demos.wpbeaverbuilder.com');
|
21 |
define('FL_BUILDER_OLD_DEMO_URL', 'http://demos.fastlinemedia.com');
|
22 |
-
define('FL_BUILDER_DEMO_CACHE_URL', 'http://demos.wpbeaverbuilder.com/wp-content/uploads/
|
23 |
|
24 |
/* Classes */
|
25 |
require_once 'classes/class-fl-builder.php';
|
@@ -49,8 +49,8 @@ add_action('plugins_loaded', 'FLBuilder::load_
|
|
49 |
add_action('init', 'FLBuilderUpdate::init');
|
50 |
|
51 |
/* Load Settings and Modules */
|
52 |
-
add_action('init', 'FLBuilderModel::load_settings',
|
53 |
-
add_action('init', 'FLBuilderModel::load_modules',
|
54 |
|
55 |
/* Admin AJAX Actions */
|
56 |
add_action('wp_ajax_fl_builder_save', 'FLBuilderModel::update');
|
1 |
<?php
|
2 |
/**
|
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.4.6
|
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
|
10 |
* License: GNU General Public License v2.0
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
+
define('FL_BUILDER_VERSION', '1.4.6');
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
18 |
+
define('FL_BUILDER_SUPPORT_URL', 'https://www.wpbeaverbuilder.com/support/');
|
19 |
+
define('FL_BUILDER_UPGRADE_URL', 'https://www.wpbeaverbuilder.com/pricing/');
|
20 |
define('FL_BUILDER_DEMO_URL', 'http://demos.wpbeaverbuilder.com');
|
21 |
define('FL_BUILDER_OLD_DEMO_URL', 'http://demos.fastlinemedia.com');
|
22 |
+
define('FL_BUILDER_DEMO_CACHE_URL', 'http://demos.wpbeaverbuilder.com/wp-content/uploads/bb-plugin/cache/');
|
23 |
|
24 |
/* Classes */
|
25 |
require_once 'classes/class-fl-builder.php';
|
49 |
add_action('init', 'FLBuilderUpdate::init');
|
50 |
|
51 |
/* Load Settings and Modules */
|
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');
|
includes/admin-settings-editing.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="fl-editing-form" class="fl-settings-form">
|
2 |
+
|
3 |
+
<h3 class="fl-settings-form-header"><?php _e('Editing Settings', 'fl-builder'); ?></h3>
|
4 |
+
|
5 |
+
<form id="editing-form" action="<?php FLBuilderAdminSettings::render_form_action( 'editing' ); ?>" method="post">
|
6 |
+
|
7 |
+
<?php if ( FLBuilderAdminSettings::multisite_support() && ! is_network_admin() ) : ?>
|
8 |
+
<label>
|
9 |
+
<input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_editing_capability')) echo 'checked="checked"'; ?> />
|
10 |
+
<?php _e('Override network settings?', 'fl-builder'); ?>
|
11 |
+
</label>
|
12 |
+
<?php endif; ?>
|
13 |
+
|
14 |
+
<div class="fl-settings-form-content">
|
15 |
+
|
16 |
+
<p><?php printf( __( 'Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules.', 'fl-builder' ), ' href="http://codex.wordpress.org/Roles_and_Capabilities#Capability_vs._Role_Table" target="_blank"' ); ?></p>
|
17 |
+
|
18 |
+
<input type="text" name="fl-editing-capability" value="<?php echo esc_html(FLBuilderModel::get_editing_capability()); ?>" class="regular-text" />
|
19 |
+
|
20 |
+
</div>
|
21 |
+
<p class="submit">
|
22 |
+
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Editing Settings', 'fl-builder' ); ?>" />
|
23 |
+
<?php wp_nonce_field('editing', 'fl-editing-nonce'); ?>
|
24 |
+
</p>
|
25 |
+
</form>
|
26 |
+
</div>
|
includes/admin-settings-js-config.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<script type="text/javascript">
|
2 |
+
|
3 |
+
FLBuilderAdminSettingsStrings = {
|
4 |
+
selectFile: '<?php _e('Select File', 'fl-builder'); ?>',
|
5 |
+
uninstall: '<?php _e('Please type "uninstall" in the box below to confirm that you really want to uninstall the page builder and all of its data.', 'fl-builder'); ?>'
|
6 |
+
};
|
7 |
+
|
8 |
+
</script>
|
includes/admin-settings-modules.php
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="fl-modules-form" class="fl-settings-form">
|
2 |
+
|
3 |
+
<h3 class="fl-settings-form-header"><?php _e('Enabled Modules', 'fl-builder'); ?></h3>
|
4 |
+
|
5 |
+
<form id="modules-form" action="<?php FLBuilderAdminSettings::render_form_action( 'modules' ); ?>" method="post">
|
6 |
+
|
7 |
+
<?php if ( FLBuilderAdminSettings::multisite_support() && ! is_network_admin() ) : ?>
|
8 |
+
<label>
|
9 |
+
<input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_enabled_modules')) echo 'checked="checked"'; ?> />
|
10 |
+
<?php _e('Override network settings?', 'fl-builder'); ?>
|
11 |
+
</label>
|
12 |
+
<?php endif; ?>
|
13 |
+
|
14 |
+
<div class="fl-settings-form-content">
|
15 |
+
|
16 |
+
<p><?php _e('Check or uncheck modules below to enable or disable them.', 'fl-builder'); ?></p>
|
17 |
+
<?php
|
18 |
+
|
19 |
+
$enabled_modules = FLBuilderModel::get_enabled_modules();
|
20 |
+
$checked = in_array('all', $enabled_modules) ? 'checked' : '';
|
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 |
+
foreach(FLBuilderModel::$modules as $module) :
|
30 |
+
|
31 |
+
$checked = in_array($module->slug, $enabled_modules) ? 'checked' : '';
|
32 |
+
|
33 |
+
?>
|
34 |
+
<p>
|
35 |
+
<label>
|
36 |
+
<input class="fl-module-cb" type="checkbox" name="fl-modules[]" value="<?php echo $module->slug; ?>" <?php echo $checked; ?> />
|
37 |
+
<?php echo $module->name; ?>
|
38 |
+
</label>
|
39 |
+
</p>
|
40 |
+
<?php endforeach; ?>
|
41 |
+
</div>
|
42 |
+
<p class="submit">
|
43 |
+
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Module Settings', 'fl-builder' ); ?>" />
|
44 |
+
<?php wp_nonce_field('modules', 'fl-modules-nonce'); ?>
|
45 |
+
</p>
|
46 |
+
</form>
|
47 |
+
</div>
|
includes/admin-settings-post-types.php
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="fl-post-types-form" class="fl-settings-form">
|
2 |
+
|
3 |
+
<h3 class="fl-settings-form-header"><?php _e('Post Types', 'fl-builder'); ?></h3>
|
4 |
+
|
5 |
+
<form id="post-types-form" action="<?php FLBuilderAdminSettings::render_form_action( 'post-types' ); ?>" method="post">
|
6 |
+
|
7 |
+
<?php if ( FLBuilderAdminSettings::multisite_support() && ! is_network_admin() ) : ?>
|
8 |
+
<label>
|
9 |
+
<input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_post_types')) echo 'checked="checked"'; ?> />
|
10 |
+
<?php _e('Override network settings?', 'fl-builder'); ?>
|
11 |
+
</label>
|
12 |
+
<?php endif; ?>
|
13 |
+
|
14 |
+
<div class="fl-settings-form-content">
|
15 |
+
|
16 |
+
<?php if ( is_network_admin() ) : ?>
|
17 |
+
|
18 |
+
<p><?php _e('Enter a comma separated list of the post types you would like the builder to work with.', 'fl-builder'); ?></p>
|
19 |
+
<p><?php _e('NOTE: Not all custom post types may be supported.', 'fl-builder'); ?></p>
|
20 |
+
<?php
|
21 |
+
|
22 |
+
$saved_post_types = FLBuilderModel::get_post_types();
|
23 |
+
|
24 |
+
foreach($saved_post_types as $key => $post_type) {
|
25 |
+
if($post_type == 'fl-builder-template') {
|
26 |
+
unset($saved_post_types[$key]);
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
$saved_post_types = implode(', ', $saved_post_types);
|
31 |
+
|
32 |
+
?>
|
33 |
+
<input type="text" name="fl-post-types" value="<?php echo esc_html($saved_post_types); ?>" class="regular-text" />
|
34 |
+
<p class="description"><?php _e('Example: page, post, product', 'fl-builder'); ?></p>
|
35 |
+
|
36 |
+
<?php else : ?>
|
37 |
+
|
38 |
+
<p><?php _e('Select the post types you would like the builder to work with.', 'fl-builder'); ?></p>
|
39 |
+
<p><?php _e('NOTE: Not all custom post types may be supported.', 'fl-builder'); ?></p>
|
40 |
+
|
41 |
+
<?php
|
42 |
+
|
43 |
+
$saved_post_types = FLBuilderModel::get_post_types();
|
44 |
+
$post_types = get_post_types(array('public' => true), 'objects');
|
45 |
+
|
46 |
+
foreach($post_types as $post_type) :
|
47 |
+
|
48 |
+
$checked = in_array($post_type->name, $saved_post_types) ? 'checked' : '';
|
49 |
+
|
50 |
+
if($post_type->name == 'attachment') {
|
51 |
+
continue;
|
52 |
+
}
|
53 |
+
if($post_type->name == 'fl-builder-template') {
|
54 |
+
continue;
|
55 |
+
}
|
56 |
+
|
57 |
+
?>
|
58 |
+
<p>
|
59 |
+
<label>
|
60 |
+
<input type="checkbox" name="fl-post-types[]" value="<?php echo $post_type->name; ?>" <?php echo $checked; ?> />
|
61 |
+
<?php echo $post_type->labels->name; ?>
|
62 |
+
</label>
|
63 |
+
</p>
|
64 |
+
<?php endforeach; ?>
|
65 |
+
|
66 |
+
<?php endif; ?>
|
67 |
+
|
68 |
+
</div>
|
69 |
+
<p class="submit">
|
70 |
+
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Post Types', 'fl-builder' ); ?>" />
|
71 |
+
<?php wp_nonce_field('post-types', 'fl-post-types-nonce'); ?>
|
72 |
+
</p>
|
73 |
+
</form>
|
74 |
+
</div>
|
includes/admin-settings-uninstall.php
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="fl-uninstall-form" class="fl-settings-form">
|
2 |
+
|
3 |
+
<h3 class="fl-settings-form-header"><?php _e('Uninstall', 'fl-builder'); ?></h3>
|
4 |
+
|
5 |
+
<p><?php _e('Clicking the button below will uninstall the page builder plugin and delete all of the data associated with it. You can uninstall or deactivate the page builder from the plugins page instead if you do not wish to delete the data.', 'fl-builder'); ?></p>
|
6 |
+
|
7 |
+
<p><strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e( 'The builder does not delete the post meta <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values.', 'fl-builder' ); ?></p>
|
8 |
+
|
9 |
+
<?php if(is_multisite()) : ?>
|
10 |
+
<p><strong style="color:#ff0000;"><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?></p>
|
11 |
+
<?php endif; ?>
|
12 |
+
|
13 |
+
<form id="uninstall-form" action="<?php FLBuilderAdminSettings::render_form_action( 'uninstall' ); ?>" method="post">
|
14 |
+
<p>
|
15 |
+
<input type="submit" name="uninstall-submit" class="button button-primary" value="<?php _e('Uninstall', 'fl-builder'); ?>">
|
16 |
+
<?php wp_nonce_field('uninstall', 'fl-uninstall'); ?>
|
17 |
+
</p>
|
18 |
+
</form>
|
19 |
+
</div>
|
includes/admin-settings-upgrade.php
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="fl-upgrade-form" class="fl-settings-form">
|
2 |
+
|
3 |
+
<h3 class="fl-settings-form-header"><?php _e('Upgrade', 'fl-builder'); ?></h3>
|
4 |
+
|
5 |
+
<p><?php _e('You are currently running the lite version of the Beaver Builder plugin. Upgrade today for access to premium features such as advanced modules, templates, support and more!', 'fl-builder'); ?></p>
|
6 |
+
|
7 |
+
<input type="button" class="button button-primary" value="<?php _e('Upgrade Now', 'fl-builder'); ?>" onclick="window.location.href='<?php echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'settings-page' ) ); ?>';" style="margin-right: 10px;">
|
8 |
+
|
9 |
+
<input type="button" class="button button-primary" value="<?php _e('Learn More', 'fl-builder'); ?>" onclick="window.location.href='http://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=settings-page';">
|
10 |
+
|
11 |
+
</div>
|
includes/admin-settings.php
CHANGED
@@ -1,280 +1,18 @@
|
|
1 |
-
<div class="wrap<?php
|
2 |
|
3 |
<h2 class="fl-settings-heading">
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
</h2>
|
9 |
-
|
10 |
-
<?php if(!empty($_POST) && !isset($_POST['email'])) : ?>
|
11 |
-
<div class="updated">
|
12 |
-
<p><?php _e('Settings updated!', 'fl-builder'); ?></p>
|
13 |
-
</div>
|
14 |
-
<?php endif; ?>
|
15 |
|
16 |
<div class="fl-settings-nav">
|
17 |
<ul>
|
18 |
-
<?php
|
19 |
-
<li><a href="#license"><?php _e('License', 'fl-builder'); ?></a></li>
|
20 |
-
<?php endif; ?>
|
21 |
-
|
22 |
-
<?php if(FL_BUILDER_LITE === true) : ?>
|
23 |
-
<li><a href="#upgrade"><?php _e('Upgrade', 'fl-builder'); ?></a></li>
|
24 |
-
<?php endif; ?>
|
25 |
-
|
26 |
-
<li><a href="#modules"><?php _e('Modules', 'fl-builder'); ?></a></li>
|
27 |
-
|
28 |
-
<?php if(FL_BUILDER_LITE !== true) : ?>
|
29 |
-
<li><a href="#templates"><?php _e('Templates', 'fl-builder'); ?></a></li>
|
30 |
-
<?php endif; ?>
|
31 |
-
|
32 |
-
<li><a href="#post-types"><?php _e('Post Types', 'fl-builder'); ?></a></li>
|
33 |
-
<li><a href="#editing"><?php _e('Editing', 'fl-builder'); ?></a></li>
|
34 |
-
|
35 |
-
<?php if(!class_exists('FLBuilderMultisiteSettings') && file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
|
36 |
-
<li><a href="#branding"><?php _e('Branding', 'fl-builder'); ?></a></li>
|
37 |
-
<?php endif; ?>
|
38 |
-
|
39 |
-
<?php if(!class_exists('FLBuilderMultisiteSettings')) : ?>
|
40 |
-
<li><a href="#uninstall"><?php _e('Uninstall', 'fl-builder'); ?></a></li>
|
41 |
-
<?php endif; ?>
|
42 |
</ul>
|
43 |
</div>
|
44 |
|
45 |
<div class="fl-settings-content">
|
46 |
-
|
47 |
-
<?php if(!class_exists('FLBuilderMultisiteSettings') && FL_BUILDER_LITE !== true) : ?>
|
48 |
-
<!-- LICENSE -->
|
49 |
-
<div id="fl-license-form" class="fl-settings-form">
|
50 |
-
<?php do_action('fl_themes_license_form'); ?>
|
51 |
-
</div>
|
52 |
-
<!-- LICENSE -->
|
53 |
-
<?php endif; ?>
|
54 |
-
|
55 |
-
<?php if(FL_BUILDER_LITE === true) : ?>
|
56 |
-
<!-- UPGRADE -->
|
57 |
-
<div id="fl-upgrade-form" class="fl-settings-form">
|
58 |
-
|
59 |
-
<h3 class="fl-settings-form-header"><?php _e('Upgrade', 'fl-builder'); ?></h3>
|
60 |
-
|
61 |
-
<p><?php _e('You are currently running the lite version of the Beaver Builder plugin. Upgrade today for access to premium features such as advanced modules, templates, support and more!', 'fl-builder'); ?></p>
|
62 |
-
|
63 |
-
<input type="button" class="button button-primary" value="<?php _e('Upgrade Now', 'fl-builder'); ?>" onclick="window.location.href='<?php echo FL_BUILDER_UPGRADE_URL; ?>';" style="margin-right: 10px;">
|
64 |
-
|
65 |
-
<input type="button" class="button button-primary" value="<?php _e('Learn More', 'fl-builder'); ?>" onclick="window.location.href='http://www.wpbeaverbuilder.com/';">
|
66 |
-
|
67 |
-
</div>
|
68 |
-
<!-- UPGRADE -->
|
69 |
-
<?php endif; ?>
|
70 |
-
|
71 |
-
<!-- MODULES -->
|
72 |
-
<div id="fl-modules-form" class="fl-settings-form">
|
73 |
-
|
74 |
-
<h3 class="fl-settings-form-header"><?php _e('Enabled Modules', 'fl-builder'); ?></h3>
|
75 |
-
|
76 |
-
<form id="modules-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#modules'); ?>" method="post">
|
77 |
-
|
78 |
-
<?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
|
79 |
-
<label>
|
80 |
-
<input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_enabled_modules')) echo 'checked="checked"'; ?> />
|
81 |
-
<?php _e('Override network settings?', 'fl-builder'); ?>
|
82 |
-
</label>
|
83 |
-
<?php endif; ?>
|
84 |
-
|
85 |
-
<div class="fl-settings-form-content">
|
86 |
-
|
87 |
-
<p><?php _e('Check or uncheck modules below to enable or disable them.', 'fl-builder'); ?></p>
|
88 |
-
<?php
|
89 |
-
|
90 |
-
$enabled_modules = FLBuilderModel::get_enabled_modules();
|
91 |
-
$checked = in_array('all', $enabled_modules) ? 'checked' : '';
|
92 |
-
|
93 |
-
?>
|
94 |
-
<label>
|
95 |
-
<input class="fl-module-all-cb" type="checkbox" name="fl-modules[]" value="all" <?php echo $checked; ?> />
|
96 |
-
<?php _ex( 'All', 'Plugin setup page: Modules.', 'fl-builder' ); ?>
|
97 |
-
</label>
|
98 |
-
<?php
|
99 |
-
|
100 |
-
foreach(FLBuilderModel::$modules as $module) :
|
101 |
-
|
102 |
-
$checked = in_array($module->slug, $enabled_modules) ? 'checked' : '';
|
103 |
-
|
104 |
-
?>
|
105 |
-
<p>
|
106 |
-
<label>
|
107 |
-
<input class="fl-module-cb" type="checkbox" name="fl-modules[]" value="<?php echo $module->slug; ?>" <?php echo $checked; ?> />
|
108 |
-
<?php echo $module->name; ?>
|
109 |
-
</label>
|
110 |
-
</p>
|
111 |
-
<?php endforeach; ?>
|
112 |
-
</div>
|
113 |
-
<p class="submit">
|
114 |
-
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Module Settings', 'fl-builder' ); ?>" />
|
115 |
-
<?php wp_nonce_field('modules', 'fl-modules-nonce'); ?>
|
116 |
-
</p>
|
117 |
-
</form>
|
118 |
-
</div>
|
119 |
-
<!-- MODULES -->
|
120 |
-
|
121 |
-
<?php if(FL_BUILDER_LITE !== true) : ?>
|
122 |
-
<!-- TEMPLATES -->
|
123 |
-
<div id="fl-templates-form" class="fl-settings-form">
|
124 |
-
|
125 |
-
<h3 class="fl-settings-form-header"><?php _e('Template Settings', 'fl-builder'); ?></h3>
|
126 |
-
|
127 |
-
<form id="templates-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#templates'); ?>" method="post">
|
128 |
-
|
129 |
-
<?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
|
130 |
-
<label>
|
131 |
-
<input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_enabled_templates')) echo 'checked="checked"'; ?> />
|
132 |
-
<?php _e('Override network settings?', 'fl-builder'); ?>
|
133 |
-
</label>
|
134 |
-
<?php endif; ?>
|
135 |
-
|
136 |
-
<div class="fl-settings-form-content">
|
137 |
-
|
138 |
-
<p><?php _e('Enable or disable templates using the options below.', 'fl-builder'); ?></p>
|
139 |
-
<?php
|
140 |
-
|
141 |
-
$enabled_templates = FLBuilderModel::get_enabled_templates();
|
142 |
-
|
143 |
-
?>
|
144 |
-
<select name="fl-template-settings">
|
145 |
-
<option value="enabled" <?php selected( $enabled_templates, 'enabled' ); ?>><?php _e( 'Enable All Templates', 'fl-builder' ); ?></option>
|
146 |
-
<option value="core" <?php selected( $enabled_templates, 'core' ); ?>><?php _e( 'Enable Core Templates Only', 'fl-builder' ); ?></option>
|
147 |
-
<option value="user" <?php selected( $enabled_templates, 'user' ); ?>><?php _e( 'Enable User Templates Only', 'fl-builder' ); ?></option>
|
148 |
-
<option value="disabled" <?php selected( $enabled_templates, 'disabled' ); ?>><?php _e( 'Disable All Templates', 'fl-builder' ); ?></option>
|
149 |
-
</select>
|
150 |
-
</div>
|
151 |
-
<p class="submit">
|
152 |
-
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Template Settings', 'fl-builder' ); ?>" />
|
153 |
-
<?php wp_nonce_field('templates', 'fl-templates-nonce'); ?>
|
154 |
-
</p>
|
155 |
-
</form>
|
156 |
-
</div>
|
157 |
-
<!-- TEMPLATES -->
|
158 |
-
<?php endif; ?>
|
159 |
-
|
160 |
-
<!-- POST TYPES -->
|
161 |
-
<div id="fl-post-types-form" class="fl-settings-form">
|
162 |
-
|
163 |
-
<h3 class="fl-settings-form-header"><?php _e('Post Types', 'fl-builder'); ?></h3>
|
164 |
-
|
165 |
-
<form id="post-types-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#post-types'); ?>" method="post">
|
166 |
-
|
167 |
-
<?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
|
168 |
-
<label>
|
169 |
-
<input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_post_types')) echo 'checked="checked"'; ?> />
|
170 |
-
<?php _e('Override network settings?', 'fl-builder'); ?>
|
171 |
-
</label>
|
172 |
-
<?php endif; ?>
|
173 |
-
|
174 |
-
<div class="fl-settings-form-content">
|
175 |
-
|
176 |
-
<p><?php _e('Select the post types you would like the builder to work with.', 'fl-builder'); ?></p>
|
177 |
-
<p><?php _e('NOTE: Not all custom post types may be supported.', 'fl-builder'); ?></p>
|
178 |
-
|
179 |
-
<?php
|
180 |
-
|
181 |
-
$saved_post_types = FLBuilderModel::get_post_types();
|
182 |
-
$post_types = get_post_types(array('public' => true), 'objects');
|
183 |
-
|
184 |
-
foreach($post_types as $post_type) :
|
185 |
-
|
186 |
-
$checked = in_array($post_type->name, $saved_post_types) ? 'checked' : '';
|
187 |
-
|
188 |
-
if($post_type->name == 'attachment') {
|
189 |
-
continue;
|
190 |
-
}
|
191 |
-
if($post_type->name == 'fl-builder-template') {
|
192 |
-
continue;
|
193 |
-
}
|
194 |
-
|
195 |
-
?>
|
196 |
-
<p>
|
197 |
-
<label>
|
198 |
-
<input type="checkbox" name="fl-post-types[]" value="<?php echo $post_type->name; ?>" <?php echo $checked; ?> />
|
199 |
-
<?php echo $post_type->labels->name; ?>
|
200 |
-
</label>
|
201 |
-
</p>
|
202 |
-
<?php endforeach; ?>
|
203 |
-
</div>
|
204 |
-
<p class="submit">
|
205 |
-
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Post Types', 'fl-builder' ); ?>" />
|
206 |
-
<?php wp_nonce_field('post-types', 'fl-post-types-nonce'); ?>
|
207 |
-
</p>
|
208 |
-
</form>
|
209 |
-
</div>
|
210 |
-
<!-- POST TYPES -->
|
211 |
-
|
212 |
-
<!-- EDITING -->
|
213 |
-
<div id="fl-editing-form" class="fl-settings-form">
|
214 |
-
|
215 |
-
<h3 class="fl-settings-form-header"><?php _e('Editing Settings', 'fl-builder'); ?></h3>
|
216 |
-
|
217 |
-
<form id="editing-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#editing'); ?>" method="post">
|
218 |
-
|
219 |
-
<?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
|
220 |
-
<label>
|
221 |
-
<input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_editing_capability')) echo 'checked="checked"'; ?> />
|
222 |
-
<?php _e('Override network settings?', 'fl-builder'); ?>
|
223 |
-
</label>
|
224 |
-
<?php endif; ?>
|
225 |
-
|
226 |
-
<div class="fl-settings-form-content">
|
227 |
-
|
228 |
-
<p><?php printf( __( 'Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules.', 'fl-builder' ), ' href="http://codex.wordpress.org/Roles_and_Capabilities#Capability_vs._Role_Table" target="_blank"' ); ?></p>
|
229 |
-
|
230 |
-
<input type="text" name="fl-editing-capability" value="<?php echo esc_html(FLBuilderModel::get_editing_capability()); ?>" class="regular-text" />
|
231 |
-
|
232 |
-
</div>
|
233 |
-
<p class="submit">
|
234 |
-
<input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Editing Settings', 'fl-builder' ); ?>" />
|
235 |
-
<?php wp_nonce_field('editing', 'fl-editing-nonce'); ?>
|
236 |
-
</p>
|
237 |
-
</form>
|
238 |
-
</div>
|
239 |
-
<!-- EDITING -->
|
240 |
-
|
241 |
-
<?php if(file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
|
242 |
-
<!-- BRANDING -->
|
243 |
-
<?php include FL_BUILDER_DIR . 'includes/admin-branding.php'; ?>
|
244 |
-
<!-- BRANDING -->
|
245 |
-
<?php endif; ?>
|
246 |
-
|
247 |
-
<!-- UNINSTALL -->
|
248 |
-
<div id="fl-uninstall-form" class="fl-settings-form">
|
249 |
-
|
250 |
-
<h3 class="fl-settings-form-header"><?php _e('Uninstall', 'fl-builder'); ?></h3>
|
251 |
-
|
252 |
-
<p><?php _e('Clicking the button below will uninstall the page builder plugin and delete all of the data associated with it. You can uninstall or deactivate the page builder from the plugins page instead if you do not wish to delete the data.', 'fl-builder'); ?></p>
|
253 |
-
|
254 |
-
<p><strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e( 'The builder does not delete the post meta <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values.', 'fl-builder' ); ?></p>
|
255 |
-
|
256 |
-
<?php if(is_multisite()) : ?>
|
257 |
-
<p><strong style="color:#ff0000;"><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?></p>
|
258 |
-
<?php endif; ?>
|
259 |
-
|
260 |
-
<form id="uninstall-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings'); ?>" method="post">
|
261 |
-
<p>
|
262 |
-
<input type="submit" name="uninstall-submit" class="button button-primary" value="<?php _e('Uninstall', 'fl-builder'); ?>">
|
263 |
-
<?php wp_nonce_field('uninstall', 'fl-uninstall'); ?>
|
264 |
-
</p>
|
265 |
-
</form>
|
266 |
-
</div>
|
267 |
-
<!-- UNINSTALL -->
|
268 |
-
|
269 |
</div>
|
270 |
-
</div>
|
271 |
-
<script type="text/javascript">
|
272 |
-
|
273 |
-
jQuery(function(){
|
274 |
-
|
275 |
-
FLBuilderAdminSettings.strings = {
|
276 |
-
uninstall: '<?php _e('Please type "uninstall" in the box below to confirm that you really want to uninstall the page builder and all of its data.', 'fl-builder'); ?>'
|
277 |
-
};
|
278 |
-
});
|
279 |
-
|
280 |
-
</script>
|
1 |
+
<div class="wrap <?php FLBuilderAdminSettings::render_page_class(); ?>">
|
2 |
|
3 |
<h2 class="fl-settings-heading">
|
4 |
+
<?php FLBuilderAdminSettings::render_page_heading(); ?>
|
5 |
+
</h2>
|
6 |
+
|
7 |
+
<?php FLBuilderAdminSettings::render_update_message(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
<div class="fl-settings-nav">
|
10 |
<ul>
|
11 |
+
<?php FLBuilderAdminSettings::render_nav_items(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
</ul>
|
13 |
</div>
|
14 |
|
15 |
<div class="fl-settings-content">
|
16 |
+
<?php FLBuilderAdminSettings::render_forms(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
</div>
|
18 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/column-group.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
<div
|
2 |
-
<?php foreach($cols as $col) : ?>
|
3 |
-
<div
|
4 |
<div class="fl-col-content fl-node-content">
|
5 |
-
<?php FLBuilder::render_modules($col->node); ?>
|
6 |
</div>
|
7 |
</div>
|
8 |
<?php endforeach; ?>
|
1 |
+
<div<?php FLBuilder::render_column_group_attributes( $group ); ?>>
|
2 |
+
<?php foreach ( $cols as $col ) : ?>
|
3 |
+
<div<?php echo FLBuilder::render_column_attributes( $col ); ?>>
|
4 |
<div class="fl-col-content fl-node-content">
|
5 |
+
<?php FLBuilder::render_modules( $col->node ); ?>
|
6 |
</div>
|
7 |
</div>
|
8 |
<?php endforeach; ?>
|
includes/column-settings.php
CHANGED
@@ -169,96 +169,6 @@ FLBuilder::register_settings_form('col', array(
|
|
169 |
'advanced' => array(
|
170 |
'title' => __('Advanced', 'fl-builder'),
|
171 |
'sections' => array(
|
172 |
-
'general' => array(
|
173 |
-
'title' => '',
|
174 |
-
'fields' => array(
|
175 |
-
'class' => array(
|
176 |
-
'type' => 'text',
|
177 |
-
'label' => __('CSS Class', 'fl-builder'),
|
178 |
-
'help' => __( 'A custom CSS class that will be applied to this column. Spaces only, no dots.', 'fl-builder' ),
|
179 |
-
'preview' => array(
|
180 |
-
'type' => 'none'
|
181 |
-
)
|
182 |
-
)
|
183 |
-
)
|
184 |
-
),
|
185 |
-
'responsive' => array(
|
186 |
-
'title' => __('Responsive Layout', 'fl-builder'),
|
187 |
-
'fields' => array(
|
188 |
-
'responsive_display' => array(
|
189 |
-
'type' => 'select',
|
190 |
-
'label' => __('Display', 'fl-builder'),
|
191 |
-
'options' => array(
|
192 |
-
'' => __('Always', 'fl-builder'),
|
193 |
-
'desktop' => __('Large Devices Only', 'fl-builder'),
|
194 |
-
'desktop-medium' => __('Large & Medium Devices Only', 'fl-builder'),
|
195 |
-
'medium' => __('Medium Devices Only', 'fl-builder'),
|
196 |
-
'medium-mobile' => __('Medium & Small Devices Only', 'fl-builder'),
|
197 |
-
'mobile' => __('Small Devices Only', 'fl-builder'),
|
198 |
-
),
|
199 |
-
'help' => __( 'Choose whether to show or hide this column at different device sizes.', 'fl-builder' ),
|
200 |
-
'preview' => array(
|
201 |
-
'type' => 'none'
|
202 |
-
)
|
203 |
-
),
|
204 |
-
'medium_size' => array(
|
205 |
-
'type' => 'select',
|
206 |
-
'label' => __('Medium Device Width', 'fl-builder'),
|
207 |
-
'help' => __( 'The width of this column on medium devices such as tablets.', 'fl-builder' ),
|
208 |
-
'options' => array(
|
209 |
-
'default' => __('Default', 'fl-builder'),
|
210 |
-
'custom' => __('Custom', 'fl-builder'),
|
211 |
-
),
|
212 |
-
'toggle' => array(
|
213 |
-
'custom' => array(
|
214 |
-
'fields' => array('custom_medium_size')
|
215 |
-
)
|
216 |
-
),
|
217 |
-
'preview' => array(
|
218 |
-
'type' => 'none'
|
219 |
-
)
|
220 |
-
),
|
221 |
-
'custom_medium_size' => array(
|
222 |
-
'type' => 'text',
|
223 |
-
'label' => __('Custom Medium Device Width', 'fl-builder'),
|
224 |
-
'default' => '100',
|
225 |
-
'description' => '%',
|
226 |
-
'maxlength' => '5',
|
227 |
-
'size' => '6',
|
228 |
-
'preview' => array(
|
229 |
-
'type' => 'none'
|
230 |
-
)
|
231 |
-
),
|
232 |
-
'responsive_size' => array(
|
233 |
-
'type' => 'select',
|
234 |
-
'label' => __('Small Device Width', 'fl-builder'),
|
235 |
-
'help' => __( 'The width of this column on small devices such as phones.', 'fl-builder' ),
|
236 |
-
'options' => array(
|
237 |
-
'default' => __('Default', 'fl-builder'),
|
238 |
-
'custom' => __('Custom', 'fl-builder'),
|
239 |
-
),
|
240 |
-
'toggle' => array(
|
241 |
-
'custom' => array(
|
242 |
-
'fields' => array('custom_responsive_size')
|
243 |
-
)
|
244 |
-
),
|
245 |
-
'preview' => array(
|
246 |
-
'type' => 'none'
|
247 |
-
)
|
248 |
-
),
|
249 |
-
'custom_responsive_size' => array(
|
250 |
-
'type' => 'text',
|
251 |
-
'label' => __( 'Custom Small Device Width', 'fl-builder' ),
|
252 |
-
'default' => '100',
|
253 |
-
'description' => '%',
|
254 |
-
'maxlength' => '5',
|
255 |
-
'size' => '6',
|
256 |
-
'preview' => array(
|
257 |
-
'type' => 'none'
|
258 |
-
)
|
259 |
-
)
|
260 |
-
)
|
261 |
-
),
|
262 |
'margins' => array(
|
263 |
'title' => __('Margins', 'fl-builder'),
|
264 |
'fields' => array(
|
@@ -364,6 +274,104 @@ FLBuilder::register_settings_form('col', array(
|
|
364 |
)
|
365 |
)
|
366 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
)
|
368 |
)
|
369 |
)
|
169 |
'advanced' => array(
|
170 |
'title' => __('Advanced', 'fl-builder'),
|
171 |
'sections' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
'margins' => array(
|
173 |
'title' => __('Margins', 'fl-builder'),
|
174 |
'fields' => array(
|
274 |
)
|
275 |
)
|
276 |
)
|
277 |
+
),
|
278 |
+
'responsive' => array(
|
279 |
+
'title' => __('Responsive Layout', 'fl-builder'),
|
280 |
+
'fields' => array(
|
281 |
+
'responsive_display' => array(
|
282 |
+
'type' => 'select',
|
283 |
+
'label' => __('Display', 'fl-builder'),
|
284 |
+
'options' => array(
|
285 |
+
'' => __('Always', 'fl-builder'),
|
286 |
+
'desktop' => __('Large Devices Only', 'fl-builder'),
|
287 |
+
'desktop-medium' => __('Large & Medium Devices Only', 'fl-builder'),
|
288 |
+
'medium' => __('Medium Devices Only', 'fl-builder'),
|
289 |
+
'medium-mobile' => __('Medium & Small Devices Only', 'fl-builder'),
|
290 |
+
'mobile' => __('Small Devices Only', 'fl-builder'),
|
291 |
+
),
|
292 |
+
'help' => __( 'Choose whether to show or hide this column at different device sizes.', 'fl-builder' ),
|
293 |
+
'preview' => array(
|
294 |
+
'type' => 'none'
|
295 |
+
)
|
296 |
+
),
|
297 |
+
'medium_size' => array(
|
298 |
+
'type' => 'select',
|
299 |
+
'label' => __('Medium Device Width', 'fl-builder'),
|
300 |
+
'help' => __( 'The width of this column on medium devices such as tablets.', 'fl-builder' ),
|
301 |
+
'options' => array(
|
302 |
+
'default' => __('Default', 'fl-builder'),
|
303 |
+
'custom' => __('Custom', 'fl-builder'),
|
304 |
+
),
|
305 |
+
'toggle' => array(
|
306 |
+
'custom' => array(
|
307 |
+
'fields' => array('custom_medium_size')
|
308 |
+
)
|
309 |
+
),
|
310 |
+
'preview' => array(
|
311 |
+
'type' => 'none'
|
312 |
+
)
|
313 |
+
),
|
314 |
+
'custom_medium_size' => array(
|
315 |
+
'type' => 'text',
|
316 |
+
'label' => __('Custom Medium Device Width', 'fl-builder'),
|
317 |
+
'default' => '100',
|
318 |
+
'description' => '%',
|
319 |
+
'maxlength' => '5',
|
320 |
+
'size' => '6',
|
321 |
+
'preview' => array(
|
322 |
+
'type' => 'none'
|
323 |
+
)
|
324 |
+
),
|
325 |
+
'responsive_size' => array(
|
326 |
+
'type' => 'select',
|
327 |
+
'label' => __('Small Device Width', 'fl-builder'),
|
328 |
+
'help' => __( 'The width of this column on small devices such as phones.', 'fl-builder' ),
|
329 |
+
'options' => array(
|
330 |
+
'default' => __('Default', 'fl-builder'),
|
331 |
+
'custom' => __('Custom', 'fl-builder'),
|
332 |
+
),
|
333 |
+
'toggle' => array(
|
334 |
+
'custom' => array(
|
335 |
+
'fields' => array('custom_responsive_size')
|
336 |
+
)
|
337 |
+
),
|
338 |
+
'preview' => array(
|
339 |
+
'type' => 'none'
|
340 |
+
)
|
341 |
+
),
|
342 |
+
'custom_responsive_size' => array(
|
343 |
+
'type' => 'text',
|
344 |
+
'label' => __( 'Custom Small Device Width', 'fl-builder' ),
|
345 |
+
'default' => '100',
|
346 |
+
'description' => '%',
|
347 |
+
'maxlength' => '5',
|
348 |
+
'size' => '6',
|
349 |
+
'preview' => array(
|
350 |
+
'type' => 'none'
|
351 |
+
)
|
352 |
+
)
|
353 |
+
)
|
354 |
+
),
|
355 |
+
'css_selectors' => array(
|
356 |
+
'title' => __('CSS Selectors', 'fl-builder'),
|
357 |
+
'fields' => array(
|
358 |
+
'id' => array(
|
359 |
+
'type' => 'text',
|
360 |
+
'label' => __('ID', 'fl-builder'),
|
361 |
+
'help' => __( "A unique ID that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces.", 'fl-builder' ),
|
362 |
+
'preview' => array(
|
363 |
+
'type' => 'none'
|
364 |
+
)
|
365 |
+
),
|
366 |
+
'class' => array(
|
367 |
+
'type' => 'text',
|
368 |
+
'label' => __('CSS Class', 'fl-builder'),
|
369 |
+
'help' => __( "A class that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces.", 'fl-builder' ),
|
370 |
+
'preview' => array(
|
371 |
+
'type' => 'none'
|
372 |
+
)
|
373 |
+
)
|
374 |
+
)
|
375 |
)
|
376 |
)
|
377 |
)
|
includes/field-form.php
CHANGED
@@ -1,19 +1,30 @@
|
|
1 |
-
<div class="fl-form-field fl-builder-custom-field"<?php if(isset($field['preview_text'])) echo ' data-preview-text="'. $field['preview_text'] .'"'; ?>>
|
2 |
<div class="fl-form-field-preview-text">
|
3 |
<?php
|
4 |
|
5 |
-
if(isset($field['preview_text']) && is_object($value)) {
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
}
|
14 |
|
15 |
?>
|
16 |
</div>
|
17 |
<a class="fl-form-field-edit" href="javascript:void(0);" onclick="return false;" data-type="<?php echo $field['form']; ?>"><?php printf( _x( 'Edit %s', '%s stands for form field label.', 'fl-builder' ), $field['label'] ); ?></a>
|
18 |
-
<input name="<?php echo $name; ?>" type="hidden" value='<?php echo str_replace("'", ''', json_encode($value)); ?>' />
|
19 |
</div>
|
1 |
+
<div class="fl-form-field fl-builder-custom-field"<?php if ( isset( $field['preview_text'] ) ) echo ' data-preview-text="'. $field['preview_text'] .'"'; ?>>
|
2 |
<div class="fl-form-field-preview-text">
|
3 |
<?php
|
4 |
|
5 |
+
if ( isset( $field['preview_text'] ) && is_object( $value ) ) {
|
6 |
+
|
7 |
+
$form = FLBuilderModel::get_settings_form( $field['form'] );
|
8 |
+
$form_fields = FLBuilderModel::get_settings_form_fields( $form['tabs'] );
|
9 |
+
|
10 |
+
if ( isset( $form_fields[ $field['preview_text'] ] ) ) {
|
11 |
+
|
12 |
+
$preview_field = $form_fields[ $field['preview_text'] ];
|
13 |
+
|
14 |
+
if ( 'icon' == $preview_field['type'] ) {
|
15 |
+
echo '<i class="' . $value->$field['preview_text'] . '"></i>';
|
16 |
+
}
|
17 |
+
else if ( 'select' == $preview_field['type'] ) {
|
18 |
+
echo $preview_field['options'][ $value->$field['preview_text'] ];
|
19 |
+
}
|
20 |
+
else if ( ! empty( $value->$field['preview_text'] ) ) {
|
21 |
+
echo FLBuilderUtils::snippetwop( strip_tags( str_replace( ''', "'", $value->$field['preview_text'] ) ), 35 );
|
22 |
+
}
|
23 |
+
}
|
24 |
}
|
25 |
|
26 |
?>
|
27 |
</div>
|
28 |
<a class="fl-form-field-edit" href="javascript:void(0);" onclick="return false;" data-type="<?php echo $field['form']; ?>"><?php printf( _x( 'Edit %s', '%s stands for form field label.', 'fl-builder' ), $field['label'] ); ?></a>
|
29 |
+
<input name="<?php echo $name; ?>" type="hidden" value='<?php if ( ! empty( $value ) ) echo str_replace( "'", ''', json_encode( $value ) ); ?>' />
|
30 |
</div>
|
includes/field.php
CHANGED
@@ -8,17 +8,17 @@
|
|
8 |
echo $field['label'];
|
9 |
|
10 |
if(isset($i)) {
|
11 |
-
echo ' <span>' . ($i + 1) . '</span>';
|
12 |
}
|
13 |
|
14 |
?>
|
15 |
-
</label>
|
16 |
<?php if(isset($field['help'])) : ?>
|
17 |
<span class="fl-help-tooltip">
|
18 |
<i class="fl-help-tooltip-icon fa fa-question-circle"></i>
|
19 |
<span class="fl-help-tooltip-text"><?php echo $field['help']; ?></span>
|
20 |
</span>
|
21 |
<?php endif; ?>
|
|
|
22 |
</th>
|
23 |
<td>
|
24 |
<?php endif; ?>
|
8 |
echo $field['label'];
|
9 |
|
10 |
if(isset($i)) {
|
11 |
+
echo ' <span class="fl-builder-field-index">' . ($i + 1) . '</span>';
|
12 |
}
|
13 |
|
14 |
?>
|
|
|
15 |
<?php if(isset($field['help'])) : ?>
|
16 |
<span class="fl-help-tooltip">
|
17 |
<i class="fl-help-tooltip-icon fa fa-question-circle"></i>
|
18 |
<span class="fl-help-tooltip-text"><?php echo $field['help']; ?></span>
|
19 |
</span>
|
20 |
<?php endif; ?>
|
21 |
+
</label>
|
22 |
</th>
|
23 |
<td>
|
24 |
<?php endif; ?>
|
includes/js-config.php
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
|
3 |
var FLBuilderConfig = {
|
4 |
ajaxUrl: '<?php echo get_permalink( $post_id ); ?>',
|
|
|
5 |
enabledTemplates: '<?php echo $enabled_templates; ?>',
|
6 |
homeUrl: '<?php echo home_url(); ?>',
|
7 |
isRtl: <?php if(is_rtl()) echo 'true'; else echo 'false'; ?>,
|
@@ -9,58 +10,60 @@ var FLBuilderConfig = {
|
|
9 |
postId: <?php echo $post_id; ?>,
|
10 |
postType: '<?php echo get_post_type(); ?>',
|
11 |
simpleUi: <?php if(!current_user_can(FLBuilderModel::get_editing_capability())) echo 'true'; else echo 'false'; ?>,
|
12 |
-
upgradeUrl: '<?php echo
|
13 |
};
|
14 |
|
15 |
var FLBuilderStrings = {
|
16 |
-
actionsLightboxTitle: '<?php
|
17 |
-
cancel: '<?php
|
18 |
-
changeTemplate: '<?php
|
19 |
-
changeTemplateMessage: '<?php
|
20 |
-
column: '<?php
|
21 |
-
columnSettings: '<?php
|
22 |
-
contentSliderSelectLayout: '<?php
|
23 |
-
deleteFieldMessage: '<?php
|
24 |
-
deleteModuleMessage: '<?php
|
25 |
-
deleteRowMessage: '<?php
|
26 |
-
deleteTemplate: '<?php
|
27 |
-
discard: '<?php
|
28 |
-
discardMessage: '<?php
|
29 |
-
draft: '<?php
|
30 |
duplicate: '<?php _ex( 'Duplicate', 'Duplicate page/post action label.', 'fl-builder' ); ?>',
|
31 |
-
duplicatePage: '<?php
|
32 |
-
duplicateTemplate: '<?php
|
33 |
-
editGlobalSettings: '<?php
|
34 |
-
emptyMessage: '<?php
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
|
|
|
|
58 |
settings: '<?php _ex( '%s Settings', '%s stands for module name.', 'fl-builder' ); ?>',
|
59 |
-
templateAppend: '<?php
|
60 |
-
templateReplace: '<?php
|
61 |
-
templateSaved: '<?php
|
62 |
-
thumbnail: '<?php
|
63 |
-
unloadWarning: '<?php
|
64 |
};
|
65 |
|
66 |
</script>
|
2 |
|
3 |
var FLBuilderConfig = {
|
4 |
ajaxUrl: '<?php echo get_permalink( $post_id ); ?>',
|
5 |
+
debug: <?php if( defined( 'WP_DEBUG' ) && WP_DEBUG ) echo 'true'; else echo 'false'; ?>,
|
6 |
enabledTemplates: '<?php echo $enabled_templates; ?>',
|
7 |
homeUrl: '<?php echo home_url(); ?>',
|
8 |
isRtl: <?php if(is_rtl()) echo 'true'; else echo 'false'; ?>,
|
10 |
postId: <?php echo $post_id; ?>,
|
11 |
postType: '<?php echo get_post_type(); ?>',
|
12 |
simpleUi: <?php if(!current_user_can(FLBuilderModel::get_editing_capability())) echo 'true'; else echo 'false'; ?>,
|
13 |
+
upgradeUrl: '<?php if(FL_BUILDER_LITE === true) $campaign = 'upgrade-button'; else $campaign = 'buy-button'; echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => $campaign ) ); ?>'
|
14 |
};
|
15 |
|
16 |
var FLBuilderStrings = {
|
17 |
+
actionsLightboxTitle: '<?php esc_attr_e('What would you like to do?', 'fl-builder'); ?>',
|
18 |
+
cancel: '<?php esc_attr_e('Cancel', 'fl-builder'); ?>',
|
19 |
+
changeTemplate: '<?php esc_attr_e('Change Template', 'fl-builder'); ?>',
|
20 |
+
changeTemplateMessage: '<?php esc_attr_e('Warning! Changing the template will replace your existing layout. Do you really want to do this?', 'fl-builder'); ?>',
|
21 |
+
column: '<?php esc_attr_e('Column', 'fl-builder') ?>',
|
22 |
+
columnSettings: '<?php esc_attr_e('Column Settings', 'fl-builder') ?>',
|
23 |
+
contentSliderSelectLayout: '<?php esc_attr_e('Please select either a background layout or content layout before submitting.', 'fl-builder'); ?>',
|
24 |
+
deleteFieldMessage: '<?php esc_attr_e('Do you really want to delete this item?', 'fl-builder'); ?>',
|
25 |
+
deleteModuleMessage: '<?php esc_attr_e('Do you really want to delete this module? All content data will be permanently deleted.', 'fl-builder') ?>',
|
26 |
+
deleteRowMessage: '<?php esc_attr_e('Do you really want to delete this row? All content data will be permanently deleted.', 'fl-builder') ?>',
|
27 |
+
deleteTemplate: '<?php esc_attr_e('Do you really want to delete this template?', 'fl-builder'); ?>',
|
28 |
+
discard: '<?php esc_attr_e('Discard Draft', 'fl-builder'); ?>',
|
29 |
+
discardMessage: '<?php esc_attr_e('Do you really want to discard this draft? All of your changes that are not published will be lost.', 'fl-builder'); ?>',
|
30 |
+
draft: '<?php esc_attr_e('Save Draft', 'fl-builder'); ?>',
|
31 |
duplicate: '<?php _ex( 'Duplicate', 'Duplicate page/post action label.', 'fl-builder' ); ?>',
|
32 |
+
duplicatePage: '<?php esc_attr_e('Duplicate This Page', 'fl-builder'); ?>',
|
33 |
+
duplicateTemplate: '<?php esc_attr_e('Duplicate This Template', 'fl-builder'); ?>',
|
34 |
+
editGlobalSettings: '<?php esc_attr_e('Edit Global Settings', 'fl-builder'); ?>',
|
35 |
+
emptyMessage: '<?php esc_attr_e('Drop a row layout or module to get started!', 'fl-builder') ?>',
|
36 |
+
errorMessage: '<?php _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') ?>',
|
37 |
+
fullSize: '<?php esc_attr_e('Full Size', 'fl-builder'); ?>',
|
38 |
+
globalErrorMessage: '<?php _e('"{message}" on line {line} of {file}.', 'fl-builder') ?>',
|
39 |
+
insert: '<?php esc_attr_e('Insert', 'fl-builder'); ?>',
|
40 |
+
large: '<?php esc_attr_e('Large', 'fl-builder'); ?>',
|
41 |
+
manageTemplates: '<?php esc_attr_e('Manage Templates', 'fl-builder'); ?>',
|
42 |
+
medium: '<?php esc_attr_e('Medium', 'fl-builder'); ?>',
|
43 |
+
module: '<?php esc_attr_e('Module', 'fl-builder') ?>',
|
44 |
+
move: '<?php esc_attr_e('Move', 'fl-builder'); ?>',
|
45 |
+
newColumn: '<?php esc_attr_e('New Column', 'fl-builder') ?>',
|
46 |
+
newRow: '<?php esc_attr_e('New Row', 'fl-builder') ?>',
|
47 |
+
noResultsFound: '<?php esc_attr_e('No results found.', 'fl-builder') ?>',
|
48 |
+
ok: '<?php esc_attr_e( 'OK', 'fl-builder' ); ?>',
|
49 |
+
photoPage: '<?php esc_attr_e('Photo Page', 'fl-builder'); ?>',
|
50 |
+
photoSelected: '<?php esc_attr_e('Photo Selected', 'fl-builder'); ?>',
|
51 |
+
photosSelected: '<?php esc_attr_e('Photos Selected', 'fl-builder'); ?>',
|
52 |
+
publish: '<?php esc_attr_e('Publish Changes', 'fl-builder'); ?>',
|
53 |
+
remove: '<?php esc_attr_e('Remove', 'fl-builder'); ?>',
|
54 |
+
row: '<?php esc_attr_e('Row', 'fl-builder') ?>',
|
55 |
+
rowSettings: '<?php esc_attr_e('Row Settings', 'fl-builder') ?>',
|
56 |
+
saveCoreTemplate: '<?php esc_attr_e('Save Core Template', 'fl-builder'); ?>',
|
57 |
+
saveTemplate: '<?php esc_attr_e('Save Template', 'fl-builder'); ?>',
|
58 |
+
selectPhoto: '<?php esc_attr_e('Select Photo', 'fl-builder'); ?>',
|
59 |
+
selectPhotos: '<?php esc_attr_e('Select Photos', 'fl-builder'); ?>',
|
60 |
+
selectVideo: '<?php esc_attr_e('Select Video', 'fl-builder'); ?>',
|
61 |
settings: '<?php _ex( '%s Settings', '%s stands for module name.', 'fl-builder' ); ?>',
|
62 |
+
templateAppend: '<?php esc_attr_e('Append New Layout', 'fl-builder'); ?>',
|
63 |
+
templateReplace: '<?php esc_attr_e('Replace Existing Layout', 'fl-builder'); ?>',
|
64 |
+
templateSaved: '<?php esc_attr_e('Template Saved!', 'fl-builder'); ?>',
|
65 |
+
thumbnail: '<?php esc_attr_e('Thumbnail', 'fl-builder'); ?>',
|
66 |
+
unloadWarning: '<?php esc_attr_e('The settings you are currently editing will not be saved if you navigate away from this page.', 'fl-builder'); ?>'
|
67 |
};
|
68 |
|
69 |
</script>
|
includes/module-settings.php
CHANGED
@@ -2,38 +2,9 @@
|
|
2 |
|
3 |
$global_settings = FLBuilderModel::get_global_settings();
|
4 |
|
5 |
-
FLBuilder::register_settings_form('
|
6 |
'title' => __('Advanced', 'fl-builder'),
|
7 |
'sections' => array(
|
8 |
-
'general' => array(
|
9 |
-
'title' => '',
|
10 |
-
'fields' => array(
|
11 |
-
'class' => array(
|
12 |
-
'type' => 'text',
|
13 |
-
'label' => __('CSS Class', 'fl-builder'),
|
14 |
-
'help' => __( 'A custom CSS class that will be applied to this module. Spaces only, no dots.', 'fl-builder' ),
|
15 |
-
'preview' => array(
|
16 |
-
'type' => 'none'
|
17 |
-
)
|
18 |
-
),
|
19 |
-
'responsive_display' => array(
|
20 |
-
'type' => 'select',
|
21 |
-
'label' => __('Display', 'fl-builder'),
|
22 |
-
'options' => array(
|
23 |
-
'' => __('Always', 'fl-builder'),
|
24 |
-
'desktop' => __('Large Devices Only', 'fl-builder'),
|
25 |
-
'desktop-medium' => __('Large & Medium Devices Only', 'fl-builder'),
|
26 |
-
'medium' => __('Medium Devices Only', 'fl-builder'),
|
27 |
-
'medium-mobile' => __('Medium & Small Devices Only', 'fl-builder'),
|
28 |
-
'mobile' => __('Small Devices Only', 'fl-builder'),
|
29 |
-
),
|
30 |
-
'help' => __('Choose whether to show or hide this module at different device sizes.'),
|
31 |
-
'preview' => array(
|
32 |
-
'type' => 'none'
|
33 |
-
)
|
34 |
-
)
|
35 |
-
)
|
36 |
-
),
|
37 |
'margins' => array(
|
38 |
'title' => __('Margins', 'fl-builder'),
|
39 |
'fields' => array(
|
@@ -87,6 +58,27 @@ FLBuilder::register_settings_form('module-advanced', array(
|
|
87 |
)
|
88 |
)
|
89 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
'animation' => array(
|
91 |
'title' => __('Animation', 'fl-builder'),
|
92 |
'fields' => array(
|
@@ -118,6 +110,27 @@ FLBuilder::register_settings_form('module-advanced', array(
|
|
118 |
)
|
119 |
)
|
120 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
)
|
122 |
)
|
123 |
));
|
2 |
|
3 |
$global_settings = FLBuilderModel::get_global_settings();
|
4 |
|
5 |
+
FLBuilder::register_settings_form('module_advanced', array(
|
6 |
'title' => __('Advanced', 'fl-builder'),
|
7 |
'sections' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
'margins' => array(
|
9 |
'title' => __('Margins', 'fl-builder'),
|
10 |
'fields' => array(
|
58 |
)
|
59 |
)
|
60 |
),
|
61 |
+
'responsive' => array(
|
62 |
+
'title' => __('Responsive Layout', 'fl-builder'),
|
63 |
+
'fields' => array(
|
64 |
+
'responsive_display' => array(
|
65 |
+
'type' => 'select',
|
66 |
+
'label' => __('Display', 'fl-builder'),
|
67 |
+
'options' => array(
|
68 |
+
'' => __('Always', 'fl-builder'),
|
69 |
+
'desktop' => __('Large Devices Only', 'fl-builder'),
|
70 |
+
'desktop-medium' => __('Large & Medium Devices Only', 'fl-builder'),
|
71 |
+
'medium' => __('Medium Devices Only', 'fl-builder'),
|
72 |
+
'medium-mobile' => __('Medium & Small Devices Only', 'fl-builder'),
|
73 |
+
'mobile' => __('Small Devices Only', 'fl-builder'),
|
74 |
+
),
|
75 |
+
'help' => __( 'Choose whether to show or hide this module at different device sizes.', 'fl-builder' ),
|
76 |
+
'preview' => array(
|
77 |
+
'type' => 'none'
|
78 |
+
)
|
79 |
+
)
|
80 |
+
)
|
81 |
+
),
|
82 |
'animation' => array(
|
83 |
'title' => __('Animation', 'fl-builder'),
|
84 |
'fields' => array(
|
110 |
)
|
111 |
)
|
112 |
)
|
113 |
+
),
|
114 |
+
'css_selectors' => array(
|
115 |
+
'title' => __('CSS Selectors', 'fl-builder'),
|
116 |
+
'fields' => array(
|
117 |
+
'id' => array(
|
118 |
+
'type' => 'text',
|
119 |
+
'label' => __('ID', 'fl-builder'),
|
120 |
+
'help' => __( "A unique ID that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces.", 'fl-builder' ),
|
121 |
+
'preview' => array(
|
122 |
+
'type' => 'none'
|
123 |
+
)
|
124 |
+
),
|
125 |
+
'class' => array(
|
126 |
+
'type' => 'text',
|
127 |
+
'label' => __('Class', 'fl-builder'),
|
128 |
+
'help' => __( "A class that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces.", 'fl-builder' ),
|
129 |
+
'preview' => array(
|
130 |
+
'type' => 'none'
|
131 |
+
)
|
132 |
+
)
|
133 |
+
)
|
134 |
)
|
135 |
)
|
136 |
));
|
includes/module.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<div
|
2 |
<div class="fl-module-content fl-node-content">
|
3 |
<?php include $module->dir . 'includes/frontend.php'; ?>
|
4 |
</div>
|
1 |
+
<div<?php FLBuilder::render_module_attributes( $module ); ?>>
|
2 |
<div class="fl-module-content fl-node-content">
|
3 |
<?php include $module->dir . 'includes/frontend.php'; ?>
|
4 |
</div>
|
includes/row-settings.php
CHANGED
@@ -448,35 +448,6 @@ FLBuilder::register_settings_form('row', array(
|
|
448 |
'advanced' => array(
|
449 |
'title' => __('Advanced', 'fl-builder'),
|
450 |
'sections' => array(
|
451 |
-
'general' => array(
|
452 |
-
'title' => '',
|
453 |
-
'fields' => array(
|
454 |
-
'class' => array(
|
455 |
-
'type' => 'text',
|
456 |
-
'label' => __('CSS Class', 'fl-builder'),
|
457 |
-
'help' => __('Add a custom CSS selector here to apply additional styling to this row.', 'fl-builder'),
|
458 |
-
'preview' => array(
|
459 |
-
'type' => 'none'
|
460 |
-
)
|
461 |
-
),
|
462 |
-
'responsive_display' => array(
|
463 |
-
'type' => 'select',
|
464 |
-
'label' => __('Display', 'fl-builder'),
|
465 |
-
'options' => array(
|
466 |
-
'' => __('Always', 'fl-builder'),
|
467 |
-
'desktop' => __('Large Devices Only', 'fl-builder'),
|
468 |
-
'desktop-medium' => __('Large & Medium Devices Only', 'fl-builder'),
|
469 |
-
'medium' => __('Medium Devices Only', 'fl-builder'),
|
470 |
-
'medium-mobile' => __('Medium & Small Devices Only', 'fl-builder'),
|
471 |
-
'mobile' => __('Small Devices Only', 'fl-builder'),
|
472 |
-
),
|
473 |
-
'help' => __( 'Choose whether to show or hide this row at different device sizes.', 'fl-builder' ),
|
474 |
-
'preview' => array(
|
475 |
-
'type' => 'none'
|
476 |
-
)
|
477 |
-
)
|
478 |
-
)
|
479 |
-
),
|
480 |
'margins' => array(
|
481 |
'title' => __('Margins', 'fl-builder'),
|
482 |
'fields' => array(
|
@@ -582,7 +553,49 @@ FLBuilder::register_settings_form('row', array(
|
|
582 |
)
|
583 |
)
|
584 |
)
|
585 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
586 |
)
|
587 |
)
|
588 |
)
|
448 |
'advanced' => array(
|
449 |
'title' => __('Advanced', 'fl-builder'),
|
450 |
'sections' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
'margins' => array(
|
452 |
'title' => __('Margins', 'fl-builder'),
|
453 |
'fields' => array(
|
553 |
)
|
554 |
)
|
555 |
)
|
556 |
+
),
|
557 |
+
'responsive' => array(
|
558 |
+
'title' => __('Responsive Layout', 'fl-builder'),
|
559 |
+
'fields' => array(
|
560 |
+
'responsive_display' => array(
|
561 |
+
'type' => 'select',
|
562 |
+
'label' => __('Display', 'fl-builder'),
|
563 |
+
'options' => array(
|
564 |
+
'' => __('Always', 'fl-builder'),
|
565 |
+
'desktop' => __('Large Devices Only', 'fl-builder'),
|
566 |
+
'desktop-medium' => __('Large & Medium Devices Only', 'fl-builder'),
|
567 |
+
'medium' => __('Medium Devices Only', 'fl-builder'),
|
568 |
+
'medium-mobile' => __('Medium & Small Devices Only', 'fl-builder'),
|
569 |
+
'mobile' => __('Small Devices Only', 'fl-builder'),
|
570 |
+
),
|
571 |
+
'help' => __( 'Choose whether to show or hide this row at different device sizes.', 'fl-builder' ),
|
572 |
+
'preview' => array(
|
573 |
+
'type' => 'none'
|
574 |
+
)
|
575 |
+
)
|
576 |
+
)
|
577 |
+
),
|
578 |
+
'css_selectors' => array(
|
579 |
+
'title' => __('CSS Selectors', 'fl-builder'),
|
580 |
+
'fields' => array(
|
581 |
+
'id' => array(
|
582 |
+
'type' => 'text',
|
583 |
+
'label' => __('ID', 'fl-builder'),
|
584 |
+
'help' => __( "A unique ID that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces.", 'fl-builder' ),
|
585 |
+
'preview' => array(
|
586 |
+
'type' => 'none'
|
587 |
+
)
|
588 |
+
),
|
589 |
+
'class' => array(
|
590 |
+
'type' => 'text',
|
591 |
+
'label' => __('Class', 'fl-builder'),
|
592 |
+
'help' => __( "A class that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces.", 'fl-builder' ),
|
593 |
+
'preview' => array(
|
594 |
+
'type' => 'none'
|
595 |
+
)
|
596 |
+
)
|
597 |
+
)
|
598 |
+
)
|
599 |
)
|
600 |
)
|
601 |
)
|
includes/row.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
<div
|
2 |
<div class="fl-row-content-wrap">
|
3 |
-
<?php FLBuilder::render_row_bg($row); ?>
|
4 |
-
<div class="<?php FLBuilder::render_row_content_class($row); ?>">
|
5 |
<?php
|
6 |
|
7 |
-
foreach($groups as $group) {
|
8 |
-
FLBuilder::render_column_group($group);
|
9 |
}
|
10 |
|
11 |
?>
|
1 |
+
<div<?php FLBuilder::render_row_attributes( $row ); ?>>
|
2 |
<div class="fl-row-content-wrap">
|
3 |
+
<?php FLBuilder::render_row_bg( $row ); ?>
|
4 |
+
<div class="<?php FLBuilder::render_row_content_class( $row ); ?>">
|
5 |
<?php
|
6 |
|
7 |
+
foreach ( $groups as $group ) {
|
8 |
+
FLBuilder::render_column_group( $group );
|
9 |
}
|
10 |
|
11 |
?>
|
includes/updater-config.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
-
'version' => '1.4.
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
+
'version' => '1.4.6',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
includes/updater/includes/form.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
<?php if(!$status) : ?>
|
4 |
<p style="padding:10px 20px; background: #d54e21; color: #fff;">
|
5 |
<?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates.', 'fl-builder'); ?>
|
6 |
-
<a style="color: #fff;" href="
|
7 |
</p>
|
8 |
<?php endif; ?>
|
9 |
|
@@ -24,7 +24,7 @@
|
|
24 |
<?php endif; ?>
|
25 |
|
26 |
<p>
|
27 |
-
<?php echo sprintf( __( 'Enter your <a%s>licence key</a> to enable remote updates and support.', 'fl-builder' ), ' href="
|
28 |
</p>
|
29 |
<?php if(is_multisite()) : ?>
|
30 |
<p>
|
3 |
<?php if(!$status) : ?>
|
4 |
<p style="padding:10px 20px; background: #d54e21; color: #fff;">
|
5 |
<?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates.', 'fl-builder'); ?>
|
6 |
+
<a style="color: #fff;" href="<?php echo FLBuilderModel::get_upgrade_url( array( 'utm_source' => 'external', 'utm_medium' => 'builder', 'utm_campaign' => 'settings-page' ) ); ?>" target="_blank"><?php _e('Subscribe Now', 'fl-builder'); ?> »</a>
|
7 |
</p>
|
8 |
<?php endif; ?>
|
9 |
|
24 |
<?php endif; ?>
|
25 |
|
26 |
<p>
|
27 |
+
<?php echo sprintf( __( 'Enter your <a%s>licence key</a> to enable remote updates and support.', 'fl-builder' ), ' href="https://www.wpbeaverbuilder.com/my-account/?utm_source=external&utm_medium=builder&utm_campaign=settings-page" target="_blank"' ) ?>
|
28 |
</p>
|
29 |
<?php if(is_multisite()) : ?>
|
30 |
<p>
|
js/fl-builder-admin-settings.js
CHANGED
@@ -4,6 +4,12 @@
|
|
4 |
* @class FLBuilderAdminSettings
|
5 |
*/
|
6 |
FLBuilderAdminSettings = {
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
/**
|
9 |
* @method init
|
@@ -25,6 +31,8 @@
|
|
25 |
$('.fl-module-all-cb').on('click', FLBuilderAdminSettings._moduleAllCheckboxClicked);
|
26 |
$('.fl-module-cb').on('click', FLBuilderAdminSettings._moduleCheckboxClicked);
|
27 |
$('.fl-override-ms-cb').on('click', FLBuilderAdminSettings._overrideCheckboxClicked);
|
|
|
|
|
28 |
$('#uninstall-form').on('submit', FLBuilderAdminSettings._uninstallFormSubmit);
|
29 |
},
|
30 |
|
@@ -140,13 +148,56 @@
|
|
140 |
}
|
141 |
},
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
/**
|
144 |
* @method _uninstallFormSubmit
|
145 |
* @private
|
146 |
*/
|
147 |
_uninstallFormSubmit: function()
|
148 |
{
|
149 |
-
var result = prompt(
|
150 |
|
151 |
if(result == 'uninstall') {
|
152 |
return true;
|
4 |
* @class FLBuilderAdminSettings
|
5 |
*/
|
6 |
FLBuilderAdminSettings = {
|
7 |
+
|
8 |
+
/**
|
9 |
+
* @property _iconUploader
|
10 |
+
* @private
|
11 |
+
*/
|
12 |
+
_iconUploader: null,
|
13 |
|
14 |
/**
|
15 |
* @method init
|
31 |
$('.fl-module-all-cb').on('click', FLBuilderAdminSettings._moduleAllCheckboxClicked);
|
32 |
$('.fl-module-cb').on('click', FLBuilderAdminSettings._moduleCheckboxClicked);
|
33 |
$('.fl-override-ms-cb').on('click', FLBuilderAdminSettings._overrideCheckboxClicked);
|
34 |
+
$('input[name=fl-upload-icon]').on('click', FLBuilderAdminSettings._showIconUploader);
|
35 |
+
$('.fl-delete-icon-set').on('click', FLBuilderAdminSettings._deleteCustomIconSet);
|
36 |
$('#uninstall-form').on('submit', FLBuilderAdminSettings._uninstallFormSubmit);
|
37 |
},
|
38 |
|
148 |
}
|
149 |
},
|
150 |
|
151 |
+
/**
|
152 |
+
* @method _showIconUploader
|
153 |
+
* @private
|
154 |
+
*/
|
155 |
+
_showIconUploader: function()
|
156 |
+
{
|
157 |
+
if(FLBuilderAdminSettings._iconUploader === null) {
|
158 |
+
FLBuilderAdminSettings._iconUploader = wp.media({
|
159 |
+
title: FLBuilderAdminSettingsStrings.selectFile,
|
160 |
+
button: { text: FLBuilderAdminSettingsStrings.selectFile },
|
161 |
+
library : { type : 'application/zip' },
|
162 |
+
multiple: false
|
163 |
+
});
|
164 |
+
}
|
165 |
+
|
166 |
+
FLBuilderAdminSettings._iconUploader.once('select', $.proxy(FLBuilderAdminSettings._iconFileSelected, this));
|
167 |
+
FLBuilderAdminSettings._iconUploader.open();
|
168 |
+
},
|
169 |
+
|
170 |
+
/**
|
171 |
+
* @method _iconFileSelected
|
172 |
+
* @private
|
173 |
+
*/
|
174 |
+
_iconFileSelected: function()
|
175 |
+
{
|
176 |
+
var file = FLBuilderAdminSettings._iconUploader.state().get('selection').first().toJSON();
|
177 |
+
|
178 |
+
$( 'input[name=fl-new-icon-set]' ).val( file.id );
|
179 |
+
$( '#icons-form' ).submit();
|
180 |
+
},
|
181 |
+
|
182 |
+
/**
|
183 |
+
* @method _deleteCustomIconSet
|
184 |
+
* @private
|
185 |
+
*/
|
186 |
+
_deleteCustomIconSet: function()
|
187 |
+
{
|
188 |
+
var set = $( this ).data( 'set' );
|
189 |
+
|
190 |
+
$( 'input[name=fl-delete-icon-set]' ).val( set );
|
191 |
+
$( '#icons-form' ).submit();
|
192 |
+
},
|
193 |
+
|
194 |
/**
|
195 |
* @method _uninstallFormSubmit
|
196 |
* @private
|
197 |
*/
|
198 |
_uninstallFormSubmit: function()
|
199 |
{
|
200 |
+
var result = prompt(FLBuilderAdminSettingsStrings.uninstall, '');
|
201 |
|
202 |
if(result == 'uninstall') {
|
203 |
return true;
|
js/fl-builder-preview.js
CHANGED
@@ -205,7 +205,7 @@ var FLBuilderPreview;
|
|
205 |
{
|
206 |
var post = $('#fl-post-id').val(),
|
207 |
css = $('#fl-builder-layout-' + post + '-css').attr('href'),
|
208 |
-
js = $('script[src*="/
|
209 |
html = $(FLBuilder._contentClass).html();
|
210 |
|
211 |
this.state = {
|
@@ -296,6 +296,9 @@ var FLBuilderPreview;
|
|
296 |
|
297 |
// Remove the loading graphic.
|
298 |
$('.fl-builder-preview-loader').remove();
|
|
|
|
|
|
|
299 |
},
|
300 |
|
301 |
/**
|
205 |
{
|
206 |
var post = $('#fl-post-id').val(),
|
207 |
css = $('#fl-builder-layout-' + post + '-css').attr('href'),
|
208 |
+
js = $('script[src*="/cache/' + post + '"]').attr('src'),
|
209 |
html = $(FLBuilder._contentClass).html();
|
210 |
|
211 |
this.state = {
|
296 |
|
297 |
// Remove the loading graphic.
|
298 |
$('.fl-builder-preview-loader').remove();
|
299 |
+
|
300 |
+
// Send the preview event.
|
301 |
+
$( FLBuilder._contentClass ).trigger( 'preview-rendered' );
|
302 |
},
|
303 |
|
304 |
/**
|
js/fl-builder.js
CHANGED
@@ -147,7 +147,9 @@ var FLBuilder;
|
|
147 |
*/
|
148 |
_init: function()
|
149 |
{
|
150 |
-
|
|
|
|
|
151 |
FLBuilder._initClassNames();
|
152 |
FLBuilder._initMediaUploader();
|
153 |
FLBuilder._initOverflowFix();
|
@@ -163,10 +165,58 @@ var FLBuilder;
|
|
163 |
},
|
164 |
|
165 |
/**
|
166 |
-
|
|
|
|
|
|
|
167 |
* @private
|
168 |
*/
|
169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
{
|
171 |
if(typeof wp.heartbeat != 'undefined') {
|
172 |
|
@@ -323,7 +373,7 @@ var FLBuilder;
|
|
323 |
$('.fl-page-nav .nav a').on('click', FLBuilder._headerLinkClicked);
|
324 |
|
325 |
/* Heartbeat */
|
326 |
-
$(document).on('heartbeat-tick', FLBuilder.
|
327 |
|
328 |
/* Unload Warning */
|
329 |
$(window).on('beforeunload', FLBuilder._warnBeforeUnload);
|
@@ -1242,7 +1292,7 @@ var FLBuilder;
|
|
1242 |
content = $(FLBuilder._contentClass),
|
1243 |
loader = $('<img src="' + data.css + '" />'),
|
1244 |
oldCss = $('#fl-builder-layout-' + post + '-css'),
|
1245 |
-
oldJs = $('script[src*="/
|
1246 |
newCss = $('<link rel="stylesheet" id="fl-builder-layout-' + post + '-css" href="'+ data.css +'" />'),
|
1247 |
newJs = $('<script src="'+ data.js +'"></script>');
|
1248 |
|
@@ -2749,10 +2799,10 @@ var FLBuilder;
|
|
2749 |
fields = multiple.find('.fl-builder-field-multiple');
|
2750 |
|
2751 |
if(fields.length === 1) {
|
2752 |
-
fields.eq(0).find('.fl-builder-field-actions').
|
2753 |
}
|
2754 |
else {
|
2755 |
-
fields.find('.fl-builder-field-actions').
|
2756 |
}
|
2757 |
}
|
2758 |
|
@@ -2779,9 +2829,9 @@ var FLBuilder;
|
|
2779 |
fieldName = button.attr('data-field'),
|
2780 |
fieldRow = button.closest('tr').siblings('tr[data-field='+ fieldName +']').last(),
|
2781 |
clone = fieldRow.clone(),
|
2782 |
-
index = parseInt(fieldRow.find('label span').html(), 10) + 1;
|
2783 |
|
2784 |
-
clone.find('th label span').html(index);
|
2785 |
clone.find('.fl-form-field-preview-text').html('');
|
2786 |
clone.find('input, textarea, select').val('');
|
2787 |
fieldRow.after(clone);
|
@@ -2797,12 +2847,13 @@ var FLBuilder;
|
|
2797 |
var button = $(this),
|
2798 |
row = button.closest('tr'),
|
2799 |
clone = row.clone(),
|
2800 |
-
index = parseInt(row.find('label span').html(), 10) + 1;
|
2801 |
|
2802 |
-
clone.find('th label span').html(index);
|
2803 |
row.after(clone);
|
2804 |
FLBuilder._renumberFields(row.parent());
|
2805 |
FLBuilder._initMultipleFields();
|
|
|
2806 |
},
|
2807 |
|
2808 |
/**
|
@@ -2833,7 +2884,7 @@ var FLBuilder;
|
|
2833 |
i = 0;
|
2834 |
|
2835 |
for( ; i < rows.length; i++) {
|
2836 |
-
rows.eq(i).find('th label span').html(i + 1);
|
2837 |
}
|
2838 |
},
|
2839 |
|
@@ -3402,17 +3453,21 @@ var FLBuilder;
|
|
3402 |
*/
|
3403 |
_saveFormFieldClicked: function()
|
3404 |
{
|
3405 |
-
var form
|
3406 |
-
lightboxId
|
3407 |
-
type
|
3408 |
-
settings
|
3409 |
-
helper
|
3410 |
-
link
|
3411 |
-
preview
|
3412 |
-
previewText
|
3413 |
-
|
3414 |
-
|
3415 |
-
|
|
|
|
|
|
|
|
|
3416 |
if(typeof helper !== 'undefined') {
|
3417 |
|
3418 |
form.find('label.error').remove();
|
@@ -3808,6 +3863,62 @@ var FLBuilder;
|
|
3808 |
html = '<div class="fl-lightbox-message">' + message + '</div><div class="fl-lightbox-footer"><span class="fl-builder-settings-cancel fl-builder-button fl-builder-button-large fl-builder-button-primary" href="javascript:void(0);">' + FLBuilderStrings.ok + '</span></div>';
|
3809 |
|
3810 |
alert.open(html);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3811 |
}
|
3812 |
};
|
3813 |
|
147 |
*/
|
148 |
_init: function()
|
149 |
{
|
150 |
+
FLBuilder._initJQueryReadyFix();
|
151 |
+
FLBuilder._initGlobalErrorHandling();
|
152 |
+
FLBuilder._initPostLock();
|
153 |
FLBuilder._initClassNames();
|
154 |
FLBuilder._initMediaUploader();
|
155 |
FLBuilder._initOverflowFix();
|
165 |
},
|
166 |
|
167 |
/**
|
168 |
+
* Prevent errors thrown in jQuery's ready function
|
169 |
+
* from breaking subsequent ready calls.
|
170 |
+
*
|
171 |
+
* @method _initJQueryReadyFix
|
172 |
* @private
|
173 |
*/
|
174 |
+
_initJQueryReadyFix: function()
|
175 |
+
{
|
176 |
+
if ( FLBuilderConfig.debug ) {
|
177 |
+
return;
|
178 |
+
}
|
179 |
+
|
180 |
+
jQuery.fn.oldReady = jQuery.fn.ready;
|
181 |
+
|
182 |
+
jQuery.fn.ready = function( fn ) {
|
183 |
+
return jQuery.fn.oldReady( function() {
|
184 |
+
try {
|
185 |
+
if ( 'function' == typeof fn ) {
|
186 |
+
fn();
|
187 |
+
}
|
188 |
+
}
|
189 |
+
catch ( e ){
|
190 |
+
FLBuilder.logError( e );
|
191 |
+
}
|
192 |
+
});
|
193 |
+
};
|
194 |
+
},
|
195 |
+
|
196 |
+
/**
|
197 |
+
* Try to prevent errors from third party plugins
|
198 |
+
* from breaking the builder.
|
199 |
+
*
|
200 |
+
* @method _initGlobalErrorHandling
|
201 |
+
* @private
|
202 |
+
*/
|
203 |
+
_initGlobalErrorHandling: function()
|
204 |
+
{
|
205 |
+
if ( FLBuilderConfig.debug ) {
|
206 |
+
return;
|
207 |
+
}
|
208 |
+
|
209 |
+
window.onerror = function( message, file, line, col, error ) {
|
210 |
+
FLBuilder.logGlobalError( message, file, line, col, error );
|
211 |
+
return true;
|
212 |
+
};
|
213 |
+
},
|
214 |
+
|
215 |
+
/**
|
216 |
+
* @method _initPostLock
|
217 |
+
* @private
|
218 |
+
*/
|
219 |
+
_initPostLock: function()
|
220 |
{
|
221 |
if(typeof wp.heartbeat != 'undefined') {
|
222 |
|
373 |
$('.fl-page-nav .nav a').on('click', FLBuilder._headerLinkClicked);
|
374 |
|
375 |
/* Heartbeat */
|
376 |
+
$(document).on('heartbeat-tick', FLBuilder._initPostLock);
|
377 |
|
378 |
/* Unload Warning */
|
379 |
$(window).on('beforeunload', FLBuilder._warnBeforeUnload);
|
1292 |
content = $(FLBuilder._contentClass),
|
1293 |
loader = $('<img src="' + data.css + '" />'),
|
1294 |
oldCss = $('#fl-builder-layout-' + post + '-css'),
|
1295 |
+
oldJs = $('script[src*="/cache/' + post + '"]'),
|
1296 |
newCss = $('<link rel="stylesheet" id="fl-builder-layout-' + post + '-css" href="'+ data.css +'" />'),
|
1297 |
newJs = $('<script src="'+ data.js +'"></script>');
|
1298 |
|
2799 |
fields = multiple.find('.fl-builder-field-multiple');
|
2800 |
|
2801 |
if(fields.length === 1) {
|
2802 |
+
fields.eq(0).find('.fl-builder-field-actions').addClass('fl-builder-field-actions-single');
|
2803 |
}
|
2804 |
else {
|
2805 |
+
fields.find('.fl-builder-field-actions').removeClass('fl-builder-field-actions-single');
|
2806 |
}
|
2807 |
}
|
2808 |
|
2829 |
fieldName = button.attr('data-field'),
|
2830 |
fieldRow = button.closest('tr').siblings('tr[data-field='+ fieldName +']').last(),
|
2831 |
clone = fieldRow.clone(),
|
2832 |
+
index = parseInt(fieldRow.find('label span.fl-builder-field-index').html(), 10) + 1;
|
2833 |
|
2834 |
+
clone.find('th label span.fl-builder-field-index').html(index);
|
2835 |
clone.find('.fl-form-field-preview-text').html('');
|
2836 |
clone.find('input, textarea, select').val('');
|
2837 |
fieldRow.after(clone);
|
2847 |
var button = $(this),
|
2848 |
row = button.closest('tr'),
|
2849 |
clone = row.clone(),
|
2850 |
+
index = parseInt(row.find('label span.fl-builder-field-index').html(), 10) + 1;
|
2851 |
|
2852 |
+
clone.find('th label span.fl-builder-field-index').html(index);
|
2853 |
row.after(clone);
|
2854 |
FLBuilder._renumberFields(row.parent());
|
2855 |
FLBuilder._initMultipleFields();
|
2856 |
+
FLBuilder.preview.delayPreview();
|
2857 |
},
|
2858 |
|
2859 |
/**
|
2884 |
i = 0;
|
2885 |
|
2886 |
for( ; i < rows.length; i++) {
|
2887 |
+
rows.eq(i).find('th label span.fl-builder-field-index').html(i + 1);
|
2888 |
}
|
2889 |
},
|
2890 |
|
3453 |
*/
|
3454 |
_saveFormFieldClicked: function()
|
3455 |
{
|
3456 |
+
var form = $(this).closest('.fl-builder-settings'),
|
3457 |
+
lightboxId = $(this).closest('.fl-lightbox-wrap').attr('data-instance-id'),
|
3458 |
+
type = form.attr('data-type'),
|
3459 |
+
settings = FLBuilder._getSettings(form),
|
3460 |
+
helper = FLBuilder._moduleHelpers[type],
|
3461 |
+
link = $('.fl-builder-settings #fl-' + lightboxId),
|
3462 |
+
preview = link.parent().attr('data-preview-text'),
|
3463 |
+
previewText = settings[preview],
|
3464 |
+
selectPreview = $( 'select[name="' + preview + '"]' ),
|
3465 |
+
tmp = document.createElement('div'),
|
3466 |
+
valid = true;
|
3467 |
+
|
3468 |
+
if ( selectPreview.length > 0 ) {
|
3469 |
+
previewText = selectPreview.find( 'option[value="' + settings[ preview ] + '"]' ).text();
|
3470 |
+
}
|
3471 |
if(typeof helper !== 'undefined') {
|
3472 |
|
3473 |
form.find('label.error').remove();
|
3863 |
html = '<div class="fl-lightbox-message">' + message + '</div><div class="fl-lightbox-footer"><span class="fl-builder-settings-cancel fl-builder-button fl-builder-button-large fl-builder-button-primary" href="javascript:void(0);">' + FLBuilderStrings.ok + '</span></div>';
|
3864 |
|
3865 |
alert.open(html);
|
3866 |
+
},
|
3867 |
+
|
3868 |
+
/* Console Logging
|
3869 |
+
----------------------------------------------------------*/
|
3870 |
+
|
3871 |
+
/**
|
3872 |
+
* @method log
|
3873 |
+
*/
|
3874 |
+
log: function( message )
|
3875 |
+
{
|
3876 |
+
if ( 'undefined' == typeof window.console || 'undefined' == typeof window.console.log ) {
|
3877 |
+
return;
|
3878 |
+
}
|
3879 |
+
|
3880 |
+
console.log( message );
|
3881 |
+
},
|
3882 |
+
|
3883 |
+
/**
|
3884 |
+
* @method logError
|
3885 |
+
*/
|
3886 |
+
logError: function( error )
|
3887 |
+
{
|
3888 |
+
var message = null;
|
3889 |
+
|
3890 |
+
if ( 'undefined' == typeof error ) {
|
3891 |
+
return;
|
3892 |
+
}
|
3893 |
+
else if ( 'undefined' != typeof error.stack ) {
|
3894 |
+
message = error.stack;
|
3895 |
+
}
|
3896 |
+
else if ( 'undefined' != typeof error.message ) {
|
3897 |
+
message = error.message;
|
3898 |
+
}
|
3899 |
+
|
3900 |
+
if ( message ) {
|
3901 |
+
FLBuilder.log( '************************************************************************' );
|
3902 |
+
FLBuilder.log( FLBuilderStrings.errorMessage );
|
3903 |
+
FLBuilder.log( message );
|
3904 |
+
FLBuilder.log( '************************************************************************' );
|
3905 |
+
}
|
3906 |
+
},
|
3907 |
+
|
3908 |
+
/**
|
3909 |
+
* @method logGlobalError
|
3910 |
+
* @private
|
3911 |
+
*/
|
3912 |
+
logGlobalError: function( message, file, line, col, error )
|
3913 |
+
{
|
3914 |
+
FLBuilder.log( '************************************************************************' );
|
3915 |
+
FLBuilder.log( FLBuilderStrings.errorMessage );
|
3916 |
+
FLBuilder.log( FLBuilderStrings.globalErrorMessage.replace( '{message}', message ).replace( '{line}', line ).replace( '{file}', file ) );
|
3917 |
+
|
3918 |
+
if ( 'undefined' != typeof error && 'undefined' != typeof error.stack ) {
|
3919 |
+
FLBuilder.log( error.stack );
|
3920 |
+
FLBuilder.log( '************************************************************************' );
|
3921 |
+
}
|
3922 |
}
|
3923 |
};
|
3924 |
|
languages/fr_FR.mo
ADDED
Binary file
|
languages/fr_FR.po
ADDED
@@ -0,0 +1,3480 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Beaver Builder Plugin (Pro Version)\n"
|
4 |
+
"POT-Creation-Date: 2015-01-31 23:42-0500\n"
|
5 |
+
"PO-Revision-Date: 2015-02-02 23:57-0500\n"
|
6 |
+
"Last-Translator: Gérard Godin <Gerard@getgointernetcoaching.com>\n"
|
7 |
+
"Language-Team: Gerard Godin <gerard@getgointernetcoaching.com>\n"
|
8 |
+
"Language: fr_FR\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-Basepath: ..\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
|
22 |
+
#: classes/class-fl-builder-admin.php:39
|
23 |
+
#, php-format
|
24 |
+
msgid ""
|
25 |
+
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
26 |
+
"with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
|
27 |
+
"of this plugin."
|
28 |
+
msgstr ""
|
29 |
+
"Cette version de l'extension <strong>Beaver Builder</strong> n'est pas "
|
30 |
+
"compatible avec WordPress multisite. <a%s> S'il vous plaît, mettre à niveau "
|
31 |
+
"vers la version multisite de cet extension."
|
32 |
+
|
33 |
+
#: classes/class-fl-builder-admin.php:49
|
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 |
+
"L'extension <strong>Beaver Builder</strong> nécessite la version 3.5 ou "
|
39 |
+
"supérieure. S'il vous plaît, mettre à jour WordPress avant d'activer le "
|
40 |
+
"plugin."
|
41 |
+
|
42 |
+
#: classes/class-fl-builder-admin.php:90
|
43 |
+
#, php-format
|
44 |
+
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
45 |
+
msgstr ""
|
46 |
+
"Beaver Builder activé! <a%s> Cliquez ici</a> pour activer les mises à jour "
|
47 |
+
"automatique."
|
48 |
+
|
49 |
+
#: classes/class-fl-builder-admin.php:184
|
50 |
+
msgctxt "Plugin action link label."
|
51 |
+
msgid "Upgrade"
|
52 |
+
msgstr "Mettre à niveau"
|
53 |
+
|
54 |
+
#: classes/class-fl-builder-admin.php:197
|
55 |
+
#: classes/class-fl-builder-model.php:2437
|
56 |
+
msgid "Page Builder"
|
57 |
+
msgstr "Beaver Builder"
|
58 |
+
|
59 |
+
#: classes/class-fl-builder-model.php:1852
|
60 |
+
#, php-format
|
61 |
+
msgctxt "%s stands for post/page title."
|
62 |
+
msgid "Copy of %s"
|
63 |
+
msgstr "Copie de %s"
|
64 |
+
|
65 |
+
#: classes/class-fl-builder-photo.php:75
|
66 |
+
msgctxt "Image size."
|
67 |
+
msgid "Full Size"
|
68 |
+
msgstr "Pleine largeur"
|
69 |
+
|
70 |
+
#: classes/class-fl-builder-photo.php:76
|
71 |
+
msgctxt "Image size."
|
72 |
+
msgid "Large"
|
73 |
+
msgstr "Grande"
|
74 |
+
|
75 |
+
#: classes/class-fl-builder-photo.php:77
|
76 |
+
msgctxt "Image size."
|
77 |
+
msgid "Medium"
|
78 |
+
msgstr "Moyenne"
|
79 |
+
|
80 |
+
#: classes/class-fl-builder-photo.php:78
|
81 |
+
msgctxt "Image size."
|
82 |
+
msgid "Thumbnail"
|
83 |
+
msgstr "Vignette"
|
84 |
+
|
85 |
+
#: classes/class-fl-builder.php:699
|
86 |
+
#, php-format
|
87 |
+
msgctxt "Field name to add."
|
88 |
+
msgid "Add %s"
|
89 |
+
msgstr "Ajouter %s"
|
90 |
+
|
91 |
+
#: classes/class-fl-builder.php:762 classes/class-fl-builder.php:764
|
92 |
+
msgctxt "Custom post type label."
|
93 |
+
msgid "Layout Templates"
|
94 |
+
msgstr "Modèles de mise en page"
|
95 |
+
|
96 |
+
#: classes/class-fl-builder.php:763 classes/class-fl-builder.php:765
|
97 |
+
msgctxt "Custom post type label."
|
98 |
+
msgid "Layout Template"
|
99 |
+
msgstr "Modèle de mise en page"
|
100 |
+
|
101 |
+
#: classes/class-fl-builder.php:766
|
102 |
+
msgctxt "Custom post type label."
|
103 |
+
msgid "Add New"
|
104 |
+
msgstr "Ajouter"
|
105 |
+
|
106 |
+
#: classes/class-fl-builder.php:767
|
107 |
+
msgctxt "Custom post type label."
|
108 |
+
msgid "Add New Layout Template"
|
109 |
+
msgstr "Ajouter un nouveau modèle de mise en page"
|
110 |
+
|
111 |
+
#: classes/class-fl-builder.php:768
|
112 |
+
msgctxt "Custom post type label."
|
113 |
+
msgid "New Layout Template"
|
114 |
+
msgstr "Nouveau modèle de mise en page"
|
115 |
+
|
116 |
+
#: classes/class-fl-builder.php:769
|
117 |
+
msgctxt "Custom post type label."
|
118 |
+
msgid "Edit Layout Template"
|
119 |
+
msgstr "Modifier le modèle de mise en page"
|
120 |
+
|
121 |
+
#: classes/class-fl-builder.php:770
|
122 |
+
msgctxt "Custom post type label."
|
123 |
+
msgid "View Layout Template"
|
124 |
+
msgstr "Visualiser le modèle de mise en page"
|
125 |
+
|
126 |
+
#: classes/class-fl-builder.php:771
|
127 |
+
msgctxt "Custom post type label."
|
128 |
+
msgid "All Layout Templates"
|
129 |
+
msgstr "Tous les modèles de mise en page"
|
130 |
+
|
131 |
+
#: classes/class-fl-builder.php:772
|
132 |
+
msgctxt "Custom post type label."
|
133 |
+
msgid "Search Layout Templates"
|
134 |
+
msgstr "Recherchez des modèles de mise en page"
|
135 |
+
|
136 |
+
#: classes/class-fl-builder.php:773
|
137 |
+
msgctxt "Custom post type label."
|
138 |
+
msgid "Parent Layout Templates:"
|
139 |
+
msgstr "Modèles parent de mise en page:"
|
140 |
+
|
141 |
+
#: classes/class-fl-builder.php:774
|
142 |
+
msgctxt "Custom post type label."
|
143 |
+
msgid "No layout templates found."
|
144 |
+
msgstr "Aucun modèles de mise en page trouvé."
|
145 |
+
|
146 |
+
#: classes/class-fl-builder.php:775
|
147 |
+
msgctxt "Custom post type label."
|
148 |
+
msgid "No layout templates found in Trash."
|
149 |
+
msgstr "Aucun modèles de mise en page trouvés dans la corbeille."
|
150 |
+
|
151 |
+
#: classes/class-fl-builder.php:1113 includes/js-config.php:58
|
152 |
+
#, php-format
|
153 |
+
msgctxt "%s stands for module name."
|
154 |
+
msgid "%s Settings"
|
155 |
+
msgstr "Réglages pour %s"
|
156 |
+
|
157 |
+
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
158 |
+
msgid "Text Editor"
|
159 |
+
msgstr "Éditeur de texte"
|
160 |
+
|
161 |
+
#: includes/admin-posts.php:7
|
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 actuellement actif pour cette page."
|
166 |
+
|
167 |
+
#: includes/admin-posts.php:8
|
168 |
+
#, php-format
|
169 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
170 |
+
msgid "Launch %s"
|
171 |
+
msgstr "Lancer %s"
|
172 |
+
|
173 |
+
#: includes/admin-settings.php:7 includes/global-settings.php:4
|
174 |
+
#, php-format
|
175 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
176 |
+
msgid "%s Settings"
|
177 |
+
msgstr "Réglages %s"
|
178 |
+
|
179 |
+
#: includes/admin-settings.php:12
|
180 |
+
msgid "Settings updated!"
|
181 |
+
msgstr "Réglages mis à jour!"
|
182 |
+
|
183 |
+
#: includes/admin-settings.php:19
|
184 |
+
msgid "License"
|
185 |
+
msgstr "Licence"
|
186 |
+
|
187 |
+
#: includes/admin-settings.php:23 includes/admin-settings.php:59
|
188 |
+
msgid "Upgrade"
|
189 |
+
msgstr "Mettre à niveau"
|
190 |
+
|
191 |
+
#: includes/admin-settings.php:26 includes/global-settings.php:67
|
192 |
+
msgid "Modules"
|
193 |
+
msgstr "Modules"
|
194 |
+
|
195 |
+
#: includes/admin-settings.php:29 includes/ui.php:44
|
196 |
+
msgid "Templates"
|
197 |
+
msgstr "Modèles"
|
198 |
+
|
199 |
+
#: includes/admin-settings.php:32 includes/admin-settings.php:163
|
200 |
+
msgid "Post Types"
|
201 |
+
msgstr "Types d'articles"
|
202 |
+
|
203 |
+
#: includes/admin-settings.php:33
|
204 |
+
msgid "Editing"
|
205 |
+
msgstr "En modification"
|
206 |
+
|
207 |
+
#: includes/admin-settings.php:36
|
208 |
+
msgid "Branding"
|
209 |
+
msgstr "Marquage (Branding)"
|
210 |
+
|
211 |
+
#: includes/admin-settings.php:40 includes/admin-settings.php:250
|
212 |
+
#: includes/admin-settings.php:262
|
213 |
+
msgid "Uninstall"
|
214 |
+
msgstr "Désinstaller"
|
215 |
+
|
216 |
+
#: includes/admin-settings.php:61
|
217 |
+
msgid ""
|
218 |
+
"You are currently running the lite version of the Beaver Builder plugin. "
|
219 |
+
"Upgrade today for access to premium features such as advanced modules, "
|
220 |
+
"templates, support and more!"
|
221 |
+
msgstr ""
|
222 |
+
"Vous utilisez actuellement la version lite de l'extension \"Beaver Builder"
|
223 |
+
"\". Mettez à niveau dès aujourd'hui pour l'accès aux fonctionnalités "
|
224 |
+
"premium, tels que des modules de pointe, modèles, soutien et plus encore!"
|
225 |
+
|
226 |
+
#: includes/admin-settings.php:63
|
227 |
+
msgid "Upgrade Now"
|
228 |
+
msgstr "Mettre à niveau maintenant"
|
229 |
+
|
230 |
+
#: includes/admin-settings.php:65
|
231 |
+
msgid "Learn More"
|
232 |
+
msgstr "En savoir plus"
|
233 |
+
|
234 |
+
#: includes/admin-settings.php:74
|
235 |
+
msgid "Enabled Modules"
|
236 |
+
msgstr "Modules activés"
|
237 |
+
|
238 |
+
#: includes/admin-settings.php:81 includes/admin-settings.php:132
|
239 |
+
#: includes/admin-settings.php:170 includes/admin-settings.php:222
|
240 |
+
msgid "Override network settings?"
|
241 |
+
msgstr "Remplacer les paramètres de réseau?"
|
242 |
+
|
243 |
+
#: includes/admin-settings.php:87
|
244 |
+
msgid "Check or uncheck modules below to enable or disable them."
|
245 |
+
msgstr ""
|
246 |
+
"Cochez ou décochez les modules ci-dessous pour les activer ou désactiver."
|
247 |
+
|
248 |
+
#: includes/admin-settings.php:96
|
249 |
+
msgctxt "Plugin setup page: Modules."
|
250 |
+
msgid "All"
|
251 |
+
msgstr "Tous"
|
252 |
+
|
253 |
+
#: includes/admin-settings.php:114
|
254 |
+
msgid "Save Module Settings"
|
255 |
+
msgstr "Enregistrer les réglages du module"
|
256 |
+
|
257 |
+
#: includes/admin-settings.php:125
|
258 |
+
msgid "Template Settings"
|
259 |
+
msgstr "Réglages du modèle"
|
260 |
+
|
261 |
+
#: includes/admin-settings.php:138
|
262 |
+
msgid "Enable or disable templates using the options below."
|
263 |
+
msgstr "Activer ou désactiver les modèles en utilisant les options ci-dessous."
|
264 |
+
|
265 |
+
#: includes/admin-settings.php:145
|
266 |
+
msgid "Enable All Templates"
|
267 |
+
msgstr "Activer tous les modèles"
|
268 |
+
|
269 |
+
#: includes/admin-settings.php:146
|
270 |
+
msgid "Enable Core Templates Only"
|
271 |
+
msgstr "Activer les modèles de base seulement"
|
272 |
+
|
273 |
+
#: includes/admin-settings.php:147
|
274 |
+
msgid "Enable User Templates Only"
|
275 |
+
msgstr "Activer les modèles de l'utilisateur seulement"
|
276 |
+
|
277 |
+
#: includes/admin-settings.php:148
|
278 |
+
msgid "Disable All Templates"
|
279 |
+
msgstr "Désactiver tous les modèles"
|
280 |
+
|
281 |
+
#: includes/admin-settings.php:152
|
282 |
+
msgid "Save Template Settings"
|
283 |
+
msgstr "Enregistrer les réglages de modèle"
|
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:215
|
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 |
+
"Cliquer le bouton ci-dessous permet de désinstaller \"Beaver Builder\" et de "
|
325 |
+
"supprimer toutes les données qui lui sont associés. Vous pouvez désinstaller "
|
326 |
+
"ou désactiver \"Beaver Builder\" à partir de la page des extensions "
|
327 |
+
"(plugins) à la place, si vous ne souhaitez pas supprimer les données."
|
328 |
+
|
329 |
+
#: includes/admin-settings.php:254 includes/admin-settings.php:257
|
330 |
+
#: includes/updater/includes/form.php:31
|
331 |
+
msgid "NOTE:"
|
332 |
+
msgstr "REMARQUE :"
|
333 |
+
|
334 |
+
#: includes/admin-settings.php:254
|
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 "
|
338 |
+
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
339 |
+
"its data using those meta values."
|
340 |
+
msgstr ""
|
341 |
+
"Le constructeur ne supprime pas le méta <code>_fl_builder_data</code> , "
|
342 |
+
"<code>_fl_builder_draft</code> et <code>_fl_builder_enabled</code> des "
|
343 |
+
"articles, au cas où vous souhaitiez réinstaller plus tard. Si vous le "
|
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:257 includes/updater/includes/form.php:31
|
348 |
+
msgid "This applies to all sites on the network."
|
349 |
+
msgstr "Ceci s'applique à tous les sites du réseau."
|
350 |
+
|
351 |
+
# Is there a french word instead of uninstall ?
|
352 |
+
#: includes/admin-settings.php:276
|
353 |
+
msgid ""
|
354 |
+
"Please type \"uninstall\" in the box below to confirm that you really want "
|
355 |
+
"to uninstall the page builder and all of its data."
|
356 |
+
msgstr ""
|
357 |
+
"S'il vous plaît, saisissez \"uninstall\" dans la zone ci-dessous pour "
|
358 |
+
"confirmer que vous voulez vraiment désinstaller \"Beaver Builder\" et toutes "
|
359 |
+
"ses données."
|
360 |
+
|
361 |
+
#: includes/column-settings.php:4 includes/js-config.php:21
|
362 |
+
msgid "Column Settings"
|
363 |
+
msgstr "Réglages de colonne"
|
364 |
+
|
365 |
+
#: includes/column-settings.php:7 includes/module-settings.php:95
|
366 |
+
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
367 |
+
#: modules/button/button.php:95 modules/callout/callout.php:239
|
368 |
+
#: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
|
369 |
+
#: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
|
370 |
+
#: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
|
371 |
+
#: modules/pricing-table/pricing-table.php:155
|
372 |
+
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
373 |
+
msgid "Style"
|
374 |
+
msgstr "Style"
|
375 |
+
|
376 |
+
#: includes/column-settings.php:14
|
377 |
+
msgid "Column Width"
|
378 |
+
msgstr "Largeur de cette colonne"
|
379 |
+
|
380 |
+
#: includes/column-settings.php:26 includes/row-settings.php:48
|
381 |
+
#: modules/button/button.php:53 modules/callout/callout.php:223
|
382 |
+
#: modules/callout/callout.php:476 modules/callout/callout.php:492
|
383 |
+
#: modules/content-slider/content-slider.php:376
|
384 |
+
#: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
|
385 |
+
#: modules/cta/cta.php:219
|
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:379
|
392 |
+
#: modules/callout/callout.php:389
|
393 |
+
#: modules/content-slider/content-slider.php:331
|
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:102 modules/callout/callout.php:402
|
401 |
+
#: modules/callout/callout.php:506
|
402 |
+
#: modules/content-slider/content-slider.php:357
|
403 |
+
#: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
|
404 |
+
#: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
|
405 |
+
#: modules/icon/icon.php:95
|
406 |
+
msgid "Background Color"
|
407 |
+
msgstr "Couleur de l'arrière-plan"
|
408 |
+
|
409 |
+
#: includes/column-settings.php:51 includes/column-settings.php:108
|
410 |
+
#: includes/row-settings.php:117 includes/row-settings.php:387
|
411 |
+
#: modules/separator/separator.php:44
|
412 |
+
msgid "Opacity"
|
413 |
+
msgstr "Opacité"
|
414 |
+
|
415 |
+
#: includes/column-settings.php:63 includes/row-settings.php:342
|
416 |
+
msgid "Border"
|
417 |
+
msgstr "Bordure"
|
418 |
+
|
419 |
+
#: includes/column-settings.php:67 includes/row-settings.php:65
|
420 |
+
#: includes/row-settings.php:346 modules/callout/callout.php:472
|
421 |
+
#: modules/content-slider/content-slider.php:325
|
422 |
+
#: modules/content-slider/content-slider.php:372
|
423 |
+
#: modules/content-slider/content-slider.php:590
|
424 |
+
#: modules/content-slider/content-slider.php:694
|
425 |
+
#: modules/slideshow/slideshow.php:339
|
426 |
+
msgid "Type"
|
427 |
+
msgstr "Type"
|
428 |
+
|
429 |
+
#: includes/column-settings.php:69 includes/row-settings.php:348
|
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. Double doit avoir une largeur d'au moins 3px "
|
435 |
+
"afin de rendre correctement."
|
436 |
+
|
437 |
+
#: includes/column-settings.php:71 includes/row-settings.php:350
|
438 |
+
msgctxt "Border type."
|
439 |
+
msgid "None"
|
440 |
+
msgstr "Aucun"
|
441 |
+
|
442 |
+
#: includes/column-settings.php:72 includes/row-settings.php:351
|
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:352
|
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:353
|
455 |
+
#: modules/separator/separator.php:77
|
456 |
+
msgctxt "Border type."
|
457 |
+
msgid "Dotted"
|
458 |
+
msgstr "Pointillé"
|
459 |
+
|
460 |
+
#: includes/column-settings.php:75 includes/row-settings.php:354
|
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:398
|
467 |
+
msgid "Top Width"
|
468 |
+
msgstr "Largeur du haut"
|
469 |
+
|
470 |
+
#: includes/column-settings.php:131 includes/row-settings.php:410
|
471 |
+
msgid "Bottom Width"
|
472 |
+
msgstr "Largeur du bas"
|
473 |
+
|
474 |
+
#: includes/column-settings.php:143 includes/row-settings.php:422
|
475 |
+
msgid "Left Width"
|
476 |
+
msgstr "Largeur gauche"
|
477 |
+
|
478 |
+
#: includes/column-settings.php:155 includes/row-settings.php:434
|
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:449 modules/content-slider/content-slider.php:267
|
484 |
+
msgid "Advanced"
|
485 |
+
msgstr "Avancé"
|
486 |
+
|
487 |
+
#: includes/column-settings.php:177 includes/module-settings.php:13
|
488 |
+
#: includes/row-settings.php:456
|
489 |
+
msgid "CSS Class"
|
490 |
+
msgstr "Classe CSS"
|
491 |
+
|
492 |
+
#: includes/column-settings.php:178
|
493 |
+
msgid ""
|
494 |
+
"A custom CSS class that will be applied to this column. Spaces only, no dots."
|
495 |
+
msgstr ""
|
496 |
+
"Une classe CSS personnalisé sera appliqué à cette colonne. Espaces "
|
497 |
+
"seulement, pas de points."
|
498 |
+
|
499 |
+
#: includes/column-settings.php:186 includes/global-settings.php:80
|
500 |
+
msgid "Responsive Layout"
|
501 |
+
msgstr "Mise en page adaptative (Responsive)"
|
502 |
+
|
503 |
+
#: includes/column-settings.php:190 includes/module-settings.php:21
|
504 |
+
#: includes/row-settings.php:464 modules/slideshow/slideshow.php:290
|
505 |
+
msgid "Display"
|
506 |
+
msgstr "Affichage"
|
507 |
+
|
508 |
+
#: includes/column-settings.php:192 includes/module-settings.php:23
|
509 |
+
#: includes/row-settings.php:466
|
510 |
+
msgid "Always"
|
511 |
+
msgstr "Toujours"
|
512 |
+
|
513 |
+
#: includes/column-settings.php:193 includes/module-settings.php:24
|
514 |
+
#: includes/row-settings.php:467
|
515 |
+
msgid "Large Devices Only"
|
516 |
+
msgstr "Appareils grands seulement"
|
517 |
+
|
518 |
+
#: includes/column-settings.php:194 includes/module-settings.php:25
|
519 |
+
#: includes/row-settings.php:468
|
520 |
+
msgid "Large & Medium Devices Only"
|
521 |
+
msgstr "Appareils grands et moyens seulement"
|
522 |
+
|
523 |
+
#: includes/column-settings.php:195 includes/module-settings.php:26
|
524 |
+
#: includes/row-settings.php:469
|
525 |
+
msgid "Medium Devices Only"
|
526 |
+
msgstr "Appareils moyens seulement"
|
527 |
+
|
528 |
+
#: includes/column-settings.php:196 includes/module-settings.php:27
|
529 |
+
#: includes/row-settings.php:470
|
530 |
+
msgid "Medium & Small Devices Only"
|
531 |
+
msgstr "Appareils moyens et petits seulement"
|
532 |
+
|
533 |
+
#: includes/column-settings.php:197 includes/module-settings.php:28
|
534 |
+
#: includes/row-settings.php:471
|
535 |
+
msgid "Small Devices Only"
|
536 |
+
msgstr "Appareils petits seulement"
|
537 |
+
|
538 |
+
#: includes/column-settings.php:199
|
539 |
+
msgid "Choose whether to show or hide this column at different device sizes."
|
540 |
+
msgstr ""
|
541 |
+
"Choisissez si vous voulez afficher ou masquer cette colonne à des tailles "
|
542 |
+
"différentes de l'appareil."
|
543 |
+
|
544 |
+
#: includes/column-settings.php:206
|
545 |
+
msgid "Medium Device Width"
|
546 |
+
msgstr "Largeur moyenne d'appareil"
|
547 |
+
|
548 |
+
#: includes/column-settings.php:207
|
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:209 includes/column-settings.php:237
|
554 |
+
#: modules/callout/callout.php:281
|
555 |
+
#: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
|
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:210 includes/column-settings.php:238
|
562 |
+
#: modules/button/button.php:151 modules/callout/callout.php:282
|
563 |
+
#: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
|
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:223
|
571 |
+
msgid "Custom Medium Device Width"
|
572 |
+
msgstr "Largeur personalisée sur appareils moyens"
|
573 |
+
|
574 |
+
#: includes/column-settings.php:234
|
575 |
+
msgid "Small Device Width"
|
576 |
+
msgstr "Largeur sur petit appareil"
|
577 |
+
|
578 |
+
#: includes/column-settings.php:235
|
579 |
+
msgid "The width of this column on small devices such as phones."
|
580 |
+
msgstr ""
|
581 |
+
"La largeur de cette colonne sur les petits appareils tels que les téléphones."
|
582 |
+
|
583 |
+
#: includes/column-settings.php:251
|
584 |
+
msgid "Custom Small Device Width"
|
585 |
+
msgstr "Largeur personnalisée sur petit appareil"
|
586 |
+
|
587 |
+
#: includes/column-settings.php:263 includes/global-settings.php:41
|
588 |
+
#: includes/global-settings.php:71 includes/module-settings.php:38
|
589 |
+
#: includes/row-settings.php:481
|
590 |
+
msgid "Margins"
|
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:279 includes/column-settings.php:332
|
600 |
+
#: includes/module-settings.php:54 includes/row-settings.php:497
|
601 |
+
#: includes/row-settings.php:550 modules/slideshow/slideshow.php:474
|
602 |
+
msgid "Bottom"
|
603 |
+
msgstr "Bas"
|
604 |
+
|
605 |
+
#: includes/column-settings.php:291 includes/column-settings.php:344
|
606 |
+
#: includes/module-settings.php:66 includes/row-settings.php:509
|
607 |
+
#: includes/row-settings.php:562 modules/button/button.php:177
|
608 |
+
#: modules/callout/callout.php:250
|
609 |
+
#: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
|
610 |
+
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
611 |
+
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
612 |
+
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
613 |
+
msgid "Left"
|
614 |
+
msgstr "Gauche"
|
615 |
+
|
616 |
+
#: includes/column-settings.php:303 includes/column-settings.php:356
|
617 |
+
#: includes/module-settings.php:78 includes/row-settings.php:521
|
618 |
+
#: includes/row-settings.php:574 modules/button/button.php:178
|
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:316 includes/global-settings.php:49
|
628 |
+
#: includes/row-settings.php:534 modules/button/button.php:191
|
629 |
+
#: modules/callout/callout.php:567
|
630 |
+
#: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
|
631 |
+
msgid "Padding"
|
632 |
+
msgstr "Marge intérieure"
|
633 |
+
|
634 |
+
#: includes/field-form.php:17
|
635 |
+
#, php-format
|
636 |
+
msgctxt "%s stands for form field label."
|
637 |
+
msgid "Edit %s"
|
638 |
+
msgstr "Modifier %s"
|
639 |
+
|
640 |
+
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
641 |
+
msgid "Select Icon"
|
642 |
+
msgstr "Choisir une icône"
|
643 |
+
|
644 |
+
#: includes/field-icon.php:5 includes/field-photo.php:13
|
645 |
+
msgid "Replace"
|
646 |
+
msgstr "Remplacer"
|
647 |
+
|
648 |
+
#: includes/field-icon.php:7 includes/js-config.php:50
|
649 |
+
msgid "Remove"
|
650 |
+
msgstr "Supprimer"
|
651 |
+
|
652 |
+
#: includes/field-link.php:3
|
653 |
+
msgid "Select"
|
654 |
+
msgstr "Sélectionner"
|
655 |
+
|
656 |
+
#: includes/field-link.php:5
|
657 |
+
msgid "Enter a post title to search."
|
658 |
+
msgstr "Veuillez entrer le titre d'un article de journal à rechercher."
|
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:17 includes/settings.php:63
|
666 |
+
#: includes/template-selector.php:102 includes/ui.php:11
|
667 |
+
msgid "Cancel"
|
668 |
+
msgstr "Annuler"
|
669 |
+
|
670 |
+
#: includes/field-multiple-photos.php:8
|
671 |
+
#, php-format
|
672 |
+
msgid "1 Photo Selected"
|
673 |
+
msgid_plural "%d Photos Selected"
|
674 |
+
msgstr[0] "Une photo sélectionnée"
|
675 |
+
msgstr[1] "%d photos sélectionnées"
|
676 |
+
|
677 |
+
#: includes/field-multiple-photos.php:13
|
678 |
+
msgid "Create Gallery"
|
679 |
+
msgstr "Créer une galerie"
|
680 |
+
|
681 |
+
#: includes/field-multiple-photos.php:14
|
682 |
+
msgid "Edit Gallery"
|
683 |
+
msgstr "Modifier la galerie"
|
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:55
|
690 |
+
msgid "Select Photo"
|
691 |
+
msgstr "Sélectionner la photo"
|
692 |
+
|
693 |
+
#: includes/field-photo.php:12 includes/template-selector.php:83
|
694 |
+
msgid "Edit"
|
695 |
+
msgstr "Modifier"
|
696 |
+
|
697 |
+
#: includes/field-video.php:3 includes/js-config.php:57
|
698 |
+
msgid "Select Video"
|
699 |
+
msgstr "Sélectionnez Vidéo"
|
700 |
+
|
701 |
+
#: includes/field-video.php:17
|
702 |
+
msgid "Replace Video"
|
703 |
+
msgstr "Remplacer vidéo"
|
704 |
+
|
705 |
+
#: includes/global-settings.php:7 includes/user-template-settings.php:7
|
706 |
+
#: modules/accordion/accordion.php:110 modules/button/button.php:46
|
707 |
+
#: modules/callout/callout.php:207 modules/contact-form/contact-form.php:57
|
708 |
+
#: modules/content-slider/content-slider.php:184
|
709 |
+
#: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
|
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
|
713 |
+
#: modules/pricing-table/pricing-table.php:87
|
714 |
+
#: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
|
715 |
+
#: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
|
716 |
+
#: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
|
717 |
+
#: modules/testimonials/testimonials.php:30
|
718 |
+
#: modules/testimonials/testimonials.php:200 modules/video/video.php:76
|
719 |
+
#: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
|
720 |
+
msgid "General"
|
721 |
+
msgstr "Général"
|
722 |
+
|
723 |
+
#: includes/global-settings.php:8
|
724 |
+
msgid "Note: These settings apply to all posts and pages."
|
725 |
+
msgstr "Remarque: Ces paramètres s'appliquent à tous les messages et pages."
|
726 |
+
|
727 |
+
#: includes/global-settings.php:11
|
728 |
+
msgid "Default Page Heading"
|
729 |
+
msgstr "Titre de page par défaut"
|
730 |
+
|
731 |
+
#: includes/global-settings.php:15
|
732 |
+
msgctxt ""
|
733 |
+
"General settings form field label. Intended meaning: \"Show page heading?\""
|
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 ne cachera pas le titre par défaut pour le type d'article "
|
804 |
+
"\"Page\". Vous devrez aussi saisir du code CSS de base afin de faire "
|
805 |
+
"fonctionner ceci si vous sélectionnez Non."
|
806 |
+
|
807 |
+
#: includes/global-settings.php:30
|
808 |
+
msgid "CSS Selector"
|
809 |
+
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 "Entrez un sélecteur CSS afin que la page par défaut le cache."
|
814 |
+
|
815 |
+
#: includes/global-settings.php:37
|
816 |
+
msgid "Rows"
|
817 |
+
msgstr "Rangées"
|
818 |
+
|
819 |
+
#: includes/global-settings.php:57
|
820 |
+
msgid "Max Width"
|
821 |
+
msgstr "Largeur maximale"
|
822 |
+
|
823 |
+
#: includes/global-settings.php:62
|
824 |
+
msgid ""
|
825 |
+
"All rows will default to this width. You can override this and make a row "
|
826 |
+
"full width in the settings for each row."
|
827 |
+
msgstr ""
|
828 |
+
"Toutes les rangées seront à cette largeur par défaut. Vous pouvez l'annuler "
|
829 |
+
"et sélectionner une rangée pleine largeur dans les réglages pour chaque "
|
830 |
+
"ligne individuellement."
|
831 |
+
|
832 |
+
#: includes/global-settings.php:84
|
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:98
|
840 |
+
msgid "Medium Device Breakpoint"
|
841 |
+
msgstr "Point de rupture sur appareil de largeur moyenne"
|
842 |
+
|
843 |
+
#: includes/global-settings.php:103
|
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 au cours de laquelle la mise en page s'ajustera "
|
849 |
+
"pour les appareils de taille moyenne telles que les tablettes."
|
850 |
+
|
851 |
+
#: includes/global-settings.php:107
|
852 |
+
msgid "Small Device Breakpoint"
|
853 |
+
msgstr "Point de rupture sur petits appareils"
|
854 |
+
|
855 |
+
#: includes/global-settings.php:112
|
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 au cours de laquelle la mise en page s'ajustera "
|
861 |
+
"pour les petits appareils tels que les téléphones."
|
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:16
|
869 |
+
msgid "What would you like to do?"
|
870 |
+
msgstr "Que voulez-vous faire ?"
|
871 |
+
|
872 |
+
#: includes/js-config.php:18
|
873 |
+
msgid "Change Template"
|
874 |
+
msgstr "Changer de modèle"
|
875 |
+
|
876 |
+
#: includes/js-config.php:19
|
877 |
+
msgid ""
|
878 |
+
"Warning! Changing the template will replace your existing layout. Do you "
|
879 |
+
"really want to do this?"
|
880 |
+
msgstr ""
|
881 |
+
"Attention! La modification du modèle remplacera votre mise en page "
|
882 |
+
"existante. Voulez-vous vraiment faire ceci?"
|
883 |
+
|
884 |
+
#: includes/js-config.php:20
|
885 |
+
msgid "Column"
|
886 |
+
msgstr "Colonne"
|
887 |
+
|
888 |
+
#: includes/js-config.php:22
|
889 |
+
msgid ""
|
890 |
+
"Please select either a background layout or content layout before submitting."
|
891 |
+
msgstr ""
|
892 |
+
"S'il vous plaît, sélectionner une mise en page du fond, ou du contenu, avant "
|
893 |
+
"de le soumettre."
|
894 |
+
|
895 |
+
#: includes/js-config.php:23
|
896 |
+
msgid "Do you really want to delete this item?"
|
897 |
+
msgstr "Souhaitez-vous réellement supprimer cette élément ?"
|
898 |
+
|
899 |
+
#: includes/js-config.php:24
|
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 ce module ? Toutes les données relatives au "
|
905 |
+
"contenu seront définitivement supprimés."
|
906 |
+
|
907 |
+
#: includes/js-config.php:25
|
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 supprimer cette rangée ? Toutes les données relatives "
|
913 |
+
"au contenu seront définitivement supprimés."
|
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:27
|
920 |
+
msgid "Discard Draft"
|
921 |
+
msgstr "Abandonner le brouillon"
|
922 |
+
|
923 |
+
#: includes/js-config.php:28
|
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 ? Toutes vos modifications qui "
|
929 |
+
"ne sont pas publiées seront perdues."
|
930 |
+
|
931 |
+
#: includes/js-config.php:29
|
932 |
+
msgid "Save Draft"
|
933 |
+
msgstr "Enregistrer le brouillon"
|
934 |
+
|
935 |
+
#: includes/js-config.php:30
|
936 |
+
msgctxt "Duplicate page/post action label."
|
937 |
+
msgid "Duplicate"
|
938 |
+
msgstr "Dupliquer"
|
939 |
+
|
940 |
+
#: includes/js-config.php:31
|
941 |
+
msgid "Duplicate This Page"
|
942 |
+
msgstr "Dupliquer cette page"
|
943 |
+
|
944 |
+
#: includes/js-config.php:32
|
945 |
+
msgid "Duplicate This Template"
|
946 |
+
msgstr "Dupliquer ce modèle"
|
947 |
+
|
948 |
+
#: includes/js-config.php:33
|
949 |
+
msgid "Edit Global Settings"
|
950 |
+
msgstr "Modifier les réglages globaux"
|
951 |
+
|
952 |
+
#: includes/js-config.php:34
|
953 |
+
msgid "Drop a row layout or module to get started!"
|
954 |
+
msgstr "Déposez une rangée ou un module pour débuter!"
|
955 |
+
|
956 |
+
#: includes/js-config.php:35
|
957 |
+
msgid "Full Size"
|
958 |
+
msgstr "Pleine largeur"
|
959 |
+
|
960 |
+
#: includes/js-config.php:36
|
961 |
+
msgid "Insert"
|
962 |
+
msgstr "Insérer"
|
963 |
+
|
964 |
+
#: includes/js-config.php:37
|
965 |
+
msgid "Large"
|
966 |
+
msgstr "Grande"
|
967 |
+
|
968 |
+
#: includes/js-config.php:38
|
969 |
+
msgid "Manage Templates"
|
970 |
+
msgstr "Gérer les modèles"
|
971 |
+
|
972 |
+
#: includes/js-config.php:39
|
973 |
+
msgid "Medium"
|
974 |
+
msgstr "Moyenne"
|
975 |
+
|
976 |
+
#: includes/js-config.php:40
|
977 |
+
msgid "Module"
|
978 |
+
msgstr "Module"
|
979 |
+
|
980 |
+
#: includes/js-config.php:41
|
981 |
+
msgid "Move"
|
982 |
+
msgstr "Déplacer"
|
983 |
+
|
984 |
+
#: includes/js-config.php:42
|
985 |
+
msgid "New Column"
|
986 |
+
msgstr "Nouvelle colonne"
|
987 |
+
|
988 |
+
#: includes/js-config.php:43
|
989 |
+
msgid "New Row"
|
990 |
+
msgstr "Nouvelle rangée"
|
991 |
+
|
992 |
+
#: includes/js-config.php:44
|
993 |
+
msgid "No results found."
|
994 |
+
msgstr "Aucun résultat trouvé"
|
995 |
+
|
996 |
+
#: includes/js-config.php:45
|
997 |
+
msgid "OK"
|
998 |
+
msgstr "OK"
|
999 |
+
|
1000 |
+
#: includes/js-config.php:46 modules/photo/photo.php:454
|
1001 |
+
msgid "Photo Page"
|
1002 |
+
msgstr "Page photos"
|
1003 |
+
|
1004 |
+
#: includes/js-config.php:47
|
1005 |
+
msgid "Photo Selected"
|
1006 |
+
msgstr "Photo sélectionnée"
|
1007 |
+
|
1008 |
+
#: includes/js-config.php:48
|
1009 |
+
msgid "Photos Selected"
|
1010 |
+
msgstr "Photos sélectionnées"
|
1011 |
+
|
1012 |
+
#: includes/js-config.php:49
|
1013 |
+
msgid "Publish Changes"
|
1014 |
+
msgstr "Publier les modifications"
|
1015 |
+
|
1016 |
+
#: includes/js-config.php:51
|
1017 |
+
msgid "Row"
|
1018 |
+
msgstr "Rangée"
|
1019 |
+
|
1020 |
+
#: includes/js-config.php:52 includes/row-settings.php:6
|
1021 |
+
msgid "Row Settings"
|
1022 |
+
msgstr "Réglages de rangée"
|
1023 |
+
|
1024 |
+
#: includes/js-config.php:53
|
1025 |
+
msgid "Save Core Template"
|
1026 |
+
msgstr "Enregistrer le modèle de base"
|
1027 |
+
|
1028 |
+
#: includes/js-config.php:54 includes/ui.php:10
|
1029 |
+
#: includes/user-template-settings.php:4
|
1030 |
+
msgid "Save Template"
|
1031 |
+
msgstr "Enregistrer le modèle (template)"
|
1032 |
+
|
1033 |
+
#: includes/js-config.php:56
|
1034 |
+
msgid "Select Photos"
|
1035 |
+
msgstr "Sélectionnez Photos"
|
1036 |
+
|
1037 |
+
#: includes/js-config.php:59
|
1038 |
+
msgid "Append New Layout"
|
1039 |
+
msgstr "Ajouter une autre mise en page"
|
1040 |
+
|
1041 |
+
#: includes/js-config.php:60
|
1042 |
+
msgid "Replace Existing Layout"
|
1043 |
+
msgstr "Remplacer le modèle existant"
|
1044 |
+
|
1045 |
+
#: includes/js-config.php:61
|
1046 |
+
msgid "Template Saved!"
|
1047 |
+
msgstr "Modèle enregistré!"
|
1048 |
+
|
1049 |
+
#: includes/js-config.php:62
|
1050 |
+
msgid "Thumbnail"
|
1051 |
+
msgstr "Vignette"
|
1052 |
+
|
1053 |
+
#: includes/js-config.php:63
|
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 réglages en cours de modification ne seront pas enregistrés si vous "
|
1059 |
+
"quittez cette page."
|
1060 |
+
|
1061 |
+
#: includes/loop-settings.php:19
|
1062 |
+
msgid "Post Type"
|
1063 |
+
msgstr "Type d'article"
|
1064 |
+
|
1065 |
+
#: includes/loop-settings.php:25
|
1066 |
+
msgid "Order By"
|
1067 |
+
msgstr "Trier par"
|
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 "Date"
|
1077 |
+
|
1078 |
+
#: includes/loop-settings.php:29
|
1079 |
+
msgid "Date Last Modified"
|
1080 |
+
msgstr "Date de la dernière modification"
|
1081 |
+
|
1082 |
+
#: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
|
1083 |
+
#: modules/pricing-table/pricing-table.php:94
|
1084 |
+
msgid "Title"
|
1085 |
+
msgstr "Titre"
|
1086 |
+
|
1087 |
+
#: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
|
1088 |
+
msgid "Author"
|
1089 |
+
msgstr "Auteur"
|
1090 |
+
|
1091 |
+
#: includes/loop-settings.php:32
|
1092 |
+
msgid "Comment Count"
|
1093 |
+
msgstr "compte de commentaires"
|
1094 |
+
|
1095 |
+
#: includes/loop-settings.php:33
|
1096 |
+
msgid "Menu Order"
|
1097 |
+
msgstr "Ordre du menu"
|
1098 |
+
|
1099 |
+
#: includes/loop-settings.php:34
|
1100 |
+
msgid "Random"
|
1101 |
+
msgstr "Aléatoire"
|
1102 |
+
|
1103 |
+
#: includes/loop-settings.php:41
|
1104 |
+
msgid "Order"
|
1105 |
+
msgstr "Ordre"
|
1106 |
+
|
1107 |
+
#: includes/loop-settings.php:43
|
1108 |
+
msgid "Descending"
|
1109 |
+
msgstr "Décroissant"
|
1110 |
+
|
1111 |
+
#: includes/loop-settings.php:44
|
1112 |
+
msgid "Ascending"
|
1113 |
+
msgstr "Croissant"
|
1114 |
+
|
1115 |
+
#: includes/loop-settings.php:52
|
1116 |
+
msgid "Filter"
|
1117 |
+
msgstr "Filtre"
|
1118 |
+
|
1119 |
+
#: includes/loop-settings.php:63
|
1120 |
+
#, php-format
|
1121 |
+
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1122 |
+
msgstr ""
|
1123 |
+
"Entrez une liste séparée par des virgules des %s. Seulement ces %s seront "
|
1124 |
+
"montrés."
|
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 séparée par des virgules des %s. Seuls les postes avec ces "
|
1132 |
+
"%s seront montrés."
|
1133 |
+
|
1134 |
+
#: includes/loop-settings.php:90
|
1135 |
+
msgid "Authors"
|
1136 |
+
msgstr "Auteurs"
|
1137 |
+
|
1138 |
+
#: includes/loop-settings.php:91
|
1139 |
+
msgid ""
|
1140 |
+
"Enter a comma separated list of authors usernames. Only posts with these "
|
1141 |
+
"authors will be shown."
|
1142 |
+
msgstr ""
|
1143 |
+
"Entrez une liste séparée par des virgules des noms d'auteurs. Seuls les "
|
1144 |
+
"postes avec ces auteurs seront affichés."
|
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:30
|
1154 |
+
msgid "Choose whether to show or hide this module at different device sizes."
|
1155 |
+
msgstr ""
|
1156 |
+
"Choisissez si vous voulez afficher ou masquer ce module à des tailles "
|
1157 |
+
"différentes d'appareils."
|
1158 |
+
|
1159 |
+
#: includes/module-settings.php:91
|
1160 |
+
msgid "Animation"
|
1161 |
+
msgstr "Animation"
|
1162 |
+
|
1163 |
+
#: includes/module-settings.php:97
|
1164 |
+
msgctxt "Animation style."
|
1165 |
+
msgid "None"
|
1166 |
+
msgstr "Aucune"
|
1167 |
+
|
1168 |
+
#: includes/module-settings.php:98
|
1169 |
+
msgctxt "Animation style."
|
1170 |
+
msgid "Fade In"
|
1171 |
+
msgstr "Ouverture en fondu"
|
1172 |
+
|
1173 |
+
#: includes/module-settings.php:99
|
1174 |
+
msgctxt "Animation style."
|
1175 |
+
msgid "Slide Left"
|
1176 |
+
msgstr "Glissement vers la gauche"
|
1177 |
+
|
1178 |
+
#: includes/module-settings.php:100
|
1179 |
+
msgctxt "Animation style."
|
1180 |
+
msgid "Slide Right"
|
1181 |
+
msgstr "Glissement vers la droite"
|
1182 |
+
|
1183 |
+
#: includes/module-settings.php:101
|
1184 |
+
msgctxt "Animation style."
|
1185 |
+
msgid "Slide Up"
|
1186 |
+
msgstr "Glissement vers le haut"
|
1187 |
+
|
1188 |
+
#: includes/module-settings.php:102
|
1189 |
+
msgctxt "Animation style."
|
1190 |
+
msgid "Slide Down"
|
1191 |
+
msgstr "Glissement vers le bas"
|
1192 |
+
|
1193 |
+
#: includes/module-settings.php:110
|
1194 |
+
#: modules/content-slider/content-slider.php:223
|
1195 |
+
#: modules/testimonials/testimonials.php:91
|
1196 |
+
msgid "Delay"
|
1197 |
+
msgstr "Différer"
|
1198 |
+
|
1199 |
+
#: includes/module-settings.php:114 includes/row-settings.php:266
|
1200 |
+
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
|
1201 |
+
#: modules/content-slider/content-slider.php:244
|
1202 |
+
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1203 |
+
#: modules/slideshow/slideshow.php:581
|
1204 |
+
#: modules/testimonials/testimonials.php:95
|
1205 |
+
#: modules/testimonials/testimonials.php:112
|
1206 |
+
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:115
|
1211 |
+
msgid "The amount of time in seconds before this animation starts."
|
1212 |
+
msgstr "La durée en secondes avant le lancement de cette animation."
|
1213 |
+
|
1214 |
+
#: includes/row-settings.php:16 modules/button/button.php:146
|
1215 |
+
#: modules/content-slider/content-slider.php:477
|
1216 |
+
msgid "Width"
|
1217 |
+
msgstr "Largeur"
|
1218 |
+
|
1219 |
+
#: includes/row-settings.php:19 includes/row-settings.php:37
|
1220 |
+
#: includes/row-settings.php:179
|
1221 |
+
msgid "Fixed"
|
1222 |
+
msgstr "Fixe"
|
1223 |
+
|
1224 |
+
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1225 |
+
#: modules/button/button.php:150 modules/callout/callout.php:554
|
1226 |
+
msgid "Full Width"
|
1227 |
+
msgstr "Pleine largeur"
|
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 la l'étendue de la page de bord à bord. Les "
|
1235 |
+
"rangées fixes ne sont pas plus larges que la valeur \"Largeur maximale\" "
|
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 ""
|
1244 |
+
"Full width content spans the width of the page from edge to edge. Fixed "
|
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 \"Largeur maximale\" "
|
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:332
|
1256 |
+
msgctxt "Background type."
|
1257 |
+
msgid "None"
|
1258 |
+
msgstr "Aucun"
|
1259 |
+
|
1260 |
+
#: includes/row-settings.php:69
|
1261 |
+
msgctxt "Background type."
|
1262 |
+
msgid "Color"
|
1263 |
+
msgstr "Couleur"
|
1264 |
+
|
1265 |
+
#: includes/row-settings.php:70
|
1266 |
+
msgctxt "Background type."
|
1267 |
+
msgid "Photo"
|
1268 |
+
msgstr "Photo"
|
1269 |
+
|
1270 |
+
#: includes/row-settings.php:71
|
1271 |
+
msgctxt "Background type."
|
1272 |
+
msgid "Video"
|
1273 |
+
msgstr "Vidéo"
|
1274 |
+
|
1275 |
+
#: includes/row-settings.php:73
|
1276 |
+
msgctxt "Background type."
|
1277 |
+
msgid "Slideshow"
|
1278 |
+
msgstr "Diaporama"
|
1279 |
+
|
1280 |
+
#: includes/row-settings.php:77
|
1281 |
+
msgctxt "Background type."
|
1282 |
+
msgid "Parallax"
|
1283 |
+
msgstr "Parallaxe"
|
1284 |
+
|
1285 |
+
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
|
1286 |
+
msgid "Background Photo"
|
1287 |
+
msgstr "Arrière-plan Photo"
|
1288 |
+
|
1289 |
+
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1290 |
+
#: modules/callout/callout.php:314 modules/callout/callout.php:330
|
1291 |
+
#: modules/callout/callout.php:334
|
1292 |
+
#: modules/content-slider/content-slider.php:329
|
1293 |
+
#: modules/content-slider/content-slider.php:398
|
1294 |
+
#: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
|
1295 |
+
#: modules/photo/photo.php:392
|
1296 |
+
msgid "Photo"
|
1297 |
+
msgstr "Photo"
|
1298 |
+
|
1299 |
+
#: includes/row-settings.php:140
|
1300 |
+
msgid "Repeat"
|
1301 |
+
msgstr "Répéter"
|
1302 |
+
|
1303 |
+
#: includes/row-settings.php:143
|
1304 |
+
msgctxt "Background repeat."
|
1305 |
+
msgid "None"
|
1306 |
+
msgstr "Aucun"
|
1307 |
+
|
1308 |
+
#: includes/row-settings.php:144
|
1309 |
+
msgctxt "Background repeat."
|
1310 |
+
msgid "Tile"
|
1311 |
+
msgstr "Mosaïque"
|
1312 |
+
|
1313 |
+
#: includes/row-settings.php:145
|
1314 |
+
msgctxt "Background repeat."
|
1315 |
+
msgid "Horizontal"
|
1316 |
+
msgstr "Horizontal"
|
1317 |
+
|
1318 |
+
#: includes/row-settings.php:146
|
1319 |
+
msgctxt "Background repeat."
|
1320 |
+
msgid "Vertical"
|
1321 |
+
msgstr "Vertical"
|
1322 |
+
|
1323 |
+
#: includes/row-settings.php:148
|
1324 |
+
msgid ""
|
1325 |
+
"Repeat applies to how the image should display in the row background. "
|
1326 |
+
"Choosing none will display the image as uploaded. Tile will repeat the image "
|
1327 |
+
"as many times as needed to fill the row horizontally and vertically. You can "
|
1328 |
+
"also specify the image to only repeat horizontally or vertically."
|
1329 |
+
msgstr ""
|
1330 |
+
"Répétition s'applique à comment l'image doit s'afficher à l'arrière-plan de "
|
1331 |
+
"la rangée. La sélection de Aucun affichera l'image téléchargée telle quelle. "
|
1332 |
+
"Mosaïque répétera l'image autant de fois que nécessaire pour remplir la "
|
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 "Gauche haut"
|
1346 |
+
|
1347 |
+
#: includes/row-settings.php:159
|
1348 |
+
msgid "Left Center"
|
1349 |
+
msgstr "Gauche centre"
|
1350 |
+
|
1351 |
+
#: includes/row-settings.php:160
|
1352 |
+
msgid "Left Bottom"
|
1353 |
+
msgstr "Gauche bas"
|
1354 |
+
|
1355 |
+
#: includes/row-settings.php:161
|
1356 |
+
msgid "Right Top"
|
1357 |
+
msgstr "Droite haut"
|
1358 |
+
|
1359 |
+
#: includes/row-settings.php:162
|
1360 |
+
msgid "Right Center"
|
1361 |
+
msgstr "Droite centre"
|
1362 |
+
|
1363 |
+
#: includes/row-settings.php:163
|
1364 |
+
msgid "Right Bottom"
|
1365 |
+
msgstr "Droite bas"
|
1366 |
+
|
1367 |
+
#: includes/row-settings.php:164
|
1368 |
+
msgid "Center Top"
|
1369 |
+
msgstr "Centre haut"
|
1370 |
+
|
1371 |
+
#: includes/row-settings.php:165 modules/button/button.php:176
|
1372 |
+
#: modules/callout/callout.php:249
|
1373 |
+
#: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
|
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
|
1377 |
+
msgid "Center"
|
1378 |
+
msgstr "Centre"
|
1379 |
+
|
1380 |
+
#: includes/row-settings.php:166
|
1381 |
+
msgid "Center Bottom"
|
1382 |
+
msgstr "Centre bas"
|
1383 |
+
|
1384 |
+
#: includes/row-settings.php:168
|
1385 |
+
msgid "Position will tell the image where it should sit in the row background."
|
1386 |
+
msgstr ""
|
1387 |
+
"La position indique à l'image où elle doit se situer dans l'arrière-plan de "
|
1388 |
+
"la rangée."
|
1389 |
+
|
1390 |
+
#: includes/row-settings.php:175
|
1391 |
+
msgid "Attachment"
|
1392 |
+
msgstr "Fixation"
|
1393 |
+
|
1394 |
+
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1395 |
+
msgid "Scroll"
|
1396 |
+
msgstr "Déroulement"
|
1397 |
+
|
1398 |
+
#: includes/row-settings.php:181
|
1399 |
+
msgid ""
|
1400 |
+
"Attachment will specify how the image reacts when scrolling a page. When "
|
1401 |
+
"scrolling is selected, the image will scroll with page scrolling. This is "
|
1402 |
+
"the default setting. Fixed will allow the image to scroll within the row "
|
1403 |
+
"background if fill is selected in the scale setting."
|
1404 |
+
msgstr ""
|
1405 |
+
"Fixation spécifiera comment l'image réagit quand on déroule la page. Quand "
|
1406 |
+
"Dérouler est sélectionnée, l'image déroule lorsque la page déroule. C'est le "
|
1407 |
+
"réglage par défaut. Fixe permettra à l\"image de dérouler à l'intérieur de "
|
1408 |
+
"l'arrière-plan de la rangée si Remplissage est sélectionné dans le réglage "
|
1409 |
+
"de la mise à l'échelle. "
|
1410 |
+
|
1411 |
+
#: includes/row-settings.php:188
|
1412 |
+
msgid "Scale"
|
1413 |
+
msgstr "Mettre à l'échelle"
|
1414 |
+
|
1415 |
+
#: includes/row-settings.php:191
|
1416 |
+
msgctxt "Background scale."
|
1417 |
+
msgid "None"
|
1418 |
+
msgstr "Aucun"
|
1419 |
+
|
1420 |
+
# Not sure…
|
1421 |
+
#: includes/row-settings.php:192
|
1422 |
+
msgid "Fit"
|
1423 |
+
msgstr "Adaptation"
|
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 |
+
"\"Mettre à l'échelle\" détermine comment l'image se produira dans l'arrière-"
|
1436 |
+
"plan de la rangée. Vous pouvez aussi sélectionner remplissage ou ajustage à "
|
1437 |
+
"l'arrière plan."
|
1438 |
+
|
1439 |
+
#: includes/row-settings.php:203
|
1440 |
+
msgid "Background Video"
|
1441 |
+
msgstr "Arrière-plan vidéo"
|
1442 |
+
|
1443 |
+
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
|
1444 |
+
#: modules/video/video.php:19 modules/video/video.php:100
|
1445 |
+
msgid "Video"
|
1446 |
+
msgstr "Vidéo"
|
1447 |
+
|
1448 |
+
#: includes/row-settings.php:208
|
1449 |
+
msgid ""
|
1450 |
+
"An HTML5 video to use as the background of this row. Supported types are "
|
1451 |
+
"MP4, WebM and Ogg."
|
1452 |
+
msgstr ""
|
1453 |
+
"Une vidéo HTML5 pour servir d'arrière-plan à cette rangée. Les formats "
|
1454 |
+
"supportés sont MP4, WebM et Ogg."
|
1455 |
+
|
1456 |
+
#: includes/row-settings.php:215
|
1457 |
+
msgid "Fallback Photo"
|
1458 |
+
msgstr "Photo de secours"
|
1459 |
+
|
1460 |
+
#: includes/row-settings.php:216
|
1461 |
+
msgid "A photo that will be displayed if the video fails to load."
|
1462 |
+
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'images d'arrière-plan"
|
1467 |
+
|
1468 |
+
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
1469 |
+
#: modules/slideshow/slideshow.php:263
|
1470 |
+
msgid "Source"
|
1471 |
+
msgstr "Source"
|
1472 |
+
|
1473 |
+
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
1474 |
+
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
1475 |
+
#: modules/video/video.php:86
|
1476 |
+
msgid "Media Library"
|
1477 |
+
msgstr "Médiathèque"
|
1478 |
+
|
1479 |
+
#: includes/row-settings.php:234 modules/gallery/gallery.php:240
|
1480 |
+
#: modules/slideshow/slideshow.php:269
|
1481 |
+
msgid ""
|
1482 |
+
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
1483 |
+
"site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
|
1484 |
+
"accessed by using the get a link function in your SmugMug gallery."
|
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 \"Get A Link\" dans votre galerie "
|
1489 |
+
"SmugMug."
|
1490 |
+
|
1491 |
+
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
1492 |
+
#: modules/slideshow/slideshow.php:281
|
1493 |
+
msgid "Photos"
|
1494 |
+
msgstr "Photos"
|
1495 |
+
|
1496 |
+
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
1497 |
+
#: modules/slideshow/slideshow.php:285
|
1498 |
+
msgid "Feed URL"
|
1499 |
+
msgstr "URL du flux"
|
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:231
|
1507 |
+
#: modules/slideshow/slideshow.php:389
|
1508 |
+
#: modules/testimonials/testimonials.php:99
|
1509 |
+
msgid "Transition"
|
1510 |
+
msgstr "Transition"
|
1511 |
+
|
1512 |
+
#: includes/row-settings.php:276
|
1513 |
+
msgctxt "Slideshow transition type."
|
1514 |
+
msgid "None"
|
1515 |
+
msgstr "Aucun"
|
1516 |
+
|
1517 |
+
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
|
1518 |
+
#: modules/slideshow/slideshow.php:393
|
1519 |
+
#: modules/testimonials/testimonials.php:103
|
1520 |
+
msgid "Fade"
|
1521 |
+
msgstr "Fondu"
|
1522 |
+
|
1523 |
+
#: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
|
1524 |
+
msgid "Ken Burns"
|
1525 |
+
msgstr "Ken Burns"
|
1526 |
+
|
1527 |
+
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
1528 |
+
msgid "Slide Horizontal"
|
1529 |
+
msgstr "Diapo Horizontale"
|
1530 |
+
|
1531 |
+
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
1532 |
+
msgid "Slide Vertical"
|
1533 |
+
msgstr "Diapo Verticale"
|
1534 |
+
|
1535 |
+
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
1536 |
+
msgid "Blinds"
|
1537 |
+
msgstr "Stores"
|
1538 |
+
|
1539 |
+
#: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
|
1540 |
+
msgid "Bars"
|
1541 |
+
msgstr "Barres"
|
1542 |
+
|
1543 |
+
#: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
|
1544 |
+
msgid "Random Bars"
|
1545 |
+
msgstr "Barres aléatoires"
|
1546 |
+
|
1547 |
+
#: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
|
1548 |
+
msgid "Boxes"
|
1549 |
+
msgstr "Boîtes"
|
1550 |
+
|
1551 |
+
#: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
|
1552 |
+
msgid "Random Boxes"
|
1553 |
+
msgstr "Boîtes aléatoires"
|
1554 |
+
|
1555 |
+
#: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
|
1556 |
+
msgid "Boxes Grow"
|
1557 |
+
msgstr "Boîtes qui croissent"
|
1558 |
+
|
1559 |
+
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
|
1560 |
+
#: modules/slideshow/slideshow.php:407
|
1561 |
+
#: modules/testimonials/testimonials.php:108
|
1562 |
+
msgid "Transition Speed"
|
1563 |
+
msgstr "Vitesse de transition"
|
1564 |
+
|
1565 |
+
#: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
|
1566 |
+
msgid "Randomize Photos"
|
1567 |
+
msgstr "Photos en mode aléatoire"
|
1568 |
+
|
1569 |
+
#: includes/row-settings.php:317
|
1570 |
+
msgid "Background Parallax"
|
1571 |
+
msgstr "Arrière-plan en parallaxe"
|
1572 |
+
|
1573 |
+
#: includes/row-settings.php:331
|
1574 |
+
msgid "Fast"
|
1575 |
+
msgstr "Rapide"
|
1576 |
+
|
1577 |
+
#: includes/row-settings.php:332
|
1578 |
+
msgctxt "Speed."
|
1579 |
+
msgid "Medium"
|
1580 |
+
msgstr "Moyenne"
|
1581 |
+
|
1582 |
+
#: includes/row-settings.php:333
|
1583 |
+
msgid "Slow"
|
1584 |
+
msgstr "Lente"
|
1585 |
+
|
1586 |
+
#: includes/row-settings.php:457
|
1587 |
+
msgid "Add a custom CSS selector here to apply additional styling to this row."
|
1588 |
+
msgstr ""
|
1589 |
+
"Ajouter un sélecteur CSS personnalisé pour appliquer un style supplémentaire "
|
1590 |
+
"pour cette rangée."
|
1591 |
+
|
1592 |
+
#: includes/row-settings.php:473
|
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 "Enregistrer"
|
1601 |
+
|
1602 |
+
#: includes/template-selector.php:3
|
1603 |
+
msgid "Layout Templates"
|
1604 |
+
msgstr "Modèles de mise en page"
|
1605 |
+
|
1606 |
+
#: includes/template-selector.php:8
|
1607 |
+
msgid "Home Pages"
|
1608 |
+
msgstr "Pages d'accueil"
|
1609 |
+
|
1610 |
+
#: includes/template-selector.php:9
|
1611 |
+
msgid "Content Pages"
|
1612 |
+
msgstr "Pages de contenu"
|
1613 |
+
|
1614 |
+
#: includes/template-selector.php:13
|
1615 |
+
msgid "Your Templates"
|
1616 |
+
msgstr "Vos modèles"
|
1617 |
+
|
1618 |
+
#: includes/template-selector.php:47 includes/template-selector.php:77
|
1619 |
+
msgctxt "Template name."
|
1620 |
+
msgid "Blank"
|
1621 |
+
msgstr "Vierge"
|
1622 |
+
|
1623 |
+
#: includes/template-selector.php:72
|
1624 |
+
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 encore enregistré de modèles! Pour ce faire, créer une mise "
|
1629 |
+
"en page et l'enregistrer comme un modèle sous <strong>Outils → Enregistrer "
|
1630 |
+
"le modèle.</strong>"
|
1631 |
+
|
1632 |
+
#: includes/template-selector.php:84
|
1633 |
+
msgid "Delete"
|
1634 |
+
msgstr "Supprimer"
|
1635 |
+
|
1636 |
+
#: includes/ui.php:7
|
1637 |
+
#, php-format
|
1638 |
+
msgid "Template: %s"
|
1639 |
+
msgstr "Modèle : %s"
|
1640 |
+
|
1641 |
+
#: includes/ui.php:23
|
1642 |
+
msgid "Page Builder Demo"
|
1643 |
+
msgstr "Démo du \"Beaver Builder\""
|
1644 |
+
|
1645 |
+
#: includes/ui.php:37
|
1646 |
+
msgid "Buy Now!"
|
1647 |
+
msgstr "Acheter maintenant!"
|
1648 |
+
|
1649 |
+
#: includes/ui.php:39
|
1650 |
+
msgid "Upgrade!"
|
1651 |
+
msgstr "Mettre à niveau!"
|
1652 |
+
|
1653 |
+
#: includes/ui.php:41
|
1654 |
+
msgid "Done"
|
1655 |
+
msgstr "Terminé"
|
1656 |
+
|
1657 |
+
#: includes/ui.php:42
|
1658 |
+
msgid "Tools"
|
1659 |
+
msgstr "Outils"
|
1660 |
+
|
1661 |
+
#: includes/ui.php:46
|
1662 |
+
msgid "Add Content"
|
1663 |
+
msgstr "Ajouter du contenu"
|
1664 |
+
|
1665 |
+
#: includes/ui.php:64
|
1666 |
+
msgid "Row Layouts"
|
1667 |
+
msgstr "Mises en pages des rangées"
|
1668 |
+
|
1669 |
+
#: includes/ui.php:68
|
1670 |
+
msgid "1 Column"
|
1671 |
+
msgstr "1 colonne"
|
1672 |
+
|
1673 |
+
#: includes/ui.php:69
|
1674 |
+
msgid "2 Columns"
|
1675 |
+
msgstr "2 colonnes"
|
1676 |
+
|
1677 |
+
#: includes/ui.php:70
|
1678 |
+
msgid "3 Columns"
|
1679 |
+
msgstr "3 colonnes"
|
1680 |
+
|
1681 |
+
#: includes/ui.php:71
|
1682 |
+
msgid "4 Columns"
|
1683 |
+
msgstr "4 colonnes"
|
1684 |
+
|
1685 |
+
#: includes/ui.php:72
|
1686 |
+
msgid "5 Columns"
|
1687 |
+
msgstr "5 colonnes"
|
1688 |
+
|
1689 |
+
#: includes/ui.php:73
|
1690 |
+
msgid "6 Columns"
|
1691 |
+
msgstr "6 colonnes"
|
1692 |
+
|
1693 |
+
#: includes/ui.php:74
|
1694 |
+
msgid "Left Sidebar"
|
1695 |
+
msgstr "Barre latérale de gauche"
|
1696 |
+
|
1697 |
+
#: includes/ui.php:75
|
1698 |
+
msgid "Right Sidebar"
|
1699 |
+
msgstr "Barre latérale de droite"
|
1700 |
+
|
1701 |
+
#: includes/ui.php:76
|
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>"
|
1712 |
+
|
1713 |
+
#: includes/updater/classes/class-fl-updater.php:109
|
1714 |
+
msgid "Please subscribe to enable automatic updates for this plugin."
|
1715 |
+
msgstr ""
|
1716 |
+
"Veuillez vous inscrire pour activer les mises à jour automatiques pour cette "
|
1717 |
+
"extension."
|
1718 |
+
|
1719 |
+
#: includes/updater/classes/class-fl-updater.php:111
|
1720 |
+
#: includes/updater/includes/form.php:6
|
1721 |
+
msgid "Subscribe Now"
|
1722 |
+
msgstr "Abonnez-vous maintenant"
|
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 |
+
"MISES À JOUR NON DISPONIBLES ! S'il vous plaît vous inscrire ou entrer votre "
|
1730 |
+
"clé de licence ci-dessous pour activer les mises à jour automatiques."
|
1731 |
+
|
1732 |
+
#: includes/updater/includes/form.php:11
|
1733 |
+
msgid "Updates & Support Subscription"
|
1734 |
+
msgstr "Mises à jour et abonnement de soutien"
|
1735 |
+
|
1736 |
+
#: includes/updater/includes/form.php:14
|
1737 |
+
msgid "Active!"
|
1738 |
+
msgstr "Actif!"
|
1739 |
+
|
1740 |
+
#: includes/updater/includes/form.php:16
|
1741 |
+
msgid "Not Active!"
|
1742 |
+
msgstr "Inactif!"
|
1743 |
+
|
1744 |
+
#: includes/updater/includes/form.php:22
|
1745 |
+
msgid "Email address saved!"
|
1746 |
+
msgstr "Adresse de courriel enregistrée !"
|
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> pour activer les mises à jour "
|
1753 |
+
"automatique et le soutien."
|
1754 |
+
|
1755 |
+
#: includes/updater/includes/form.php:39
|
1756 |
+
msgid "Save Subscription Settings"
|
1757 |
+
msgstr "Enregistrer les paramètres d'abonnement"
|
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 mise en page actuelle comme modèle qui peut être réutilisé "
|
1765 |
+
"sous <strong>Modèles → vos modèles</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"
|
1774 |
+
msgstr "Accordéon"
|
1775 |
+
|
1776 |
+
#: modules/accordion/accordion.php:15
|
1777 |
+
msgid "Display a collapsible accordion of items."
|
1778 |
+
msgstr "Afficher un accordéon pliant d'éléments."
|
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 "Éléments"
|
1797 |
+
|
1798 |
+
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
1799 |
+
msgid "Item"
|
1800 |
+
msgstr "Élément"
|
1801 |
+
|
1802 |
+
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
1803 |
+
msgid "Border Color"
|
1804 |
+
msgstr "Couleur des bordures"
|
1805 |
+
|
1806 |
+
#: modules/accordion/accordion.php:62
|
1807 |
+
msgid "Label Size"
|
1808 |
+
msgstr "Taille de l'étiquette"
|
1809 |
+
|
1810 |
+
#: modules/accordion/accordion.php:65
|
1811 |
+
msgctxt "Label size."
|
1812 |
+
msgid "Small"
|
1813 |
+
msgstr "Petite"
|
1814 |
+
|
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."
|
1822 |
+
msgid "Large"
|
1823 |
+
msgstr "Grand"
|
1824 |
+
|
1825 |
+
#: modules/accordion/accordion.php:75
|
1826 |
+
msgid "Item Spacing"
|
1827 |
+
msgstr "Espacement de l'élément"
|
1828 |
+
|
1829 |
+
#: modules/accordion/accordion.php:86
|
1830 |
+
msgid "Collapse Inactive"
|
1831 |
+
msgstr "Écrasement des inactifs"
|
1832 |
+
|
1833 |
+
#: modules/accordion/accordion.php:92
|
1834 |
+
msgid ""
|
1835 |
+
"Choosing yes will keep only one item open at a time. Choosing no will allow "
|
1836 |
+
"multiple items to be open at the same time."
|
1837 |
+
msgstr ""
|
1838 |
+
"Choisir Oui ne gardera qu'un seul élément ouvert à la fois. Choisir non "
|
1839 |
+
"permettra à plusieurs éléments d'être ouverts en même temps."
|
1840 |
+
|
1841 |
+
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
1842 |
+
msgid "Add Item"
|
1843 |
+
msgstr "Ajouter un élément"
|
1844 |
+
|
1845 |
+
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
1846 |
+
msgid "Label"
|
1847 |
+
msgstr "Étiquette"
|
1848 |
+
|
1849 |
+
#: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
|
1850 |
+
#: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
|
1851 |
+
#: modules/tabs/tabs.php:89
|
1852 |
+
msgid "Content"
|
1853 |
+
msgstr "Contenu"
|
1854 |
+
|
1855 |
+
#: modules/button/button.php:14 modules/callout/callout.php:477
|
1856 |
+
#: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
|
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:54 modules/cta/cta.php:220
|
1866 |
+
msgid "Click Here"
|
1867 |
+
msgstr "Cliquez ici"
|
1868 |
+
|
1869 |
+
#: modules/button/button.php:62 modules/callout/callout.php:315
|
1870 |
+
#: modules/callout/callout.php:363 modules/callout/callout.php:367
|
1871 |
+
#: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
|
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:68 modules/button/button.php:72
|
1878 |
+
#: modules/callout/callout.php:443 modules/callout/callout.php:447
|
1879 |
+
#: modules/content-slider/content-slider.php:567
|
1880 |
+
#: modules/content-slider/content-slider.php:571
|
1881 |
+
#: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
|
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:73
|
1889 |
+
msgid "http://www.example.com"
|
1890 |
+
msgstr "http://www.exemple.com/"
|
1891 |
+
|
1892 |
+
#: modules/button/button.php:80 modules/callout/callout.php:455
|
1893 |
+
#: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
|
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:83 modules/callout/callout.php:458
|
1900 |
+
#: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
|
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:84 modules/callout/callout.php:459
|
1907 |
+
#: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
|
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:98 modules/cta/cta.php:185
|
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:108 modules/callout/callout.php:407
|
1920 |
+
#: modules/callout/callout.php:512
|
1921 |
+
#: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
|
1922 |
+
#: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
|
1923 |
+
msgid "Background Hover Color"
|
1924 |
+
msgstr "Couleur d'arrière-plan lors du survol"
|
1925 |
+
|
1926 |
+
#: modules/button/button.php:117 modules/callout/callout.php:521
|
1927 |
+
#: modules/content-slider/content-slider.php:522
|
1928 |
+
#: modules/content-slider/content-slider.php:635
|
1929 |
+
#: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
|
1930 |
+
#: modules/cta/cta.php:277 modules/heading/heading.php:77
|
1931 |
+
msgid "Text Color"
|
1932 |
+
msgstr "Couleur du texte"
|
1933 |
+
|
1934 |
+
#: modules/button/button.php:123 modules/callout/callout.php:527
|
1935 |
+
#: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
|
1936 |
+
msgid "Text Hover Color"
|
1937 |
+
msgstr "Couleur du texte lors du survol"
|
1938 |
+
|
1939 |
+
#: modules/button/button.php:132 modules/callout/callout.php:415
|
1940 |
+
#: modules/callout/callout.php:536
|
1941 |
+
#: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
|
1942 |
+
#: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
|
1943 |
+
msgid "Gradient"
|
1944 |
+
msgstr "Dégradé de couleurs"
|
1945 |
+
|
1946 |
+
#: modules/button/button.php:142 modules/callout/callout.php:242
|
1947 |
+
#: modules/cta/cta.php:102 modules/heading/heading.php:82
|
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:149 modules/callout/callout.php:553
|
1953 |
+
msgctxt "Width."
|
1954 |
+
msgid "Auto"
|
1955 |
+
msgstr "Automatique"
|
1956 |
+
|
1957 |
+
#: modules/button/button.php:165
|
1958 |
+
msgid "Custom Width"
|
1959 |
+
msgstr "Largeur personnalisée"
|
1960 |
+
|
1961 |
+
#: modules/button/button.php:173 modules/cta/cta.php:120
|
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:183 modules/callout/callout.php:559
|
1969 |
+
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
|
1970 |
+
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
1971 |
+
msgid "Font Size"
|
1972 |
+
msgstr "Taille de la police"
|
1973 |
+
|
1974 |
+
#: modules/button/button.php:199 modules/callout/callout.php:575
|
1975 |
+
#: modules/cta/cta.php:322
|
1976 |
+
msgid "Round Corners"
|
1977 |
+
msgstr "Coins arrondis"
|
1978 |
+
|
1979 |
+
#: modules/callout/callout.php:14
|
1980 |
+
msgid "Callout"
|
1981 |
+
msgstr "Légende"
|
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 de lien, icône et image."
|
1986 |
+
|
1987 |
+
#: modules/callout/callout.php:214
|
1988 |
+
#: modules/content-slider/content-slider.php:407
|
1989 |
+
#: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
|
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 "Titre"
|
1995 |
+
|
1996 |
+
#: modules/callout/callout.php:246
|
1997 |
+
msgid "Overall Alignment"
|
1998 |
+
msgstr "Alignement général"
|
1999 |
+
|
2000 |
+
#: modules/callout/callout.php:253
|
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:261 modules/cta/cta.php:145
|
2005 |
+
msgid "Heading Structure"
|
2006 |
+
msgstr "Structure du titre"
|
2007 |
+
|
2008 |
+
#: modules/callout/callout.php:265
|
2009 |
+
#: modules/content-slider/content-slider.php:426 modules/cta/cta.php:149
|
2010 |
+
msgid "Heading Tag"
|
2011 |
+
msgstr "Balise titre"
|
2012 |
+
|
2013 |
+
#: modules/callout/callout.php:278
|
2014 |
+
#: modules/content-slider/content-slider.php:439
|
2015 |
+
#: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
|
2016 |
+
#: modules/testimonials/testimonials.php:69
|
2017 |
+
msgid "Heading Size"
|
2018 |
+
msgstr "Taille du titre"
|
2019 |
+
|
2020 |
+
#: modules/callout/callout.php:292 modules/cta/cta.php:176
|
2021 |
+
msgid "Heading Custom Size"
|
2022 |
+
msgstr "Taille personnalisée du titre"
|
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:310
|
2029 |
+
msgid "Image Type"
|
2030 |
+
msgstr "Type d'image"
|
2031 |
+
|
2032 |
+
#: modules/callout/callout.php:313
|
2033 |
+
msgctxt "Image type."
|
2034 |
+
msgid "None"
|
2035 |
+
msgstr "Aucun"
|
2036 |
+
|
2037 |
+
#: modules/callout/callout.php:338 modules/photo/photo.php:401
|
2038 |
+
#: modules/slideshow/slideshow.php:312
|
2039 |
+
msgid "Crop"
|
2040 |
+
msgstr "Recâdrage"
|
2041 |
+
|
2042 |
+
#: modules/callout/callout.php:341
|
2043 |
+
msgctxt "Crop"
|
2044 |
+
msgid "None"
|
2045 |
+
msgstr "Aucun"
|
2046 |
+
|
2047 |
+
#: modules/callout/callout.php:342 modules/photo/photo.php:405
|
2048 |
+
msgid "Landscape"
|
2049 |
+
msgstr "Paysage"
|
2050 |
+
|
2051 |
+
#: modules/callout/callout.php:343 modules/photo/photo.php:406
|
2052 |
+
msgid "Panorama"
|
2053 |
+
msgstr "Panorama"
|
2054 |
+
|
2055 |
+
#: modules/callout/callout.php:344 modules/photo/photo.php:407
|
2056 |
+
msgid "Portrait"
|
2057 |
+
msgstr "Portrait"
|
2058 |
+
|
2059 |
+
#: modules/callout/callout.php:345 modules/photo/photo.php:408
|
2060 |
+
msgid "Square"
|
2061 |
+
msgstr "Carré"
|
2062 |
+
|
2063 |
+
#: modules/callout/callout.php:346 modules/photo/photo.php:409
|
2064 |
+
msgid "Circle"
|
2065 |
+
msgstr "Cercle"
|
2066 |
+
|
2067 |
+
#: modules/callout/callout.php:354 modules/callout/callout.php:374
|
2068 |
+
msgid "Above Heading"
|
2069 |
+
msgstr "Au-dessus du titre"
|
2070 |
+
|
2071 |
+
#: modules/callout/callout.php:355 modules/callout/callout.php:375
|
2072 |
+
msgid "Below Heading"
|
2073 |
+
msgstr "Sous le titre"
|
2074 |
+
|
2075 |
+
#: modules/callout/callout.php:356 modules/callout/callout.php:378
|
2076 |
+
msgid "Left of Text and Heading"
|
2077 |
+
msgstr "Gauche du texte et du titre"
|
2078 |
+
|
2079 |
+
#: modules/callout/callout.php:357 modules/callout/callout.php:379
|
2080 |
+
msgid "Right of Text and Heading"
|
2081 |
+
msgstr "Droite du texte et du titre"
|
2082 |
+
|
2083 |
+
#: modules/callout/callout.php:376
|
2084 |
+
msgid "Left of Heading"
|
2085 |
+
msgstr "Gauche du titre"
|
2086 |
+
|
2087 |
+
#: modules/callout/callout.php:377
|
2088 |
+
msgid "Right of Heading"
|
2089 |
+
msgstr "Droite du titre"
|
2090 |
+
|
2091 |
+
#: modules/callout/callout.php:385
|
2092 |
+
msgid "Icon Colors"
|
2093 |
+
msgstr "Couleurs de l'icône"
|
2094 |
+
|
2095 |
+
#: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
|
2096 |
+
#: modules/icon/icon.php:87
|
2097 |
+
msgid "Hover Color"
|
2098 |
+
msgstr "Couleur lors du survol"
|
2099 |
+
|
2100 |
+
#: modules/callout/callout.php:425
|
2101 |
+
msgid "Icon Structure"
|
2102 |
+
msgstr "Structure de l'icône"
|
2103 |
+
|
2104 |
+
#: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
|
2105 |
+
#: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
|
2106 |
+
msgid "Size"
|
2107 |
+
msgstr "Taille"
|
2108 |
+
|
2109 |
+
#: modules/callout/callout.php:440
|
2110 |
+
#: modules/content-slider/content-slider.php:564
|
2111 |
+
msgid "Call To Action"
|
2112 |
+
msgstr "Appel à l'action"
|
2113 |
+
|
2114 |
+
#: modules/callout/callout.php:448
|
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 à la totalité du module. Si vous choisissez un type "
|
2120 |
+
"d'appel à l'action ci-dessous, ce lien servira également pour le texte ou le "
|
2121 |
+
"bouton."
|
2122 |
+
|
2123 |
+
#: modules/callout/callout.php:468
|
2124 |
+
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:14
|
2125 |
+
msgid "Call to Action"
|
2126 |
+
msgstr "Appel à l'action"
|
2127 |
+
|
2128 |
+
#: modules/callout/callout.php:475
|
2129 |
+
#: modules/content-slider/content-slider.php:593
|
2130 |
+
msgctxt "Call to action."
|
2131 |
+
msgid "None"
|
2132 |
+
msgstr "Aucun"
|
2133 |
+
|
2134 |
+
#: modules/callout/callout.php:496
|
2135 |
+
#: modules/content-slider/content-slider.php:614
|
2136 |
+
msgid "Button Icon"
|
2137 |
+
msgstr "Icône du bouton"
|
2138 |
+
|
2139 |
+
#: modules/callout/callout.php:502
|
2140 |
+
#: modules/content-slider/content-slider.php:620 modules/cta/cta.php:258
|
2141 |
+
msgid "Button Colors"
|
2142 |
+
msgstr "Couleurs du bouton"
|
2143 |
+
|
2144 |
+
#: modules/callout/callout.php:546
|
2145 |
+
#: modules/content-slider/content-slider.php:656 modules/cta/cta.php:302
|
2146 |
+
msgid "Button Structure"
|
2147 |
+
msgstr "Structure du bouton"
|
2148 |
+
|
2149 |
+
#: modules/callout/callout.php:550
|
2150 |
+
msgid "Button Width"
|
2151 |
+
msgstr "Largeur du bouton"
|
2152 |
+
|
2153 |
+
#: modules/contact-form/contact-form.php:14
|
2154 |
+
msgid "Contact Form"
|
2155 |
+
msgstr "Formulaire de contact"
|
2156 |
+
|
2157 |
+
#: modules/contact-form/contact-form.php:15
|
2158 |
+
msgid "A very simple contact form."
|
2159 |
+
msgstr "Un formulaire de contact très simple."
|
2160 |
+
|
2161 |
+
#: modules/contact-form/contact-form.php:36
|
2162 |
+
msgid "Contact Form Submission"
|
2163 |
+
msgstr "Envoi du formulaire de contact"
|
2164 |
+
|
2165 |
+
#: modules/contact-form/contact-form.php:64
|
2166 |
+
msgid "Send To Email"
|
2167 |
+
msgstr "Envoyez à un courriel"
|
2168 |
+
|
2169 |
+
#: modules/contact-form/contact-form.php:66
|
2170 |
+
msgid "example@mail.com"
|
2171 |
+
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 à ce courriel"
|
2176 |
+
|
2177 |
+
#: modules/contact-form/includes/frontend.php:4
|
2178 |
+
msgctxt "Contact form field label."
|
2179 |
+
msgid "Name"
|
2180 |
+
msgstr "Nom"
|
2181 |
+
|
2182 |
+
#: modules/contact-form/includes/frontend.php:5
|
2183 |
+
msgid "Please enter your name."
|
2184 |
+
msgstr "Veuillez entrer votre nom."
|
2185 |
+
|
2186 |
+
#: modules/contact-form/includes/frontend.php:6
|
2187 |
+
msgid "Your name"
|
2188 |
+
msgstr "Votre nom"
|
2189 |
+
|
2190 |
+
#: modules/contact-form/includes/frontend.php:10
|
2191 |
+
msgid "Email"
|
2192 |
+
msgstr "Courriel"
|
2193 |
+
|
2194 |
+
#: modules/contact-form/includes/frontend.php:11
|
2195 |
+
msgid "Please enter a valid email."
|
2196 |
+
msgstr "Merci d'entrer une adresse courriel valide."
|
2197 |
+
|
2198 |
+
#: modules/contact-form/includes/frontend.php:12
|
2199 |
+
msgid "Your email"
|
2200 |
+
msgstr "Votre courriel"
|
2201 |
+
|
2202 |
+
#: modules/contact-form/includes/frontend.php:16
|
2203 |
+
msgid "Your Message"
|
2204 |
+
msgstr "Votre message"
|
2205 |
+
|
2206 |
+
#: modules/contact-form/includes/frontend.php:17
|
2207 |
+
msgid "Please enter a message."
|
2208 |
+
msgstr "Veuillez entrer un message."
|
2209 |
+
|
2210 |
+
#: modules/contact-form/includes/frontend.php:18
|
2211 |
+
msgid "Your message"
|
2212 |
+
msgstr "Votre message"
|
2213 |
+
|
2214 |
+
#: modules/contact-form/includes/frontend.php:23
|
2215 |
+
msgid "Send"
|
2216 |
+
msgstr "Envoyer"
|
2217 |
+
|
2218 |
+
#: modules/contact-form/includes/frontend.php:24
|
2219 |
+
msgid "Message Sent!"
|
2220 |
+
msgstr "Message envoyé !"
|
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 d'essayer à nouveau."
|
2225 |
+
|
2226 |
+
#: modules/content-slider/content-slider.php:14
|
2227 |
+
msgid "Content Slider"
|
2228 |
+
msgstr "Diaporama de contenu"
|
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:191 modules/map/map.php:41
|
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:196
|
2241 |
+
msgid ""
|
2242 |
+
"This setting is the minimum height of the content slider. Content will "
|
2243 |
+
"expand the height automatically."
|
2244 |
+
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:200
|
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:214
|
2255 |
+
msgid "Show Play/Pause"
|
2256 |
+
msgstr "Afficher Lecture / Pause"
|
2257 |
+
|
2258 |
+
#: modules/content-slider/content-slider.php:234
|
2259 |
+
#: modules/testimonials/testimonials.php:102
|
2260 |
+
msgctxt "Transition type."
|
2261 |
+
msgid "Slide"
|
2262 |
+
msgstr "Glissement"
|
2263 |
+
|
2264 |
+
#: modules/content-slider/content-slider.php:248
|
2265 |
+
#: modules/testimonials/testimonials.php:121
|
2266 |
+
msgid "Show Arrows"
|
2267 |
+
msgstr "Afficher les flèches"
|
2268 |
+
|
2269 |
+
#: modules/content-slider/content-slider.php:257
|
2270 |
+
#: modules/testimonials/testimonials.php:151
|
2271 |
+
msgid "Show Dots"
|
2272 |
+
msgstr "Afficher les points"
|
2273 |
+
|
2274 |
+
#: modules/content-slider/content-slider.php:271
|
2275 |
+
msgid "Max Content Width"
|
2276 |
+
msgstr "Largeur maximale du contenu"
|
2277 |
+
|
2278 |
+
#: modules/content-slider/content-slider.php:276
|
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:283
|
2283 |
+
msgid "Slides"
|
2284 |
+
msgstr "Diapositives"
|
2285 |
+
|
2286 |
+
#: modules/content-slider/content-slider.php:290
|
2287 |
+
msgid "Slide"
|
2288 |
+
msgstr "Diapositive"
|
2289 |
+
|
2290 |
+
#: modules/content-slider/content-slider.php:305
|
2291 |
+
msgid "Slide Settings"
|
2292 |
+
msgstr "Réglages de diapositive"
|
2293 |
+
|
2294 |
+
#: modules/content-slider/content-slider.php:315
|
2295 |
+
msgid "Slide Label"
|
2296 |
+
msgstr "Étiquette de la diapositive"
|
2297 |
+
|
2298 |
+
#: modules/content-slider/content-slider.php:316
|
2299 |
+
msgid ""
|
2300 |
+
"A label to identify this slide on the Slides tab of the Content Slider "
|
2301 |
+
"settings."
|
2302 |
+
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:321
|
2307 |
+
msgid "Background Layout"
|
2308 |
+
msgstr "Mise en page de l'arrière-plan"
|
2309 |
+
|
2310 |
+
#: modules/content-slider/content-slider.php:327
|
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:362
|
2315 |
+
msgid "Background Video Code"
|
2316 |
+
msgstr "Code pour arrière-plan vidéo"
|
2317 |
+
|
2318 |
+
#: modules/content-slider/content-slider.php:368
|
2319 |
+
msgid "Content Layout"
|
2320 |
+
msgstr "Mise en page du contenu"
|
2321 |
+
|
2322 |
+
#: modules/content-slider/content-slider.php:374
|
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 fond ci-"
|
2329 |
+
"dessus. L'emplacement de la mise en page du contenu peut être sélectionné "
|
2330 |
+
"dans l'onglet style."
|
2331 |
+
|
2332 |
+
#: modules/content-slider/content-slider.php:377
|
2333 |
+
msgid "Text & Photo"
|
2334 |
+
msgstr "Texte et photo"
|
2335 |
+
|
2336 |
+
#: modules/content-slider/content-slider.php:378
|
2337 |
+
msgid "Text & Video"
|
2338 |
+
msgstr "Texte et vidéo"
|
2339 |
+
|
2340 |
+
#: modules/content-slider/content-slider.php:379
|
2341 |
+
msgctxt "Content type."
|
2342 |
+
msgid "None"
|
2343 |
+
msgstr "Aucun"
|
2344 |
+
|
2345 |
+
#: modules/content-slider/content-slider.php:402 modules/video/video.php:132
|
2346 |
+
msgid "Video Embed Code"
|
2347 |
+
msgstr "Code d'intégration du vidéo"
|
2348 |
+
|
2349 |
+
#: modules/content-slider/content-slider.php:462
|
2350 |
+
msgid "Text Position"
|
2351 |
+
msgstr "Position du texte"
|
2352 |
+
|
2353 |
+
#: modules/content-slider/content-slider.php:468
|
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 mise en page à gauche, droite ou "
|
2359 |
+
"centrée sur l'arrière-plan de la diapositive."
|
2360 |
+
|
2361 |
+
#: modules/content-slider/content-slider.php:485
|
2362 |
+
msgid "Top Margin"
|
2363 |
+
msgstr "Marge du haut"
|
2364 |
+
|
2365 |
+
#: modules/content-slider/content-slider.php:493
|
2366 |
+
msgid "Bottom Margin"
|
2367 |
+
msgstr "Marge du bas"
|
2368 |
+
|
2369 |
+
#: modules/content-slider/content-slider.php:501
|
2370 |
+
msgid "Left Margin"
|
2371 |
+
msgstr "Marge de gauche"
|
2372 |
+
|
2373 |
+
#: modules/content-slider/content-slider.php:509
|
2374 |
+
msgid "Right Margin"
|
2375 |
+
msgstr "Marge de droite"
|
2376 |
+
|
2377 |
+
#: modules/content-slider/content-slider.php:518
|
2378 |
+
msgid "Text Colors"
|
2379 |
+
msgstr "Couleurs de texte"
|
2380 |
+
|
2381 |
+
#: modules/content-slider/content-slider.php:528
|
2382 |
+
msgid "Text Shadow"
|
2383 |
+
msgstr "Ombre du texte"
|
2384 |
+
|
2385 |
+
#: modules/content-slider/content-slider.php:537
|
2386 |
+
#: modules/content-slider/content-slider.php:725
|
2387 |
+
msgid "Text Background Color"
|
2388 |
+
msgstr "Couleur d'arrière-plan du texte"
|
2389 |
+
|
2390 |
+
#: modules/content-slider/content-slider.php:538
|
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 de l'arrière-plan."
|
2396 |
+
|
2397 |
+
#: modules/content-slider/content-slider.php:543
|
2398 |
+
msgid "Text Background Opacity"
|
2399 |
+
msgstr "Opacité de fond de texte"
|
2400 |
+
|
2401 |
+
#: modules/content-slider/content-slider.php:551
|
2402 |
+
msgid "Text Background Height"
|
2403 |
+
msgstr "Hauteur de fond de texte"
|
2404 |
+
|
2405 |
+
#: modules/content-slider/content-slider.php:553
|
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."
|
2409 |
+
msgstr ""
|
2410 |
+
"Auto permettra la superposition de s'ajuster, qu'importes la longueur du "
|
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:555
|
2415 |
+
msgctxt "Background height."
|
2416 |
+
msgid "Auto"
|
2417 |
+
msgstr "Automatique"
|
2418 |
+
|
2419 |
+
#: modules/content-slider/content-slider.php:572
|
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."
|
2423 |
+
msgstr ""
|
2424 |
+
"Le lien s'applique à l'ensemble de la diapositive. Si vous choisissez un "
|
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:676
|
2429 |
+
msgid "Border Radius"
|
2430 |
+
msgstr "Coins arrondis de la bordure"
|
2431 |
+
|
2432 |
+
#: modules/content-slider/content-slider.php:687
|
2433 |
+
msgctxt "Module settings form tab. Display on mobile devices."
|
2434 |
+
msgid "Mobile"
|
2435 |
+
msgstr "Portable"
|
2436 |
+
|
2437 |
+
#: modules/content-slider/content-slider.php:690
|
2438 |
+
msgid "Mobile Photo"
|
2439 |
+
msgstr "Photo à partir du portable"
|
2440 |
+
|
2441 |
+
#: modules/content-slider/content-slider.php:696
|
2442 |
+
msgid ""
|
2443 |
+
"You can choose a different photo that the slide will change to on mobile "
|
2444 |
+
"devices or no photo if desired."
|
2445 |
+
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:698
|
2450 |
+
msgid "Use Main Photo"
|
2451 |
+
msgstr "Utiliser la Photo principale"
|
2452 |
+
|
2453 |
+
#: modules/content-slider/content-slider.php:699
|
2454 |
+
msgid "Choose Another Photo"
|
2455 |
+
msgstr "Sélectionner une autre Photo"
|
2456 |
+
|
2457 |
+
#: modules/content-slider/content-slider.php:700
|
2458 |
+
msgid "No Photo"
|
2459 |
+
msgstr "Pas de Photo"
|
2460 |
+
|
2461 |
+
#: modules/content-slider/content-slider.php:715
|
2462 |
+
msgid "Mobile Text Colors"
|
2463 |
+
msgstr "Couleurs de texte pour mobile"
|
2464 |
+
|
2465 |
+
#: modules/cta/cta.php:15
|
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:73
|
2470 |
+
msgid "Ready to find out more?"
|
2471 |
+
msgstr "Prêt à en savoir plus ?"
|
2472 |
+
|
2473 |
+
#: modules/cta/cta.php:88
|
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:106 modules/gallery/gallery.php:220
|
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 "Mise en page"
|
2483 |
+
|
2484 |
+
#: modules/cta/cta.php:109
|
2485 |
+
msgid "Inline"
|
2486 |
+
msgstr "En ligne"
|
2487 |
+
|
2488 |
+
#: modules/cta/cta.php:110
|
2489 |
+
msgid "Stacked"
|
2490 |
+
msgstr "Empilé"
|
2491 |
+
|
2492 |
+
#: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
|
2493 |
+
msgid "Spacing"
|
2494 |
+
msgstr "Espacement"
|
2495 |
+
|
2496 |
+
#: modules/cta/cta.php:201
|
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 |
+
|
2504 |
+
#: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
|
2505 |
+
msgid "Gallery"
|
2506 |
+
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 de galerie."
|
2511 |
+
|
2512 |
+
#: modules/gallery/gallery.php:223
|
2513 |
+
msgid "Collage"
|
2514 |
+
msgstr "Collage"
|
2515 |
+
|
2516 |
+
#: modules/gallery/gallery.php:224
|
2517 |
+
msgctxt "Gallery layout: thumbnails."
|
2518 |
+
msgid "Thumbs"
|
2519 |
+
msgstr "Miniatures"
|
2520 |
+
|
2521 |
+
#: modules/gallery/gallery.php:260
|
2522 |
+
msgid "Photo Size"
|
2523 |
+
msgstr "Taille de la photo"
|
2524 |
+
|
2525 |
+
#: modules/gallery/gallery.php:263
|
2526 |
+
msgctxt "Photo size."
|
2527 |
+
msgid "Small"
|
2528 |
+
msgstr "Petite"
|
2529 |
+
|
2530 |
+
#: modules/gallery/gallery.php:264
|
2531 |
+
msgctxt "Photo size."
|
2532 |
+
msgid "Medium"
|
2533 |
+
msgstr "Moyenne"
|
2534 |
+
|
2535 |
+
#: modules/gallery/gallery.php:265
|
2536 |
+
msgctxt "Photo size."
|
2537 |
+
msgid "Large"
|
2538 |
+
msgstr "Grande"
|
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 "Afficher les légendes"
|
2547 |
+
|
2548 |
+
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
2549 |
+
msgid "Never"
|
2550 |
+
msgstr "Jamais"
|
2551 |
+
|
2552 |
+
#: modules/gallery/gallery.php:282 modules/photo/photo.php:433
|
2553 |
+
msgid "On Hover"
|
2554 |
+
msgstr "Au survol"
|
2555 |
+
|
2556 |
+
#: modules/gallery/gallery.php:283 modules/photo/photo.php:434
|
2557 |
+
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 "
|
2565 |
+
"SmugMug if you have captions set in your gallery."
|
2566 |
+
msgstr ""
|
2567 |
+
"Le sous-titre est obtenu à partir de l'entrée dans la case sous-titre de "
|
2568 |
+
"l'image dans la médiathèque. Le sous-titre sera aussi obtenu directement de "
|
2569 |
+
"SmugMug si vous utilisez les sous-titres dans votre galerie SmugMug."
|
2570 |
+
|
2571 |
+
#: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
|
2572 |
+
msgid "Click Action"
|
2573 |
+
msgstr "Action du clic"
|
2574 |
+
|
2575 |
+
#: modules/gallery/gallery.php:292
|
2576 |
+
msgctxt "Click action."
|
2577 |
+
msgid "None"
|
2578 |
+
msgstr "Aucune"
|
2579 |
+
|
2580 |
+
#: modules/gallery/gallery.php:293 modules/photo/photo.php:452
|
2581 |
+
msgid "Lightbox"
|
2582 |
+
msgstr "Visionneuse"
|
2583 |
+
|
2584 |
+
#: modules/gallery/gallery.php:294
|
2585 |
+
msgid "Photo Link"
|
2586 |
+
msgstr "Lien photo"
|
2587 |
+
|
2588 |
+
#: modules/heading/heading.php:15
|
2589 |
+
msgid "Display a title/page heading."
|
2590 |
+
msgstr "Afficher un titre."
|
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 "Balise HTML"
|
2601 |
+
|
2602 |
+
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
2603 |
+
msgid "Custom Font Size"
|
2604 |
+
msgstr "Taille de police personnalisée"
|
2605 |
+
|
2606 |
+
#: modules/heading/heading.php:137
|
2607 |
+
msgid "Mobile Structure"
|
2608 |
+
msgstr "Structure pour mobile"
|
2609 |
+
|
2610 |
+
#: modules/heading/heading.php:158
|
2611 |
+
msgid "Custom Alignment"
|
2612 |
+
msgstr "Alignement personnalisé"
|
2613 |
+
|
2614 |
+
#: modules/html/html.php:14
|
2615 |
+
msgid "HTML"
|
2616 |
+
msgstr "HTML"
|
2617 |
+
|
2618 |
+
#: modules/html/html.php:15
|
2619 |
+
msgid "Display raw HTML code."
|
2620 |
+
msgstr "Afficher le code HTML brut."
|
2621 |
+
|
2622 |
+
#: modules/icon-group/icon-group.php:14
|
2623 |
+
msgid "Icon Group"
|
2624 |
+
msgstr "Groupe d'icônes"
|
2625 |
+
|
2626 |
+
#: modules/icon-group/icon-group.php:15
|
2627 |
+
msgid "Display a group of linked Font Awesome icons."
|
2628 |
+
msgstr "Afficher un groupe de polices \"Font Awesome\" reliées."
|
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 une icône"
|
2637 |
+
|
2638 |
+
#: modules/icon/icon.php:15
|
2639 |
+
msgid "Display an icon and optional title."
|
2640 |
+
msgstr "Afficher une icône et le titre facultatif."
|
2641 |
+
|
2642 |
+
#: modules/map/map.php:14
|
2643 |
+
msgid "Map"
|
2644 |
+
msgstr "Carte"
|
2645 |
+
|
2646 |
+
#: modules/map/map.php:15
|
2647 |
+
msgid "Display a Google map."
|
2648 |
+
msgstr "Afficher une carte Google."
|
2649 |
+
|
2650 |
+
#: modules/map/map.php:33
|
2651 |
+
msgid "Address"
|
2652 |
+
msgstr "Adresse"
|
2653 |
+
|
2654 |
+
#: modules/map/map.php:34
|
2655 |
+
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
2656 |
+
msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
|
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 afficher une de la médiathèque."
|
2661 |
+
|
2662 |
+
#: modules/photo/photo.php:375
|
2663 |
+
msgid "Photo Source"
|
2664 |
+
msgstr "Source de la photo"
|
2665 |
+
|
2666 |
+
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
2667 |
+
msgid "URL"
|
2668 |
+
msgstr "Lien (URL)"
|
2669 |
+
|
2670 |
+
#: modules/photo/photo.php:396
|
2671 |
+
msgid "Photo URL"
|
2672 |
+
msgstr "Lien (URL) de la photo"
|
2673 |
+
|
2674 |
+
#: modules/photo/photo.php:397
|
2675 |
+
msgid "http://www.example.com/my-photo.jpg"
|
2676 |
+
msgstr "http://www.exemple.com/ma-photo.jpg"
|
2677 |
+
|
2678 |
+
#: modules/photo/photo.php:404
|
2679 |
+
msgctxt "Crop."
|
2680 |
+
msgid "None"
|
2681 |
+
msgstr "Aucun"
|
2682 |
+
|
2683 |
+
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
2684 |
+
msgid "Caption"
|
2685 |
+
msgstr "Légende"
|
2686 |
+
|
2687 |
+
#: modules/photo/photo.php:429
|
2688 |
+
msgid "Show Caption"
|
2689 |
+
msgstr "Afficher la Légende"
|
2690 |
+
|
2691 |
+
#: modules/photo/photo.php:448
|
2692 |
+
msgid "Link Type"
|
2693 |
+
msgstr "Type de lien"
|
2694 |
+
|
2695 |
+
#: modules/photo/photo.php:450
|
2696 |
+
msgctxt "Link type."
|
2697 |
+
msgid "None"
|
2698 |
+
msgstr "Aucun"
|
2699 |
+
|
2700 |
+
#: modules/photo/photo.php:453
|
2701 |
+
msgid "Photo File"
|
2702 |
+
msgstr "Fichier photo"
|
2703 |
+
|
2704 |
+
#: modules/photo/photo.php:464
|
2705 |
+
msgid ""
|
2706 |
+
"Link type applies to how the image should be linked on click. You can choose "
|
2707 |
+
"a specific URL, the individual photo or a separate page with the photo."
|
2708 |
+
msgstr ""
|
2709 |
+
"Type de lien s'applique à comment l'image doit être liée au clic. Vous "
|
2710 |
+
"pouvez choisir un lien (URL) spécifique, la photo individuelle ou une autre "
|
2711 |
+
"page avec la photo."
|
2712 |
+
|
2713 |
+
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
2714 |
+
msgid "Link URL"
|
2715 |
+
msgstr "URL du lien"
|
2716 |
+
|
2717 |
+
#: modules/post-grid/includes/frontend.php:41
|
2718 |
+
msgid "No posts found."
|
2719 |
+
msgstr "Aucun article trouvé"
|
2720 |
+
|
2721 |
+
#: modules/post-grid/includes/post-feed.php:14
|
2722 |
+
#: modules/post-grid/includes/post-grid.php:24
|
2723 |
+
#, php-format
|
2724 |
+
msgctxt "%s stands for author name."
|
2725 |
+
msgid "By %s"
|
2726 |
+
msgstr "Par %s"
|
2727 |
+
|
2728 |
+
#: modules/post-grid/post-grid.php:14
|
2729 |
+
msgid "Posts"
|
2730 |
+
msgstr "Articles"
|
2731 |
+
|
2732 |
+
#: modules/post-grid/post-grid.php:15
|
2733 |
+
msgid "Display a grid of your WordPress posts."
|
2734 |
+
msgstr "Afficher une grille de vos articles de WordPress."
|
2735 |
+
|
2736 |
+
#: modules/post-grid/post-grid.php:51
|
2737 |
+
msgid "Layout Style"
|
2738 |
+
msgstr "Style de mise en page"
|
2739 |
+
|
2740 |
+
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
2741 |
+
msgid "Grid"
|
2742 |
+
msgstr "Grille"
|
2743 |
+
|
2744 |
+
#: modules/post-grid/post-grid.php:56
|
2745 |
+
msgid "Feed"
|
2746 |
+
msgstr "Flux"
|
2747 |
+
|
2748 |
+
#: modules/post-grid/post-grid.php:71
|
2749 |
+
msgid "Pagination Style"
|
2750 |
+
msgstr "Style de pagination"
|
2751 |
+
|
2752 |
+
#: modules/post-grid/post-grid.php:74
|
2753 |
+
msgid "Numbers"
|
2754 |
+
msgstr "Nombres"
|
2755 |
+
|
2756 |
+
#: modules/post-grid/post-grid.php:76
|
2757 |
+
msgctxt "Pagination style."
|
2758 |
+
msgid "None"
|
2759 |
+
msgstr "Aucune"
|
2760 |
+
|
2761 |
+
#: modules/post-grid/post-grid.php:81
|
2762 |
+
msgid "Posts Per Page"
|
2763 |
+
msgstr "Articles par page"
|
2764 |
+
|
2765 |
+
#: modules/post-grid/post-grid.php:92
|
2766 |
+
msgid "Post Width"
|
2767 |
+
msgstr "Largeur de l'article"
|
2768 |
+
|
2769 |
+
#: modules/post-grid/post-grid.php:100
|
2770 |
+
msgid "Post Spacing"
|
2771 |
+
msgstr "Espacement de l'article"
|
2772 |
+
|
2773 |
+
#: modules/post-grid/post-grid.php:109
|
2774 |
+
msgid "Featured Image"
|
2775 |
+
msgstr "Image à la une"
|
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 "Afficher"
|
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
|
2785 |
+
#: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
|
2786 |
+
msgid "Hide"
|
2787 |
+
msgstr "Cacher"
|
2788 |
+
|
2789 |
+
#: modules/post-grid/post-grid.php:130
|
2790 |
+
msgid "Above Text"
|
2791 |
+
msgstr "Au-dessus du texte"
|
2792 |
+
|
2793 |
+
#: modules/post-grid/post-grid.php:131
|
2794 |
+
msgid "Beside Text"
|
2795 |
+
msgstr "À côté du texte"
|
2796 |
+
|
2797 |
+
#: modules/post-grid/post-grid.php:142
|
2798 |
+
msgid "Post Info"
|
2799 |
+
msgstr "Info de l'article"
|
2800 |
+
|
2801 |
+
#: modules/post-grid/post-grid.php:169
|
2802 |
+
msgid "Date Format"
|
2803 |
+
msgstr "Format de la date"
|
2804 |
+
|
2805 |
+
#: modules/post-grid/post-grid.php:185
|
2806 |
+
msgid "Comments"
|
2807 |
+
msgstr "Commentaires"
|
2808 |
+
|
2809 |
+
#: modules/post-grid/post-grid.php:213
|
2810 |
+
msgid "More Link"
|
2811 |
+
msgstr "Lien \"Plus\""
|
2812 |
+
|
2813 |
+
#: modules/post-grid/post-grid.php:227
|
2814 |
+
msgid "More Link Text"
|
2815 |
+
msgstr "Texte \"More link?\""
|
2816 |
+
|
2817 |
+
#: modules/post-grid/post-grid.php:228
|
2818 |
+
msgid "Read More"
|
2819 |
+
msgstr "Lire la suite"
|
2820 |
+
|
2821 |
+
#: modules/pricing-table/pricing-table.php:14
|
2822 |
+
msgid "Pricing Table"
|
2823 |
+
msgstr "Tableau des prix"
|
2824 |
+
|
2825 |
+
#: modules/pricing-table/pricing-table.php:15
|
2826 |
+
msgid "A simple pricing table generator."
|
2827 |
+
msgstr "Un simple générateur de tableau des prix."
|
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 de la boîte"
|
2842 |
+
|
2843 |
+
#: modules/pricing-table/pricing-table.php:53
|
2844 |
+
#: modules/testimonials/testimonials.php:40
|
2845 |
+
msgid "Wide"
|
2846 |
+
msgstr "Large"
|
2847 |
+
|
2848 |
+
#: modules/pricing-table/pricing-table.php:54
|
2849 |
+
msgid "Tight"
|
2850 |
+
msgstr "Étroit"
|
2851 |
+
|
2852 |
+
#: modules/pricing-table/pricing-table.php:59
|
2853 |
+
msgid "Features Min Height"
|
2854 |
+
msgstr "Hauteur minimum"
|
2855 |
+
|
2856 |
+
#: modules/pricing-table/pricing-table.php:63
|
2857 |
+
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, quand elles ont "
|
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"
|
2871 |
+
msgstr "Large"
|
2872 |
+
|
2873 |
+
#: modules/pricing-table/pricing-table.php:71
|
2874 |
+
msgctxt "Border size."
|
2875 |
+
msgid "Tight"
|
2876 |
+
msgstr "Étroite"
|
2877 |
+
|
2878 |
+
#: modules/pricing-table/pricing-table.php:84
|
2879 |
+
msgid "Add Pricing Box"
|
2880 |
+
msgstr "Ajouter une boîte de prix"
|
2881 |
+
|
2882 |
+
#: modules/pricing-table/pricing-table.php:98
|
2883 |
+
msgid "Title Size"
|
2884 |
+
msgstr "Taille du titre"
|
2885 |
+
|
2886 |
+
#: modules/pricing-table/pricing-table.php:107
|
2887 |
+
msgid "Price Box"
|
2888 |
+
msgstr "Boîte de prix"
|
2889 |
+
|
2890 |
+
#: modules/pricing-table/pricing-table.php:111
|
2891 |
+
msgid "Price"
|
2892 |
+
msgstr "Prix"
|
2893 |
+
|
2894 |
+
#: modules/pricing-table/pricing-table.php:115
|
2895 |
+
msgid "Duration"
|
2896 |
+
msgstr "Durée"
|
2897 |
+
|
2898 |
+
#: modules/pricing-table/pricing-table.php:116
|
2899 |
+
msgid "per Year"
|
2900 |
+
msgstr "par an"
|
2901 |
+
|
2902 |
+
#: modules/pricing-table/pricing-table.php:120
|
2903 |
+
msgid "Price Size"
|
2904 |
+
msgstr "Taille du prix"
|
2905 |
+
|
2906 |
+
#: modules/pricing-table/pricing-table.php:133
|
2907 |
+
msgid "Button Text"
|
2908 |
+
msgstr "Texte du bouton"
|
2909 |
+
|
2910 |
+
#: modules/pricing-table/pricing-table.php:137
|
2911 |
+
msgid "Button URL"
|
2912 |
+
msgstr "Lien (URL) du bouton"
|
2913 |
+
|
2914 |
+
#: modules/pricing-table/pricing-table.php:142
|
2915 |
+
msgctxt "Price features displayed in pricing box."
|
2916 |
+
msgid "Features"
|
2917 |
+
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 permis."
|
2922 |
+
|
2923 |
+
#: modules/pricing-table/pricing-table.php:162
|
2924 |
+
msgid "Box Background"
|
2925 |
+
msgstr "Arrière-plan de la boîte"
|
2926 |
+
|
2927 |
+
#: modules/pricing-table/pricing-table.php:167
|
2928 |
+
msgid "Box Foreground"
|
2929 |
+
msgstr "Avant-plan de la boîte"
|
2930 |
+
|
2931 |
+
#: modules/pricing-table/pricing-table.php:173
|
2932 |
+
msgid "Accent Color"
|
2933 |
+
msgstr "Couleur d'accent"
|
2934 |
+
|
2935 |
+
#: modules/pricing-table/pricing-table.php:178
|
2936 |
+
msgid "Accent Text Color"
|
2937 |
+
msgstr "Couleur d'accent du texte"
|
2938 |
+
|
2939 |
+
#: modules/pricing-table/pricing-table.php:182
|
2940 |
+
msgid "Box Top Margin"
|
2941 |
+
msgstr "Marge supérieure de la boîte"
|
2942 |
+
|
2943 |
+
#: modules/rich-text/rich-text.php:15
|
2944 |
+
msgid "A WYSIWYG text editor."
|
2945 |
+
msgstr "Éditeur de texte (WYSIWYG)"
|
2946 |
+
|
2947 |
+
#: modules/separator/separator.php:14
|
2948 |
+
msgid "Separator"
|
2949 |
+
msgstr "Séparateur"
|
2950 |
+
|
2951 |
+
#: modules/separator/separator.php:15
|
2952 |
+
msgid "A divider line to separate content."
|
2953 |
+
msgstr "Une ligne de séparation pour séparer le contenu."
|
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. Double doit avoir une largeur d'au moins 3px "
|
2961 |
+
"afin de rendre correctement."
|
2962 |
+
|
2963 |
+
#: modules/sidebar/includes/settings-general.php:5
|
2964 |
+
#: modules/sidebar/sidebar.php:14
|
2965 |
+
msgid "Sidebar"
|
2966 |
+
msgstr "Barre latérale"
|
2967 |
+
|
2968 |
+
#: modules/sidebar/sidebar.php:15
|
2969 |
+
msgid ""
|
2970 |
+
"Display a WordPress sidebar that has been registered by the current theme."
|
2971 |
+
msgstr ""
|
2972 |
+
"Afficher une barre latérale de WordPress qui a été enregistrée par le thème "
|
2973 |
+
"actuel."
|
2974 |
+
|
2975 |
+
#: modules/slideshow/slideshow.php:14
|
2976 |
+
msgid "Slideshow"
|
2977 |
+
msgstr "Diaporama"
|
2978 |
+
|
2979 |
+
#: modules/slideshow/slideshow.php:15
|
2980 |
+
msgid "Display multiple photos in a slideshow view."
|
2981 |
+
msgstr "Afficher plusieurs photos dans un affichage du diaporama."
|
2982 |
+
|
2983 |
+
#: modules/slideshow/slideshow.php:302
|
2984 |
+
msgid "Skin Color"
|
2985 |
+
msgstr "Couleur de la peau humaine"
|
2986 |
+
|
2987 |
+
#: modules/slideshow/slideshow.php:305
|
2988 |
+
msgctxt "Color."
|
2989 |
+
msgid "Light"
|
2990 |
+
msgstr "Clair"
|
2991 |
+
|
2992 |
+
#: modules/slideshow/slideshow.php:306
|
2993 |
+
msgctxt "Color."
|
2994 |
+
msgid "Dark"
|
2995 |
+
msgstr "Foncé"
|
2996 |
+
|
2997 |
+
#: modules/slideshow/slideshow.php:308
|
2998 |
+
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/images globales sont de couleur plus claire, l'option \"clair"
|
3003 |
+
"\" ajuste les boutons dans un jeu de couleurs plus foncé et vice versa pour "
|
3004 |
+
"la noirceur."
|
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 à \"Non\" fera que l'image s'ajustera à la hauteur que vous "
|
3015 |
+
"avez spécifié et gardera sa largeur en proportion. \"Oui\" ajustera l'image "
|
3016 |
+
"afin qu'elle se rende aux quatre côtés du contenu en recâdrant et coupant "
|
3017 |
+
"les côtés gauche et droit pour ajuster l'image à la hauteur choisie."
|
3018 |
+
|
3019 |
+
#: modules/slideshow/slideshow.php:322
|
3020 |
+
msgid "Disable Right-Click"
|
3021 |
+
msgstr "Désactiver le clic droit"
|
3022 |
+
|
3023 |
+
#: modules/slideshow/slideshow.php:342
|
3024 |
+
msgctxt "Click action type."
|
3025 |
+
msgid "None"
|
3026 |
+
msgstr "Aucun"
|
3027 |
+
|
3028 |
+
#: modules/slideshow/slideshow.php:366
|
3029 |
+
msgid "Playback"
|
3030 |
+
msgstr "Lecture"
|
3031 |
+
|
3032 |
+
#: modules/slideshow/slideshow.php:392
|
3033 |
+
msgctxt "Slideshow transition."
|
3034 |
+
msgid "None"
|
3035 |
+
msgstr "Aucune"
|
3036 |
+
|
3037 |
+
#: modules/slideshow/slideshow.php:429
|
3038 |
+
msgid "Controls"
|
3039 |
+
msgstr "Contrôles"
|
3040 |
+
|
3041 |
+
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3042 |
+
msgid "Navigation Arrows"
|
3043 |
+
msgstr "Flèches de navigation"
|
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 "
|
3050 |
+
"and are separate from the control bar navigational arrows."
|
3051 |
+
msgstr ""
|
3052 |
+
"Les flèches de navigation permettent aux visiteurs de se déplacer librement "
|
3053 |
+
"parmi les images de votre diaporama. Celles-ci sont de grosses flèches qui "
|
3054 |
+
"se superposent à vos images, indépendamment des flèches de navigation de la "
|
3055 |
+
"barre de contrôle."
|
3056 |
+
|
3057 |
+
#: modules/slideshow/slideshow.php:447
|
3058 |
+
msgid "Control Bar"
|
3059 |
+
msgstr "Barre de contrôle"
|
3060 |
+
|
3061 |
+
#: modules/slideshow/slideshow.php:451
|
3062 |
+
msgid "Nav Type"
|
3063 |
+
msgstr "Type de navigation"
|
3064 |
+
|
3065 |
+
#: modules/slideshow/slideshow.php:454
|
3066 |
+
msgctxt "Nav type."
|
3067 |
+
msgid "None"
|
3068 |
+
msgstr "Aucune"
|
3069 |
+
|
3070 |
+
#: modules/slideshow/slideshow.php:455
|
3071 |
+
msgid "Buttons"
|
3072 |
+
msgstr "Boutons"
|
3073 |
+
|
3074 |
+
#: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
|
3075 |
+
msgid "Thumbs"
|
3076 |
+
msgstr "Miniatures"
|
3077 |
+
|
3078 |
+
#: modules/slideshow/slideshow.php:471
|
3079 |
+
msgid "Nav Position"
|
3080 |
+
msgstr "Position de la navigation"
|
3081 |
+
|
3082 |
+
#: modules/slideshow/slideshow.php:481
|
3083 |
+
msgid "Control Bar Buttons"
|
3084 |
+
msgstr "Boutons de la barre de contrôle"
|
3085 |
+
|
3086 |
+
#: modules/slideshow/slideshow.php:494
|
3087 |
+
msgid "Play Button"
|
3088 |
+
msgstr "Bouton de lecture"
|
3089 |
+
|
3090 |
+
#: modules/slideshow/slideshow.php:503
|
3091 |
+
msgid "Fullscreen Button"
|
3092 |
+
msgstr "Bouton Plein écran"
|
3093 |
+
|
3094 |
+
#: modules/slideshow/slideshow.php:512
|
3095 |
+
msgid "Photo Count"
|
3096 |
+
msgstr "Compte de photo"
|
3097 |
+
|
3098 |
+
#: modules/slideshow/slideshow.php:521
|
3099 |
+
msgid "Thumbs Button"
|
3100 |
+
msgstr "Bouton des miniatures"
|
3101 |
+
|
3102 |
+
#: modules/slideshow/slideshow.php:530
|
3103 |
+
msgid "Caption Button"
|
3104 |
+
msgstr "Bouton de légende"
|
3105 |
+
|
3106 |
+
#: modules/slideshow/slideshow.php:539
|
3107 |
+
msgid "Social Button"
|
3108 |
+
msgstr "Bouton de réseaux sociaux"
|
3109 |
+
|
3110 |
+
#: modules/slideshow/slideshow.php:549
|
3111 |
+
msgid "Control Bar Overlay"
|
3112 |
+
msgstr "Superposition de la barre de contrôle"
|
3113 |
+
|
3114 |
+
#: modules/slideshow/slideshow.php:553
|
3115 |
+
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."
|
3123 |
+
msgstr ""
|
3124 |
+
"Barre de contrôle en superposition spécifie si la barre de contrôle des "
|
3125 |
+
"boutons sélectionnée sera mise en superposition sur vos diapositives, ou "
|
3126 |
+
"bien se situera en dessous du diaporama complètement."
|
3127 |
+
|
3128 |
+
#: modules/slideshow/slideshow.php:568
|
3129 |
+
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 |
+
"\"Cacher superposition\" va cacher la barre de contrôle après le nombre de "
|
3139 |
+
"secondes spécifiées plus bas. Un survol de la souris fera réapparaître le "
|
3140 |
+
"tout."
|
3141 |
+
|
3142 |
+
#: modules/slideshow/slideshow.php:578
|
3143 |
+
msgid "Overlay Hide Delay"
|
3144 |
+
msgstr "Différer la disparition de la superposition"
|
3145 |
+
|
3146 |
+
#: modules/slideshow/slideshow.php:590
|
3147 |
+
msgid "Thumbs Size"
|
3148 |
+
msgstr "Taille des miniatures"
|
3149 |
+
|
3150 |
+
#: modules/slideshow/slideshow.php:599
|
3151 |
+
msgid "Social"
|
3152 |
+
msgstr "Social"
|
3153 |
+
|
3154 |
+
#: modules/slideshow/slideshow.php:603
|
3155 |
+
msgid "Facebook Button"
|
3156 |
+
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"
|
3168 |
+
msgstr "Bouton Pinterest"
|
3169 |
+
|
3170 |
+
#: modules/social-buttons/social-buttons.php:14
|
3171 |
+
msgid "Social Buttons"
|
3172 |
+
msgstr "Boutons de réseaux sociaux"
|
3173 |
+
|
3174 |
+
#: modules/social-buttons/social-buttons.php:15
|
3175 |
+
msgid "Displays social buttons."
|
3176 |
+
msgstr "Affiche les boutons sociaux."
|
3177 |
+
|
3178 |
+
#: modules/social-buttons/social-buttons.php:71
|
3179 |
+
msgid "Target URL"
|
3180 |
+
msgstr "Lien cible (URL)"
|
3181 |
+
|
3182 |
+
#: modules/social-buttons/social-buttons.php:75
|
3183 |
+
msgid "Current Page"
|
3184 |
+
msgstr "Page en cours"
|
3185 |
+
|
3186 |
+
#: modules/social-buttons/social-buttons.php:82
|
3187 |
+
msgid ""
|
3188 |
+
"The Target URL field correlates to the page you would like your social icons "
|
3189 |
+
"to interface with. For example, if you show Facebook, the user will \"Like\" "
|
3190 |
+
"whatever you put in this field."
|
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 \"Like\" de la page que vous choisissez ici."
|
3195 |
+
|
3196 |
+
#: modules/social-buttons/social-buttons.php:89
|
3197 |
+
msgid "Custom URL"
|
3198 |
+
msgstr "Lien (URL) personnalisé"
|
3199 |
+
|
3200 |
+
#: modules/social-buttons/social-buttons.php:107
|
3201 |
+
msgid "Show Facebook"
|
3202 |
+
msgstr "Afficher Facebook"
|
3203 |
+
|
3204 |
+
#: modules/social-buttons/social-buttons.php:116
|
3205 |
+
msgid "Show Twitter"
|
3206 |
+
msgstr "Afficher Twitter"
|
3207 |
+
|
3208 |
+
#: modules/social-buttons/social-buttons.php:125
|
3209 |
+
msgid "Show Google+"
|
3210 |
+
msgstr "Afficher Google+ ?"
|
3211 |
+
|
3212 |
+
#: modules/tabs/tabs.php:14
|
3213 |
+
msgid "Tabs"
|
3214 |
+
msgstr "Onglets"
|
3215 |
+
|
3216 |
+
#: modules/tabs/tabs.php:15
|
3217 |
+
msgid "Display a collection of tabbed content."
|
3218 |
+
msgstr "Afficher une collection de contenu par onglets."
|
3219 |
+
|
3220 |
+
#: modules/tabs/tabs.php:55
|
3221 |
+
msgid "Horizontal"
|
3222 |
+
msgstr "Horizontal"
|
3223 |
+
|
3224 |
+
#: modules/tabs/tabs.php:56
|
3225 |
+
msgid "Vertical"
|
3226 |
+
msgstr "Vertical"
|
3227 |
+
|
3228 |
+
#: modules/testimonials/testimonials.php:14
|
3229 |
+
#: modules/testimonials/testimonials.php:60
|
3230 |
+
#: modules/testimonials/testimonials.php:174
|
3231 |
+
msgid "Testimonials"
|
3232 |
+
msgstr "Témoignages"
|
3233 |
+
|
3234 |
+
#: modules/testimonials/testimonials.php:15
|
3235 |
+
msgid "An animated tesimonials area."
|
3236 |
+
msgstr "Une zone de témoignages animée"
|
3237 |
+
|
3238 |
+
#: modules/testimonials/testimonials.php:41
|
3239 |
+
msgid "Compact"
|
3240 |
+
msgstr "Compact"
|
3241 |
+
|
3242 |
+
#: modules/testimonials/testimonials.php:51
|
3243 |
+
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
3244 |
+
msgstr ""
|
3245 |
+
"Large est pour les rangées à 1 colonne, compact est pour les rangées à "
|
3246 |
+
"plusieurs colonnes."
|
3247 |
+
|
3248 |
+
#: modules/testimonials/testimonials.php:78
|
3249 |
+
msgid "Slider Settings"
|
3250 |
+
msgstr "Réglages du diaporama"
|
3251 |
+
|
3252 |
+
#: modules/testimonials/testimonials.php:135
|
3253 |
+
msgid "Arrow Color"
|
3254 |
+
msgstr "Couleur de la flèche"
|
3255 |
+
|
3256 |
+
#: modules/testimonials/testimonials.php:165
|
3257 |
+
msgid "Dot Color"
|
3258 |
+
msgstr "Couleur du point"
|
3259 |
+
|
3260 |
+
#: modules/testimonials/testimonials.php:181
|
3261 |
+
msgid "Testimonial"
|
3262 |
+
msgstr "Témoignage"
|
3263 |
+
|
3264 |
+
#: modules/testimonials/testimonials.php:197
|
3265 |
+
msgid "Add Testimonial"
|
3266 |
+
msgstr "Ajouter un témoignage"
|
3267 |
+
|
3268 |
+
#: modules/video/video.php:20
|
3269 |
+
msgid "Render a WordPress or embedable video."
|
3270 |
+
msgstr "Rendre un vidéo local ou intégré."
|
3271 |
+
|
3272 |
+
#: modules/video/video.php:83
|
3273 |
+
msgid "Video Type"
|
3274 |
+
msgstr "Type de vidéo"
|
3275 |
+
|
3276 |
+
#: modules/video/video.php:87
|
3277 |
+
msgid "Embed"
|
3278 |
+
msgstr "Intégrer"
|
3279 |
+
|
3280 |
+
#: modules/video/video.php:104
|
3281 |
+
msgctxt "Video preview/fallback image."
|
3282 |
+
msgid "Poster"
|
3283 |
+
msgstr "L'affiche"
|
3284 |
+
|
3285 |
+
#: modules/video/video.php:120
|
3286 |
+
msgid "Loop"
|
3287 |
+
msgstr "Boucle"
|
3288 |
+
|
3289 |
+
#: modules/widget/includes/frontend.php:35
|
3290 |
+
#: modules/widget/includes/settings-general.php:44
|
3291 |
+
#, php-format
|
3292 |
+
msgctxt "%s stands for widget slug."
|
3293 |
+
msgid "%s no longer exists."
|
3294 |
+
msgstr "%s n'existe plus."
|
3295 |
+
|
3296 |
+
#: modules/widget/widget.php:14
|
3297 |
+
msgid "Widget"
|
3298 |
+
msgstr "Widget"
|
3299 |
+
|
3300 |
+
#: modules/widget/widget.php:15
|
3301 |
+
msgid "Display a WordPress widget."
|
3302 |
+
msgstr "Afficher un Widget WordPress."
|
3303 |
+
|
3304 |
+
#: modules/woocommerce/woocommerce.php:16
|
3305 |
+
msgid "WooCommerce"
|
3306 |
+
msgstr "WooCommerce"
|
3307 |
+
|
3308 |
+
#: modules/woocommerce/woocommerce.php:17
|
3309 |
+
msgid "Display products or categories from your WooCommerce store."
|
3310 |
+
msgstr "Afficher les produits ou catégories de votre boutique WooCommerce."
|
3311 |
+
|
3312 |
+
#: modules/woocommerce/woocommerce.php:60
|
3313 |
+
msgid "Choose..."
|
3314 |
+
msgstr "Choisir..."
|
3315 |
+
|
3316 |
+
#: modules/woocommerce/woocommerce.php:61
|
3317 |
+
msgid "Single Product"
|
3318 |
+
msgstr "Produit seul"
|
3319 |
+
|
3320 |
+
#: modules/woocommerce/woocommerce.php:62
|
3321 |
+
#: modules/woocommerce/woocommerce.php:113
|
3322 |
+
msgid "Multiple Products"
|
3323 |
+
msgstr "Produits multiples"
|
3324 |
+
|
3325 |
+
#: modules/woocommerce/woocommerce.php:63
|
3326 |
+
msgid "\"Add to Cart\" Button"
|
3327 |
+
msgstr "Bouton \"Ajouter au panier\""
|
3328 |
+
|
3329 |
+
#: modules/woocommerce/woocommerce.php:64
|
3330 |
+
msgid "Categories"
|
3331 |
+
msgstr "Catégories"
|
3332 |
+
|
3333 |
+
#: modules/woocommerce/woocommerce.php:65
|
3334 |
+
msgid "Cart"
|
3335 |
+
msgstr "Panier"
|
3336 |
+
|
3337 |
+
#: modules/woocommerce/woocommerce.php:66
|
3338 |
+
msgid "Checkout"
|
3339 |
+
msgstr "Validez la commande"
|
3340 |
+
|
3341 |
+
#: modules/woocommerce/woocommerce.php:67
|
3342 |
+
msgid "Order Tracking"
|
3343 |
+
msgstr "Suivi de commandes"
|
3344 |
+
|
3345 |
+
#: modules/woocommerce/woocommerce.php:68
|
3346 |
+
msgid "My Account"
|
3347 |
+
msgstr "Mon compte"
|
3348 |
+
|
3349 |
+
#: modules/woocommerce/woocommerce.php:87
|
3350 |
+
msgid "Product ID"
|
3351 |
+
msgstr "ID du produit"
|
3352 |
+
|
3353 |
+
#: modules/woocommerce/woocommerce.php:90
|
3354 |
+
msgid ""
|
3355 |
+
"As you add products in the WooCommerce Products area, each will be assigned "
|
3356 |
+
"a unique ID. You can find this unique product ID by visiting the Products "
|
3357 |
+
"area and rolling over the product. The unique ID will be the first attribute."
|
3358 |
+
msgstr ""
|
3359 |
+
"Lorsque vous ajoutez des produits dans le domaine des produits WooCommerce, "
|
3360 |
+
"chacun sera assigné un identifiant unique. Vous pouvez trouver cet ID de "
|
3361 |
+
"produit unique en visitant la zone produits et planant sur le produit. L'ID "
|
3362 |
+
"unique sera le premier attribut."
|
3363 |
+
|
3364 |
+
#: modules/woocommerce/woocommerce.php:94
|
3365 |
+
msgid "Parent Category ID"
|
3366 |
+
msgstr "ID de catégorie parente"
|
3367 |
+
|
3368 |
+
#: modules/woocommerce/woocommerce.php:97
|
3369 |
+
msgid ""
|
3370 |
+
"As you add product categories in the WooCommerce Products area, each will be "
|
3371 |
+
"assigned a unique ID. This ID can be found by hovering on the category in "
|
3372 |
+
"the categories area under Products and looking in the URL that is displayed "
|
3373 |
+
"in your browser. The ID will be the only number value in the URL."
|
3374 |
+
msgstr ""
|
3375 |
+
"Lorsque vous ajoutez des catégories de produits dans le domaine des produits "
|
3376 |
+
"WooCommerce, chacun sera assigné un identifiant unique. Cet ID se trouvent "
|
3377 |
+
"en planant sur la catégorie dans la zone de catégories sous produits et en "
|
3378 |
+
"regardant dans l'URL qui s'affiche dans votre navigateur. L'ID sera la seule "
|
3379 |
+
"valeur dans l'URL."
|
3380 |
+
|
3381 |
+
#: modules/woocommerce/woocommerce.php:101
|
3382 |
+
#: modules/woocommerce/woocommerce.php:172
|
3383 |
+
msgid "Columns"
|
3384 |
+
msgstr "Colonnes"
|
3385 |
+
|
3386 |
+
#: modules/woocommerce/woocommerce.php:117
|
3387 |
+
msgid "Products Source"
|
3388 |
+
msgstr "Source des produits?"
|
3389 |
+
|
3390 |
+
#: modules/woocommerce/woocommerce.php:120
|
3391 |
+
msgid "Products IDs"
|
3392 |
+
msgstr "IDs des produits"
|
3393 |
+
|
3394 |
+
#: modules/woocommerce/woocommerce.php:121
|
3395 |
+
msgid "Product Category"
|
3396 |
+
msgstr "Catégorie de produit"
|
3397 |
+
|
3398 |
+
#: modules/woocommerce/woocommerce.php:122
|
3399 |
+
msgid "Recent Products"
|
3400 |
+
msgstr "Produits récents"
|
3401 |
+
|
3402 |
+
#: modules/woocommerce/woocommerce.php:123
|
3403 |
+
msgid "Featured Products"
|
3404 |
+
msgstr "Produits vedettes"
|
3405 |
+
|
3406 |
+
#: modules/woocommerce/woocommerce.php:124
|
3407 |
+
msgid "Sale Products"
|
3408 |
+
msgstr "Produits en vente"
|
3409 |
+
|
3410 |
+
#: modules/woocommerce/woocommerce.php:125
|
3411 |
+
msgid "Best Selling Products"
|
3412 |
+
msgstr "Produits vendant le mieux"
|
3413 |
+
|
3414 |
+
#: modules/woocommerce/woocommerce.php:126
|
3415 |
+
msgid "Top Rated Products"
|
3416 |
+
msgstr "Les produits les mieux notés"
|
3417 |
+
|
3418 |
+
#: modules/woocommerce/woocommerce.php:154
|
3419 |
+
msgid "Product IDs"
|
3420 |
+
msgstr "IDs des produits"
|
3421 |
+
|
3422 |
+
#: modules/woocommerce/woocommerce.php:156
|
3423 |
+
msgid ""
|
3424 |
+
"As you add products in the WooCommerce Products area, each will be assigned "
|
3425 |
+
"a unique ID. You can find this unique product ID by visiting the Products "
|
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 |
+
"Lorsque vous ajoutez des produits dans le domaine des produits WooCommerce, "
|
3430 |
+
"chacun sera assigné un identifiant unique. Vous pouvez trouver cet ID de "
|
3431 |
+
"produit unique en visitant la zone produits et planant sur le produit. L'ID "
|
3432 |
+
"unique sera le premier attribut, et vous pouvez ajouter plusieurs ici "
|
3433 |
+
"séparés par une virgule."
|
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 "
|
3443 |
+
"assigned a unique slug or you can edit and add your own. These slugs can be "
|
3444 |
+
"found in the Categories area under WooCommerce Products. Several can be "
|
3445 |
+
"added here separated by a comma."
|
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 \"slugs\" se trouvent dans la "
|
3450 |
+
"zone de catégories sous les produits WooCommerce. Plusieurs peuvent être "
|
3451 |
+
"ajoutés ici séparés par une virgule."
|
3452 |
+
|
3453 |
+
#: modules/woocommerce/woocommerce.php:166
|
3454 |
+
msgid "Number of Products"
|
3455 |
+
msgstr "Nombre de produits"
|
3456 |
+
|
3457 |
+
#: modules/woocommerce/woocommerce.php:183
|
3458 |
+
msgid "Sort By"
|
3459 |
+
msgstr "Classer par"
|
3460 |
+
|
3461 |
+
#: modules/woocommerce/woocommerce.php:186
|
3462 |
+
msgctxt "Sort by."
|
3463 |
+
msgid "Default"
|
3464 |
+
msgstr "Par défaut"
|
3465 |
+
|
3466 |
+
#: modules/woocommerce/woocommerce.php:187
|
3467 |
+
msgid "Popularity"
|
3468 |
+
msgstr "Popularité"
|
3469 |
+
|
3470 |
+
#: modules/woocommerce/woocommerce.php:188
|
3471 |
+
msgid "Rating"
|
3472 |
+
msgstr "Evaluation"
|
3473 |
+
|
3474 |
+
#: modules/woocommerce/woocommerce.php:190
|
3475 |
+
msgid "Price: Low to High"
|
3476 |
+
msgstr "Prix : Faible à élevé"
|
3477 |
+
|
3478 |
+
#: modules/woocommerce/woocommerce.php:191
|
3479 |
+
msgid "Price: High to Low"
|
3480 |
+
msgstr "Prix : Élevé à faible"
|
languages/it_IT.mo
ADDED
Binary file
|
languages/it_IT.po
ADDED
@@ -0,0 +1,4392 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Beaver Builder Plugin\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-12 10:28-0800\n"
|
6 |
+
"PO-Revision-Date: 2015-02-12 21:24+0100\n"
|
7 |
+
"Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: it_IT\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.5.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
|
26 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
27 |
+
msgid "%s Settings"
|
28 |
+
msgstr "Impostazioni di %s"
|
29 |
+
|
30 |
+
# @ fl-builder
|
31 |
+
#: classes/class-fl-builder-admin-settings.php:107
|
32 |
+
msgid "Settings updated!"
|
33 |
+
msgstr "Impostazioni aggiornate!"
|
34 |
+
|
35 |
+
# @ fl-builder
|
36 |
+
#: classes/class-fl-builder-admin-settings.php:118
|
37 |
+
msgid "License"
|
38 |
+
msgstr "Licenza"
|
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 "Aggiornamento"
|
45 |
+
|
46 |
+
# @ fl-builder
|
47 |
+
#: classes/class-fl-builder-admin-settings.php:126
|
48 |
+
#: includes/global-settings.php:67
|
49 |
+
msgid "Modules"
|
50 |
+
msgstr "Moduli"
|
51 |
+
|
52 |
+
# @ fl-builder
|
53 |
+
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:44
|
54 |
+
msgid "Templates"
|
55 |
+
msgstr "Modelli"
|
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 "Tipi di post"
|
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 "Icone"
|
68 |
+
|
69 |
+
# @ fl-builder
|
70 |
+
#: classes/class-fl-builder-admin-settings.php:142
|
71 |
+
msgid "Editing"
|
72 |
+
msgstr "Modifica"
|
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 "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:368
|
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:410
|
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:444
|
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
|
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 "
|
105 |
+
"of this plugin."
|
106 |
+
msgstr ""
|
107 |
+
"Questa versione del plugin <strong>Page Builder</strong> non è compatibile "
|
108 |
+
"con WordPress Multisite. <a%s>Si prega di aggiornare</a> alla versione "
|
109 |
+
"Multisite di questo plugin."
|
110 |
+
|
111 |
+
# @ fl-builder
|
112 |
+
#: classes/class-fl-builder-admin.php:50
|
113 |
+
msgid ""
|
114 |
+
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
115 |
+
"greater. Please update WordPress before activating the plugin."
|
116 |
+
msgstr ""
|
117 |
+
"Il plugin <strong>Page Builder</strong> richiede WordPress versione 3.5 o "
|
118 |
+
"superiore. Si prega di aggiornare WordPress prima di attivare il plugin."
|
119 |
+
|
120 |
+
# @ fl-builder
|
121 |
+
#: classes/class-fl-builder-admin.php:96
|
122 |
+
#, php-format
|
123 |
+
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
124 |
+
msgstr ""
|
125 |
+
"Page Builder attivato! <a%s>Clicca qui</a> per attivare gli aggiornamenti "
|
126 |
+
"remoti."
|
127 |
+
|
128 |
+
# @ fl-builder
|
129 |
+
#: classes/class-fl-builder-admin.php:191
|
130 |
+
msgctxt "Plugin action link label."
|
131 |
+
msgid "Upgrade"
|
132 |
+
msgstr "Aggiorna"
|
133 |
+
|
134 |
+
# @ fl-builder
|
135 |
+
#: classes/class-fl-builder-admin.php:202
|
136 |
+
#: classes/class-fl-builder-model.php:2538
|
137 |
+
msgid "Page Builder"
|
138 |
+
msgstr "Page Builder"
|
139 |
+
|
140 |
+
#: classes/class-fl-builder-model.php:1363
|
141 |
+
#, php-format
|
142 |
+
msgctxt "%s stands for the module filename"
|
143 |
+
msgid ""
|
144 |
+
"A module with the filename %s.php already exists! Please namespace your "
|
145 |
+
"module filenames to ensure compatibility with Beaver Builder."
|
146 |
+
msgstr ""
|
147 |
+
"Esiste già un modulo con il nome file %s.php! Per favore usa un namespace "
|
148 |
+
"nel nome file del tuo modulo per assicurare la compatibilità con Beaver "
|
149 |
+
"Builder."
|
150 |
+
|
151 |
+
# @ fl-builder
|
152 |
+
#: classes/class-fl-builder-model.php:1953
|
153 |
+
#, php-format
|
154 |
+
msgctxt "%s stands for post/page title."
|
155 |
+
msgid "Copy of %s"
|
156 |
+
msgstr "Copia di %s"
|
157 |
+
|
158 |
+
# @ fl-builder
|
159 |
+
#: classes/class-fl-builder-photo.php:75
|
160 |
+
msgctxt "Image size."
|
161 |
+
msgid "Full Size"
|
162 |
+
msgstr "Piena larghezza"
|
163 |
+
|
164 |
+
# @ fl-builder
|
165 |
+
#: classes/class-fl-builder-photo.php:76
|
166 |
+
msgctxt "Image size."
|
167 |
+
msgid "Large"
|
168 |
+
msgstr "Grande"
|
169 |
+
|
170 |
+
# @ fl-builder
|
171 |
+
#: classes/class-fl-builder-photo.php:77
|
172 |
+
msgctxt "Image size."
|
173 |
+
msgid "Medium"
|
174 |
+
msgstr "Media"
|
175 |
+
|
176 |
+
# @ fl-builder
|
177 |
+
#: classes/class-fl-builder-photo.php:78
|
178 |
+
msgctxt "Image size."
|
179 |
+
msgid "Thumbnail"
|
180 |
+
msgstr "Miniatura"
|
181 |
+
|
182 |
+
# @ fl-builder
|
183 |
+
#: classes/class-fl-builder-templates.php:28
|
184 |
+
msgid "Page Builder Templates"
|
185 |
+
msgstr "Modelli di layout di Page Builder"
|
186 |
+
|
187 |
+
# @ fl-builder
|
188 |
+
#: classes/class-fl-builder.php:702
|
189 |
+
#, php-format
|
190 |
+
msgctxt "Field name to add."
|
191 |
+
msgid "Add %s"
|
192 |
+
msgstr "Aggiungi %s"
|
193 |
+
|
194 |
+
# @ fl-builder
|
195 |
+
#: classes/class-fl-builder.php:765 classes/class-fl-builder.php:767
|
196 |
+
msgctxt "Custom post type label."
|
197 |
+
msgid "Layout Templates"
|
198 |
+
msgstr "Modelli di layout"
|
199 |
+
|
200 |
+
# @ fl-builder
|
201 |
+
#: classes/class-fl-builder.php:766 classes/class-fl-builder.php:768
|
202 |
+
msgctxt "Custom post type label."
|
203 |
+
msgid "Layout Template"
|
204 |
+
msgstr "Modello di layout"
|
205 |
+
|
206 |
+
# @ fl-builder
|
207 |
+
#: classes/class-fl-builder.php:769
|
208 |
+
msgctxt "Custom post type label."
|
209 |
+
msgid "Add New"
|
210 |
+
msgstr "Aggiungi nuovo"
|
211 |
+
|
212 |
+
# @ fl-builder
|
213 |
+
#: classes/class-fl-builder.php:770
|
214 |
+
msgctxt "Custom post type label."
|
215 |
+
msgid "Add New Layout Template"
|
216 |
+
msgstr "Aggiungi nuovo modello di Layout"
|
217 |
+
|
218 |
+
# @ fl-builder
|
219 |
+
#: classes/class-fl-builder.php:771
|
220 |
+
msgctxt "Custom post type label."
|
221 |
+
msgid "New Layout Template"
|
222 |
+
msgstr "Nuovo modello di Layout"
|
223 |
+
|
224 |
+
# @ fl-builder
|
225 |
+
#: classes/class-fl-builder.php:772
|
226 |
+
msgctxt "Custom post type label."
|
227 |
+
msgid "Edit Layout Template"
|
228 |
+
msgstr "Modifica modello di Layout"
|
229 |
+
|
230 |
+
# @ fl-builder
|
231 |
+
#: classes/class-fl-builder.php:773
|
232 |
+
msgctxt "Custom post type label."
|
233 |
+
msgid "View Layout Template"
|
234 |
+
msgstr "Visualizza modello di Layout"
|
235 |
+
|
236 |
+
# @ fl-builder
|
237 |
+
#: classes/class-fl-builder.php:774
|
238 |
+
msgctxt "Custom post type label."
|
239 |
+
msgid "All Layout Templates"
|
240 |
+
msgstr "Tutti i modelli di Layout"
|
241 |
+
|
242 |
+
# @ fl-builder
|
243 |
+
#: classes/class-fl-builder.php:775
|
244 |
+
msgctxt "Custom post type label."
|
245 |
+
msgid "Search Layout Templates"
|
246 |
+
msgstr "Cerca modelli di Layout"
|
247 |
+
|
248 |
+
# @ fl-builder
|
249 |
+
#: classes/class-fl-builder.php:776
|
250 |
+
msgctxt "Custom post type label."
|
251 |
+
msgid "Parent Layout Templates:"
|
252 |
+
msgstr "Modelli di Layout genitore:"
|
253 |
+
|
254 |
+
# @ fl-builder
|
255 |
+
#: classes/class-fl-builder.php:777
|
256 |
+
msgctxt "Custom post type label."
|
257 |
+
msgid "No layout templates found."
|
258 |
+
msgstr "Nessun modello di layout trovato."
|
259 |
+
|
260 |
+
# @ fl-builder
|
261 |
+
#: classes/class-fl-builder.php:778
|
262 |
+
msgctxt "Custom post type label."
|
263 |
+
msgid "No layout templates found in Trash."
|
264 |
+
msgstr "Nessun modello di layout trovato nel cestino."
|
265 |
+
|
266 |
+
# @ fl-builder
|
267 |
+
#: classes/class-fl-builder.php:1143 includes/js-config.php:61
|
268 |
+
#, php-format
|
269 |
+
msgctxt "%s stands for module name."
|
270 |
+
msgid "%s Settings"
|
271 |
+
msgstr "impostazioni %s"
|
272 |
+
|
273 |
+
# @ fl-builder
|
274 |
+
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
275 |
+
msgid "Text Editor"
|
276 |
+
msgstr "Editor di testo"
|
277 |
+
|
278 |
+
# @ fl-builder
|
279 |
+
#: includes/admin-posts.php:7
|
280 |
+
#, php-format
|
281 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
282 |
+
msgid "%s is currently active for this page."
|
283 |
+
msgstr "%s è attualmente attivo per questa pagina."
|
284 |
+
|
285 |
+
# @ fl-builder
|
286 |
+
#: includes/admin-posts.php:8
|
287 |
+
#, php-format
|
288 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
289 |
+
msgid "Launch %s"
|
290 |
+
msgstr "Lancia %s"
|
291 |
+
|
292 |
+
#: includes/admin-settings-branding.php:7
|
293 |
+
msgid "White label the page builder by entering a custom name below."
|
294 |
+
msgstr ""
|
295 |
+
"Togli l'etichetta al page builder inserendo un nome personalizzato qui sotto."
|
296 |
+
|
297 |
+
#: includes/admin-settings-branding.php:10
|
298 |
+
msgid ""
|
299 |
+
"Additionally, you may also add a custom icon by entering the URL of an image "
|
300 |
+
"below. Leave the field blank if you do not wish to use an icon."
|
301 |
+
msgstr ""
|
302 |
+
"Inoltre, puoi anche aggiungere un'icona personalizzata inserendo la URL di "
|
303 |
+
"un'immagine qui sotto. Lascia il campo in bianco se non desideri usare "
|
304 |
+
"un'icona."
|
305 |
+
|
306 |
+
# @ fl-builder
|
307 |
+
#: includes/admin-settings-branding.php:14
|
308 |
+
msgid "Save Branding"
|
309 |
+
msgstr "Salva Branding"
|
310 |
+
|
311 |
+
# @ fl-builder
|
312 |
+
#: includes/admin-settings-editing.php:3
|
313 |
+
msgid "Editing Settings"
|
314 |
+
msgstr "Impostazioni di modifica"
|
315 |
+
|
316 |
+
# @ fl-builder
|
317 |
+
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
318 |
+
#: includes/admin-settings-modules.php:10
|
319 |
+
#: includes/admin-settings-post-types.php:10
|
320 |
+
#: includes/admin-settings-templates.php:10
|
321 |
+
msgid "Override network settings?"
|
322 |
+
msgstr "Eseguire l'override delle impostazioni di rete?"
|
323 |
+
|
324 |
+
# @ fl-builder
|
325 |
+
#: includes/admin-settings-editing.php:16
|
326 |
+
#, php-format
|
327 |
+
msgid ""
|
328 |
+
"Set the <a%s>capability</a> required for users to access advanced builder "
|
329 |
+
"editing such as adding, deleting or moving modules."
|
330 |
+
msgstr ""
|
331 |
+
"Imposta la <a%s>capacità</a> necessaria degli utenti per accedere al builder "
|
332 |
+
"avanzato e aggiungere, eliminare o spostare i moduli."
|
333 |
+
|
334 |
+
# @ fl-builder
|
335 |
+
#: includes/admin-settings-editing.php:22
|
336 |
+
msgid "Save Editing Settings"
|
337 |
+
msgstr "Salva le impostazioni di modifica"
|
338 |
+
|
339 |
+
# @ fl-builder
|
340 |
+
#: includes/admin-settings-icons.php:3
|
341 |
+
msgid "Icon Settings"
|
342 |
+
msgstr "Impostazioni icona"
|
343 |
+
|
344 |
+
#: includes/admin-settings-icons.php:13
|
345 |
+
msgid "Icons for the main site must be managed in the network admin."
|
346 |
+
msgstr ""
|
347 |
+
"Le icone per il sito principale devono essere gestite nell'amministrazione "
|
348 |
+
"di rete."
|
349 |
+
|
350 |
+
#: includes/admin-settings-icons.php:33
|
351 |
+
#, php-format
|
352 |
+
msgid ""
|
353 |
+
"Enable or disable icon sets using the options below or upload a custom icon "
|
354 |
+
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
355 |
+
msgstr ""
|
356 |
+
"Abilita o disabilita set di icone usando le opzioni qui sotto o carica un "
|
357 |
+
"set di icone personalizzato da <a%s>Icomoon</a> o <a%s>Fontello</a>."
|
358 |
+
|
359 |
+
# @ fl-builder
|
360 |
+
#: includes/admin-settings-icons.php:48
|
361 |
+
msgctxt "Plugin setup page: Delete icon set."
|
362 |
+
msgid "Delete"
|
363 |
+
msgstr "Elimina"
|
364 |
+
|
365 |
+
#: includes/admin-settings-icons.php:59
|
366 |
+
msgid "Upload Icon Set"
|
367 |
+
msgstr "Carica set di icone"
|
368 |
+
|
369 |
+
# @ fl-builder
|
370 |
+
#: includes/admin-settings-icons.php:60
|
371 |
+
msgid "Save Icon Settings"
|
372 |
+
msgstr "Salva impostazioni icona"
|
373 |
+
|
374 |
+
# @ fl-builder
|
375 |
+
#: includes/admin-settings-js-config.php:4
|
376 |
+
msgid "Select File"
|
377 |
+
msgstr "Seleziona file"
|
378 |
+
|
379 |
+
# @ fl-builder
|
380 |
+
#: includes/admin-settings-js-config.php:5
|
381 |
+
msgid ""
|
382 |
+
"Please type \"uninstall\" in the box below to confirm that you really want "
|
383 |
+
"to uninstall the page builder and all of its data."
|
384 |
+
msgstr ""
|
385 |
+
"Si prega di digitare \"uninstall\" nella casella qui sotto per confermare "
|
386 |
+
"che si desidera davvero disinstallare il page builder e tutti i relativi "
|
387 |
+
"dati."
|
388 |
+
|
389 |
+
# @ fl-builder
|
390 |
+
#: includes/admin-settings-modules.php:3
|
391 |
+
msgid "Enabled Modules"
|
392 |
+
msgstr "Moduli abilitati"
|
393 |
+
|
394 |
+
# @ fl-builder
|
395 |
+
#: includes/admin-settings-modules.php:16
|
396 |
+
msgid "Check or uncheck modules below to enable or disable them."
|
397 |
+
msgstr ""
|
398 |
+
"Selezionare o deselezionare i moduli sottostanti per abilitarli o "
|
399 |
+
"disabilitarli."
|
400 |
+
|
401 |
+
# @ fl-builder
|
402 |
+
#: includes/admin-settings-modules.php:25
|
403 |
+
msgctxt "Plugin setup page: Modules."
|
404 |
+
msgid "All"
|
405 |
+
msgstr "Tutti"
|
406 |
+
|
407 |
+
# @ fl-builder
|
408 |
+
#: includes/admin-settings-modules.php:43
|
409 |
+
msgid "Save Module Settings"
|
410 |
+
msgstr "Salvare le impostazioni del modulo"
|
411 |
+
|
412 |
+
# @ fl-builder
|
413 |
+
#: includes/admin-settings-post-types.php:18
|
414 |
+
msgid ""
|
415 |
+
"Enter a comma separated list of the post types you would like the builder to "
|
416 |
+
"work with."
|
417 |
+
msgstr ""
|
418 |
+
"Inserisci una lista separata da virgole dei tipi di post su cui desideri "
|
419 |
+
"attivare il builder."
|
420 |
+
|
421 |
+
# @ fl-builder
|
422 |
+
#: includes/admin-settings-post-types.php:19
|
423 |
+
#: includes/admin-settings-post-types.php:39
|
424 |
+
msgid "NOTE: Not all custom post types may be supported."
|
425 |
+
msgstr ""
|
426 |
+
"Nota: Non tutti i tipi di post personalizzati potrebbero essere supportati."
|
427 |
+
|
428 |
+
#: includes/admin-settings-post-types.php:34
|
429 |
+
msgid "Example: page, post, product"
|
430 |
+
msgstr "Esempio: pagina, articolo, prodotto"
|
431 |
+
|
432 |
+
# @ fl-builder
|
433 |
+
#: includes/admin-settings-post-types.php:38
|
434 |
+
msgid "Select the post types you would like the builder to work with."
|
435 |
+
msgstr "Seleziona i tipi di post su cui vuoi abilitare il builder."
|
436 |
+
|
437 |
+
# @ fl-builder
|
438 |
+
#: includes/admin-settings-post-types.php:70
|
439 |
+
msgid "Save Post Types"
|
440 |
+
msgstr "Salva tipi di Post"
|
441 |
+
|
442 |
+
# @ fl-builder
|
443 |
+
#: includes/admin-settings-templates.php:3 includes/template-settings.php:4
|
444 |
+
msgid "Template Settings"
|
445 |
+
msgstr "Impostazioni dei modelli"
|
446 |
+
|
447 |
+
# @ fl-builder
|
448 |
+
#: includes/admin-settings-templates.php:16
|
449 |
+
msgid "Enable or disable templates using the options below."
|
450 |
+
msgstr "Abilitare o disabilitare i modelli utilizzando le opzioni qui sotto."
|
451 |
+
|
452 |
+
# @ fl-builder
|
453 |
+
#: includes/admin-settings-templates.php:23
|
454 |
+
msgid "Enable All Templates"
|
455 |
+
msgstr "Abilita tutti i modelli"
|
456 |
+
|
457 |
+
# @ fl-builder
|
458 |
+
#: includes/admin-settings-templates.php:24
|
459 |
+
msgid "Enable Core Templates Only"
|
460 |
+
msgstr "Abilita solo i modelli Core"
|
461 |
+
|
462 |
+
# @ fl-builder
|
463 |
+
#: includes/admin-settings-templates.php:25
|
464 |
+
msgid "Enable User Templates Only"
|
465 |
+
msgstr "Abilita solo i modelli utente"
|
466 |
+
|
467 |
+
# @ fl-builder
|
468 |
+
#: includes/admin-settings-templates.php:26
|
469 |
+
msgid "Disable All Templates"
|
470 |
+
msgstr "Disabilita tutti i modelli"
|
471 |
+
|
472 |
+
# @ fl-builder
|
473 |
+
#: includes/admin-settings-templates.php:30
|
474 |
+
msgid "Save Template Settings"
|
475 |
+
msgstr "Salva le impostazioni dei modelli"
|
476 |
+
|
477 |
+
# @ fl-builder
|
478 |
+
#: includes/admin-settings-uninstall.php:5
|
479 |
+
msgid ""
|
480 |
+
"Clicking the button below will uninstall the page builder plugin and delete "
|
481 |
+
"all of the data associated with it. You can uninstall or deactivate the page "
|
482 |
+
"builder from the plugins page instead if you do not wish to delete the data."
|
483 |
+
msgstr ""
|
484 |
+
"Clicca sul pulsante qui sotto per disinstallare il page builder plugin e "
|
485 |
+
"rimuovere tutti i dati ad esso associati. È possibile disinstallare o "
|
486 |
+
"disattivare il page builder dalla pagina dei plugin se invece non si "
|
487 |
+
"desidera eliminare i dati."
|
488 |
+
|
489 |
+
# @ fl-builder
|
490 |
+
#: includes/admin-settings-uninstall.php:7
|
491 |
+
#: includes/admin-settings-uninstall.php:10
|
492 |
+
#: includes/updater/includes/form.php:31
|
493 |
+
msgid "NOTE:"
|
494 |
+
msgstr "NOTA:"
|
495 |
+
|
496 |
+
# @ fl-builder
|
497 |
+
#: includes/admin-settings-uninstall.php:7
|
498 |
+
msgid ""
|
499 |
+
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
500 |
+
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
501 |
+
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
502 |
+
"its data using those meta values."
|
503 |
+
msgstr ""
|
504 |
+
"Il builder non elimina il post meta <code>_fl_builder_data</code> , "
|
505 |
+
"<code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> nel caso "
|
506 |
+
"in cui si desidera reinstallarlo successivamente. Se lo fai, il builder "
|
507 |
+
"ricostruirà tutti i suoi dati utilizzando quei valori meta."
|
508 |
+
|
509 |
+
# @ fl-builder
|
510 |
+
#: includes/admin-settings-uninstall.php:10
|
511 |
+
#: includes/updater/includes/form.php:31
|
512 |
+
msgid "This applies to all sites on the network."
|
513 |
+
msgstr "Questo vale per tutti i siti della rete."
|
514 |
+
|
515 |
+
# @ fl-builder
|
516 |
+
#: includes/admin-settings-upgrade.php:5
|
517 |
+
msgid ""
|
518 |
+
"You are currently running the lite version of the Beaver Builder plugin. "
|
519 |
+
"Upgrade today for access to premium features such as advanced modules, "
|
520 |
+
"templates, support and more!"
|
521 |
+
msgstr ""
|
522 |
+
"Stai usando la versione lite del plugin Beaver Builder. Aggiorna oggi per "
|
523 |
+
"accedere a funzioni premium come moduli avanzati, modelli, supporto e altro!"
|
524 |
+
|
525 |
+
# @ fl-builder
|
526 |
+
#: includes/admin-settings-upgrade.php:7
|
527 |
+
msgid "Upgrade Now"
|
528 |
+
msgstr "Aggiorna ora"
|
529 |
+
|
530 |
+
# @ fl-builder
|
531 |
+
#: includes/admin-settings-upgrade.php:9
|
532 |
+
msgid "Learn More"
|
533 |
+
msgstr "Ulteriori informazioni"
|
534 |
+
|
535 |
+
# @ fl-builder
|
536 |
+
#: includes/admin-templates-edit.php:3
|
537 |
+
msgid "Edit Template"
|
538 |
+
msgstr "Modifica modello di Layout"
|
539 |
+
|
540 |
+
# @ fl-builder
|
541 |
+
#: includes/admin-templates-edit.php:8
|
542 |
+
msgctxt "Template edit form field label. Template name."
|
543 |
+
msgid "Name"
|
544 |
+
msgstr "Nome"
|
545 |
+
|
546 |
+
# @ fl-builder
|
547 |
+
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:303
|
548 |
+
#: modules/post-grid/post-grid.php:113
|
549 |
+
msgid "Image"
|
550 |
+
msgstr "Immagine"
|
551 |
+
|
552 |
+
# @ fl-builder
|
553 |
+
#: includes/admin-templates-edit.php:16 includes/row-settings.php:155
|
554 |
+
#: includes/template-settings.php:23 modules/callout/callout.php:351
|
555 |
+
#: modules/callout/callout.php:371
|
556 |
+
#: modules/content-slider/content-slider.php:466
|
557 |
+
#: modules/post-grid/post-grid.php:127
|
558 |
+
msgid "Position"
|
559 |
+
msgstr "Posizione"
|
560 |
+
|
561 |
+
#: includes/admin-templates-edit.php:20 includes/template-settings.php:28
|
562 |
+
msgctxt "Template edit form field label. Is template premium one?"
|
563 |
+
msgid "Premium"
|
564 |
+
msgstr "Premium"
|
565 |
+
|
566 |
+
# @ fl-builder
|
567 |
+
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
568 |
+
#: includes/global-settings.php:18 includes/global-settings.php:87
|
569 |
+
#: includes/row-settings.php:307 includes/template-settings.php:31
|
570 |
+
#: modules/accordion/accordion.php:90 modules/button/button.php:135
|
571 |
+
#: modules/callout/callout.php:418 modules/callout/callout.php:539
|
572 |
+
#: modules/content-slider/content-slider.php:203
|
573 |
+
#: modules/content-slider/content-slider.php:217
|
574 |
+
#: modules/content-slider/content-slider.php:251
|
575 |
+
#: modules/content-slider/content-slider.php:260
|
576 |
+
#: modules/content-slider/content-slider.php:531
|
577 |
+
#: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
|
578 |
+
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
579 |
+
#: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
|
580 |
+
#: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
|
581 |
+
#: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
|
582 |
+
#: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
|
583 |
+
#: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
|
584 |
+
#: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
|
585 |
+
#: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
|
586 |
+
#: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
|
587 |
+
#: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
|
588 |
+
#: modules/social-buttons/social-buttons.php:111
|
589 |
+
#: modules/social-buttons/social-buttons.php:120
|
590 |
+
#: modules/social-buttons/social-buttons.php:129
|
591 |
+
#: modules/testimonials/testimonials.php:85
|
592 |
+
#: modules/testimonials/testimonials.php:124
|
593 |
+
#: modules/testimonials/testimonials.php:154 modules/video/video.php:111
|
594 |
+
#: modules/video/video.php:123
|
595 |
+
msgid "No"
|
596 |
+
msgstr "No"
|
597 |
+
|
598 |
+
# @ fl-builder
|
599 |
+
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
600 |
+
#: includes/global-settings.php:19 includes/global-settings.php:88
|
601 |
+
#: includes/row-settings.php:308 includes/template-settings.php:32
|
602 |
+
#: modules/accordion/accordion.php:89 modules/button/button.php:136
|
603 |
+
#: modules/callout/callout.php:419 modules/callout/callout.php:540
|
604 |
+
#: modules/content-slider/content-slider.php:204
|
605 |
+
#: modules/content-slider/content-slider.php:218
|
606 |
+
#: modules/content-slider/content-slider.php:252
|
607 |
+
#: modules/content-slider/content-slider.php:261
|
608 |
+
#: modules/content-slider/content-slider.php:532
|
609 |
+
#: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
|
610 |
+
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
611 |
+
#: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
|
612 |
+
#: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
|
613 |
+
#: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
|
614 |
+
#: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
|
615 |
+
#: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
|
616 |
+
#: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
|
617 |
+
#: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
|
618 |
+
#: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
|
619 |
+
#: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
|
620 |
+
#: modules/social-buttons/social-buttons.php:110
|
621 |
+
#: modules/social-buttons/social-buttons.php:119
|
622 |
+
#: modules/social-buttons/social-buttons.php:128
|
623 |
+
#: modules/testimonials/testimonials.php:86
|
624 |
+
#: modules/testimonials/testimonials.php:125
|
625 |
+
#: modules/testimonials/testimonials.php:155 modules/video/video.php:112
|
626 |
+
#: modules/video/video.php:124
|
627 |
+
msgid "Yes"
|
628 |
+
msgstr "Sì"
|
629 |
+
|
630 |
+
# @ fl-builder
|
631 |
+
#: includes/admin-templates-edit.php:29 includes/template-settings.php:37
|
632 |
+
msgid "Category"
|
633 |
+
msgstr "Categoria"
|
634 |
+
|
635 |
+
# @ fl-builder
|
636 |
+
#: includes/admin-templates-edit.php:32 includes/template-settings.php:40
|
637 |
+
msgctxt "Templates category label."
|
638 |
+
msgid "Landing Pages"
|
639 |
+
msgstr "Landing Pages"
|
640 |
+
|
641 |
+
#: includes/admin-templates-edit.php:33 includes/template-settings.php:41
|
642 |
+
msgctxt "Templates category label."
|
643 |
+
msgid "Company Info"
|
644 |
+
msgstr "Informazioni organizzazione"
|
645 |
+
|
646 |
+
# @ fl-builder
|
647 |
+
#: includes/admin-templates-edit.php:40
|
648 |
+
msgid "Update Template"
|
649 |
+
msgstr "Aggiorna modello"
|
650 |
+
|
651 |
+
# @ fl-builder
|
652 |
+
#: includes/admin-templates.php:3
|
653 |
+
msgid "Page Builder Template"
|
654 |
+
msgstr "Modello di layout di Page Builder"
|
655 |
+
|
656 |
+
# @ fl-builder
|
657 |
+
#: includes/admin-templates.php:10
|
658 |
+
msgctxt "Templates list column label."
|
659 |
+
msgid "Name"
|
660 |
+
msgstr "Nome"
|
661 |
+
|
662 |
+
# @ fl-builder
|
663 |
+
#: includes/admin-templates.php:11
|
664 |
+
msgctxt "Templates list column label."
|
665 |
+
msgid "Category"
|
666 |
+
msgstr "Categoria"
|
667 |
+
|
668 |
+
#: includes/admin-templates.php:12
|
669 |
+
msgctxt "Templates list column label. Is template premium one?"
|
670 |
+
msgid "Premium"
|
671 |
+
msgstr "Premium"
|
672 |
+
|
673 |
+
# @ fl-builder
|
674 |
+
#: includes/admin-templates.php:25 includes/field-photo.php:12
|
675 |
+
#: includes/template-selector.php:83
|
676 |
+
msgid "Edit"
|
677 |
+
msgstr "Modifica"
|
678 |
+
|
679 |
+
# @ fl-builder
|
680 |
+
#: includes/admin-templates.php:27 includes/template-selector.php:84
|
681 |
+
msgid "Delete"
|
682 |
+
msgstr "Elimina"
|
683 |
+
|
684 |
+
# @ fl-builder
|
685 |
+
#: includes/admin-templates.php:40 includes/js-config.php:27
|
686 |
+
msgid "Do you really want to delete this template?"
|
687 |
+
msgstr "Vuoi davvero eliminare questo modello?"
|
688 |
+
|
689 |
+
# @ fl-builder
|
690 |
+
#: includes/column-settings.php:4 includes/js-config.php:22
|
691 |
+
msgid "Column Settings"
|
692 |
+
msgstr "Impostazioni colonna"
|
693 |
+
|
694 |
+
# @ fl-builder
|
695 |
+
#: includes/column-settings.php:7 includes/module-settings.php:87
|
696 |
+
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
697 |
+
#: modules/button/button.php:95 modules/callout/callout.php:239
|
698 |
+
#: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
|
699 |
+
#: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
|
700 |
+
#: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
|
701 |
+
#: modules/pricing-table/pricing-table.php:155
|
702 |
+
#: modules/separator/separator.php:72 modules/tabs/tabs.php:45
|
703 |
+
msgid "Style"
|
704 |
+
msgstr "Stile"
|
705 |
+
|
706 |
+
# @ fl-builder
|
707 |
+
#: includes/column-settings.php:14
|
708 |
+
msgid "Column Width"
|
709 |
+
msgstr "Larghezza colonna"
|
710 |
+
|
711 |
+
# @ fl-builder
|
712 |
+
#: includes/column-settings.php:26 includes/row-settings.php:48
|
713 |
+
#: modules/button/button.php:53 modules/callout/callout.php:223
|
714 |
+
#: modules/callout/callout.php:476 modules/callout/callout.php:492
|
715 |
+
#: modules/content-slider/content-slider.php:376
|
716 |
+
#: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
|
717 |
+
#: modules/cta/cta.php:219
|
718 |
+
msgid "Text"
|
719 |
+
msgstr "Testo"
|
720 |
+
|
721 |
+
# @ fl-builder
|
722 |
+
#: includes/column-settings.php:30 includes/column-settings.php:43
|
723 |
+
#: includes/column-settings.php:100 includes/row-settings.php:52
|
724 |
+
#: includes/row-settings.php:109 includes/row-settings.php:379
|
725 |
+
#: modules/callout/callout.php:389
|
726 |
+
#: modules/content-slider/content-slider.php:331
|
727 |
+
#: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
|
728 |
+
#: modules/separator/separator.php:34
|
729 |
+
msgid "Color"
|
730 |
+
msgstr "Colore"
|
731 |
+
|
732 |
+
# @ fl-builder
|
733 |
+
#: includes/column-settings.php:39 includes/row-settings.php:105
|
734 |
+
#: modules/button/button.php:102 modules/callout/callout.php:402
|
735 |
+
#: modules/callout/callout.php:506
|
736 |
+
#: modules/content-slider/content-slider.php:357
|
737 |
+
#: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
|
738 |
+
#: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
|
739 |
+
#: modules/icon/icon.php:95
|
740 |
+
msgid "Background Color"
|
741 |
+
msgstr "Colore di sfondo"
|
742 |
+
|
743 |
+
# @ fl-builder
|
744 |
+
#: includes/column-settings.php:51 includes/column-settings.php:108
|
745 |
+
#: includes/row-settings.php:117 includes/row-settings.php:387
|
746 |
+
#: modules/separator/separator.php:44
|
747 |
+
msgid "Opacity"
|
748 |
+
msgstr "Opacità"
|
749 |
+
|
750 |
+
# @ fl-builder
|
751 |
+
#: includes/column-settings.php:63 includes/row-settings.php:342
|
752 |
+
msgid "Border"
|
753 |
+
msgstr "Bordo"
|
754 |
+
|
755 |
+
# @ fl-builder
|
756 |
+
#: includes/column-settings.php:67 includes/row-settings.php:65
|
757 |
+
#: includes/row-settings.php:346 modules/callout/callout.php:472
|
758 |
+
#: modules/content-slider/content-slider.php:325
|
759 |
+
#: modules/content-slider/content-slider.php:372
|
760 |
+
#: modules/content-slider/content-slider.php:590
|
761 |
+
#: modules/content-slider/content-slider.php:694
|
762 |
+
#: modules/slideshow/slideshow.php:339
|
763 |
+
msgid "Type"
|
764 |
+
msgstr "Tipo"
|
765 |
+
|
766 |
+
# @ fl-builder
|
767 |
+
#: includes/column-settings.php:69 includes/row-settings.php:348
|
768 |
+
msgid ""
|
769 |
+
"The type of border to use. Double borders must have a width of at least 3px "
|
770 |
+
"to render properly."
|
771 |
+
msgstr ""
|
772 |
+
"Il tipo di bordo da utilizzare. I bordi doppi devono avere una larghezza di "
|
773 |
+
"almeno 3px per essere visualizzati correttamente."
|
774 |
+
|
775 |
+
# @ fl-builder
|
776 |
+
#: includes/column-settings.php:71 includes/row-settings.php:350
|
777 |
+
msgctxt "Border type."
|
778 |
+
msgid "None"
|
779 |
+
msgstr "Nessuno"
|
780 |
+
|
781 |
+
# @ fl-builder
|
782 |
+
#: includes/column-settings.php:72 includes/row-settings.php:351
|
783 |
+
#: modules/separator/separator.php:75
|
784 |
+
msgctxt "Border type."
|
785 |
+
msgid "Solid"
|
786 |
+
msgstr "Solido"
|
787 |
+
|
788 |
+
# @ fl-builder
|
789 |
+
#: includes/column-settings.php:73 includes/row-settings.php:352
|
790 |
+
#: modules/separator/separator.php:76
|
791 |
+
msgctxt "Border type."
|
792 |
+
msgid "Dashed"
|
793 |
+
msgstr "Tratteggiato"
|
794 |
+
|
795 |
+
# @ fl-builder
|
796 |
+
#: includes/column-settings.php:74 includes/row-settings.php:353
|
797 |
+
#: modules/separator/separator.php:77
|
798 |
+
msgctxt "Border type."
|
799 |
+
msgid "Dotted"
|
800 |
+
msgstr "Punteggiato"
|
801 |
+
|
802 |
+
# @ fl-builder
|
803 |
+
#: includes/column-settings.php:75 includes/row-settings.php:354
|
804 |
+
#: modules/separator/separator.php:78
|
805 |
+
msgctxt "Border type."
|
806 |
+
msgid "Double"
|
807 |
+
msgstr "Doppio"
|
808 |
+
|
809 |
+
# @ fl-builder
|
810 |
+
#: includes/column-settings.php:119 includes/row-settings.php:398
|
811 |
+
msgid "Top Width"
|
812 |
+
msgstr "Larghezza superiore"
|
813 |
+
|
814 |
+
# @ fl-builder
|
815 |
+
#: includes/column-settings.php:131 includes/row-settings.php:410
|
816 |
+
msgid "Bottom Width"
|
817 |
+
msgstr "Larghezza inferiore"
|
818 |
+
|
819 |
+
# @ fl-builder
|
820 |
+
#: includes/column-settings.php:143 includes/row-settings.php:422
|
821 |
+
msgid "Left Width"
|
822 |
+
msgstr "Larghezza sinistra"
|
823 |
+
|
824 |
+
# @ fl-builder
|
825 |
+
#: includes/column-settings.php:155 includes/row-settings.php:434
|
826 |
+
msgid "Right Width"
|
827 |
+
msgstr "Larghezza destra"
|
828 |
+
|
829 |
+
# @ fl-builder
|
830 |
+
#: includes/column-settings.php:170 includes/module-settings.php:6
|
831 |
+
#: includes/row-settings.php:449 modules/content-slider/content-slider.php:267
|
832 |
+
msgid "Advanced"
|
833 |
+
msgstr "Avanzato"
|
834 |
+
|
835 |
+
# @ fl-builder
|
836 |
+
#: includes/column-settings.php:173 includes/global-settings.php:41
|
837 |
+
#: includes/global-settings.php:71 includes/module-settings.php:9
|
838 |
+
#: includes/row-settings.php:452
|
839 |
+
msgid "Margins"
|
840 |
+
msgstr "Margini"
|
841 |
+
|
842 |
+
# @ fl-builder
|
843 |
+
#: includes/column-settings.php:177 includes/column-settings.php:230
|
844 |
+
#: includes/module-settings.php:13 includes/row-settings.php:456
|
845 |
+
#: includes/row-settings.php:509 modules/slideshow/slideshow.php:475
|
846 |
+
msgid "Top"
|
847 |
+
msgstr "Alto"
|
848 |
+
|
849 |
+
# @ fl-builder
|
850 |
+
#: includes/column-settings.php:189 includes/column-settings.php:242
|
851 |
+
#: includes/module-settings.php:25 includes/row-settings.php:468
|
852 |
+
#: includes/row-settings.php:521 modules/slideshow/slideshow.php:474
|
853 |
+
msgid "Bottom"
|
854 |
+
msgstr "Basso"
|
855 |
+
|
856 |
+
# @ fl-builder
|
857 |
+
#: includes/column-settings.php:201 includes/column-settings.php:254
|
858 |
+
#: includes/module-settings.php:37 includes/row-settings.php:480
|
859 |
+
#: includes/row-settings.php:533 modules/button/button.php:177
|
860 |
+
#: modules/callout/callout.php:250
|
861 |
+
#: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
|
862 |
+
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
863 |
+
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
864 |
+
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
865 |
+
msgid "Left"
|
866 |
+
msgstr "Sinistra"
|
867 |
+
|
868 |
+
# @ fl-builder
|
869 |
+
#: includes/column-settings.php:213 includes/column-settings.php:266
|
870 |
+
#: includes/module-settings.php:49 includes/row-settings.php:492
|
871 |
+
#: includes/row-settings.php:545 modules/button/button.php:178
|
872 |
+
#: modules/callout/callout.php:251
|
873 |
+
#: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
|
874 |
+
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
875 |
+
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
876 |
+
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
877 |
+
msgid "Right"
|
878 |
+
msgstr "Destra"
|
879 |
+
|
880 |
+
# @ fl-builder
|
881 |
+
#: includes/column-settings.php:226 includes/global-settings.php:49
|
882 |
+
#: includes/row-settings.php:505 modules/button/button.php:191
|
883 |
+
#: modules/callout/callout.php:567
|
884 |
+
#: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
|
885 |
+
msgid "Padding"
|
886 |
+
msgstr "Padding"
|
887 |
+
|
888 |
+
# @ fl-builder
|
889 |
+
#: includes/column-settings.php:279 includes/global-settings.php:80
|
890 |
+
#: includes/module-settings.php:62 includes/row-settings.php:558
|
891 |
+
msgid "Responsive Layout"
|
892 |
+
msgstr "Layout reattivo"
|
893 |
+
|
894 |
+
# @ fl-builder
|
895 |
+
#: includes/column-settings.php:283 includes/module-settings.php:66
|
896 |
+
#: includes/row-settings.php:562 modules/slideshow/slideshow.php:290
|
897 |
+
msgid "Display"
|
898 |
+
msgstr "Visualizza"
|
899 |
+
|
900 |
+
# @ fl-builder
|
901 |
+
#: includes/column-settings.php:285 includes/module-settings.php:68
|
902 |
+
#: includes/row-settings.php:564
|
903 |
+
msgid "Always"
|
904 |
+
msgstr "Sempre"
|
905 |
+
|
906 |
+
# @ fl-builder
|
907 |
+
#: includes/column-settings.php:286 includes/module-settings.php:69
|
908 |
+
#: includes/row-settings.php:565
|
909 |
+
msgid "Large Devices Only"
|
910 |
+
msgstr "Solo dispositivi grandi"
|
911 |
+
|
912 |
+
# @ fl-builder
|
913 |
+
#: includes/column-settings.php:287 includes/module-settings.php:70
|
914 |
+
#: includes/row-settings.php:566
|
915 |
+
msgid "Large & Medium Devices Only"
|
916 |
+
msgstr "Solo dispositivi grandi e medi"
|
917 |
+
|
918 |
+
# @ fl-builder
|
919 |
+
#: includes/column-settings.php:288 includes/module-settings.php:71
|
920 |
+
#: includes/row-settings.php:567
|
921 |
+
msgid "Medium Devices Only"
|
922 |
+
msgstr "Solo dispositivi medi"
|
923 |
+
|
924 |
+
# @ fl-builder
|
925 |
+
#: includes/column-settings.php:289 includes/module-settings.php:72
|
926 |
+
#: includes/row-settings.php:568
|
927 |
+
msgid "Medium & Small Devices Only"
|
928 |
+
msgstr "Solo dispositivi medi e piccoli"
|
929 |
+
|
930 |
+
# @ fl-builder
|
931 |
+
#: includes/column-settings.php:290 includes/module-settings.php:73
|
932 |
+
#: includes/row-settings.php:569
|
933 |
+
msgid "Small Devices Only"
|
934 |
+
msgstr "Solo dispositivi piccoli"
|
935 |
+
|
936 |
+
# @ fl-builder
|
937 |
+
#: includes/column-settings.php:292
|
938 |
+
msgid "Choose whether to show or hide this column at different device sizes."
|
939 |
+
msgstr ""
|
940 |
+
"Scegli se visualizzare o nascondere questa colonna a diverse dimensioni dei "
|
941 |
+
"dispositivi."
|
942 |
+
|
943 |
+
# @ fl-builder
|
944 |
+
#: includes/column-settings.php:299
|
945 |
+
msgid "Medium Device Width"
|
946 |
+
msgstr "Larghezza dispositivi medi"
|
947 |
+
|
948 |
+
# @ fl-builder
|
949 |
+
#: includes/column-settings.php:300
|
950 |
+
msgid "The width of this column on medium devices such as tablets."
|
951 |
+
msgstr "La larghezza della colonna su dispositivi medi come i tablet."
|
952 |
+
|
953 |
+
# @ fl-builder
|
954 |
+
#: includes/column-settings.php:302 includes/column-settings.php:330
|
955 |
+
#: modules/callout/callout.php:281
|
956 |
+
#: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
|
957 |
+
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
958 |
+
#: modules/heading/heading.php:174
|
959 |
+
msgid "Default"
|
960 |
+
msgstr "Predefinita"
|
961 |
+
|
962 |
+
# @ fl-builder
|
963 |
+
#: includes/column-settings.php:303 includes/column-settings.php:331
|
964 |
+
#: modules/button/button.php:151 modules/callout/callout.php:282
|
965 |
+
#: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
|
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 "Personalizzata"
|
971 |
+
|
972 |
+
# @ fl-builder
|
973 |
+
#: includes/column-settings.php:316
|
974 |
+
msgid "Custom Medium Device Width"
|
975 |
+
msgstr "Larghezza personalizzata dispositivi medi"
|
976 |
+
|
977 |
+
# @ fl-builder
|
978 |
+
#: includes/column-settings.php:327
|
979 |
+
msgid "Small Device Width"
|
980 |
+
msgstr "Larghezza dispositivi piccoli"
|
981 |
+
|
982 |
+
# @ fl-builder
|
983 |
+
#: includes/column-settings.php:328
|
984 |
+
msgid "The width of this column on small devices such as phones."
|
985 |
+
msgstr "La larghezza della colonna su dispositivi piccoli come i telefoni."
|
986 |
+
|
987 |
+
# @ fl-builder
|
988 |
+
#: includes/column-settings.php:344
|
989 |
+
msgid "Custom Small Device Width"
|
990 |
+
msgstr "Larghezza personalizzata dispositivi piccoli"
|
991 |
+
|
992 |
+
# @ fl-builder
|
993 |
+
#: includes/column-settings.php:356 includes/module-settings.php:115
|
994 |
+
#: includes/row-settings.php:579
|
995 |
+
msgid "CSS Selectors"
|
996 |
+
msgstr "Selettore CSS"
|
997 |
+
|
998 |
+
# @ fl-builder
|
999 |
+
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
1000 |
+
#: includes/module-settings.php:119 includes/row-settings.php:583
|
1001 |
+
msgid "ID"
|
1002 |
+
msgstr "ID"
|
1003 |
+
|
1004 |
+
#: includes/column-settings.php:361
|
1005 |
+
msgid ""
|
1006 |
+
"A unique ID that will be applied to this column's HTML. Must start with a "
|
1007 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1008 |
+
msgstr ""
|
1009 |
+
"Un ID univoco che sarà applicato al codice HTML della colonna. Deve iniziare "
|
1010 |
+
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
1011 |
+
"Niente spazi."
|
1012 |
+
|
1013 |
+
# @ fl-builder
|
1014 |
+
#: includes/column-settings.php:368
|
1015 |
+
msgid "CSS Class"
|
1016 |
+
msgstr "Classe CSS"
|
1017 |
+
|
1018 |
+
#: includes/column-settings.php:369
|
1019 |
+
msgid ""
|
1020 |
+
"A class that will be applied to this column's HTML. Must start with a letter "
|
1021 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1022 |
+
"classes with spaces."
|
1023 |
+
msgstr ""
|
1024 |
+
"Una classe che sarà applicata al codice HTML di questa colonna. Deve "
|
1025 |
+
"iniziare con una lettera e contenere solo trattini, underscore, lettere o "
|
1026 |
+
"numeri. Separa classi multiple con spazio."
|
1027 |
+
|
1028 |
+
# @ fl-builder
|
1029 |
+
#: includes/field-form.php:28
|
1030 |
+
#, php-format
|
1031 |
+
msgctxt "%s stands for form field label."
|
1032 |
+
msgid "Edit %s"
|
1033 |
+
msgstr "Modifica %s"
|
1034 |
+
|
1035 |
+
# @ fl-builder
|
1036 |
+
#: includes/field-icon.php:2 includes/icon-selector.php:2
|
1037 |
+
msgid "Select Icon"
|
1038 |
+
msgstr "Seleziona icona"
|
1039 |
+
|
1040 |
+
# @ fl-builder
|
1041 |
+
#: includes/field-icon.php:5 includes/field-photo.php:13
|
1042 |
+
msgid "Replace"
|
1043 |
+
msgstr "Sostituisci"
|
1044 |
+
|
1045 |
+
# @ fl-builder
|
1046 |
+
#: includes/field-icon.php:7 includes/js-config.php:53
|
1047 |
+
msgid "Remove"
|
1048 |
+
msgstr "Rimuovi"
|
1049 |
+
|
1050 |
+
# @ fl-builder
|
1051 |
+
#: includes/field-link.php:3
|
1052 |
+
msgid "Select"
|
1053 |
+
msgstr "Seleziona"
|
1054 |
+
|
1055 |
+
# @ fl-builder
|
1056 |
+
#: includes/field-link.php:5
|
1057 |
+
msgid "Enter a post title to search."
|
1058 |
+
msgstr "Inserisci un titolo del post per la ricerca."
|
1059 |
+
|
1060 |
+
# @ fl-builder
|
1061 |
+
#: includes/field-link.php:6 includes/field-suggest.php:7
|
1062 |
+
msgid "Start typing..."
|
1063 |
+
msgstr "Inizia a digitare..."
|
1064 |
+
|
1065 |
+
# @ fl-builder
|
1066 |
+
#: includes/field-link.php:7 includes/icon-selector.php:28
|
1067 |
+
#: includes/js-config.php:18 includes/settings.php:63
|
1068 |
+
#: includes/template-selector.php:102 includes/ui.php:11
|
1069 |
+
msgid "Cancel"
|
1070 |
+
msgstr "Annulla"
|
1071 |
+
|
1072 |
+
# @ fl-builder
|
1073 |
+
#: includes/field-multiple-photos.php:8
|
1074 |
+
#, php-format
|
1075 |
+
msgid "1 Photo Selected"
|
1076 |
+
msgid_plural "%d Photos Selected"
|
1077 |
+
msgstr[0] "Una foto selezionata"
|
1078 |
+
msgstr[1] "%d foto selezionate"
|
1079 |
+
|
1080 |
+
# @ fl-builder
|
1081 |
+
#: includes/field-multiple-photos.php:13
|
1082 |
+
msgid "Create Gallery"
|
1083 |
+
msgstr "Crea galleria"
|
1084 |
+
|
1085 |
+
# @ fl-builder
|
1086 |
+
#: includes/field-multiple-photos.php:14
|
1087 |
+
msgid "Edit Gallery"
|
1088 |
+
msgstr "Modifica galleria"
|
1089 |
+
|
1090 |
+
# @ fl-builder
|
1091 |
+
#: includes/field-multiple-photos.php:15
|
1092 |
+
msgid "Add Photos"
|
1093 |
+
msgstr "Aggiungi foto"
|
1094 |
+
|
1095 |
+
# @ fl-builder
|
1096 |
+
#: includes/field-photo.php:3 includes/js-config.php:58
|
1097 |
+
msgid "Select Photo"
|
1098 |
+
msgstr "Seleziona foto"
|
1099 |
+
|
1100 |
+
# @ fl-builder
|
1101 |
+
#: includes/field-video.php:3 includes/js-config.php:60
|
1102 |
+
msgid "Select Video"
|
1103 |
+
msgstr "Seleziona video"
|
1104 |
+
|
1105 |
+
# @ fl-builder
|
1106 |
+
#: includes/field-video.php:17
|
1107 |
+
msgid "Replace Video"
|
1108 |
+
msgstr "Sostituisci video"
|
1109 |
+
|
1110 |
+
# @ fl-builder
|
1111 |
+
#: includes/global-settings.php:7 includes/template-settings.php:7
|
1112 |
+
#: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
|
1113 |
+
#: modules/button/button.php:46 modules/callout/callout.php:207
|
1114 |
+
#: modules/contact-form/contact-form.php:57
|
1115 |
+
#: modules/content-slider/content-slider.php:184
|
1116 |
+
#: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
|
1117 |
+
#: modules/gallery/gallery.php:213 modules/heading/heading.php:26
|
1118 |
+
#: modules/html/html.php:26 modules/icon-group/icon-group.php:128
|
1119 |
+
#: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
|
1120 |
+
#: modules/pricing-table/pricing-table.php:87
|
1121 |
+
#: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
|
1122 |
+
#: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
|
1123 |
+
#: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
|
1124 |
+
#: modules/testimonials/testimonials.php:30
|
1125 |
+
#: modules/testimonials/testimonials.php:200 modules/video/video.php:76
|
1126 |
+
#: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
|
1127 |
+
msgid "General"
|
1128 |
+
msgstr "Generale"
|
1129 |
+
|
1130 |
+
# @ fl-builder
|
1131 |
+
#: includes/global-settings.php:8
|
1132 |
+
msgid "Note: These settings apply to all posts and pages."
|
1133 |
+
msgstr "Nota: Queste impostazioni si applicano a tutti i post e pagine."
|
1134 |
+
|
1135 |
+
# @ fl-builder
|
1136 |
+
#: includes/global-settings.php:11
|
1137 |
+
msgid "Default Page Heading"
|
1138 |
+
msgstr "Intestazione di pagina predefinita"
|
1139 |
+
|
1140 |
+
# @ fl-builder
|
1141 |
+
#: includes/global-settings.php:15
|
1142 |
+
msgctxt ""
|
1143 |
+
"General settings form field label. Intended meaning: \"Show page heading?\""
|
1144 |
+
msgid "Show"
|
1145 |
+
msgstr "Visualizza"
|
1146 |
+
|
1147 |
+
# @ fl-builder
|
1148 |
+
#: includes/global-settings.php:26
|
1149 |
+
msgid ""
|
1150 |
+
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
1151 |
+
"You will also be required to enter some basic CSS for this to work if you "
|
1152 |
+
"choose no."
|
1153 |
+
msgstr ""
|
1154 |
+
"Scegliendo no, si nasconderà il titolo predefinito del tema per il tipo di "
|
1155 |
+
"post \"Pagina\". Se scegli no, sarà richiesto anche di inserire alcuni CSS "
|
1156 |
+
"base per fare in modo che questo funzioni."
|
1157 |
+
|
1158 |
+
# @ fl-builder
|
1159 |
+
#: includes/global-settings.php:30
|
1160 |
+
msgid "CSS Selector"
|
1161 |
+
msgstr "Selettore CSS"
|
1162 |
+
|
1163 |
+
# @ fl-builder
|
1164 |
+
#: includes/global-settings.php:32
|
1165 |
+
msgid "Enter a CSS selector for the default page heading to hide it."
|
1166 |
+
msgstr ""
|
1167 |
+
"Inserire il selettore CSS per nascondere l'intestazione predefinita della "
|
1168 |
+
"pagina."
|
1169 |
+
|
1170 |
+
# @ fl-builder
|
1171 |
+
#: includes/global-settings.php:37
|
1172 |
+
msgid "Rows"
|
1173 |
+
msgstr "Righe"
|
1174 |
+
|
1175 |
+
# @ fl-builder
|
1176 |
+
#: includes/global-settings.php:57
|
1177 |
+
msgid "Max Width"
|
1178 |
+
msgstr "Larghezza max"
|
1179 |
+
|
1180 |
+
# @ fl-builder
|
1181 |
+
#: includes/global-settings.php:62
|
1182 |
+
msgid ""
|
1183 |
+
"All rows will default to this width. You can override this and make a row "
|
1184 |
+
"full width in the settings for each row."
|
1185 |
+
msgstr ""
|
1186 |
+
"Tutte le righe avranno questa larghezza per impostazione predefinita. Potete "
|
1187 |
+
"ignorarla e creare una riga a piena larghezza nelle impostazioni di ciascuna "
|
1188 |
+
"riga."
|
1189 |
+
|
1190 |
+
# @ fl-builder
|
1191 |
+
#: includes/global-settings.php:84
|
1192 |
+
msgctxt ""
|
1193 |
+
"General settings form field label. Intended meaning: \"Responsive layout "
|
1194 |
+
"enabled?\""
|
1195 |
+
msgid "Enabled"
|
1196 |
+
msgstr "Abilitato"
|
1197 |
+
|
1198 |
+
# @ fl-builder
|
1199 |
+
#: includes/global-settings.php:98
|
1200 |
+
msgid "Medium Device Breakpoint"
|
1201 |
+
msgstr "Breakpoint dispositivi medi"
|
1202 |
+
|
1203 |
+
# @ fl-builder
|
1204 |
+
#: includes/global-settings.php:103
|
1205 |
+
msgid ""
|
1206 |
+
"The browser width at which the layout will adjust for medium devices such as "
|
1207 |
+
"tablets."
|
1208 |
+
msgstr ""
|
1209 |
+
"La larghezza del browser a cui il layout si adatterà per dispositivi medi "
|
1210 |
+
"come i tablet."
|
1211 |
+
|
1212 |
+
# @ fl-builder
|
1213 |
+
#: includes/global-settings.php:107
|
1214 |
+
msgid "Small Device Breakpoint"
|
1215 |
+
msgstr "Breakpoint dispositivi piccoli"
|
1216 |
+
|
1217 |
+
# @ fl-builder
|
1218 |
+
#: includes/global-settings.php:112
|
1219 |
+
msgid ""
|
1220 |
+
"The browser width at which the layout will adjust for small devices such as "
|
1221 |
+
"phones."
|
1222 |
+
msgstr ""
|
1223 |
+
"La larghezza del browser a cui il layout si adatterà per dispositivi piccoli "
|
1224 |
+
"come i telefoni."
|
1225 |
+
|
1226 |
+
# @ fl-builder
|
1227 |
+
#: includes/icon-selector.php:5
|
1228 |
+
msgctxt "Select option for showing all icon libraries."
|
1229 |
+
msgid "All Libraries"
|
1230 |
+
msgstr "Tutte le librerie"
|
1231 |
+
|
1232 |
+
# @ fl-builder
|
1233 |
+
#: includes/js-config.php:17
|
1234 |
+
msgid "What would you like to do?"
|
1235 |
+
msgstr "Che cosa vorresti fare?"
|
1236 |
+
|
1237 |
+
# @ fl-builder
|
1238 |
+
#: includes/js-config.php:19
|
1239 |
+
msgid "Change Template"
|
1240 |
+
msgstr "Cambiare modello"
|
1241 |
+
|
1242 |
+
# @ fl-builder
|
1243 |
+
#: includes/js-config.php:20
|
1244 |
+
msgid ""
|
1245 |
+
"Warning! Changing the template will replace your existing layout. Do you "
|
1246 |
+
"really want to do this?"
|
1247 |
+
msgstr ""
|
1248 |
+
"ATTENZIONE! Cambiare il modello sostituirà il layout esistente. Vuoi davvero "
|
1249 |
+
"fare questo?"
|
1250 |
+
|
1251 |
+
# @ fl-builder
|
1252 |
+
#: includes/js-config.php:21
|
1253 |
+
msgid "Column"
|
1254 |
+
msgstr "Colonna"
|
1255 |
+
|
1256 |
+
# @ fl-builder
|
1257 |
+
#: includes/js-config.php:23
|
1258 |
+
msgid ""
|
1259 |
+
"Please select either a background layout or content layout before submitting."
|
1260 |
+
msgstr ""
|
1261 |
+
"Si prega di selezionare un layout di sfondo o un layout contenuto prima di "
|
1262 |
+
"inviare."
|
1263 |
+
|
1264 |
+
# @ fl-builder
|
1265 |
+
#: includes/js-config.php:24
|
1266 |
+
msgid "Do you really want to delete this item?"
|
1267 |
+
msgstr "Vuoi davvero eliminare questo elemento?"
|
1268 |
+
|
1269 |
+
# @ fl-builder
|
1270 |
+
#: includes/js-config.php:25
|
1271 |
+
msgid ""
|
1272 |
+
"Do you really want to delete this module? All content data will be "
|
1273 |
+
"permanently deleted."
|
1274 |
+
msgstr ""
|
1275 |
+
"Vuoi davvero eliminare questo modulo? Tutti i dati contenuti verranno "
|
1276 |
+
"eliminati definitivamente."
|
1277 |
+
|
1278 |
+
# @ fl-builder
|
1279 |
+
#: includes/js-config.php:26
|
1280 |
+
msgid ""
|
1281 |
+
"Do you really want to delete this row? All content data will be permanently "
|
1282 |
+
"deleted."
|
1283 |
+
msgstr ""
|
1284 |
+
"Vuoi davvero eliminare questa riga? Tutti i dati contenuti verranno "
|
1285 |
+
"eliminati definitivamente."
|
1286 |
+
|
1287 |
+
# @ fl-builder
|
1288 |
+
#: includes/js-config.php:28
|
1289 |
+
msgid "Discard Draft"
|
1290 |
+
msgstr "Scarta bozza"
|
1291 |
+
|
1292 |
+
# @ fl-builder
|
1293 |
+
#: includes/js-config.php:29
|
1294 |
+
msgid ""
|
1295 |
+
"Do you really want to discard this draft? All of your changes that are not "
|
1296 |
+
"published will be lost."
|
1297 |
+
msgstr ""
|
1298 |
+
"Vuoi davvero eliminare questa bozza? Tutte le modifiche che non sono "
|
1299 |
+
"pubblicate saranno perse."
|
1300 |
+
|
1301 |
+
# @ fl-builder
|
1302 |
+
#: includes/js-config.php:30
|
1303 |
+
msgid "Save Draft"
|
1304 |
+
msgstr "Salva bozza"
|
1305 |
+
|
1306 |
+
# @ fl-builder
|
1307 |
+
#: includes/js-config.php:31
|
1308 |
+
msgctxt "Duplicate page/post action label."
|
1309 |
+
msgid "Duplicate"
|
1310 |
+
msgstr "Duplica"
|
1311 |
+
|
1312 |
+
# @ fl-builder
|
1313 |
+
#: includes/js-config.php:32
|
1314 |
+
msgid "Duplicate This Page"
|
1315 |
+
msgstr "Duplica questa pagina"
|
1316 |
+
|
1317 |
+
# @ fl-builder
|
1318 |
+
#: includes/js-config.php:33
|
1319 |
+
msgid "Duplicate This Template"
|
1320 |
+
msgstr "Duplica questo modello"
|
1321 |
+
|
1322 |
+
# @ fl-builder
|
1323 |
+
#: includes/js-config.php:34
|
1324 |
+
msgid "Edit Global Settings"
|
1325 |
+
msgstr "Modifica impostazioni globali"
|
1326 |
+
|
1327 |
+
# @ fl-builder
|
1328 |
+
#: includes/js-config.php:35
|
1329 |
+
msgid "Drop a row layout or module to get started!"
|
1330 |
+
msgstr "Trascina un layout di riga o un modulo per iniziare!"
|
1331 |
+
|
1332 |
+
#: includes/js-config.php:36
|
1333 |
+
msgid ""
|
1334 |
+
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1335 |
+
"not functioning as expected the cause is most likely this error. Please help "
|
1336 |
+
"us by disabling all plugins and testing Beaver Builder while reactivating "
|
1337 |
+
"each to determine if the issue is related to a third party plugin."
|
1338 |
+
msgstr ""
|
1339 |
+
"Beaver Builder ha intercettato il seguente errore JavaScript. Se Beaver "
|
1340 |
+
"Builder non funziona come previsto la causa è probabilmente questo errore. "
|
1341 |
+
"Vi preghiamo di aiutarci disabilitando tutti i plugin e provando Beaver "
|
1342 |
+
"Builder dopo averli riattivati uno ad uno per determinare se il problema è "
|
1343 |
+
"legato a un plugin di terze parti."
|
1344 |
+
|
1345 |
+
# @ fl-builder
|
1346 |
+
#: includes/js-config.php:37
|
1347 |
+
msgid "Full Size"
|
1348 |
+
msgstr "Tutta larghezza"
|
1349 |
+
|
1350 |
+
#: includes/js-config.php:38
|
1351 |
+
msgid "\"{message}\" on line {line} of {file}."
|
1352 |
+
msgstr "\"{message}\" nella riga {line} di {file}."
|
1353 |
+
|
1354 |
+
# @ fl-builder
|
1355 |
+
#: includes/js-config.php:39
|
1356 |
+
msgid "Insert"
|
1357 |
+
msgstr "Inserisci"
|
1358 |
+
|
1359 |
+
# @ fl-builder
|
1360 |
+
#: includes/js-config.php:40
|
1361 |
+
msgid "Large"
|
1362 |
+
msgstr "Grande"
|
1363 |
+
|
1364 |
+
# @ fl-builder
|
1365 |
+
#: includes/js-config.php:41
|
1366 |
+
msgid "Manage Templates"
|
1367 |
+
msgstr "Gestione modelli"
|
1368 |
+
|
1369 |
+
# @ fl-builder
|
1370 |
+
#: includes/js-config.php:42
|
1371 |
+
msgid "Medium"
|
1372 |
+
msgstr "Medio"
|
1373 |
+
|
1374 |
+
# @ fl-builder
|
1375 |
+
#: includes/js-config.php:43
|
1376 |
+
msgid "Module"
|
1377 |
+
msgstr "Modulo"
|
1378 |
+
|
1379 |
+
# @ fl-builder
|
1380 |
+
#: includes/js-config.php:44
|
1381 |
+
msgid "Move"
|
1382 |
+
msgstr "Sposta"
|
1383 |
+
|
1384 |
+
# @ fl-builder
|
1385 |
+
#: includes/js-config.php:45
|
1386 |
+
msgid "New Column"
|
1387 |
+
msgstr "Nuova colonna"
|
1388 |
+
|
1389 |
+
# @ fl-builder
|
1390 |
+
#: includes/js-config.php:46
|
1391 |
+
msgid "New Row"
|
1392 |
+
msgstr "Nuova riga"
|
1393 |
+
|
1394 |
+
# @ fl-builder
|
1395 |
+
#: includes/js-config.php:47
|
1396 |
+
msgid "No results found."
|
1397 |
+
msgstr "Nessun risultato trovato."
|
1398 |
+
|
1399 |
+
# @ fl-builder
|
1400 |
+
#: includes/js-config.php:48
|
1401 |
+
msgid "OK"
|
1402 |
+
msgstr "OK"
|
1403 |
+
|
1404 |
+
# @ fl-builder
|
1405 |
+
#: includes/js-config.php:49 modules/photo/photo.php:454
|
1406 |
+
msgid "Photo Page"
|
1407 |
+
msgstr "Pagina di foto"
|
1408 |
+
|
1409 |
+
# @ fl-builder
|
1410 |
+
#: includes/js-config.php:50
|
1411 |
+
msgid "Photo Selected"
|
1412 |
+
msgstr "Foto selezionata"
|
1413 |
+
|
1414 |
+
# @ fl-builder
|
1415 |
+
#: includes/js-config.php:51
|
1416 |
+
msgid "Photos Selected"
|
1417 |
+
msgstr "Foto selezionate"
|
1418 |
+
|
1419 |
+
# @ fl-builder
|
1420 |
+
#: includes/js-config.php:52
|
1421 |
+
msgid "Publish Changes"
|
1422 |
+
msgstr "Pubblica le modifiche"
|
1423 |
+
|
1424 |
+
# @ fl-builder
|
1425 |
+
#: includes/js-config.php:54
|
1426 |
+
msgid "Row"
|
1427 |
+
msgstr "Riga"
|
1428 |
+
|
1429 |
+
# @ fl-builder
|
1430 |
+
#: includes/js-config.php:55 includes/row-settings.php:6
|
1431 |
+
msgid "Row Settings"
|
1432 |
+
msgstr "Impostazioni di riga"
|
1433 |
+
|
1434 |
+
# @ fl-builder
|
1435 |
+
#: includes/js-config.php:56
|
1436 |
+
msgid "Save Core Template"
|
1437 |
+
msgstr "Salva il modello Core"
|
1438 |
+
|
1439 |
+
# @ fl-builder
|
1440 |
+
#: includes/js-config.php:57 includes/ui.php:10
|
1441 |
+
#: includes/user-template-settings.php:4
|
1442 |
+
msgid "Save Template"
|
1443 |
+
msgstr "Salva modello"
|
1444 |
+
|
1445 |
+
# @ fl-builder
|
1446 |
+
#: includes/js-config.php:59
|
1447 |
+
msgid "Select Photos"
|
1448 |
+
msgstr "Seleziona foto"
|
1449 |
+
|
1450 |
+
# @ fl-builder
|
1451 |
+
#: includes/js-config.php:62
|
1452 |
+
msgid "Append New Layout"
|
1453 |
+
msgstr "Aggiungi nuovo Layout"
|
1454 |
+
|
1455 |
+
# @ fl-builder
|
1456 |
+
#: includes/js-config.php:63
|
1457 |
+
msgid "Replace Existing Layout"
|
1458 |
+
msgstr "Sostituisci Layout esistente"
|
1459 |
+
|
1460 |
+
# @ fl-builder
|
1461 |
+
#: includes/js-config.php:64
|
1462 |
+
msgid "Template Saved!"
|
1463 |
+
msgstr "Modello salvato!"
|
1464 |
+
|
1465 |
+
# @ fl-builder
|
1466 |
+
#: includes/js-config.php:65
|
1467 |
+
msgid "Thumbnail"
|
1468 |
+
msgstr "Miniatura"
|
1469 |
+
|
1470 |
+
# @ fl-builder
|
1471 |
+
#: includes/js-config.php:66
|
1472 |
+
msgid ""
|
1473 |
+
"The settings you are currently editing will not be saved if you navigate "
|
1474 |
+
"away from this page."
|
1475 |
+
msgstr ""
|
1476 |
+
"Le impostazioni che stai modificando attualmente non verranno salvate se "
|
1477 |
+
"navighi via da questa pagina."
|
1478 |
+
|
1479 |
+
# @ fl-builder
|
1480 |
+
#: includes/loop-settings.php:19
|
1481 |
+
msgid "Post Type"
|
1482 |
+
msgstr "Tipo di post"
|
1483 |
+
|
1484 |
+
# @ fl-builder
|
1485 |
+
#: includes/loop-settings.php:25
|
1486 |
+
msgid "Order By"
|
1487 |
+
msgstr "Ordina per"
|
1488 |
+
|
1489 |
+
# @ fl-builder
|
1490 |
+
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1491 |
+
#: modules/woocommerce/woocommerce.php:189
|
1492 |
+
msgid "Date"
|
1493 |
+
msgstr "Data"
|
1494 |
+
|
1495 |
+
# @ fl-builder
|
1496 |
+
#: includes/loop-settings.php:29
|
1497 |
+
msgid "Date Last Modified"
|
1498 |
+
msgstr "Data ultima modifica"
|
1499 |
+
|
1500 |
+
# @ fl-builder
|
1501 |
+
#: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
|
1502 |
+
#: modules/pricing-table/pricing-table.php:94
|
1503 |
+
msgid "Title"
|
1504 |
+
msgstr "Titolo"
|
1505 |
+
|
1506 |
+
# @ fl-builder
|
1507 |
+
#: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
|
1508 |
+
msgid "Author"
|
1509 |
+
msgstr "Autore"
|
1510 |
+
|
1511 |
+
# @ fl-builder
|
1512 |
+
#: includes/loop-settings.php:32
|
1513 |
+
msgid "Comment Count"
|
1514 |
+
msgstr "Conteggio commenti"
|
1515 |
+
|
1516 |
+
# @ fl-builder
|
1517 |
+
#: includes/loop-settings.php:33
|
1518 |
+
msgid "Menu Order"
|
1519 |
+
msgstr "Ordine del menu"
|
1520 |
+
|
1521 |
+
# @ fl-builder
|
1522 |
+
#: includes/loop-settings.php:34
|
1523 |
+
msgid "Random"
|
1524 |
+
msgstr "Casuale"
|
1525 |
+
|
1526 |
+
# @ fl-builder
|
1527 |
+
#: includes/loop-settings.php:41
|
1528 |
+
msgid "Order"
|
1529 |
+
msgstr "Ordine"
|
1530 |
+
|
1531 |
+
# @ fl-builder
|
1532 |
+
#: includes/loop-settings.php:43
|
1533 |
+
msgid "Descending"
|
1534 |
+
msgstr "Decrescente"
|
1535 |
+
|
1536 |
+
# @ fl-builder
|
1537 |
+
#: includes/loop-settings.php:44
|
1538 |
+
msgid "Ascending"
|
1539 |
+
msgstr "Ascendente"
|
1540 |
+
|
1541 |
+
# @ fl-builder
|
1542 |
+
#: includes/loop-settings.php:52
|
1543 |
+
msgid "Filter"
|
1544 |
+
msgstr "Filtro"
|
1545 |
+
|
1546 |
+
# @ fl-builder
|
1547 |
+
#: includes/loop-settings.php:63
|
1548 |
+
#, php-format
|
1549 |
+
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1550 |
+
msgstr ""
|
1551 |
+
"Immettere un elenco delimitato da virgole di %s. Verranno mostrati solo "
|
1552 |
+
"questi %s."
|
1553 |
+
|
1554 |
+
# @ fl-builder
|
1555 |
+
#: includes/loop-settings.php:76
|
1556 |
+
#, php-format
|
1557 |
+
msgid ""
|
1558 |
+
"Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1559 |
+
msgstr ""
|
1560 |
+
"Immettere un elenco delimitato da virgole di %s. Verranno mostrati soli gli "
|
1561 |
+
"articoli con queste %s."
|
1562 |
+
|
1563 |
+
# @ fl-builder
|
1564 |
+
#: includes/loop-settings.php:90
|
1565 |
+
msgid "Authors"
|
1566 |
+
msgstr "Autori"
|
1567 |
+
|
1568 |
+
# @ fl-builder
|
1569 |
+
#: includes/loop-settings.php:91
|
1570 |
+
msgid ""
|
1571 |
+
"Enter a comma separated list of authors usernames. Only posts with these "
|
1572 |
+
"authors will be shown."
|
1573 |
+
msgstr ""
|
1574 |
+
"Immettere un elenco delimitato da virgole di nomi di autori. Verranno "
|
1575 |
+
"visualizzati solo i post di questi autori."
|
1576 |
+
|
1577 |
+
# @ fl-builder
|
1578 |
+
#: includes/module-settings.php:75
|
1579 |
+
msgid "Choose whether to show or hide this module at different device sizes."
|
1580 |
+
msgstr ""
|
1581 |
+
"Scegli se visualizzare o nascondere questo modulo a diverse dimensioni dei "
|
1582 |
+
"dispositivi."
|
1583 |
+
|
1584 |
+
# @ fl-builder
|
1585 |
+
#: includes/module-settings.php:83
|
1586 |
+
msgid "Animation"
|
1587 |
+
msgstr "Animazione"
|
1588 |
+
|
1589 |
+
# @ fl-builder
|
1590 |
+
#: includes/module-settings.php:89
|
1591 |
+
msgctxt "Animation style."
|
1592 |
+
msgid "None"
|
1593 |
+
msgstr "Nessuno"
|
1594 |
+
|
1595 |
+
# @ fl-builder
|
1596 |
+
#: includes/module-settings.php:90
|
1597 |
+
msgctxt "Animation style."
|
1598 |
+
msgid "Fade In"
|
1599 |
+
msgstr "Dissolvenza in entrata"
|
1600 |
+
|
1601 |
+
# @ fl-builder
|
1602 |
+
#: includes/module-settings.php:91
|
1603 |
+
msgctxt "Animation style."
|
1604 |
+
msgid "Slide Left"
|
1605 |
+
msgstr "Scorri sinistra"
|
1606 |
+
|
1607 |
+
# @ fl-builder
|
1608 |
+
#: includes/module-settings.php:92
|
1609 |
+
msgctxt "Animation style."
|
1610 |
+
msgid "Slide Right"
|
1611 |
+
msgstr "Scorri destra"
|
1612 |
+
|
1613 |
+
# @ fl-builder
|
1614 |
+
#: includes/module-settings.php:93
|
1615 |
+
msgctxt "Animation style."
|
1616 |
+
msgid "Slide Up"
|
1617 |
+
msgstr "Scorri alto"
|
1618 |
+
|
1619 |
+
# @ fl-builder
|
1620 |
+
#: includes/module-settings.php:94
|
1621 |
+
msgctxt "Animation style."
|
1622 |
+
msgid "Slide Down"
|
1623 |
+
msgstr "Scorri basso"
|
1624 |
+
|
1625 |
+
# @ fl-builder
|
1626 |
+
#: includes/module-settings.php:102
|
1627 |
+
#: modules/content-slider/content-slider.php:223
|
1628 |
+
#: modules/testimonials/testimonials.php:91
|
1629 |
+
msgid "Delay"
|
1630 |
+
msgstr "Ritardo"
|
1631 |
+
|
1632 |
+
# @ fl-builder
|
1633 |
+
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1634 |
+
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
|
1635 |
+
#: modules/content-slider/content-slider.php:244
|
1636 |
+
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1637 |
+
#: modules/slideshow/slideshow.php:581
|
1638 |
+
#: modules/testimonials/testimonials.php:95
|
1639 |
+
#: modules/testimonials/testimonials.php:112
|
1640 |
+
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
1641 |
+
msgid "seconds"
|
1642 |
+
msgstr "secondi"
|
1643 |
+
|
1644 |
+
# @ fl-builder
|
1645 |
+
#: includes/module-settings.php:107
|
1646 |
+
msgid "The amount of time in seconds before this animation starts."
|
1647 |
+
msgstr "Periodo di tempo in secondi prima dell'inizio di questa animazione."
|
1648 |
+
|
1649 |
+
#: includes/module-settings.php:120
|
1650 |
+
msgid ""
|
1651 |
+
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1652 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1653 |
+
msgstr ""
|
1654 |
+
"Un ID univoco che sarà applicato al codice HTML del modulo. Deve iniziare "
|
1655 |
+
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
1656 |
+
"Niente spazi."
|
1657 |
+
|
1658 |
+
# @ fl-builder
|
1659 |
+
#: includes/module-settings.php:127 includes/row-settings.php:591
|
1660 |
+
msgid "Class"
|
1661 |
+
msgstr "Classe"
|
1662 |
+
|
1663 |
+
#: includes/module-settings.php:128
|
1664 |
+
msgid ""
|
1665 |
+
"A class that will be applied to this module's HTML. Must start with a letter "
|
1666 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1667 |
+
"classes with spaces."
|
1668 |
+
msgstr ""
|
1669 |
+
"Una classe che sarà applicata al codice HTML di questo modulo. Deve iniziare "
|
1670 |
+
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
1671 |
+
"Separa classi multiple con spazio."
|
1672 |
+
|
1673 |
+
# @ fl-builder
|
1674 |
+
#: includes/row-settings.php:16 modules/button/button.php:146
|
1675 |
+
#: modules/content-slider/content-slider.php:477
|
1676 |
+
msgid "Width"
|
1677 |
+
msgstr "Larghezza"
|
1678 |
+
|
1679 |
+
# @ fl-builder
|
1680 |
+
#: includes/row-settings.php:19 includes/row-settings.php:37
|
1681 |
+
#: includes/row-settings.php:179
|
1682 |
+
msgid "Fixed"
|
1683 |
+
msgstr "Fissa"
|
1684 |
+
|
1685 |
+
# @ fl-builder
|
1686 |
+
#: includes/row-settings.php:20 includes/row-settings.php:38
|
1687 |
+
#: modules/button/button.php:150 modules/callout/callout.php:554
|
1688 |
+
msgid "Full Width"
|
1689 |
+
msgstr "Larghezza piena"
|
1690 |
+
|
1691 |
+
# @ fl-builder
|
1692 |
+
#: includes/row-settings.php:27
|
1693 |
+
msgid ""
|
1694 |
+
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
1695 |
+
"no wider than the Row Max Width set in the Global Settings."
|
1696 |
+
msgstr ""
|
1697 |
+
"Le righe a larghezza piena si estendono per la larghezza di pagina da bordo "
|
1698 |
+
"a bordo. Le righe fisse non sono più ampie rispetto alla larghezza massima "
|
1699 |
+
"scelta nelle impostazioni globali."
|
1700 |
+
|
1701 |
+
# @ fl-builder
|
1702 |
+
#: includes/row-settings.php:34
|
1703 |
+
msgid "Content Width"
|
1704 |
+
msgstr "Larghezza contenuto"
|
1705 |
+
|
1706 |
+
# @ fl-builder
|
1707 |
+
#: includes/row-settings.php:40
|
1708 |
+
msgid ""
|
1709 |
+
"Full width content spans the width of the page from edge to edge. Fixed "
|
1710 |
+
"content is no wider than the Row Max Width set in the Global Settings."
|
1711 |
+
msgstr ""
|
1712 |
+
"Il contenuto a larghezza piena si estende per la larghezza di pagina da "
|
1713 |
+
"bordo a bordo. Il contenuto fisso non è più ampio rispetto alla larghezza "
|
1714 |
+
"massima scelta nelle impostazioni globali."
|
1715 |
+
|
1716 |
+
# @ fl-builder
|
1717 |
+
#: includes/row-settings.php:61
|
1718 |
+
msgid "Background"
|
1719 |
+
msgstr "Sfondo"
|
1720 |
+
|
1721 |
+
# @ fl-builder
|
1722 |
+
#: includes/row-settings.php:68 modules/content-slider/content-slider.php:332
|
1723 |
+
msgctxt "Background type."
|
1724 |
+
msgid "None"
|
1725 |
+
msgstr "Nessuno"
|
1726 |
+
|
1727 |
+
# @ fl-builder
|
1728 |
+
#: includes/row-settings.php:69
|
1729 |
+
msgctxt "Background type."
|
1730 |
+
msgid "Color"
|
1731 |
+
msgstr "Colore"
|
1732 |
+
|
1733 |
+
# @ fl-builder
|
1734 |
+
#: includes/row-settings.php:70
|
1735 |
+
msgctxt "Background type."
|
1736 |
+
msgid "Photo"
|
1737 |
+
msgstr "Foto"
|
1738 |
+
|
1739 |
+
# @ fl-builder
|
1740 |
+
#: includes/row-settings.php:71
|
1741 |
+
msgctxt "Background type."
|
1742 |
+
msgid "Video"
|
1743 |
+
msgstr "Video"
|
1744 |
+
|
1745 |
+
# @ fl-builder
|
1746 |
+
#: includes/row-settings.php:73
|
1747 |
+
msgctxt "Background type."
|
1748 |
+
msgid "Slideshow"
|
1749 |
+
msgstr "Slideshow"
|
1750 |
+
|
1751 |
+
# @ fl-builder
|
1752 |
+
#: includes/row-settings.php:77
|
1753 |
+
msgctxt "Background type."
|
1754 |
+
msgid "Parallax"
|
1755 |
+
msgstr "Parallasse"
|
1756 |
+
|
1757 |
+
# @ fl-builder
|
1758 |
+
#: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
|
1759 |
+
msgid "Background Photo"
|
1760 |
+
msgstr "Foto di sfondo"
|
1761 |
+
|
1762 |
+
# @ fl-builder
|
1763 |
+
#: includes/row-settings.php:133 includes/row-settings.php:321
|
1764 |
+
#: modules/callout/callout.php:314 modules/callout/callout.php:330
|
1765 |
+
#: modules/callout/callout.php:334
|
1766 |
+
#: modules/content-slider/content-slider.php:329
|
1767 |
+
#: modules/content-slider/content-slider.php:398
|
1768 |
+
#: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
|
1769 |
+
#: modules/photo/photo.php:392
|
1770 |
+
msgid "Photo"
|
1771 |
+
msgstr "Foto"
|
1772 |
+
|
1773 |
+
# @ fl-builder
|
1774 |
+
#: includes/row-settings.php:140
|
1775 |
+
msgid "Repeat"
|
1776 |
+
msgstr "Ripetizione"
|
1777 |
+
|
1778 |
+
# @ fl-builder
|
1779 |
+
#: includes/row-settings.php:143
|
1780 |
+
msgctxt "Background repeat."
|
1781 |
+
msgid "None"
|
1782 |
+
msgstr "Nessuna"
|
1783 |
+
|
1784 |
+
# @ fl-builder
|
1785 |
+
#: includes/row-settings.php:144
|
1786 |
+
msgctxt "Background repeat."
|
1787 |
+
msgid "Tile"
|
1788 |
+
msgstr "Tassello"
|
1789 |
+
|
1790 |
+
# @ fl-builder
|
1791 |
+
#: includes/row-settings.php:145
|
1792 |
+
msgctxt "Background repeat."
|
1793 |
+
msgid "Horizontal"
|
1794 |
+
msgstr "Orizzontale"
|
1795 |
+
|
1796 |
+
# @ fl-builder
|
1797 |
+
#: includes/row-settings.php:146
|
1798 |
+
msgctxt "Background repeat."
|
1799 |
+
msgid "Vertical"
|
1800 |
+
msgstr "Verticale"
|
1801 |
+
|
1802 |
+
# @ fl-builder
|
1803 |
+
#: includes/row-settings.php:148
|
1804 |
+
msgid ""
|
1805 |
+
"Repeat applies to how the image should display in the row background. "
|
1806 |
+
"Choosing none will display the image as uploaded. Tile will repeat the image "
|
1807 |
+
"as many times as needed to fill the row horizontally and vertically. You can "
|
1808 |
+
"also specify the image to only repeat horizontally or vertically."
|
1809 |
+
msgstr ""
|
1810 |
+
"La ripetizione si applica a come dovrebbe visualizzarsi l'immagine sullo "
|
1811 |
+
"sfondo della riga. Scegliere nessuno visualizzerà l'immagine così come "
|
1812 |
+
"caricata. Tassello ripeterà l'immagine tante volte quanto necessario per "
|
1813 |
+
"riempire la riga orizzontalmente e verticalmente. È anche possibile "
|
1814 |
+
"specificare di ripetere l'immagine solo orizzontalmente o verticalmente."
|
1815 |
+
|
1816 |
+
# @ fl-builder
|
1817 |
+
#: includes/row-settings.php:158
|
1818 |
+
msgid "Left Top"
|
1819 |
+
msgstr "Sinistra Alto"
|
1820 |
+
|
1821 |
+
# @ fl-builder
|
1822 |
+
#: includes/row-settings.php:159
|
1823 |
+
msgid "Left Center"
|
1824 |
+
msgstr "Sinistra Centro"
|
1825 |
+
|
1826 |
+
# @ fl-builder
|
1827 |
+
#: includes/row-settings.php:160
|
1828 |
+
msgid "Left Bottom"
|
1829 |
+
msgstr "Sinistra Basso"
|
1830 |
+
|
1831 |
+
# @ fl-builder
|
1832 |
+
#: includes/row-settings.php:161
|
1833 |
+
msgid "Right Top"
|
1834 |
+
msgstr "Destra Alto"
|
1835 |
+
|
1836 |
+
# @ fl-builder
|
1837 |
+
#: includes/row-settings.php:162
|
1838 |
+
msgid "Right Center"
|
1839 |
+
msgstr "Destra Centro"
|
1840 |
+
|
1841 |
+
# @ fl-builder
|
1842 |
+
#: includes/row-settings.php:163
|
1843 |
+
msgid "Right Bottom"
|
1844 |
+
msgstr "Destra Basso"
|
1845 |
+
|
1846 |
+
# @ fl-builder
|
1847 |
+
#: includes/row-settings.php:164
|
1848 |
+
msgid "Center Top"
|
1849 |
+
msgstr "Centro Alto"
|
1850 |
+
|
1851 |
+
# @ fl-builder
|
1852 |
+
#: includes/row-settings.php:165 modules/button/button.php:176
|
1853 |
+
#: modules/callout/callout.php:249
|
1854 |
+
#: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
|
1855 |
+
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1856 |
+
#: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
|
1857 |
+
#: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
|
1858 |
+
msgid "Center"
|
1859 |
+
msgstr "Centro"
|
1860 |
+
|
1861 |
+
# @ fl-builder
|
1862 |
+
#: includes/row-settings.php:166
|
1863 |
+
msgid "Center Bottom"
|
1864 |
+
msgstr "Centro Basso"
|
1865 |
+
|
1866 |
+
# @ fl-builder
|
1867 |
+
#: includes/row-settings.php:168
|
1868 |
+
msgid "Position will tell the image where it should sit in the row background."
|
1869 |
+
msgstr "La posizione sistemerà l'immagine sullo sfondo della riga."
|
1870 |
+
|
1871 |
+
# @ fl-builder
|
1872 |
+
#: includes/row-settings.php:175
|
1873 |
+
msgid "Attachment"
|
1874 |
+
msgstr "Attaccatura"
|
1875 |
+
|
1876 |
+
# @ fl-builder
|
1877 |
+
#: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
|
1878 |
+
msgid "Scroll"
|
1879 |
+
msgstr "Scorrimento"
|
1880 |
+
|
1881 |
+
# @ fl-builder
|
1882 |
+
#: includes/row-settings.php:181
|
1883 |
+
msgid ""
|
1884 |
+
"Attachment will specify how the image reacts when scrolling a page. When "
|
1885 |
+
"scrolling is selected, the image will scroll with page scrolling. This is "
|
1886 |
+
"the default setting. Fixed will allow the image to scroll within the row "
|
1887 |
+
"background if fill is selected in the scale setting."
|
1888 |
+
msgstr ""
|
1889 |
+
"L'attaccatura specificherà come immagine reagisce durante lo scorrimento di "
|
1890 |
+
"una pagina. Quando lo scorrimento è selezionato, l'immagine scorre con lo "
|
1891 |
+
"scorrimento della pagina. Questa è l'impostazione predefinita. Fisso "
|
1892 |
+
"permette all'immagine di scorrere all'interno dello sfondo di riga se "
|
1893 |
+
"riempimento è selezionato nelle impostazioni di scala."
|
1894 |
+
|
1895 |
+
# @ fl-builder
|
1896 |
+
#: includes/row-settings.php:188
|
1897 |
+
msgid "Scale"
|
1898 |
+
msgstr "Scala"
|
1899 |
+
|
1900 |
+
# @ fl-builder
|
1901 |
+
#: includes/row-settings.php:191
|
1902 |
+
msgctxt "Background scale."
|
1903 |
+
msgid "None"
|
1904 |
+
msgstr "Nessuno"
|
1905 |
+
|
1906 |
+
# @ fl-builder
|
1907 |
+
#: includes/row-settings.php:192
|
1908 |
+
msgid "Fit"
|
1909 |
+
msgstr "Adatta"
|
1910 |
+
|
1911 |
+
# @ fl-builder
|
1912 |
+
#: includes/row-settings.php:193
|
1913 |
+
msgid "Fill"
|
1914 |
+
msgstr "Riempi"
|
1915 |
+
|
1916 |
+
# @ fl-builder
|
1917 |
+
#: includes/row-settings.php:195
|
1918 |
+
msgid ""
|
1919 |
+
"Scale applies to how the image should display in the row background. You can "
|
1920 |
+
"select either fill or fit to the row background."
|
1921 |
+
msgstr ""
|
1922 |
+
"La scala si applica a come si dovrebbe visualizzare l'immagine sullo sfondo "
|
1923 |
+
"della riga. È possibile selezionare o riempimento o adatta allo sfondo della "
|
1924 |
+
"riga."
|
1925 |
+
|
1926 |
+
# @ fl-builder
|
1927 |
+
#: includes/row-settings.php:203
|
1928 |
+
msgid "Background Video"
|
1929 |
+
msgstr "Video di sfondo"
|
1930 |
+
|
1931 |
+
# @ fl-builder
|
1932 |
+
#: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
|
1933 |
+
#: modules/video/video.php:19 modules/video/video.php:100
|
1934 |
+
msgid "Video"
|
1935 |
+
msgstr "Video"
|
1936 |
+
|
1937 |
+
# @ fl-builder
|
1938 |
+
#: includes/row-settings.php:208
|
1939 |
+
msgid ""
|
1940 |
+
"An HTML5 video to use as the background of this row. Supported types are "
|
1941 |
+
"MP4, WebM and Ogg."
|
1942 |
+
msgstr ""
|
1943 |
+
"Un video HTML5 da usare come sfondo di questa riga. I tipi supportati sono "
|
1944 |
+
"MP4, WebM e Ogg."
|
1945 |
+
|
1946 |
+
# @ fl-builder
|
1947 |
+
#: includes/row-settings.php:215
|
1948 |
+
msgid "Fallback Photo"
|
1949 |
+
msgstr "Foto di fallback"
|
1950 |
+
|
1951 |
+
# @ fl-builder
|
1952 |
+
#: includes/row-settings.php:216
|
1953 |
+
msgid "A photo that will be displayed if the video fails to load."
|
1954 |
+
msgstr "Una foto che verrà visualizzata se non è possibile caricare il video."
|
1955 |
+
|
1956 |
+
# @ fl-builder
|
1957 |
+
#: includes/row-settings.php:224
|
1958 |
+
msgid "Background Slideshow"
|
1959 |
+
msgstr "Sfondo Slideshow"
|
1960 |
+
|
1961 |
+
# @ fl-builder
|
1962 |
+
#: includes/row-settings.php:228 modules/gallery/gallery.php:234
|
1963 |
+
#: modules/slideshow/slideshow.php:263
|
1964 |
+
msgid "Source"
|
1965 |
+
msgstr "Sorgente"
|
1966 |
+
|
1967 |
+
# @ fl-builder
|
1968 |
+
#: includes/row-settings.php:231 modules/gallery/gallery.php:237
|
1969 |
+
#: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
|
1970 |
+
#: modules/video/video.php:86
|
1971 |
+
msgid "Media Library"
|
1972 |
+
msgstr "Libreria multimediale"
|
1973 |
+
|
1974 |
+
# @ fl-builder
|
1975 |
+
#: includes/row-settings.php:234 modules/gallery/gallery.php:240
|
1976 |
+
#: modules/slideshow/slideshow.php:269
|
1977 |
+
msgid ""
|
1978 |
+
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
1979 |
+
"site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
|
1980 |
+
"accessed by using the get a link function in your SmugMug gallery."
|
1981 |
+
msgstr ""
|
1982 |
+
"Estrae immagini dalla libreria multimedia di WordPress o una galleria sul "
|
1983 |
+
"tuo sito SmugMug inserendo la URL del feed RSS di SmugMug. L'URL del feed "
|
1984 |
+
"RSS è accessibile tramite un collegamento nella tua galleria SmugMug."
|
1985 |
+
|
1986 |
+
# @ fl-builder
|
1987 |
+
#: includes/row-settings.php:249 modules/gallery/gallery.php:252
|
1988 |
+
#: modules/slideshow/slideshow.php:281
|
1989 |
+
msgid "Photos"
|
1990 |
+
msgstr "Foto"
|
1991 |
+
|
1992 |
+
# @ fl-builder
|
1993 |
+
#: includes/row-settings.php:256 modules/gallery/gallery.php:256
|
1994 |
+
#: modules/slideshow/slideshow.php:285
|
1995 |
+
msgid "Feed URL"
|
1996 |
+
msgstr "URL del feed"
|
1997 |
+
|
1998 |
+
# @ fl-builder
|
1999 |
+
#: includes/row-settings.php:263 includes/row-settings.php:328
|
2000 |
+
#: modules/slideshow/slideshow.php:382
|
2001 |
+
msgid "Speed"
|
2002 |
+
msgstr "Velocità"
|
2003 |
+
|
2004 |
+
# @ fl-builder
|
2005 |
+
#: includes/row-settings.php:273 modules/content-slider/content-slider.php:231
|
2006 |
+
#: modules/slideshow/slideshow.php:389
|
2007 |
+
#: modules/testimonials/testimonials.php:99
|
2008 |
+
msgid "Transition"
|
2009 |
+
msgstr "Transizione"
|
2010 |
+
|
2011 |
+
# @ fl-builder
|
2012 |
+
#: includes/row-settings.php:276
|
2013 |
+
msgctxt "Slideshow transition type."
|
2014 |
+
msgid "None"
|
2015 |
+
msgstr "Nessuna"
|
2016 |
+
|
2017 |
+
# @ fl-builder
|
2018 |
+
#: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
|
2019 |
+
#: modules/slideshow/slideshow.php:393
|
2020 |
+
#: modules/testimonials/testimonials.php:103
|
2021 |
+
msgid "Fade"
|
2022 |
+
msgstr "Dissolvenza"
|
2023 |
+
|
2024 |
+
# @ fl-builder
|
2025 |
+
#: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
|
2026 |
+
msgid "Ken Burns"
|
2027 |
+
msgstr "Ken Burns"
|
2028 |
+
|
2029 |
+
# @ fl-builder
|
2030 |
+
#: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
|
2031 |
+
msgid "Slide Horizontal"
|
2032 |
+
msgstr "Scorri orizontale"
|
2033 |
+
|
2034 |
+
# @ fl-builder
|
2035 |
+
#: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
|
2036 |
+
msgid "Slide Vertical"
|
2037 |
+
msgstr "Scorri verticale"
|
2038 |
+
|
2039 |
+
# @ fl-builder
|
2040 |
+
#: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
|
2041 |
+
msgid "Blinds"
|
2042 |
+
msgstr "Tendina"
|
2043 |
+
|
2044 |
+
# @ fl-builder
|
2045 |
+
#: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
|
2046 |
+
msgid "Bars"
|
2047 |
+
msgstr "Barre"
|
2048 |
+
|
2049 |
+
# @ fl-builder
|
2050 |
+
#: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
|
2051 |
+
msgid "Random Bars"
|
2052 |
+
msgstr "Barre casuali"
|
2053 |
+
|
2054 |
+
# @ fl-builder
|
2055 |
+
#: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
|
2056 |
+
msgid "Boxes"
|
2057 |
+
msgstr "Quadrati"
|
2058 |
+
|
2059 |
+
# @ fl-builder
|
2060 |
+
#: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
|
2061 |
+
msgid "Random Boxes"
|
2062 |
+
msgstr "Quadrati casuali"
|
2063 |
+
|
2064 |
+
# @ fl-builder
|
2065 |
+
#: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
|
2066 |
+
msgid "Boxes Grow"
|
2067 |
+
msgstr "Quadrati ingrandimento"
|
2068 |
+
|
2069 |
+
# @ fl-builder
|
2070 |
+
#: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
|
2071 |
+
#: modules/slideshow/slideshow.php:407
|
2072 |
+
#: modules/testimonials/testimonials.php:108
|
2073 |
+
msgid "Transition Speed"
|
2074 |
+
msgstr "Velocità di transizione"
|
2075 |
+
|
2076 |
+
# @ fl-builder
|
2077 |
+
#: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
|
2078 |
+
msgid "Randomize Photos"
|
2079 |
+
msgstr "Foto casuali"
|
2080 |
+
|
2081 |
+
# @ fl-builder
|
2082 |
+
#: includes/row-settings.php:317
|
2083 |
+
msgid "Background Parallax"
|
2084 |
+
msgstr "Sfondo parallasse"
|
2085 |
+
|
2086 |
+
# @ fl-builder
|
2087 |
+
#: includes/row-settings.php:331
|
2088 |
+
msgid "Fast"
|
2089 |
+
msgstr "Veloce"
|
2090 |
+
|
2091 |
+
# @ fl-builder
|
2092 |
+
#: includes/row-settings.php:332
|
2093 |
+
msgctxt "Speed."
|
2094 |
+
msgid "Medium"
|
2095 |
+
msgstr "Media"
|
2096 |
+
|
2097 |
+
# @ fl-builder
|
2098 |
+
#: includes/row-settings.php:333
|
2099 |
+
msgid "Slow"
|
2100 |
+
msgstr "Lenta"
|
2101 |
+
|
2102 |
+
# @ fl-builder
|
2103 |
+
#: includes/row-settings.php:571
|
2104 |
+
msgid "Choose whether to show or hide this row at different device sizes."
|
2105 |
+
msgstr ""
|
2106 |
+
"Scegli se mostrare o nascondere questa riga per diverse dimensioni dei "
|
2107 |
+
"dispositivi."
|
2108 |
+
|
2109 |
+
#: includes/row-settings.php:584
|
2110 |
+
msgid ""
|
2111 |
+
"A unique ID that will be applied to this row's HTML. Must start with a "
|
2112 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
2113 |
+
msgstr ""
|
2114 |
+
"Un ID univoco che sarà applicato al codice HTML di questa riga. Deve "
|
2115 |
+
"iniziare con una lettera e contenere solo trattini, underscore, lettere o "
|
2116 |
+
"numeri. Niente spazi."
|
2117 |
+
|
2118 |
+
#: includes/row-settings.php:592
|
2119 |
+
msgid ""
|
2120 |
+
"A class that will be applied to this row's HTML. Must start with a letter "
|
2121 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
2122 |
+
"classes with spaces."
|
2123 |
+
msgstr ""
|
2124 |
+
"Una classe che sarà applicata al codice HTML di questa riga. Deve iniziare "
|
2125 |
+
"con una lettera e contenere solo trattini, underscore, lettere o numeri. "
|
2126 |
+
"Separa classi multiple con spazio."
|
2127 |
+
|
2128 |
+
# @ fl-builder
|
2129 |
+
#: includes/settings.php:62
|
2130 |
+
msgid "Save"
|
2131 |
+
msgstr "Salva"
|
2132 |
+
|
2133 |
+
# @ fl-builder
|
2134 |
+
#: includes/template-selector.php:3
|
2135 |
+
msgid "Layout Templates"
|
2136 |
+
msgstr "Modelli di layout"
|
2137 |
+
|
2138 |
+
# @ fl-builder
|
2139 |
+
#: includes/template-selector.php:8
|
2140 |
+
msgid "Home Pages"
|
2141 |
+
msgstr "Pagine home"
|
2142 |
+
|
2143 |
+
# @ fl-builder
|
2144 |
+
#: includes/template-selector.php:9
|
2145 |
+
msgid "Content Pages"
|
2146 |
+
msgstr "Pagine di contenuto"
|
2147 |
+
|
2148 |
+
# @ fl-builder
|
2149 |
+
#: includes/template-selector.php:13
|
2150 |
+
msgid "Your Templates"
|
2151 |
+
msgstr "I tuoi modelli"
|
2152 |
+
|
2153 |
+
# @ fl-builder
|
2154 |
+
#: includes/template-selector.php:47 includes/template-selector.php:77
|
2155 |
+
msgctxt "Template name."
|
2156 |
+
msgid "Blank"
|
2157 |
+
msgstr "Vuoto"
|
2158 |
+
|
2159 |
+
# @ fl-builder
|
2160 |
+
#: includes/template-selector.php:72
|
2161 |
+
msgid ""
|
2162 |
+
"You haven't saved any templates yet! To do so, create a layout and save it "
|
2163 |
+
"as a template under <strong>Tools → Save Template</strong>."
|
2164 |
+
msgstr ""
|
2165 |
+
"Non hai ancora salvato nessun modello! Per farlo, crea un layout e salvalo "
|
2166 |
+
"come modello in <strong>Strumenti → Salva modello</strong>."
|
2167 |
+
|
2168 |
+
# @ fl-builder
|
2169 |
+
#: includes/template-settings.php:14 includes/user-template-settings.php:15
|
2170 |
+
msgctxt "Template name."
|
2171 |
+
msgid "Name"
|
2172 |
+
msgstr "Nome"
|
2173 |
+
|
2174 |
+
#: includes/template-settings.php:18
|
2175 |
+
msgid "Image Filename"
|
2176 |
+
msgstr "Nome file immagine"
|
2177 |
+
|
2178 |
+
#: includes/template-settings.php:19
|
2179 |
+
msgid ""
|
2180 |
+
"The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
|
2181 |
+
"templates/\" directory."
|
2182 |
+
msgstr ""
|
2183 |
+
"Il nome file dell'immagine come \"thumb.jpg\" che risiede nella directory "
|
2184 |
+
"\"img/templates/\"."
|
2185 |
+
|
2186 |
+
# @ fl-builder
|
2187 |
+
#: includes/ui.php:7
|
2188 |
+
#, php-format
|
2189 |
+
msgid "Template: %s"
|
2190 |
+
msgstr "Modello: %s"
|
2191 |
+
|
2192 |
+
# @ fl-builder
|
2193 |
+
#: includes/ui.php:23
|
2194 |
+
msgid "Page Builder Demo"
|
2195 |
+
msgstr "Dimostrazione del Page Builder"
|
2196 |
+
|
2197 |
+
# @ fl-builder
|
2198 |
+
#: includes/ui.php:37
|
2199 |
+
msgid "Buy Now!"
|
2200 |
+
msgstr "Acquista ora!"
|
2201 |
+
|
2202 |
+
# @ fl-builder
|
2203 |
+
#: includes/ui.php:39
|
2204 |
+
msgid "Upgrade!"
|
2205 |
+
msgstr "Aggiorna!"
|
2206 |
+
|
2207 |
+
# @ fl-builder
|
2208 |
+
#: includes/ui.php:41
|
2209 |
+
msgid "Done"
|
2210 |
+
msgstr "Fatto"
|
2211 |
+
|
2212 |
+
# @ fl-builder
|
2213 |
+
#: includes/ui.php:42
|
2214 |
+
msgid "Tools"
|
2215 |
+
msgstr "Strumenti"
|
2216 |
+
|
2217 |
+
# @ fl-builder
|
2218 |
+
#: includes/ui.php:46
|
2219 |
+
msgid "Add Content"
|
2220 |
+
msgstr "Aggiungi contenuto"
|
2221 |
+
|
2222 |
+
# @ fl-builder
|
2223 |
+
#: includes/ui.php:64
|
2224 |
+
msgid "Row Layouts"
|
2225 |
+
msgstr "Layout di riga"
|
2226 |
+
|
2227 |
+
# @ fl-builder
|
2228 |
+
#: includes/ui.php:68
|
2229 |
+
msgid "1 Column"
|
2230 |
+
msgstr "1 colonna"
|
2231 |
+
|
2232 |
+
# @ fl-builder
|
2233 |
+
#: includes/ui.php:69
|
2234 |
+
msgid "2 Columns"
|
2235 |
+
msgstr "2 colonne"
|
2236 |
+
|
2237 |
+
# @ fl-builder
|
2238 |
+
#: includes/ui.php:70
|
2239 |
+
msgid "3 Columns"
|
2240 |
+
msgstr "3 colonne"
|
2241 |
+
|
2242 |
+
# @ fl-builder
|
2243 |
+
#: includes/ui.php:71
|
2244 |
+
msgid "4 Columns"
|
2245 |
+
msgstr "4 colonne"
|
2246 |
+
|
2247 |
+
# @ fl-builder
|
2248 |
+
#: includes/ui.php:72
|
2249 |
+
msgid "5 Columns"
|
2250 |
+
msgstr "5 colonne"
|
2251 |
+
|
2252 |
+
# @ fl-builder
|
2253 |
+
#: includes/ui.php:73
|
2254 |
+
msgid "6 Columns"
|
2255 |
+
msgstr "6 colonne"
|
2256 |
+
|
2257 |
+
# @ fl-builder
|
2258 |
+
#: includes/ui.php:74
|
2259 |
+
msgid "Left Sidebar"
|
2260 |
+
msgstr "Barra laterale sinistra"
|
2261 |
+
|
2262 |
+
# @ fl-builder
|
2263 |
+
#: includes/ui.php:75
|
2264 |
+
msgid "Right Sidebar"
|
2265 |
+
msgstr "Barra laterale destra"
|
2266 |
+
|
2267 |
+
# @ fl-builder
|
2268 |
+
#: includes/ui.php:76
|
2269 |
+
msgid "Left & Right Sidebar"
|
2270 |
+
msgstr "Barra laterale sinistra e destra"
|
2271 |
+
|
2272 |
+
# @ fl-builder
|
2273 |
+
#: includes/ui.php:85 modules/widget/widget.php:16
|
2274 |
+
msgid "WordPress Widgets"
|
2275 |
+
msgstr "Widget di WordPress"
|
2276 |
+
|
2277 |
+
# @ fl-builder
|
2278 |
+
#: includes/updater/classes/class-fl-updater.php:107
|
2279 |
+
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2280 |
+
msgstr "<strong>AGGIORNAMENTO NON DISPONIBILE!</strong>"
|
2281 |
+
|
2282 |
+
# @ fl-builder
|
2283 |
+
#: includes/updater/classes/class-fl-updater.php:109
|
2284 |
+
msgid "Please subscribe to enable automatic updates for this plugin."
|
2285 |
+
msgstr ""
|
2286 |
+
"Si prega di abbonarsi per abilitare gli aggiornamenti automatici per questo "
|
2287 |
+
"plugin."
|
2288 |
+
|
2289 |
+
# @ fl-builder
|
2290 |
+
#: includes/updater/classes/class-fl-updater.php:111
|
2291 |
+
#: includes/updater/includes/form.php:6
|
2292 |
+
msgid "Subscribe Now"
|
2293 |
+
msgstr "Abbonati ora"
|
2294 |
+
|
2295 |
+
# @ fl-builder
|
2296 |
+
#: includes/updater/includes/form.php:5
|
2297 |
+
msgid ""
|
2298 |
+
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
2299 |
+
"enable automatic updates."
|
2300 |
+
msgstr ""
|
2301 |
+
"AGGIORNAMENTI NON DISPONIBILI! Abbonati o inserisci la tua chiave di licenza "
|
2302 |
+
"per abilitare gli aggiornamenti automatici."
|
2303 |
+
|
2304 |
+
# @ fl-builder
|
2305 |
+
#: includes/updater/includes/form.php:11
|
2306 |
+
msgid "Updates & Support Subscription"
|
2307 |
+
msgstr "Abbonamento supporto e aggiornamenti"
|
2308 |
+
|
2309 |
+
# @ fl-builder
|
2310 |
+
#: includes/updater/includes/form.php:14
|
2311 |
+
msgid "Active!"
|
2312 |
+
msgstr "Attivo!"
|
2313 |
+
|
2314 |
+
# @ fl-builder
|
2315 |
+
#: includes/updater/includes/form.php:16
|
2316 |
+
msgid "Not Active!"
|
2317 |
+
msgstr "Non attivo!"
|
2318 |
+
|
2319 |
+
# @ fl-builder
|
2320 |
+
#: includes/updater/includes/form.php:22
|
2321 |
+
msgid "Email address saved!"
|
2322 |
+
msgstr "Indirizzo email salvato!"
|
2323 |
+
|
2324 |
+
# @ fl-builder
|
2325 |
+
#: includes/updater/includes/form.php:27
|
2326 |
+
#, php-format
|
2327 |
+
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
2328 |
+
msgstr ""
|
2329 |
+
"Inserisci la tua <a%s>chiave di licenza</a> per abilitare gli aggiornamenti "
|
2330 |
+
"remoti e il supporto."
|
2331 |
+
|
2332 |
+
# @ fl-builder
|
2333 |
+
#: includes/updater/includes/form.php:39
|
2334 |
+
msgid "Save Subscription Settings"
|
2335 |
+
msgstr "Salva le impostazioni di abbonamento"
|
2336 |
+
|
2337 |
+
# @ fl-builder
|
2338 |
+
#: includes/user-template-settings.php:8
|
2339 |
+
msgid ""
|
2340 |
+
"Save the current layout as a template that can be reused under "
|
2341 |
+
"<strong>Templates → Your Templates</strong>."
|
2342 |
+
msgstr ""
|
2343 |
+
"Salva il layout attuale come modello che può essere riutilizzato in "
|
2344 |
+
"<strong>Modelli → I tuoi modelli</strong>."
|
2345 |
+
|
2346 |
+
# @ fl-builder
|
2347 |
+
#: modules/accordion/accordion.php:14
|
2348 |
+
msgid "Accordion"
|
2349 |
+
msgstr "Accordion"
|
2350 |
+
|
2351 |
+
# @ fl-builder
|
2352 |
+
#: modules/accordion/accordion.php:15
|
2353 |
+
msgid "Display a collapsible accordion of items."
|
2354 |
+
msgstr "Visualizza una lista comprimibile di elementi."
|
2355 |
+
|
2356 |
+
# @ fl-builder
|
2357 |
+
#: modules/accordion/accordion.php:16 modules/button/button.php:16
|
2358 |
+
#: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
|
2359 |
+
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
2360 |
+
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
2361 |
+
#: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
|
2362 |
+
#: modules/map/map.php:16 modules/post-grid/post-grid.php:16
|
2363 |
+
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
2364 |
+
#: modules/slideshow/slideshow.php:16
|
2365 |
+
#: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
|
2366 |
+
#: modules/testimonials/testimonials.php:16
|
2367 |
+
#: modules/woocommerce/woocommerce.php:18
|
2368 |
+
msgid "Advanced Modules"
|
2369 |
+
msgstr "Moduli avanzati"
|
2370 |
+
|
2371 |
+
# @ fl-builder
|
2372 |
+
#: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
|
2373 |
+
msgid "Items"
|
2374 |
+
msgstr "Elementi"
|
2375 |
+
|
2376 |
+
# @ fl-builder
|
2377 |
+
#: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
|
2378 |
+
msgid "Item"
|
2379 |
+
msgstr "Elemento"
|
2380 |
+
|
2381 |
+
# @ fl-builder
|
2382 |
+
#: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
|
2383 |
+
msgid "Border Color"
|
2384 |
+
msgstr "Colore bordo"
|
2385 |
+
|
2386 |
+
# @ fl-builder
|
2387 |
+
#: modules/accordion/accordion.php:62
|
2388 |
+
msgid "Label Size"
|
2389 |
+
msgstr "Dimensione etichetta"
|
2390 |
+
|
2391 |
+
# @ fl-builder
|
2392 |
+
#: modules/accordion/accordion.php:65
|
2393 |
+
msgctxt "Label size."
|
2394 |
+
msgid "Small"
|
2395 |
+
msgstr "Piccola"
|
2396 |
+
|
2397 |
+
# @ fl-builder
|
2398 |
+
#: modules/accordion/accordion.php:66
|
2399 |
+
msgctxt "Label size."
|
2400 |
+
msgid "Medium"
|
2401 |
+
msgstr "Media"
|
2402 |
+
|
2403 |
+
# @ fl-builder
|
2404 |
+
#: modules/accordion/accordion.php:67
|
2405 |
+
msgctxt "Label size."
|
2406 |
+
msgid "Large"
|
2407 |
+
msgstr "Grande"
|
2408 |
+
|
2409 |
+
# @ fl-builder
|
2410 |
+
#: modules/accordion/accordion.php:75
|
2411 |
+
msgid "Item Spacing"
|
2412 |
+
msgstr "Spaziatura elemento"
|
2413 |
+
|
2414 |
+
# @ fl-builder
|
2415 |
+
#: modules/accordion/accordion.php:86
|
2416 |
+
msgid "Collapse Inactive"
|
2417 |
+
msgstr "Chiudi inattivo"
|
2418 |
+
|
2419 |
+
# @ fl-builder
|
2420 |
+
#: modules/accordion/accordion.php:92
|
2421 |
+
msgid ""
|
2422 |
+
"Choosing yes will keep only one item open at a time. Choosing no will allow "
|
2423 |
+
"multiple items to be open at the same time."
|
2424 |
+
msgstr ""
|
2425 |
+
"Scegliendo Sì manterrà soltanto un elemento aperto alla volta. Scegliendo No "
|
2426 |
+
"permetterà a più elementi di essere aperti contemporaneamente."
|
2427 |
+
|
2428 |
+
# @ fl-builder
|
2429 |
+
#: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
|
2430 |
+
msgid "Add Item"
|
2431 |
+
msgstr "Aggiungi elemento"
|
2432 |
+
|
2433 |
+
# @ fl-builder
|
2434 |
+
#: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
|
2435 |
+
msgid "Label"
|
2436 |
+
msgstr "Etichetta"
|
2437 |
+
|
2438 |
+
# @ fl-builder
|
2439 |
+
#: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
|
2440 |
+
#: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
|
2441 |
+
#: modules/tabs/tabs.php:89
|
2442 |
+
msgid "Content"
|
2443 |
+
msgstr "Contenuto"
|
2444 |
+
|
2445 |
+
# @ fl-builder
|
2446 |
+
#: modules/button/button.php:14 modules/callout/callout.php:477
|
2447 |
+
#: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
|
2448 |
+
#: modules/pricing-table/pricing-table.php:129
|
2449 |
+
msgid "Button"
|
2450 |
+
msgstr "Pulsante"
|
2451 |
+
|
2452 |
+
# @ fl-builder
|
2453 |
+
#: modules/button/button.php:15
|
2454 |
+
msgid "A simple call to action button."
|
2455 |
+
msgstr "Un semplice pulsante Call to action."
|
2456 |
+
|
2457 |
+
# @ fl-builder
|
2458 |
+
#: modules/button/button.php:54 modules/cta/cta.php:220
|
2459 |
+
msgid "Click Here"
|
2460 |
+
msgstr "Clicca qui"
|
2461 |
+
|
2462 |
+
# @ fl-builder
|
2463 |
+
#: modules/button/button.php:62 modules/callout/callout.php:315
|
2464 |
+
#: modules/callout/callout.php:363 modules/callout/callout.php:367
|
2465 |
+
#: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
|
2466 |
+
#: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
|
2467 |
+
#: modules/icon/icon.php:34
|
2468 |
+
msgid "Icon"
|
2469 |
+
msgstr "Icona"
|
2470 |
+
|
2471 |
+
# @ fl-builder
|
2472 |
+
#: modules/button/button.php:68 modules/button/button.php:72
|
2473 |
+
#: modules/callout/callout.php:443 modules/callout/callout.php:447
|
2474 |
+
#: modules/content-slider/content-slider.php:567
|
2475 |
+
#: modules/content-slider/content-slider.php:571
|
2476 |
+
#: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
|
2477 |
+
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
2478 |
+
#: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
|
2479 |
+
#: modules/slideshow/slideshow.php:343
|
2480 |
+
msgid "Link"
|
2481 |
+
msgstr "Collegamento"
|
2482 |
+
|
2483 |
+
# @ fl-builder
|
2484 |
+
#: modules/button/button.php:73
|
2485 |
+
msgid "http://www.example.com"
|
2486 |
+
msgstr "http://www.example.com"
|
2487 |
+
|
2488 |
+
# @ fl-builder
|
2489 |
+
#: modules/button/button.php:80 modules/callout/callout.php:455
|
2490 |
+
#: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
|
2491 |
+
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
2492 |
+
#: modules/photo/photo.php:478
|
2493 |
+
msgid "Link Target"
|
2494 |
+
msgstr "Destinazione del collegamento"
|
2495 |
+
|
2496 |
+
# @ fl-builder
|
2497 |
+
#: modules/button/button.php:83 modules/callout/callout.php:458
|
2498 |
+
#: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
|
2499 |
+
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
2500 |
+
#: modules/photo/photo.php:481
|
2501 |
+
msgid "Same Window"
|
2502 |
+
msgstr "Stessa finestra"
|
2503 |
+
|
2504 |
+
# @ fl-builder
|
2505 |
+
#: modules/button/button.php:84 modules/callout/callout.php:459
|
2506 |
+
#: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
|
2507 |
+
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
2508 |
+
#: modules/photo/photo.php:482
|
2509 |
+
msgid "New Window"
|
2510 |
+
msgstr "Nuova finestra"
|
2511 |
+
|
2512 |
+
# @ fl-builder
|
2513 |
+
#: modules/button/button.php:98 modules/cta/cta.php:185
|
2514 |
+
#: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
|
2515 |
+
#: modules/icon/icon.php:78
|
2516 |
+
msgid "Colors"
|
2517 |
+
msgstr "Colori"
|
2518 |
+
|
2519 |
+
# @ fl-builder
|
2520 |
+
#: modules/button/button.php:108 modules/callout/callout.php:407
|
2521 |
+
#: modules/callout/callout.php:512
|
2522 |
+
#: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
|
2523 |
+
#: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
|
2524 |
+
msgid "Background Hover Color"
|
2525 |
+
msgstr "Colore di sfondo al passaggio del mouse"
|
2526 |
+
|
2527 |
+
# @ fl-builder
|
2528 |
+
#: modules/button/button.php:117 modules/callout/callout.php:521
|
2529 |
+
#: modules/content-slider/content-slider.php:522
|
2530 |
+
#: modules/content-slider/content-slider.php:635
|
2531 |
+
#: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
|
2532 |
+
#: modules/cta/cta.php:277 modules/heading/heading.php:77
|
2533 |
+
msgid "Text Color"
|
2534 |
+
msgstr "Colore del testo"
|
2535 |
+
|
2536 |
+
# @ fl-builder
|
2537 |
+
#: modules/button/button.php:123 modules/callout/callout.php:527
|
2538 |
+
#: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
|
2539 |
+
msgid "Text Hover Color"
|
2540 |
+
msgstr "Colore del testo al passaggio del mouse"
|
2541 |
+
|
2542 |
+
# @ fl-builder
|
2543 |
+
#: modules/button/button.php:132 modules/callout/callout.php:415
|
2544 |
+
#: modules/callout/callout.php:536
|
2545 |
+
#: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
|
2546 |
+
#: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
|
2547 |
+
msgid "Gradient"
|
2548 |
+
msgstr "Gradiente"
|
2549 |
+
|
2550 |
+
# @ fl-builder
|
2551 |
+
#: modules/button/button.php:142 modules/callout/callout.php:242
|
2552 |
+
#: modules/cta/cta.php:102 modules/heading/heading.php:82
|
2553 |
+
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
2554 |
+
msgid "Structure"
|
2555 |
+
msgstr "Struttura"
|
2556 |
+
|
2557 |
+
# @ fl-builder
|
2558 |
+
#: modules/button/button.php:149 modules/callout/callout.php:553
|
2559 |
+
msgctxt "Width."
|
2560 |
+
msgid "Auto"
|
2561 |
+
msgstr "Automatica"
|
2562 |
+
|
2563 |
+
# @ fl-builder
|
2564 |
+
#: modules/button/button.php:165
|
2565 |
+
msgid "Custom Width"
|
2566 |
+
msgstr "Larghezza personalizzata"
|
2567 |
+
|
2568 |
+
# @ fl-builder
|
2569 |
+
#: modules/button/button.php:173 modules/cta/cta.php:120
|
2570 |
+
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
2571 |
+
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
2572 |
+
#: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
|
2573 |
+
msgid "Alignment"
|
2574 |
+
msgstr "Allineamento"
|
2575 |
+
|
2576 |
+
# @ fl-builder
|
2577 |
+
#: modules/button/button.php:183 modules/callout/callout.php:559
|
2578 |
+
#: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
|
2579 |
+
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
2580 |
+
msgid "Font Size"
|
2581 |
+
msgstr "Dimensione carattere"
|
2582 |
+
|
2583 |
+
# @ fl-builder
|
2584 |
+
#: modules/button/button.php:199 modules/callout/callout.php:575
|
2585 |
+
#: modules/cta/cta.php:322
|
2586 |
+
msgid "Round Corners"
|
2587 |
+
msgstr "Angoli arrotondati"
|
2588 |
+
|
2589 |
+
# @ fl-builder
|
2590 |
+
#: modules/callout/callout.php:14
|
2591 |
+
msgid "Callout"
|
2592 |
+
msgstr "Callout"
|
2593 |
+
|
2594 |
+
# @ fl-builder
|
2595 |
+
#: modules/callout/callout.php:15
|
2596 |
+
msgid "A heading and snippet of text with an optional link, icon and image."
|
2597 |
+
msgstr ""
|
2598 |
+
"Un titolo e un frammento di testo con collegamento, icona e immagine "
|
2599 |
+
"facoltativi."
|
2600 |
+
|
2601 |
+
# @ fl-builder
|
2602 |
+
#: modules/callout/callout.php:214
|
2603 |
+
#: modules/content-slider/content-slider.php:407
|
2604 |
+
#: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
|
2605 |
+
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
2606 |
+
#: modules/testimonials/testimonials.php:56
|
2607 |
+
#: modules/testimonials/testimonials.php:61
|
2608 |
+
msgid "Heading"
|
2609 |
+
msgstr "Titolo"
|
2610 |
+
|
2611 |
+
# @ fl-builder
|
2612 |
+
#: modules/callout/callout.php:246
|
2613 |
+
msgid "Overall Alignment"
|
2614 |
+
msgstr "Allineamento globale"
|
2615 |
+
|
2616 |
+
# @ fl-builder
|
2617 |
+
#: modules/callout/callout.php:253
|
2618 |
+
msgid "The alignment that will apply to all elements within the callout."
|
2619 |
+
msgstr ""
|
2620 |
+
"L'allineamento che si applicherà a tutti gli elementi all'interno del "
|
2621 |
+
"callout."
|
2622 |
+
|
2623 |
+
# @ fl-builder
|
2624 |
+
#: modules/callout/callout.php:261 modules/cta/cta.php:145
|
2625 |
+
msgid "Heading Structure"
|
2626 |
+
msgstr "Struttura titolo"
|
2627 |
+
|
2628 |
+
# @ fl-builder
|
2629 |
+
#: modules/callout/callout.php:265
|
2630 |
+
#: modules/content-slider/content-slider.php:426 modules/cta/cta.php:149
|
2631 |
+
msgid "Heading Tag"
|
2632 |
+
msgstr "Tag titolo"
|
2633 |
+
|
2634 |
+
# @ fl-builder
|
2635 |
+
#: modules/callout/callout.php:278
|
2636 |
+
#: modules/content-slider/content-slider.php:439
|
2637 |
+
#: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
|
2638 |
+
#: modules/testimonials/testimonials.php:69
|
2639 |
+
msgid "Heading Size"
|
2640 |
+
msgstr "Dimensione titolo"
|
2641 |
+
|
2642 |
+
# @ fl-builder
|
2643 |
+
#: modules/callout/callout.php:292 modules/cta/cta.php:176
|
2644 |
+
msgid "Heading Custom Size"
|
2645 |
+
msgstr "Dimensione personalizzata titolo"
|
2646 |
+
|
2647 |
+
# @ fl-builder
|
2648 |
+
#: modules/callout/callout.php:310
|
2649 |
+
msgid "Image Type"
|
2650 |
+
msgstr "Tipo di immagine"
|
2651 |
+
|
2652 |
+
# @ fl-builder
|
2653 |
+
#: modules/callout/callout.php:313
|
2654 |
+
msgctxt "Image type."
|
2655 |
+
msgid "None"
|
2656 |
+
msgstr "Nessuna"
|
2657 |
+
|
2658 |
+
# @ fl-builder
|
2659 |
+
#: modules/callout/callout.php:338 modules/photo/photo.php:401
|
2660 |
+
#: modules/slideshow/slideshow.php:312
|
2661 |
+
msgid "Crop"
|
2662 |
+
msgstr "Ritaglio"
|
2663 |
+
|
2664 |
+
# @ fl-builder
|
2665 |
+
#: modules/callout/callout.php:341
|
2666 |
+
msgctxt "Crop"
|
2667 |
+
msgid "None"
|
2668 |
+
msgstr "Nessuno"
|
2669 |
+
|
2670 |
+
# @ fl-builder
|
2671 |
+
#: modules/callout/callout.php:342 modules/photo/photo.php:405
|
2672 |
+
msgid "Landscape"
|
2673 |
+
msgstr "Paesaggio"
|
2674 |
+
|
2675 |
+
# @ fl-builder
|
2676 |
+
#: modules/callout/callout.php:343 modules/photo/photo.php:406
|
2677 |
+
msgid "Panorama"
|
2678 |
+
msgstr "Panorama"
|
2679 |
+
|
2680 |
+
# @ fl-builder
|
2681 |
+
#: modules/callout/callout.php:344 modules/photo/photo.php:407
|
2682 |
+
msgid "Portrait"
|
2683 |
+
msgstr "Ritratto"
|
2684 |
+
|
2685 |
+
# @ fl-builder
|
2686 |
+
#: modules/callout/callout.php:345 modules/photo/photo.php:408
|
2687 |
+
msgid "Square"
|
2688 |
+
msgstr "Quadrato"
|
2689 |
+
|
2690 |
+
# @ fl-builder
|
2691 |
+
#: modules/callout/callout.php:346 modules/photo/photo.php:409
|
2692 |
+
msgid "Circle"
|
2693 |
+
msgstr "Cerchio"
|
2694 |
+
|
2695 |
+
# @ fl-builder
|
2696 |
+
#: modules/callout/callout.php:354 modules/callout/callout.php:374
|
2697 |
+
msgid "Above Heading"
|
2698 |
+
msgstr "Sopra intestazione"
|
2699 |
+
|
2700 |
+
# @ fl-builder
|
2701 |
+
#: modules/callout/callout.php:355 modules/callout/callout.php:375
|
2702 |
+
msgid "Below Heading"
|
2703 |
+
msgstr "Sotto intestazione"
|
2704 |
+
|
2705 |
+
# @ fl-builder
|
2706 |
+
#: modules/callout/callout.php:356 modules/callout/callout.php:378
|
2707 |
+
msgid "Left of Text and Heading"
|
2708 |
+
msgstr "Sinistra del testo e intestazione"
|
2709 |
+
|
2710 |
+
# @ fl-builder
|
2711 |
+
#: modules/callout/callout.php:357 modules/callout/callout.php:379
|
2712 |
+
msgid "Right of Text and Heading"
|
2713 |
+
msgstr "Destra del testo e intestazione"
|
2714 |
+
|
2715 |
+
# @ fl-builder
|
2716 |
+
#: modules/callout/callout.php:376
|
2717 |
+
msgid "Left of Heading"
|
2718 |
+
msgstr "Sinistra dell'intestazione"
|
2719 |
+
|
2720 |
+
# @ fl-builder
|
2721 |
+
#: modules/callout/callout.php:377
|
2722 |
+
msgid "Right of Heading"
|
2723 |
+
msgstr "Destra dell'intestazione"
|
2724 |
+
|
2725 |
+
# @ fl-builder
|
2726 |
+
#: modules/callout/callout.php:385
|
2727 |
+
msgid "Icon Colors"
|
2728 |
+
msgstr "Colori icona"
|
2729 |
+
|
2730 |
+
# @ fl-builder
|
2731 |
+
#: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
|
2732 |
+
#: modules/icon/icon.php:87
|
2733 |
+
msgid "Hover Color"
|
2734 |
+
msgstr "Colore al passaggio del mouse"
|
2735 |
+
|
2736 |
+
# @ fl-builder
|
2737 |
+
#: modules/callout/callout.php:425
|
2738 |
+
msgid "Icon Structure"
|
2739 |
+
msgstr "Struttura icona"
|
2740 |
+
|
2741 |
+
# @ fl-builder
|
2742 |
+
#: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
|
2743 |
+
#: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
|
2744 |
+
msgid "Size"
|
2745 |
+
msgstr "Dimensione"
|
2746 |
+
|
2747 |
+
# @ fl-builder
|
2748 |
+
#: modules/callout/callout.php:440
|
2749 |
+
#: modules/content-slider/content-slider.php:564
|
2750 |
+
msgid "Call To Action"
|
2751 |
+
msgstr "Call To Action"
|
2752 |
+
|
2753 |
+
# @ fl-builder
|
2754 |
+
#: modules/callout/callout.php:448
|
2755 |
+
msgid ""
|
2756 |
+
"The link applies to the entire module. If choosing a call to action type "
|
2757 |
+
"below, this link will also be used for the text or button."
|
2758 |
+
msgstr ""
|
2759 |
+
"Il collegamento si applica a tutto il modulo. Se si seglie un tipo di azione "
|
2760 |
+
"call to action qui sotto, questo collegamento verrà utilizzato anche per il "
|
2761 |
+
"testo o pulsante."
|
2762 |
+
|
2763 |
+
# @ fl-builder
|
2764 |
+
#: modules/callout/callout.php:468
|
2765 |
+
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:14
|
2766 |
+
msgid "Call to Action"
|
2767 |
+
msgstr "Call to Action"
|
2768 |
+
|
2769 |
+
# @ fl-builder
|
2770 |
+
#: modules/callout/callout.php:475
|
2771 |
+
#: modules/content-slider/content-slider.php:593
|
2772 |
+
msgctxt "Call to action."
|
2773 |
+
msgid "None"
|
2774 |
+
msgstr "Nessuna"
|
2775 |
+
|
2776 |
+
# @ fl-builder
|
2777 |
+
#: modules/callout/callout.php:496
|
2778 |
+
#: modules/content-slider/content-slider.php:614
|
2779 |
+
msgid "Button Icon"
|
2780 |
+
msgstr "Icona del pulsante"
|
2781 |
+
|
2782 |
+
# @ fl-builder
|
2783 |
+
#: modules/callout/callout.php:502
|
2784 |
+
#: modules/content-slider/content-slider.php:620 modules/cta/cta.php:258
|
2785 |
+
msgid "Button Colors"
|
2786 |
+
msgstr "Colori pulsante"
|
2787 |
+
|
2788 |
+
# @ fl-builder
|
2789 |
+
#: modules/callout/callout.php:546
|
2790 |
+
#: modules/content-slider/content-slider.php:656 modules/cta/cta.php:302
|
2791 |
+
msgid "Button Structure"
|
2792 |
+
msgstr "Struttura pulsante"
|
2793 |
+
|
2794 |
+
# @ fl-builder
|
2795 |
+
#: modules/callout/callout.php:550
|
2796 |
+
msgid "Button Width"
|
2797 |
+
msgstr "Larghezza del pulsante"
|
2798 |
+
|
2799 |
+
# @ fl-builder
|
2800 |
+
#: modules/contact-form/contact-form.php:14
|
2801 |
+
msgid "Contact Form"
|
2802 |
+
msgstr "Modulo di contatto"
|
2803 |
+
|
2804 |
+
# @ fl-builder
|
2805 |
+
#: modules/contact-form/contact-form.php:15
|
2806 |
+
msgid "A very simple contact form."
|
2807 |
+
msgstr "Un semplice modulo di contatto."
|
2808 |
+
|
2809 |
+
# @ fl-builder
|
2810 |
+
#: modules/contact-form/contact-form.php:36
|
2811 |
+
msgid "Contact Form Submission"
|
2812 |
+
msgstr "Invio modulo di contatto"
|
2813 |
+
|
2814 |
+
# @ fl-builder
|
2815 |
+
#: modules/contact-form/contact-form.php:64
|
2816 |
+
msgid "Send To Email"
|
2817 |
+
msgstr "Invia per Email"
|
2818 |
+
|
2819 |
+
# @ fl-builder
|
2820 |
+
#: modules/contact-form/contact-form.php:66
|
2821 |
+
msgid "example@mail.com"
|
2822 |
+
msgstr "example@mail.com"
|
2823 |
+
|
2824 |
+
# @ fl-builder
|
2825 |
+
#: modules/contact-form/contact-form.php:67
|
2826 |
+
msgid "The contact form will send to this e-mail"
|
2827 |
+
msgstr "Il modulo di contatto sarà inviato a questa e-mail"
|
2828 |
+
|
2829 |
+
# @ fl-builder
|
2830 |
+
#: modules/contact-form/includes/frontend.php:4
|
2831 |
+
msgctxt "Contact form field label."
|
2832 |
+
msgid "Name"
|
2833 |
+
msgstr "Nome"
|
2834 |
+
|
2835 |
+
# @ fl-builder
|
2836 |
+
#: modules/contact-form/includes/frontend.php:5
|
2837 |
+
msgid "Please enter your name."
|
2838 |
+
msgstr "Inserisci il tuo nome."
|
2839 |
+
|
2840 |
+
# @ fl-builder
|
2841 |
+
#: modules/contact-form/includes/frontend.php:6
|
2842 |
+
msgid "Your name"
|
2843 |
+
msgstr "Il tuo nome"
|
2844 |
+
|
2845 |
+
# @ fl-builder
|
2846 |
+
#: modules/contact-form/includes/frontend.php:10
|
2847 |
+
msgid "Email"
|
2848 |
+
msgstr "Email"
|
2849 |
+
|
2850 |
+
# @ fl-builder
|
2851 |
+
#: modules/contact-form/includes/frontend.php:11
|
2852 |
+
msgid "Please enter a valid email."
|
2853 |
+
msgstr "Inserisci un indirizzo email valido."
|
2854 |
+
|
2855 |
+
# @ fl-builder
|
2856 |
+
#: modules/contact-form/includes/frontend.php:12
|
2857 |
+
msgid "Your email"
|
2858 |
+
msgstr "La tua email"
|
2859 |
+
|
2860 |
+
# @ fl-builder
|
2861 |
+
#: modules/contact-form/includes/frontend.php:16
|
2862 |
+
msgid "Your Message"
|
2863 |
+
msgstr "Il tuo messaggio"
|
2864 |
+
|
2865 |
+
# @ fl-builder
|
2866 |
+
#: modules/contact-form/includes/frontend.php:17
|
2867 |
+
msgid "Please enter a message."
|
2868 |
+
msgstr "Inserisci un messaggio."
|
2869 |
+
|
2870 |
+
# @ fl-builder
|
2871 |
+
#: modules/contact-form/includes/frontend.php:18
|
2872 |
+
msgid "Your message"
|
2873 |
+
msgstr "Il tuo messaggio"
|
2874 |
+
|
2875 |
+
# @ fl-builder
|
2876 |
+
#: modules/contact-form/includes/frontend.php:23
|
2877 |
+
msgid "Send"
|
2878 |
+
msgstr "Invia"
|
2879 |
+
|
2880 |
+
# @ fl-builder
|
2881 |
+
#: modules/contact-form/includes/frontend.php:24
|
2882 |
+
msgid "Message Sent!"
|
2883 |
+
msgstr "Messaggio inviato!"
|
2884 |
+
|
2885 |
+
# @ fl-builder
|
2886 |
+
#: modules/contact-form/includes/frontend.php:25
|
2887 |
+
msgid "Message failed. Please try again."
|
2888 |
+
msgstr "Invio non riuscito. Per favore riprova."
|
2889 |
+
|
2890 |
+
# @ fl-builder
|
2891 |
+
#: modules/content-slider/content-slider.php:14
|
2892 |
+
msgid "Content Slider"
|
2893 |
+
msgstr "Slider contenuto"
|
2894 |
+
|
2895 |
+
# @ fl-builder
|
2896 |
+
#: modules/content-slider/content-slider.php:15
|
2897 |
+
msgid "Displays multiple slides with an optional heading and call to action."
|
2898 |
+
msgstr ""
|
2899 |
+
"Visualizza slide multiple con un titolo e una call to action opzionali."
|
2900 |
+
|
2901 |
+
# @ fl-builder
|
2902 |
+
#: modules/content-slider/content-slider.php:191 modules/map/map.php:41
|
2903 |
+
#: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
|
2904 |
+
msgid "Height"
|
2905 |
+
msgstr "Altezza"
|
2906 |
+
|
2907 |
+
# @ fl-builder
|
2908 |
+
#: modules/content-slider/content-slider.php:196
|
2909 |
+
msgid ""
|
2910 |
+
"This setting is the minimum height of the content slider. Content will "
|
2911 |
+
"expand the height automatically."
|
2912 |
+
msgstr ""
|
2913 |
+
"Questa impostazione è l'altezza minima dello slider di contenuto. Il "
|
2914 |
+
"contenuto espanderà automaticamente l'altezza."
|
2915 |
+
|
2916 |
+
# @ fl-builder
|
2917 |
+
#: modules/content-slider/content-slider.php:200
|
2918 |
+
#: modules/slideshow/slideshow.php:373
|
2919 |
+
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
2920 |
+
msgid "Auto Play"
|
2921 |
+
msgstr "Avvio automatico"
|
2922 |
+
|
2923 |
+
# @ fl-builder
|
2924 |
+
#: modules/content-slider/content-slider.php:214
|
2925 |
+
msgid "Show Play/Pause"
|
2926 |
+
msgstr "Mostra Play/Pausa"
|
2927 |
+
|
2928 |
+
# @ fl-builder
|
2929 |
+
#: modules/content-slider/content-slider.php:234
|
2930 |
+
#: modules/testimonials/testimonials.php:102
|
2931 |
+
msgctxt "Transition type."
|
2932 |
+
msgid "Slide"
|
2933 |
+
msgstr "Slide"
|
2934 |
+
|
2935 |
+
# @ fl-builder
|
2936 |
+
#: modules/content-slider/content-slider.php:248
|
2937 |
+
#: modules/testimonials/testimonials.php:121
|
2938 |
+
msgid "Show Arrows"
|
2939 |
+
msgstr "Mostra frecce"
|
2940 |
+
|
2941 |
+
# @ fl-builder
|
2942 |
+
#: modules/content-slider/content-slider.php:257
|
2943 |
+
#: modules/testimonials/testimonials.php:151
|
2944 |
+
msgid "Show Dots"
|
2945 |
+
msgstr "Mostra navigazione"
|
2946 |
+
|
2947 |
+
# @ fl-builder
|
2948 |
+
#: modules/content-slider/content-slider.php:271
|
2949 |
+
msgid "Max Content Width"
|
2950 |
+
msgstr "Larghezza max contenuto"
|
2951 |
+
|
2952 |
+
# @ fl-builder
|
2953 |
+
#: modules/content-slider/content-slider.php:276
|
2954 |
+
msgid "The max width that the content area will be within your slides."
|
2955 |
+
msgstr "La larghezza massima dell'area di contenuto nelle tue slides."
|
2956 |
+
|
2957 |
+
# @ fl-builder
|
2958 |
+
#: modules/content-slider/content-slider.php:283
|
2959 |
+
msgid "Slides"
|
2960 |
+
msgstr "Slides"
|
2961 |
+
|
2962 |
+
# @ fl-builder
|
2963 |
+
#: modules/content-slider/content-slider.php:290
|
2964 |
+
msgid "Slide"
|
2965 |
+
msgstr "Slide"
|
2966 |
+
|
2967 |
+
# @ fl-builder
|
2968 |
+
#: modules/content-slider/content-slider.php:305
|
2969 |
+
msgid "Slide Settings"
|
2970 |
+
msgstr "Impostazioni slide"
|
2971 |
+
|
2972 |
+
# @ fl-builder
|
2973 |
+
#: modules/content-slider/content-slider.php:315
|
2974 |
+
msgid "Slide Label"
|
2975 |
+
msgstr "Etichetta slide"
|
2976 |
+
|
2977 |
+
# @ fl-builder
|
2978 |
+
#: modules/content-slider/content-slider.php:316
|
2979 |
+
msgid ""
|
2980 |
+
"A label to identify this slide on the Slides tab of the Content Slider "
|
2981 |
+
"settings."
|
2982 |
+
msgstr ""
|
2983 |
+
"Un'etichetta per identificare questa slide nelle impostazioni dello Slider "
|
2984 |
+
"Contenuti, tra le schede delle slide."
|
2985 |
+
|
2986 |
+
# @ fl-builder
|
2987 |
+
#: modules/content-slider/content-slider.php:321
|
2988 |
+
msgid "Background Layout"
|
2989 |
+
msgstr "Layout sfondo"
|
2990 |
+
|
2991 |
+
# @ fl-builder
|
2992 |
+
#: modules/content-slider/content-slider.php:327
|
2993 |
+
msgid "This setting is for the entire background of your slide."
|
2994 |
+
msgstr "Questa impostazione è per l'intero sfondo della tua slide."
|
2995 |
+
|
2996 |
+
# @ fl-builder
|
2997 |
+
#: modules/content-slider/content-slider.php:362
|
2998 |
+
msgid "Background Video Code"
|
2999 |
+
msgstr "Codice sfondo video"
|
3000 |
+
|
3001 |
+
# @ fl-builder
|
3002 |
+
#: modules/content-slider/content-slider.php:368
|
3003 |
+
msgid "Content Layout"
|
3004 |
+
msgstr "Layout contenuto"
|
3005 |
+
|
3006 |
+
# @ fl-builder
|
3007 |
+
#: modules/content-slider/content-slider.php:374
|
3008 |
+
msgid ""
|
3009 |
+
"This allows you to add content over or in addition to the background "
|
3010 |
+
"selection above. The location of the content layout can be selected in the "
|
3011 |
+
"style tab."
|
3012 |
+
msgstr ""
|
3013 |
+
"Questo permette di aggiungere contenuto sopra o in aggiunta alla selezione "
|
3014 |
+
"sfondo sopra. La posizione del layout contenuti può essere selezionata nella "
|
3015 |
+
"scheda stile."
|
3016 |
+
|
3017 |
+
# @ fl-builder
|
3018 |
+
#: modules/content-slider/content-slider.php:377
|
3019 |
+
msgid "Text & Photo"
|
3020 |
+
msgstr "Testo e foto"
|
3021 |
+
|
3022 |
+
# @ fl-builder
|
3023 |
+
#: modules/content-slider/content-slider.php:378
|
3024 |
+
msgid "Text & Video"
|
3025 |
+
msgstr "Testo e Video"
|
3026 |
+
|
3027 |
+
# @ fl-builder
|
3028 |
+
#: modules/content-slider/content-slider.php:379
|
3029 |
+
msgctxt "Content type."
|
3030 |
+
msgid "None"
|
3031 |
+
msgstr "Nessuno"
|
3032 |
+
|
3033 |
+
# @ fl-builder
|
3034 |
+
#: modules/content-slider/content-slider.php:402 modules/video/video.php:132
|
3035 |
+
msgid "Video Embed Code"
|
3036 |
+
msgstr "Codice di embed del video"
|
3037 |
+
|
3038 |
+
# @ fl-builder
|
3039 |
+
#: modules/content-slider/content-slider.php:462
|
3040 |
+
msgid "Text Position"
|
3041 |
+
msgstr "Posizione testo"
|
3042 |
+
|
3043 |
+
# @ fl-builder
|
3044 |
+
#: modules/content-slider/content-slider.php:468
|
3045 |
+
msgid ""
|
3046 |
+
"The position will move the content layout selections left, right or center "
|
3047 |
+
"over the background of the slide."
|
3048 |
+
msgstr ""
|
3049 |
+
"La posizione sposterà le selezioni di layout contenuto a sinistra, destra o "
|
3050 |
+
"centrato sullo sfondo della slide."
|
3051 |
+
|
3052 |
+
# @ fl-builder
|
3053 |
+
#: modules/content-slider/content-slider.php:485
|
3054 |
+
msgid "Top Margin"
|
3055 |
+
msgstr "Margine alto"
|
3056 |
+
|
3057 |
+
# @ fl-builder
|
3058 |
+
#: modules/content-slider/content-slider.php:493
|
3059 |
+
msgid "Bottom Margin"
|
3060 |
+
msgstr "Margine basso"
|
3061 |
+
|
3062 |
+
# @ fl-builder
|
3063 |
+
#: modules/content-slider/content-slider.php:501
|
3064 |
+
msgid "Left Margin"
|
3065 |
+
msgstr "Margine sinistro"
|
3066 |
+
|
3067 |
+
# @ fl-builder
|
3068 |
+
#: modules/content-slider/content-slider.php:509
|
3069 |
+
msgid "Right Margin"
|
3070 |
+
msgstr "Margine destro"
|
3071 |
+
|
3072 |
+
# @ fl-builder
|
3073 |
+
#: modules/content-slider/content-slider.php:518
|
3074 |
+
msgid "Text Colors"
|
3075 |
+
msgstr "Colori del testo"
|
3076 |
+
|
3077 |
+
# @ fl-builder
|
3078 |
+
#: modules/content-slider/content-slider.php:528
|
3079 |
+
msgid "Text Shadow"
|
3080 |
+
msgstr "Ombra del testo"
|
3081 |
+
|
3082 |
+
# @ fl-builder
|
3083 |
+
#: modules/content-slider/content-slider.php:537
|
3084 |
+
#: modules/content-slider/content-slider.php:725
|
3085 |
+
msgid "Text Background Color"
|
3086 |
+
msgstr "Colore di sfondo del testo"
|
3087 |
+
|
3088 |
+
# @ fl-builder
|
3089 |
+
#: modules/content-slider/content-slider.php:538
|
3090 |
+
msgid ""
|
3091 |
+
"The color applies to the overlay behind text over the background selections."
|
3092 |
+
msgstr ""
|
3093 |
+
"Il colore si applica all'overlay dietro il testo sopra lo sfondo selezionato."
|
3094 |
+
|
3095 |
+
# @ fl-builder
|
3096 |
+
#: modules/content-slider/content-slider.php:543
|
3097 |
+
msgid "Text Background Opacity"
|
3098 |
+
msgstr "Opacità sfondo del testo"
|
3099 |
+
|
3100 |
+
# @ fl-builder
|
3101 |
+
#: modules/content-slider/content-slider.php:551
|
3102 |
+
msgid "Text Background Height"
|
3103 |
+
msgstr "Altezza sfondo del testo"
|
3104 |
+
|
3105 |
+
# @ fl-builder
|
3106 |
+
#: modules/content-slider/content-slider.php:553
|
3107 |
+
msgid ""
|
3108 |
+
"Auto will allow the overlay to fit however long the text content is. 100% "
|
3109 |
+
"will fit the overlay to the top and bottom of the slide."
|
3110 |
+
msgstr ""
|
3111 |
+
"Auto permetterà all'overlay di adattarsi a qualunque lunghezza del contenuto "
|
3112 |
+
"di testo. 100% adatta l'overlay alla parte superiore e inferiore della slide."
|
3113 |
+
|
3114 |
+
# @ fl-builder
|
3115 |
+
#: modules/content-slider/content-slider.php:555
|
3116 |
+
msgctxt "Background height."
|
3117 |
+
msgid "Auto"
|
3118 |
+
msgstr "Auto"
|
3119 |
+
|
3120 |
+
# @ fl-builder
|
3121 |
+
#: modules/content-slider/content-slider.php:572
|
3122 |
+
msgid ""
|
3123 |
+
"The link applies to the entire slide. If choosing a call to action type "
|
3124 |
+
"below, this link will also be used for the text or button."
|
3125 |
+
msgstr ""
|
3126 |
+
"Il collegamento si applica all'intera slide. Se si sceglie un tipo di call "
|
3127 |
+
"to action qui sotto, questo collegamento verrà utilizzato anche per il testo "
|
3128 |
+
"o pulsante."
|
3129 |
+
|
3130 |
+
# @ fl-builder
|
3131 |
+
#: modules/content-slider/content-slider.php:676
|
3132 |
+
msgid "Border Radius"
|
3133 |
+
msgstr "Raggio del bordo"
|
3134 |
+
|
3135 |
+
# @ fl-builder
|
3136 |
+
#: modules/content-slider/content-slider.php:687
|
3137 |
+
msgctxt "Module settings form tab. Display on mobile devices."
|
3138 |
+
msgid "Mobile"
|
3139 |
+
msgstr "Mobile"
|
3140 |
+
|
3141 |
+
# @ fl-builder
|
3142 |
+
#: modules/content-slider/content-slider.php:690
|
3143 |
+
msgid "Mobile Photo"
|
3144 |
+
msgstr "Foto mobile"
|
3145 |
+
|
3146 |
+
# @ fl-builder
|
3147 |
+
#: modules/content-slider/content-slider.php:696
|
3148 |
+
msgid ""
|
3149 |
+
"You can choose a different photo that the slide will change to on mobile "
|
3150 |
+
"devices or no photo if desired."
|
3151 |
+
msgstr ""
|
3152 |
+
"È possibile scegliere una foto diversa da visualizzare nella slide per i "
|
3153 |
+
"dispositivi mobili, o nessuna foto se lo si desidera."
|
3154 |
+
|
3155 |
+
# @ fl-builder
|
3156 |
+
#: modules/content-slider/content-slider.php:698
|
3157 |
+
msgid "Use Main Photo"
|
3158 |
+
msgstr "Utilizza foto principale"
|
3159 |
+
|
3160 |
+
# @ fl-builder
|
3161 |
+
#: modules/content-slider/content-slider.php:699
|
3162 |
+
msgid "Choose Another Photo"
|
3163 |
+
msgstr "Scegli un'altra foto"
|
3164 |
+
|
3165 |
+
# @ fl-builder
|
3166 |
+
#: modules/content-slider/content-slider.php:700
|
3167 |
+
msgid "No Photo"
|
3168 |
+
msgstr "Nessuna foto"
|
3169 |
+
|
3170 |
+
# @ fl-builder
|
3171 |
+
#: modules/content-slider/content-slider.php:715
|
3172 |
+
msgid "Mobile Text Colors"
|
3173 |
+
msgstr "Colori testo mobile"
|
3174 |
+
|
3175 |
+
# @ fl-builder
|
3176 |
+
#: modules/cta/cta.php:15
|
3177 |
+
msgid "Display a heading, subheading and a button."
|
3178 |
+
msgstr "Mostra un titolo, sottotitolo e un pulsante."
|
3179 |
+
|
3180 |
+
# @ fl-builder
|
3181 |
+
#: modules/cta/cta.php:73
|
3182 |
+
msgid "Ready to find out more?"
|
3183 |
+
msgstr "Pronti a saperne di più?"
|
3184 |
+
|
3185 |
+
# @ fl-builder
|
3186 |
+
#: modules/cta/cta.php:88
|
3187 |
+
msgid "Drop us a line today for a free quote!"
|
3188 |
+
msgstr "Mandaci oggi due righe per un preventivo gratuito!"
|
3189 |
+
|
3190 |
+
# @ fl-builder
|
3191 |
+
#: modules/cta/cta.php:106 modules/gallery/gallery.php:220
|
3192 |
+
#: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
|
3193 |
+
#: modules/testimonials/testimonials.php:37
|
3194 |
+
#: modules/woocommerce/woocommerce.php:57
|
3195 |
+
msgid "Layout"
|
3196 |
+
msgstr "Layout"
|
3197 |
+
|
3198 |
+
# @ fl-builder
|
3199 |
+
#: modules/cta/cta.php:109
|
3200 |
+
msgid "Inline"
|
3201 |
+
msgstr "In linea"
|
3202 |
+
|
3203 |
+
# @ fl-builder
|
3204 |
+
#: modules/cta/cta.php:110
|
3205 |
+
msgid "Stacked"
|
3206 |
+
msgstr "Impilati"
|
3207 |
+
|
3208 |
+
# @ fl-builder
|
3209 |
+
#: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
|
3210 |
+
msgid "Spacing"
|
3211 |
+
msgstr "Spaziatura"
|
3212 |
+
|
3213 |
+
# @ fl-builder
|
3214 |
+
#: modules/cta/cta.php:201
|
3215 |
+
msgid "Background Opacity"
|
3216 |
+
msgstr "Opacità sfondo"
|
3217 |
+
|
3218 |
+
# @ fl-builder
|
3219 |
+
#: modules/cta/cta.php:234
|
3220 |
+
msgid "Button Link"
|
3221 |
+
msgstr "Collegamento pulsante"
|
3222 |
+
|
3223 |
+
# @ fl-builder
|
3224 |
+
#: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
|
3225 |
+
msgid "Gallery"
|
3226 |
+
msgstr "Galleria"
|
3227 |
+
|
3228 |
+
# @ fl-builder
|
3229 |
+
#: modules/gallery/gallery.php:15
|
3230 |
+
msgid "Display multiple photos in a gallery view."
|
3231 |
+
msgstr "Visualizzare più foto in una galleria."
|
3232 |
+
|
3233 |
+
# @ fl-builder
|
3234 |
+
#: modules/gallery/gallery.php:223
|
3235 |
+
msgid "Collage"
|
3236 |
+
msgstr "Collage"
|
3237 |
+
|
3238 |
+
# @ fl-builder
|
3239 |
+
#: modules/gallery/gallery.php:224
|
3240 |
+
msgctxt "Gallery layout: thumbnails."
|
3241 |
+
msgid "Thumbs"
|
3242 |
+
msgstr "Miniature"
|
3243 |
+
|
3244 |
+
# @ fl-builder
|
3245 |
+
#: modules/gallery/gallery.php:260
|
3246 |
+
msgid "Photo Size"
|
3247 |
+
msgstr "Dimensione foto"
|
3248 |
+
|
3249 |
+
# @ fl-builder
|
3250 |
+
#: modules/gallery/gallery.php:263
|
3251 |
+
msgctxt "Photo size."
|
3252 |
+
msgid "Small"
|
3253 |
+
msgstr "Piccola"
|
3254 |
+
|
3255 |
+
# @ fl-builder
|
3256 |
+
#: modules/gallery/gallery.php:264
|
3257 |
+
msgctxt "Photo size."
|
3258 |
+
msgid "Medium"
|
3259 |
+
msgstr "Media"
|
3260 |
+
|
3261 |
+
# @ fl-builder
|
3262 |
+
#: modules/gallery/gallery.php:265
|
3263 |
+
msgctxt "Photo size."
|
3264 |
+
msgid "Large"
|
3265 |
+
msgstr "Grande"
|
3266 |
+
|
3267 |
+
# @ fl-builder
|
3268 |
+
#: modules/gallery/gallery.php:270
|
3269 |
+
msgid "Photo Spacing"
|
3270 |
+
msgstr "Spaziatura foto"
|
3271 |
+
|
3272 |
+
# @ fl-builder
|
3273 |
+
#: modules/gallery/gallery.php:278
|
3274 |
+
msgid "Show Captions"
|
3275 |
+
msgstr "Visualizza didascalie"
|
3276 |
+
|
3277 |
+
# @ fl-builder
|
3278 |
+
#: modules/gallery/gallery.php:281 modules/photo/photo.php:432
|
3279 |
+
msgid "Never"
|
3280 |
+
msgstr "Mai"
|
3281 |
+
|
3282 |
+
# @ fl-builder
|
3283 |
+
#: modules/gallery/gallery.php:282 modules/photo/photo.php:433
|
3284 |
+
msgid "On Hover"
|
3285 |
+
msgstr "Al passaggio del mouse"
|
3286 |
+
|
3287 |
+
# @ fl-builder
|
3288 |
+
#: modules/gallery/gallery.php:283 modules/photo/photo.php:434
|
3289 |
+
msgid "Below Photo"
|
3290 |
+
msgstr "Sotto la foto"
|
3291 |
+
|
3292 |
+
# @ fl-builder
|
3293 |
+
#: modules/gallery/gallery.php:285
|
3294 |
+
msgid ""
|
3295 |
+
"The caption pulls from whatever text you put in the caption area in the "
|
3296 |
+
"media manager for each image. The caption is also pulled directly from "
|
3297 |
+
"SmugMug if you have captions set in your gallery."
|
3298 |
+
msgstr ""
|
3299 |
+
"La didascalia utilizza qualunque testo si inserisca per ciascuna immagine "
|
3300 |
+
"nell'area didascalia del media manager. Vengono direttamente utilizzate "
|
3301 |
+
"anche le didascalie di SmugMug se le hai impostate nella tua galleria."
|
3302 |
+
|
3303 |
+
# @ fl-builder
|
3304 |
+
#: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
|
3305 |
+
msgid "Click Action"
|
3306 |
+
msgstr "Azione click"
|
3307 |
+
|
3308 |
+
# @ fl-builder
|
3309 |
+
#: modules/gallery/gallery.php:292
|
3310 |
+
msgctxt "Click action."
|
3311 |
+
msgid "None"
|
3312 |
+
msgstr "Nessuna"
|
3313 |
+
|
3314 |
+
# @ fl-builder
|
3315 |
+
#: modules/gallery/gallery.php:293 modules/photo/photo.php:452
|
3316 |
+
msgid "Lightbox"
|
3317 |
+
msgstr "Lightbox"
|
3318 |
+
|
3319 |
+
# @ fl-builder
|
3320 |
+
#: modules/gallery/gallery.php:294
|
3321 |
+
msgid "Photo Link"
|
3322 |
+
msgstr "Collegamento foto"
|
3323 |
+
|
3324 |
+
# @ fl-builder
|
3325 |
+
#: modules/heading/heading.php:15
|
3326 |
+
msgid "Display a title/page heading."
|
3327 |
+
msgstr "Mostra titolo di pagina."
|
3328 |
+
|
3329 |
+
# @ fl-builder
|
3330 |
+
#: modules/heading/heading.php:16 modules/photo/photo.php:27
|
3331 |
+
#: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
|
3332 |
+
#: modules/video/video.php:21
|
3333 |
+
msgid "Basic Modules"
|
3334 |
+
msgstr "Moduli base"
|
3335 |
+
|
3336 |
+
# @ fl-builder
|
3337 |
+
#: modules/heading/heading.php:101
|
3338 |
+
msgid "HTML Tag"
|
3339 |
+
msgstr "Tag HTML"
|
3340 |
+
|
3341 |
+
# @ fl-builder
|
3342 |
+
#: modules/heading/heading.php:128 modules/heading/heading.php:188
|
3343 |
+
msgid "Custom Font Size"
|
3344 |
+
msgstr "Dimensione carattere personalizzata"
|
3345 |
+
|
3346 |
+
# @ fl-builder
|
3347 |
+
#: modules/heading/heading.php:137
|
3348 |
+
msgid "Mobile Structure"
|
3349 |
+
msgstr "Struttura mobile"
|
3350 |
+
|
3351 |
+
# @ fl-builder
|
3352 |
+
#: modules/heading/heading.php:158
|
3353 |
+
msgid "Custom Alignment"
|
3354 |
+
msgstr "Allineamento personalizzato"
|
3355 |
+
|
3356 |
+
# @ fl-builder
|
3357 |
+
#: modules/html/html.php:14
|
3358 |
+
msgid "HTML"
|
3359 |
+
msgstr "HTML"
|
3360 |
+
|
3361 |
+
# @ fl-builder
|
3362 |
+
#: modules/html/html.php:15
|
3363 |
+
msgid "Display raw HTML code."
|
3364 |
+
msgstr "Mostra codice HTML."
|
3365 |
+
|
3366 |
+
# @ fl-builder
|
3367 |
+
#: modules/icon-group/icon-group.php:14
|
3368 |
+
msgid "Icon Group"
|
3369 |
+
msgstr "Gruppo di icone"
|
3370 |
+
|
3371 |
+
# @ fl-builder
|
3372 |
+
#: modules/icon-group/icon-group.php:15
|
3373 |
+
msgid "Display a group of linked Font Awesome icons."
|
3374 |
+
msgstr "Mostra un gruppo di icone Font Awesome."
|
3375 |
+
|
3376 |
+
# @ fl-builder
|
3377 |
+
#: modules/icon-group/icon-group.php:125
|
3378 |
+
msgid "Add Icon"
|
3379 |
+
msgstr "Aggiungi icona"
|
3380 |
+
|
3381 |
+
# @ fl-builder
|
3382 |
+
#: modules/icon/icon.php:15
|
3383 |
+
msgid "Display an icon and optional title."
|
3384 |
+
msgstr "Mostra un'icona e un titolo opzionale."
|
3385 |
+
|
3386 |
+
# @ fl-builder
|
3387 |
+
#: modules/map/map.php:14
|
3388 |
+
msgid "Map"
|
3389 |
+
msgstr "Mappa"
|
3390 |
+
|
3391 |
+
# @ fl-builder
|
3392 |
+
#: modules/map/map.php:15
|
3393 |
+
msgid "Display a Google map."
|
3394 |
+
msgstr "Mostra una mappa di Google."
|
3395 |
+
|
3396 |
+
# @ fl-builder
|
3397 |
+
#: modules/map/map.php:33
|
3398 |
+
msgid "Address"
|
3399 |
+
msgstr "Indirizzo"
|
3400 |
+
|
3401 |
+
# @ fl-builder
|
3402 |
+
#: modules/map/map.php:34
|
3403 |
+
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
3404 |
+
msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
|
3405 |
+
|
3406 |
+
# @ fl-builder
|
3407 |
+
#: modules/photo/photo.php:26
|
3408 |
+
msgid "Upload a photo or display one from the media library."
|
3409 |
+
msgstr "Carica una foto o mostrane una dalla libreria multimediale."
|
3410 |
+
|
3411 |
+
# @ fl-builder
|
3412 |
+
#: modules/photo/photo.php:375
|
3413 |
+
msgid "Photo Source"
|
3414 |
+
msgstr "Sorgente foto"
|
3415 |
+
|
3416 |
+
# @ fl-builder
|
3417 |
+
#: modules/photo/photo.php:379 modules/photo/photo.php:451
|
3418 |
+
msgid "URL"
|
3419 |
+
msgstr "URL"
|
3420 |
+
|
3421 |
+
# @ fl-builder
|
3422 |
+
#: modules/photo/photo.php:396
|
3423 |
+
msgid "Photo URL"
|
3424 |
+
msgstr "URL foto"
|
3425 |
+
|
3426 |
+
# @ fl-builder
|
3427 |
+
#: modules/photo/photo.php:397
|
3428 |
+
msgid "http://www.example.com/my-photo.jpg"
|
3429 |
+
msgstr "http://www.example.com/my-photo.jpg"
|
3430 |
+
|
3431 |
+
# @ fl-builder
|
3432 |
+
#: modules/photo/photo.php:404
|
3433 |
+
msgctxt "Crop."
|
3434 |
+
msgid "None"
|
3435 |
+
msgstr "Nessuno"
|
3436 |
+
|
3437 |
+
# @ fl-builder
|
3438 |
+
#: modules/photo/photo.php:425 modules/photo/photo.php:439
|
3439 |
+
msgid "Caption"
|
3440 |
+
msgstr "Didascalia"
|
3441 |
+
|
3442 |
+
# @ fl-builder
|
3443 |
+
#: modules/photo/photo.php:429
|
3444 |
+
msgid "Show Caption"
|
3445 |
+
msgstr "Mostra didascalia"
|
3446 |
+
|
3447 |
+
# @ fl-builder
|
3448 |
+
#: modules/photo/photo.php:448
|
3449 |
+
msgid "Link Type"
|
3450 |
+
msgstr "Tipo di collegamento"
|
3451 |
+
|
3452 |
+
# @ fl-builder
|
3453 |
+
#: modules/photo/photo.php:450
|
3454 |
+
msgctxt "Link type."
|
3455 |
+
msgid "None"
|
3456 |
+
msgstr "Nessuno"
|
3457 |
+
|
3458 |
+
# @ fl-builder
|
3459 |
+
#: modules/photo/photo.php:453
|
3460 |
+
msgid "Photo File"
|
3461 |
+
msgstr "File foto"
|
3462 |
+
|
3463 |
+
# @ fl-builder
|
3464 |
+
#: modules/photo/photo.php:464
|
3465 |
+
msgid ""
|
3466 |
+
"Link type applies to how the image should be linked on click. You can choose "
|
3467 |
+
"a specific URL, the individual photo or a separate page with the photo."
|
3468 |
+
msgstr ""
|
3469 |
+
"Il tipo di collegamento si applica a cosa dovrebbe essere collegato al clic. "
|
3470 |
+
"È possibile scegliere un URL specifico, la singola foto o una pagina "
|
3471 |
+
"separata per la foto."
|
3472 |
+
|
3473 |
+
# @ fl-builder
|
3474 |
+
#: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
|
3475 |
+
msgid "Link URL"
|
3476 |
+
msgstr "URL collegamento"
|
3477 |
+
|
3478 |
+
# @ fl-builder
|
3479 |
+
#: modules/post-grid/includes/frontend.php:41
|
3480 |
+
msgid "No posts found."
|
3481 |
+
msgstr "Nessun post trovato."
|
3482 |
+
|
3483 |
+
# @ fl-builder
|
3484 |
+
#: modules/post-grid/includes/post-feed.php:14
|
3485 |
+
#: modules/post-grid/includes/post-grid.php:24
|
3486 |
+
#, php-format
|
3487 |
+
msgctxt "%s stands for author name."
|
3488 |
+
msgid "By %s"
|
3489 |
+
msgstr "Di %s"
|
3490 |
+
|
3491 |
+
# @ fl-builder
|
3492 |
+
#: modules/post-grid/post-grid.php:14
|
3493 |
+
msgid "Posts"
|
3494 |
+
msgstr "Posts"
|
3495 |
+
|
3496 |
+
# @ fl-builder
|
3497 |
+
#: modules/post-grid/post-grid.php:15
|
3498 |
+
msgid "Display a grid of your WordPress posts."
|
3499 |
+
msgstr "Mostra una griglia con i tuoi post WordPress."
|
3500 |
+
|
3501 |
+
# @ fl-builder
|
3502 |
+
#: modules/post-grid/post-grid.php:51
|
3503 |
+
msgid "Layout Style"
|
3504 |
+
msgstr "Stile di layout"
|
3505 |
+
|
3506 |
+
# @ fl-builder
|
3507 |
+
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
3508 |
+
msgid "Grid"
|
3509 |
+
msgstr "Griglia"
|
3510 |
+
|
3511 |
+
# @ fl-builder
|
3512 |
+
#: modules/post-grid/post-grid.php:56
|
3513 |
+
msgid "Feed"
|
3514 |
+
msgstr "Feed"
|
3515 |
+
|
3516 |
+
# @ fl-builder
|
3517 |
+
#: modules/post-grid/post-grid.php:71
|
3518 |
+
msgid "Pagination Style"
|
3519 |
+
msgstr "Stile paginazione"
|
3520 |
+
|
3521 |
+
# @ fl-builder
|
3522 |
+
#: modules/post-grid/post-grid.php:74
|
3523 |
+
msgid "Numbers"
|
3524 |
+
msgstr "Numeri"
|
3525 |
+
|
3526 |
+
# @ fl-builder
|
3527 |
+
#: modules/post-grid/post-grid.php:76
|
3528 |
+
msgctxt "Pagination style."
|
3529 |
+
msgid "None"
|
3530 |
+
msgstr "Nessuna"
|
3531 |
+
|
3532 |
+
# @ fl-builder
|
3533 |
+
#: modules/post-grid/post-grid.php:81
|
3534 |
+
msgid "Posts Per Page"
|
3535 |
+
msgstr "Post per pagina"
|
3536 |
+
|
3537 |
+
# @ fl-builder
|
3538 |
+
#: modules/post-grid/post-grid.php:92
|
3539 |
+
msgid "Post Width"
|
3540 |
+
msgstr "Larghezza post"
|
3541 |
+
|
3542 |
+
# @ fl-builder
|
3543 |
+
#: modules/post-grid/post-grid.php:100
|
3544 |
+
msgid "Post Spacing"
|
3545 |
+
msgstr "Spaziatura post"
|
3546 |
+
|
3547 |
+
# @ fl-builder
|
3548 |
+
#: modules/post-grid/post-grid.php:109
|
3549 |
+
msgid "Featured Image"
|
3550 |
+
msgstr "Immagine in evidenza"
|
3551 |
+
|
3552 |
+
# @ fl-builder
|
3553 |
+
#: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
|
3554 |
+
#: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
|
3555 |
+
#: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
|
3556 |
+
msgid "Show"
|
3557 |
+
msgstr "Mostra"
|
3558 |
+
|
3559 |
+
# @ fl-builder
|
3560 |
+
#: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
|
3561 |
+
#: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
|
3562 |
+
#: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
|
3563 |
+
msgid "Hide"
|
3564 |
+
msgstr "Nascondi"
|
3565 |
+
|
3566 |
+
# @ fl-builder
|
3567 |
+
#: modules/post-grid/post-grid.php:130
|
3568 |
+
msgid "Above Text"
|
3569 |
+
msgstr "Sopra il testo"
|
3570 |
+
|
3571 |
+
# @ fl-builder
|
3572 |
+
#: modules/post-grid/post-grid.php:131
|
3573 |
+
msgid "Beside Text"
|
3574 |
+
msgstr "Accanto al testo"
|
3575 |
+
|
3576 |
+
# @ fl-builder
|
3577 |
+
#: modules/post-grid/post-grid.php:142
|
3578 |
+
msgid "Post Info"
|
3579 |
+
msgstr "Informazioni post"
|
3580 |
+
|
3581 |
+
# @ fl-builder
|
3582 |
+
#: modules/post-grid/post-grid.php:169
|
3583 |
+
msgid "Date Format"
|
3584 |
+
msgstr "Formato data"
|
3585 |
+
|
3586 |
+
# @ fl-builder
|
3587 |
+
#: modules/post-grid/post-grid.php:185
|
3588 |
+
msgid "Comments"
|
3589 |
+
msgstr "Commenti"
|
3590 |
+
|
3591 |
+
# @ fl-builder
|
3592 |
+
#: modules/post-grid/post-grid.php:213
|
3593 |
+
msgid "More Link"
|
3594 |
+
msgstr "Collegamento \"Leggi tutto\""
|
3595 |
+
|
3596 |
+
# @ fl-builder
|
3597 |
+
#: modules/post-grid/post-grid.php:227
|
3598 |
+
msgid "More Link Text"
|
3599 |
+
msgstr "Testo \"Leggi tutto\""
|
3600 |
+
|
3601 |
+
# @ fl-builder
|
3602 |
+
#: modules/post-grid/post-grid.php:228
|
3603 |
+
msgid "Read More"
|
3604 |
+
msgstr "Leggi tutto"
|
3605 |
+
|
3606 |
+
# @ fl-builder
|
3607 |
+
#: modules/pricing-table/pricing-table.php:14
|
3608 |
+
msgid "Pricing Table"
|
3609 |
+
msgstr "Tabella dei prezzi"
|
3610 |
+
|
3611 |
+
# @ fl-builder
|
3612 |
+
#: modules/pricing-table/pricing-table.php:15
|
3613 |
+
msgid "A simple pricing table generator."
|
3614 |
+
msgstr "Un semplice generatore di tabelle dei prezzi."
|
3615 |
+
|
3616 |
+
# @ fl-builder
|
3617 |
+
#: modules/pricing-table/pricing-table.php:26
|
3618 |
+
msgid "Pricing Boxes"
|
3619 |
+
msgstr "Riquadri dei prezzi"
|
3620 |
+
|
3621 |
+
# @ fl-builder
|
3622 |
+
#: modules/pricing-table/pricing-table.php:33
|
3623 |
+
msgid "Pricing Box"
|
3624 |
+
msgstr "Riquadro prezzo"
|
3625 |
+
|
3626 |
+
# @ fl-builder
|
3627 |
+
#: modules/pricing-table/pricing-table.php:50
|
3628 |
+
msgid "Box Spacing"
|
3629 |
+
msgstr "Spaziatura riquadro"
|
3630 |
+
|
3631 |
+
# @ fl-builder
|
3632 |
+
#: modules/pricing-table/pricing-table.php:53
|
3633 |
+
#: modules/testimonials/testimonials.php:40
|
3634 |
+
msgid "Wide"
|
3635 |
+
msgstr "Ampia"
|
3636 |
+
|
3637 |
+
# @ fl-builder
|
3638 |
+
#: modules/pricing-table/pricing-table.php:54
|
3639 |
+
msgid "Tight"
|
3640 |
+
msgstr "Stretta"
|
3641 |
+
|
3642 |
+
# @ fl-builder
|
3643 |
+
#: modules/pricing-table/pricing-table.php:59
|
3644 |
+
msgid "Features Min Height"
|
3645 |
+
msgstr "Min altezza caratteristiche"
|
3646 |
+
|
3647 |
+
# @ fl-builder
|
3648 |
+
#: modules/pricing-table/pricing-table.php:63
|
3649 |
+
msgid ""
|
3650 |
+
"Use this to normalize the height of your boxes when they have different "
|
3651 |
+
"numbers of features."
|
3652 |
+
msgstr ""
|
3653 |
+
"Usatelo per normalizzare l'altezza dei vostri riquadri quando hanno un "
|
3654 |
+
"diverso numero di funzionalità."
|
3655 |
+
|
3656 |
+
# @ fl-builder
|
3657 |
+
#: modules/pricing-table/pricing-table.php:67
|
3658 |
+
msgid "Border Size"
|
3659 |
+
msgstr "Dimensione bordo"
|
3660 |
+
|
3661 |
+
# @ fl-builder
|
3662 |
+
#: modules/pricing-table/pricing-table.php:70
|
3663 |
+
msgctxt "Border size."
|
3664 |
+
msgid "Wide"
|
3665 |
+
msgstr "Ampio"
|
3666 |
+
|
3667 |
+
# @ fl-builder
|
3668 |
+
#: modules/pricing-table/pricing-table.php:71
|
3669 |
+
msgctxt "Border size."
|
3670 |
+
msgid "Tight"
|
3671 |
+
msgstr "Stretto"
|
3672 |
+
|
3673 |
+
# @ fl-builder
|
3674 |
+
#: modules/pricing-table/pricing-table.php:84
|
3675 |
+
msgid "Add Pricing Box"
|
3676 |
+
msgstr "Aggiungi riquadro prezzo"
|
3677 |
+
|
3678 |
+
# @ fl-builder
|
3679 |
+
#: modules/pricing-table/pricing-table.php:98
|
3680 |
+
msgid "Title Size"
|
3681 |
+
msgstr "Dimensione del titolo"
|
3682 |
+
|
3683 |
+
# @ fl-builder
|
3684 |
+
#: modules/pricing-table/pricing-table.php:107
|
3685 |
+
msgid "Price Box"
|
3686 |
+
msgstr "Riquadro prezzo"
|
3687 |
+
|
3688 |
+
# @ fl-builder
|
3689 |
+
#: modules/pricing-table/pricing-table.php:111
|
3690 |
+
msgid "Price"
|
3691 |
+
msgstr "Prezzo"
|
3692 |
+
|
3693 |
+
# @ fl-builder
|
3694 |
+
#: modules/pricing-table/pricing-table.php:115
|
3695 |
+
msgid "Duration"
|
3696 |
+
msgstr "Durata"
|
3697 |
+
|
3698 |
+
# @ fl-builder
|
3699 |
+
#: modules/pricing-table/pricing-table.php:116
|
3700 |
+
msgid "per Year"
|
3701 |
+
msgstr "per anno"
|
3702 |
+
|
3703 |
+
# @ fl-builder
|
3704 |
+
#: modules/pricing-table/pricing-table.php:120
|
3705 |
+
msgid "Price Size"
|
3706 |
+
msgstr "Dimensione prezzo"
|
3707 |
+
|
3708 |
+
# @ fl-builder
|
3709 |
+
#: modules/pricing-table/pricing-table.php:133
|
3710 |
+
msgid "Button Text"
|
3711 |
+
msgstr "Testo del pulsante "
|
3712 |
+
|
3713 |
+
# @ fl-builder
|
3714 |
+
#: modules/pricing-table/pricing-table.php:137
|
3715 |
+
msgid "Button URL"
|
3716 |
+
msgstr "URL pulsante"
|
3717 |
+
|
3718 |
+
# @ fl-builder
|
3719 |
+
#: modules/pricing-table/pricing-table.php:142
|
3720 |
+
msgctxt "Price features displayed in pricing box."
|
3721 |
+
msgid "Features"
|
3722 |
+
msgstr "Caratteristiche"
|
3723 |
+
|
3724 |
+
# @ fl-builder
|
3725 |
+
#: modules/pricing-table/pricing-table.php:147
|
3726 |
+
msgid "One feature per line. HTML is okay."
|
3727 |
+
msgstr "Una caratteristica per ogni riga. HTML va bene."
|
3728 |
+
|
3729 |
+
# @ fl-builder
|
3730 |
+
#: modules/pricing-table/pricing-table.php:162
|
3731 |
+
msgid "Box Background"
|
3732 |
+
msgstr "Sfondo del box"
|
3733 |
+
|
3734 |
+
# @ fl-builder
|
3735 |
+
#: modules/pricing-table/pricing-table.php:167
|
3736 |
+
msgid "Box Foreground"
|
3737 |
+
msgstr "Riempimento riquadro"
|
3738 |
+
|
3739 |
+
# @ fl-builder
|
3740 |
+
#: modules/pricing-table/pricing-table.php:173
|
3741 |
+
msgid "Accent Color"
|
3742 |
+
msgstr "Colore di accento"
|
3743 |
+
|
3744 |
+
# @ fl-builder
|
3745 |
+
#: modules/pricing-table/pricing-table.php:178
|
3746 |
+
msgid "Accent Text Color"
|
3747 |
+
msgstr "Colore accento del testo"
|
3748 |
+
|
3749 |
+
# @ fl-builder
|
3750 |
+
#: modules/pricing-table/pricing-table.php:182
|
3751 |
+
msgid "Box Top Margin"
|
3752 |
+
msgstr "Margine superiore del box"
|
3753 |
+
|
3754 |
+
# @ fl-builder
|
3755 |
+
#: modules/rich-text/rich-text.php:15
|
3756 |
+
msgid "A WYSIWYG text editor."
|
3757 |
+
msgstr "Un editor di testo WYSIWYG."
|
3758 |
+
|
3759 |
+
# @ fl-builder
|
3760 |
+
#: modules/separator/separator.php:14
|
3761 |
+
msgid "Separator"
|
3762 |
+
msgstr "Separatore"
|
3763 |
+
|
3764 |
+
# @ fl-builder
|
3765 |
+
#: modules/separator/separator.php:15
|
3766 |
+
msgid "A divider line to separate content."
|
3767 |
+
msgstr "Una linea divisore per separare il contenuto."
|
3768 |
+
|
3769 |
+
# @ fl-builder
|
3770 |
+
#: modules/separator/separator.php:85
|
3771 |
+
msgid ""
|
3772 |
+
"The type of border to use. Double borders must have a height of at least 3px "
|
3773 |
+
"to render properly."
|
3774 |
+
msgstr ""
|
3775 |
+
"Il tipo di bordo da utilizzare. I bordi doppi devono avere un'altezza di "
|
3776 |
+
"almeno 3px per essere visualizzati correttamente."
|
3777 |
+
|
3778 |
+
# @ fl-builder
|
3779 |
+
#: modules/sidebar/includes/settings-general.php:5
|
3780 |
+
#: modules/sidebar/sidebar.php:14
|
3781 |
+
msgid "Sidebar"
|
3782 |
+
msgstr "Sidebar"
|
3783 |
+
|
3784 |
+
# @ fl-builder
|
3785 |
+
#: modules/sidebar/sidebar.php:15
|
3786 |
+
msgid ""
|
3787 |
+
"Display a WordPress sidebar that has been registered by the current theme."
|
3788 |
+
msgstr ""
|
3789 |
+
"Mostra una sidebar di WordPress che è stata registrata dal tema corrente."
|
3790 |
+
|
3791 |
+
# @ fl-builder
|
3792 |
+
#: modules/slideshow/slideshow.php:14
|
3793 |
+
msgid "Slideshow"
|
3794 |
+
msgstr "Slideshow"
|
3795 |
+
|
3796 |
+
# @ fl-builder
|
3797 |
+
#: modules/slideshow/slideshow.php:15
|
3798 |
+
msgid "Display multiple photos in a slideshow view."
|
3799 |
+
msgstr "Mostra più foto in uno slideshow."
|
3800 |
+
|
3801 |
+
# @ fl-builder
|
3802 |
+
#: modules/slideshow/slideshow.php:302
|
3803 |
+
msgid "Skin Color"
|
3804 |
+
msgstr "Colore skin"
|
3805 |
+
|
3806 |
+
# @ fl-builder
|
3807 |
+
#: modules/slideshow/slideshow.php:305
|
3808 |
+
msgctxt "Color."
|
3809 |
+
msgid "Light"
|
3810 |
+
msgstr "Chiaro"
|
3811 |
+
|
3812 |
+
# @ fl-builder
|
3813 |
+
#: modules/slideshow/slideshow.php:306
|
3814 |
+
msgctxt "Color."
|
3815 |
+
msgid "Dark"
|
3816 |
+
msgstr "Scuro"
|
3817 |
+
|
3818 |
+
# @ fl-builder
|
3819 |
+
#: modules/slideshow/slideshow.php:308
|
3820 |
+
msgid ""
|
3821 |
+
"If your overall theme/images are lighter in color, light will display "
|
3822 |
+
"buttons in a darker color scheme and vice versa for dark."
|
3823 |
+
msgstr ""
|
3824 |
+
"Se complessivamente il tuo tema/immagini sono di colore chiaro, "
|
3825 |
+
"l'impostazione Chiaro mostrerà i pulsanti con uno schema di colore più scuro "
|
3826 |
+
"e viceversa per l'impostazione Scuro."
|
3827 |
+
|
3828 |
+
# @ fl-builder
|
3829 |
+
#: modules/slideshow/slideshow.php:318
|
3830 |
+
msgid ""
|
3831 |
+
"Crop set to no will fit the slideshow images to the height you specify and "
|
3832 |
+
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
3833 |
+
"images to all sides of the content area while cropping the left and right to "
|
3834 |
+
"fit the height you specify."
|
3835 |
+
msgstr ""
|
3836 |
+
"Ritaglia impostatato su No adatterà le immagini dello slideshow all'altezza "
|
3837 |
+
"che specifichi mantenendo la larghezza in proporzione, mentre Ritaglia "
|
3838 |
+
"impostato su Si adatterà le immagini dello slideshow su tutti i lati "
|
3839 |
+
"dell'area di contenuto tagliando a destra e sinistra per adattarsi "
|
3840 |
+
"all'altezza che specifichi."
|
3841 |
+
|
3842 |
+
# @ fl-builder
|
3843 |
+
#: modules/slideshow/slideshow.php:322
|
3844 |
+
msgid "Disable Right-Click"
|
3845 |
+
msgstr "Disabilitare il tasto destro del mouse"
|
3846 |
+
|
3847 |
+
# @ fl-builder
|
3848 |
+
#: modules/slideshow/slideshow.php:342
|
3849 |
+
msgctxt "Click action type."
|
3850 |
+
msgid "None"
|
3851 |
+
msgstr "Nessuna"
|
3852 |
+
|
3853 |
+
# @ fl-builder
|
3854 |
+
#: modules/slideshow/slideshow.php:366
|
3855 |
+
msgid "Playback"
|
3856 |
+
msgstr "Riproduzione"
|
3857 |
+
|
3858 |
+
# @ fl-builder
|
3859 |
+
#: modules/slideshow/slideshow.php:392
|
3860 |
+
msgctxt "Slideshow transition."
|
3861 |
+
msgid "None"
|
3862 |
+
msgstr "Nessuna"
|
3863 |
+
|
3864 |
+
# @ fl-builder
|
3865 |
+
#: modules/slideshow/slideshow.php:429
|
3866 |
+
msgid "Controls"
|
3867 |
+
msgstr "Controlli"
|
3868 |
+
|
3869 |
+
# @ fl-builder
|
3870 |
+
#: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
|
3871 |
+
msgid "Navigation Arrows"
|
3872 |
+
msgstr "Frecce di navigazione"
|
3873 |
+
|
3874 |
+
# @ fl-builder
|
3875 |
+
#: modules/slideshow/slideshow.php:442
|
3876 |
+
msgid ""
|
3877 |
+
"Navigational arrows allow the visitor to freely move through the images in "
|
3878 |
+
"your slideshow. These are larger arrows that overlay your slideshow images "
|
3879 |
+
"and are separate from the control bar navigational arrows."
|
3880 |
+
msgstr ""
|
3881 |
+
"Le frecce di navigazione permettono al visitatore di muoversi liberamente "
|
3882 |
+
"tra le immagini nella presentazione. Queste sono grandi frecce sovrapposte "
|
3883 |
+
"alle immagini dello slideshow che sono separate dalle frecce di navigazione "
|
3884 |
+
"nella barra di controllo."
|
3885 |
+
|
3886 |
+
# @ fl-builder
|
3887 |
+
#: modules/slideshow/slideshow.php:447
|
3888 |
+
msgid "Control Bar"
|
3889 |
+
msgstr "Barra di controllo"
|
3890 |
+
|
3891 |
+
# @ fl-builder
|
3892 |
+
#: modules/slideshow/slideshow.php:451
|
3893 |
+
msgid "Nav Type"
|
3894 |
+
msgstr "Tipo di navigazione"
|
3895 |
+
|
3896 |
+
# @ fl-builder
|
3897 |
+
#: modules/slideshow/slideshow.php:454
|
3898 |
+
msgctxt "Nav type."
|
3899 |
+
msgid "None"
|
3900 |
+
msgstr "Nessuna"
|
3901 |
+
|
3902 |
+
# @ fl-builder
|
3903 |
+
#: modules/slideshow/slideshow.php:455
|
3904 |
+
msgid "Buttons"
|
3905 |
+
msgstr "Pulsanti"
|
3906 |
+
|
3907 |
+
# @ fl-builder
|
3908 |
+
#: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
|
3909 |
+
msgid "Thumbs"
|
3910 |
+
msgstr "Miniature"
|
3911 |
+
|
3912 |
+
# @ fl-builder
|
3913 |
+
#: modules/slideshow/slideshow.php:471
|
3914 |
+
msgid "Nav Position"
|
3915 |
+
msgstr "Posizione della navigazione"
|
3916 |
+
|
3917 |
+
# @ fl-builder
|
3918 |
+
#: modules/slideshow/slideshow.php:481
|
3919 |
+
msgid "Control Bar Buttons"
|
3920 |
+
msgstr "Pulsanti in barra di controllo"
|
3921 |
+
|
3922 |
+
# @ fl-builder
|
3923 |
+
#: modules/slideshow/slideshow.php:494
|
3924 |
+
msgid "Play Button"
|
3925 |
+
msgstr "Pulsante Play"
|
3926 |
+
|
3927 |
+
# @ fl-builder
|
3928 |
+
#: modules/slideshow/slideshow.php:503
|
3929 |
+
msgid "Fullscreen Button"
|
3930 |
+
msgstr "Pulsante FullScreen"
|
3931 |
+
|
3932 |
+
# @ fl-builder
|
3933 |
+
#: modules/slideshow/slideshow.php:512
|
3934 |
+
msgid "Photo Count"
|
3935 |
+
msgstr "Contatore foto"
|
3936 |
+
|
3937 |
+
# @ fl-builder
|
3938 |
+
#: modules/slideshow/slideshow.php:521
|
3939 |
+
msgid "Thumbs Button"
|
3940 |
+
msgstr "Pulsante miniatura"
|
3941 |
+
|
3942 |
+
# @ fl-builder
|
3943 |
+
#: modules/slideshow/slideshow.php:530
|
3944 |
+
msgid "Caption Button"
|
3945 |
+
msgstr "Pulsante didascalia"
|
3946 |
+
|
3947 |
+
# @ fl-builder
|
3948 |
+
#: modules/slideshow/slideshow.php:539
|
3949 |
+
msgid "Social Button"
|
3950 |
+
msgstr "Pulsante sociale"
|
3951 |
+
|
3952 |
+
# @ fl-builder
|
3953 |
+
#: modules/slideshow/slideshow.php:549
|
3954 |
+
msgid "Control Bar Overlay"
|
3955 |
+
msgstr "Sovrapposizione della barra di controllo"
|
3956 |
+
|
3957 |
+
# @ fl-builder
|
3958 |
+
#: modules/slideshow/slideshow.php:553
|
3959 |
+
msgid "Overlay Enabled"
|
3960 |
+
msgstr "Sovrapposizione abilitata"
|
3961 |
+
|
3962 |
+
# @ fl-builder
|
3963 |
+
#: modules/slideshow/slideshow.php:564
|
3964 |
+
msgid ""
|
3965 |
+
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
3966 |
+
"your slideshow images or site below the slideshow completely."
|
3967 |
+
msgstr ""
|
3968 |
+
"La sovrapposizione della barra di controllo specifica se i pulsanti della "
|
3969 |
+
"barra controllo che scegliete saranno sovrapposti alle immagini dello "
|
3970 |
+
"slideshow o se saranno collocati sotto lo slideshow."
|
3971 |
+
|
3972 |
+
# @ fl-builder
|
3973 |
+
#: modules/slideshow/slideshow.php:568
|
3974 |
+
msgid "Overlay Hide"
|
3975 |
+
msgstr "Nascondi overlay"
|
3976 |
+
|
3977 |
+
# @ fl-builder
|
3978 |
+
#: modules/slideshow/slideshow.php:574
|
3979 |
+
msgid ""
|
3980 |
+
"Overlay hide will hide the control bar after however many seconds you "
|
3981 |
+
"specify below. They will reappear upon mouse over."
|
3982 |
+
msgstr ""
|
3983 |
+
"Nascondi overlay nasconde la barra di controllo dopo un certo numero di "
|
3984 |
+
"secondi specificato qui sotto. Essa riapparirà passando sopra con il mouse."
|
3985 |
+
|
3986 |
+
# @ fl-builder
|
3987 |
+
#: modules/slideshow/slideshow.php:578
|
3988 |
+
msgid "Overlay Hide Delay"
|
3989 |
+
msgstr "Ritardo nascondi overlay"
|
3990 |
+
|
3991 |
+
# @ fl-builder
|
3992 |
+
#: modules/slideshow/slideshow.php:590
|
3993 |
+
msgid "Thumbs Size"
|
3994 |
+
msgstr "Dimensione miniature"
|
3995 |
+
|
3996 |
+
# @ fl-builder
|
3997 |
+
#: modules/slideshow/slideshow.php:599
|
3998 |
+
msgid "Social"
|
3999 |
+
msgstr "Social"
|
4000 |
+
|
4001 |
+
# @ fl-builder
|
4002 |
+
#: modules/slideshow/slideshow.php:603
|
4003 |
+
msgid "Facebook Button"
|
4004 |
+
msgstr "Pulsante Facebook"
|
4005 |
+
|
4006 |
+
# @ fl-builder
|
4007 |
+
#: modules/slideshow/slideshow.php:615
|
4008 |
+
msgid "Twitter Button"
|
4009 |
+
msgstr "Pulsante Twitter"
|
4010 |
+
|
4011 |
+
# @ fl-builder
|
4012 |
+
#: modules/slideshow/slideshow.php:627
|
4013 |
+
msgid "Google Plus Button"
|
4014 |
+
msgstr "Pulsante Google Plus"
|
4015 |
+
|
4016 |
+
# @ fl-builder
|
4017 |
+
#: modules/slideshow/slideshow.php:639
|
4018 |
+
msgid "Pinterest Button"
|
4019 |
+
msgstr "Pulsante Pinterest"
|
4020 |
+
|
4021 |
+
# @ fl-builder
|
4022 |
+
#: modules/social-buttons/social-buttons.php:14
|
4023 |
+
msgid "Social Buttons"
|
4024 |
+
msgstr "Pulsanti Social"
|
4025 |
+
|
4026 |
+
# @ fl-builder
|
4027 |
+
#: modules/social-buttons/social-buttons.php:15
|
4028 |
+
msgid "Displays social buttons."
|
4029 |
+
msgstr "Mostra i pulsanti sociali."
|
4030 |
+
|
4031 |
+
# @ fl-builder
|
4032 |
+
#: modules/social-buttons/social-buttons.php:71
|
4033 |
+
msgid "Target URL"
|
4034 |
+
msgstr "URL di destinazione"
|
4035 |
+
|
4036 |
+
# @ fl-builder
|
4037 |
+
#: modules/social-buttons/social-buttons.php:75
|
4038 |
+
msgid "Current Page"
|
4039 |
+
msgstr "Pagina corrente"
|
4040 |
+
|
4041 |
+
# @ fl-builder
|
4042 |
+
#: modules/social-buttons/social-buttons.php:82
|
4043 |
+
msgid ""
|
4044 |
+
"The Target URL field correlates to the page you would like your social icons "
|
4045 |
+
"to interface with. For example, if you show Facebook, the user will \"Like\" "
|
4046 |
+
"whatever you put in this field."
|
4047 |
+
msgstr ""
|
4048 |
+
"Il campo URL di destinazione è correlato alla pagina con cui vuoi "
|
4049 |
+
"interfacciare le tue icone social. Ad esempio, se si visualizza Facebook, "
|
4050 |
+
"l'utente farà \"Like\" su ciò che hai inserito in questo campo."
|
4051 |
+
|
4052 |
+
# @ fl-builder
|
4053 |
+
#: modules/social-buttons/social-buttons.php:89
|
4054 |
+
msgid "Custom URL"
|
4055 |
+
msgstr "URL personalizzato"
|
4056 |
+
|
4057 |
+
# @ fl-builder
|
4058 |
+
#: modules/social-buttons/social-buttons.php:107
|
4059 |
+
msgid "Show Facebook"
|
4060 |
+
msgstr "Mostra Facebook"
|
4061 |
+
|
4062 |
+
# @ fl-builder
|
4063 |
+
#: modules/social-buttons/social-buttons.php:116
|
4064 |
+
msgid "Show Twitter"
|
4065 |
+
msgstr "Mostra Twitter"
|
4066 |
+
|
4067 |
+
# @ fl-builder
|
4068 |
+
#: modules/social-buttons/social-buttons.php:125
|
4069 |
+
msgid "Show Google+"
|
4070 |
+
msgstr "Mostra Google+"
|
4071 |
+
|
4072 |
+
# @ fl-builder
|
4073 |
+
#: modules/tabs/tabs.php:14
|
4074 |
+
msgid "Tabs"
|
4075 |
+
msgstr "Schede"
|
4076 |
+
|
4077 |
+
# @ fl-builder
|
4078 |
+
#: modules/tabs/tabs.php:15
|
4079 |
+
msgid "Display a collection of tabbed content."
|
4080 |
+
msgstr "Mostra una raccolta di contenuti a schede."
|
4081 |
+
|
4082 |
+
# @ fl-builder
|
4083 |
+
#: modules/tabs/tabs.php:55
|
4084 |
+
msgid "Horizontal"
|
4085 |
+
msgstr "Orizzontale"
|
4086 |
+
|
4087 |
+
# @ fl-builder
|
4088 |
+
#: modules/tabs/tabs.php:56
|
4089 |
+
msgid "Vertical"
|
4090 |
+
msgstr "Verticale"
|
4091 |
+
|
4092 |
+
# @ fl-builder
|
4093 |
+
#: modules/testimonials/testimonials.php:14
|
4094 |
+
#: modules/testimonials/testimonials.php:60
|
4095 |
+
#: modules/testimonials/testimonials.php:174
|
4096 |
+
msgid "Testimonials"
|
4097 |
+
msgstr "Testimonianze"
|
4098 |
+
|
4099 |
+
# @ fl-builder
|
4100 |
+
#: modules/testimonials/testimonials.php:15
|
4101 |
+
msgid "An animated tesimonials area."
|
4102 |
+
msgstr "Un'area animata per i testimonials."
|
4103 |
+
|
4104 |
+
# @ fl-builder
|
4105 |
+
#: modules/testimonials/testimonials.php:41
|
4106 |
+
msgid "Compact"
|
4107 |
+
msgstr "Compatto"
|
4108 |
+
|
4109 |
+
# @ fl-builder
|
4110 |
+
#: modules/testimonials/testimonials.php:51
|
4111 |
+
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
4112 |
+
msgstr "Ampia è per righe con 1 colonna, compatta è per righe multi-colonna."
|
4113 |
+
|
4114 |
+
# @ fl-builder
|
4115 |
+
#: modules/testimonials/testimonials.php:78
|
4116 |
+
msgid "Slider Settings"
|
4117 |
+
msgstr "Impostazioni Slider"
|
4118 |
+
|
4119 |
+
# @ fl-builder
|
4120 |
+
#: modules/testimonials/testimonials.php:135
|
4121 |
+
msgid "Arrow Color"
|
4122 |
+
msgstr "Colore freccia "
|
4123 |
+
|
4124 |
+
# @ fl-builder
|
4125 |
+
#: modules/testimonials/testimonials.php:165
|
4126 |
+
msgid "Dot Color"
|
4127 |
+
msgstr "Colore punto"
|
4128 |
+
|
4129 |
+
# @ fl-builder
|
4130 |
+
#: modules/testimonials/testimonials.php:181
|
4131 |
+
msgid "Testimonial"
|
4132 |
+
msgstr "Testimonial"
|
4133 |
+
|
4134 |
+
# @ fl-builder
|
4135 |
+
#: modules/testimonials/testimonials.php:197
|
4136 |
+
msgid "Add Testimonial"
|
4137 |
+
msgstr "Aggiungi Testimonial"
|
4138 |
+
|
4139 |
+
# @ fl-builder
|
4140 |
+
#: modules/video/video.php:20
|
4141 |
+
msgid "Render a WordPress or embedable video."
|
4142 |
+
msgstr "Visualizza un video caricato in WordPress o embed."
|
4143 |
+
|
4144 |
+
# @ fl-builder
|
4145 |
+
#: modules/video/video.php:83
|
4146 |
+
msgid "Video Type"
|
4147 |
+
msgstr "Tipo di video"
|
4148 |
+
|
4149 |
+
# @ fl-builder
|
4150 |
+
#: modules/video/video.php:87
|
4151 |
+
msgid "Embed"
|
4152 |
+
msgstr "Embed"
|
4153 |
+
|
4154 |
+
# @ fl-builder
|
4155 |
+
#: modules/video/video.php:104
|
4156 |
+
msgctxt "Video preview/fallback image."
|
4157 |
+
msgid "Poster"
|
4158 |
+
msgstr "Poster"
|
4159 |
+
|
4160 |
+
# @ fl-builder
|
4161 |
+
#: modules/video/video.php:120
|
4162 |
+
msgid "Loop"
|
4163 |
+
msgstr "Ripeti"
|
4164 |
+
|
4165 |
+
# @ fl-builder
|
4166 |
+
#: modules/widget/includes/frontend.php:35
|
4167 |
+
#: modules/widget/includes/settings-general.php:44
|
4168 |
+
#, php-format
|
4169 |
+
msgctxt "%s stands for widget slug."
|
4170 |
+
msgid "%s no longer exists."
|
4171 |
+
msgstr "%s non esiste più."
|
4172 |
+
|
4173 |
+
# @ fl-builder
|
4174 |
+
#: modules/widget/widget.php:14
|
4175 |
+
msgid "Widget"
|
4176 |
+
msgstr "Widget"
|
4177 |
+
|
4178 |
+
# @ fl-builder
|
4179 |
+
#: modules/widget/widget.php:15
|
4180 |
+
msgid "Display a WordPress widget."
|
4181 |
+
msgstr "Mostra un widget di WordPress."
|
4182 |
+
|
4183 |
+
# @ fl-builder
|
4184 |
+
#: modules/woocommerce/woocommerce.php:16
|
4185 |
+
msgid "WooCommerce"
|
4186 |
+
msgstr "WooCommerce"
|
4187 |
+
|
4188 |
+
# @ fl-builder
|
4189 |
+
#: modules/woocommerce/woocommerce.php:17
|
4190 |
+
msgid "Display products or categories from your WooCommerce store."
|
4191 |
+
msgstr "Mostra prodotti o categorie dal tuo negozio WooCommerce."
|
4192 |
+
|
4193 |
+
# @ fl-builder
|
4194 |
+
#: modules/woocommerce/woocommerce.php:60
|
4195 |
+
msgid "Choose..."
|
4196 |
+
msgstr "Scegli..."
|
4197 |
+
|
4198 |
+
# @ fl-builder
|
4199 |
+
#: modules/woocommerce/woocommerce.php:61
|
4200 |
+
msgid "Single Product"
|
4201 |
+
msgstr "Singolo prodotto"
|
4202 |
+
|
4203 |
+
# @ fl-builder
|
4204 |
+
#: modules/woocommerce/woocommerce.php:62
|
4205 |
+
#: modules/woocommerce/woocommerce.php:113
|
4206 |
+
msgid "Multiple Products"
|
4207 |
+
msgstr "Prodotti multipli"
|
4208 |
+
|
4209 |
+
# @ fl-builder
|
4210 |
+
#: modules/woocommerce/woocommerce.php:63
|
4211 |
+
msgid "\"Add to Cart\" Button"
|
4212 |
+
msgstr "Pulsante \"Aggiungi al carrello\""
|
4213 |
+
|
4214 |
+
# @ fl-builder
|
4215 |
+
#: modules/woocommerce/woocommerce.php:64
|
4216 |
+
msgid "Categories"
|
4217 |
+
msgstr "Categorie"
|
4218 |
+
|
4219 |
+
# @ fl-builder
|
4220 |
+
#: modules/woocommerce/woocommerce.php:65
|
4221 |
+
msgid "Cart"
|
4222 |
+
msgstr "Carrello"
|
4223 |
+
|
4224 |
+
# @ fl-builder
|
4225 |
+
#: modules/woocommerce/woocommerce.php:66
|
4226 |
+
msgid "Checkout"
|
4227 |
+
msgstr "Checkout"
|
4228 |
+
|
4229 |
+
# @ fl-builder
|
4230 |
+
#: modules/woocommerce/woocommerce.php:67
|
4231 |
+
msgid "Order Tracking"
|
4232 |
+
msgstr "Tracciabilità ordine"
|
4233 |
+
|
4234 |
+
# @ fl-builder
|
4235 |
+
#: modules/woocommerce/woocommerce.php:68
|
4236 |
+
msgid "My Account"
|
4237 |
+
msgstr "Il mio Account"
|
4238 |
+
|
4239 |
+
# @ fl-builder
|
4240 |
+
#: modules/woocommerce/woocommerce.php:87
|
4241 |
+
msgid "Product ID"
|
4242 |
+
msgstr "ID prodotto"
|
4243 |
+
|
4244 |
+
# @ fl-builder
|
4245 |
+
#: modules/woocommerce/woocommerce.php:90
|
4246 |
+
msgid ""
|
4247 |
+
"As you add products in the WooCommerce Products area, each will be assigned "
|
4248 |
+
"a unique ID. You can find this unique product ID by visiting the Products "
|
4249 |
+
"area and rolling over the product. The unique ID will be the first attribute."
|
4250 |
+
msgstr ""
|
4251 |
+
"Quando si aggiungono prodotti nell'area prodotti WooCommerce, ad ognuno "
|
4252 |
+
"verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico "
|
4253 |
+
"visitando l'area prodotti e passando il mouse sopra al prodotto. L'ID "
|
4254 |
+
"univoco sarà il primo attributo."
|
4255 |
+
|
4256 |
+
# @ fl-builder
|
4257 |
+
#: modules/woocommerce/woocommerce.php:94
|
4258 |
+
msgid "Parent Category ID"
|
4259 |
+
msgstr "ID categoria genitore"
|
4260 |
+
|
4261 |
+
# @ fl-builder
|
4262 |
+
#: modules/woocommerce/woocommerce.php:97
|
4263 |
+
msgid ""
|
4264 |
+
"As you add product categories in the WooCommerce Products area, each will be "
|
4265 |
+
"assigned a unique ID. This ID can be found by hovering on the category in "
|
4266 |
+
"the categories area under Products and looking in the URL that is displayed "
|
4267 |
+
"in your browser. The ID will be the only number value in the URL."
|
4268 |
+
msgstr ""
|
4269 |
+
"Quando si aggiungono categorie di prodotto nell'area prodotti WooCommerce, a "
|
4270 |
+
"ciascuna verrà assegnato un ID univoco. Questo ID è reperibile passando il "
|
4271 |
+
"mouse sulla categoria nell'area categorie sotto Prodotti e guardando l'URL "
|
4272 |
+
"visualizzato nel browser. L'ID sarà l'unico valore numerico nell'URL."
|
4273 |
+
|
4274 |
+
# @ fl-builder
|
4275 |
+
#: modules/woocommerce/woocommerce.php:101
|
4276 |
+
#: modules/woocommerce/woocommerce.php:172
|
4277 |
+
msgid "Columns"
|
4278 |
+
msgstr "Colonne"
|
4279 |
+
|
4280 |
+
# @ fl-builder
|
4281 |
+
#: modules/woocommerce/woocommerce.php:117
|
4282 |
+
msgid "Products Source"
|
4283 |
+
msgstr "Sorgente prodotti"
|
4284 |
+
|
4285 |
+
# @ fl-builder
|
4286 |
+
#: modules/woocommerce/woocommerce.php:120
|
4287 |
+
msgid "Products IDs"
|
4288 |
+
msgstr "ID prodotti "
|
4289 |
+
|
4290 |
+
# @ fl-builder
|
4291 |
+
#: modules/woocommerce/woocommerce.php:121
|
4292 |
+
msgid "Product Category"
|
4293 |
+
msgstr "Categoria prodotto"
|
4294 |
+
|
4295 |
+
# @ fl-builder
|
4296 |
+
#: modules/woocommerce/woocommerce.php:122
|
4297 |
+
msgid "Recent Products"
|
4298 |
+
msgstr "Prodotti recenti"
|
4299 |
+
|
4300 |
+
# @ fl-builder
|
4301 |
+
#: modules/woocommerce/woocommerce.php:123
|
4302 |
+
msgid "Featured Products"
|
4303 |
+
msgstr "Prodotti in vetrina"
|
4304 |
+
|
4305 |
+
# @ fl-builder
|
4306 |
+
#: modules/woocommerce/woocommerce.php:124
|
4307 |
+
msgid "Sale Products"
|
4308 |
+
msgstr "Prodotti in offerta"
|
4309 |
+
|
4310 |
+
# @ fl-builder
|
4311 |
+
#: modules/woocommerce/woocommerce.php:125
|
4312 |
+
msgid "Best Selling Products"
|
4313 |
+
msgstr "Prodotti più venduti"
|
4314 |
+
|
4315 |
+
# @ fl-builder
|
4316 |
+
#: modules/woocommerce/woocommerce.php:126
|
4317 |
+
msgid "Top Rated Products"
|
4318 |
+
msgstr "Prodotti più votati"
|
4319 |
+
|
4320 |
+
# @ fl-builder
|
4321 |
+
#: modules/woocommerce/woocommerce.php:154
|
4322 |
+
msgid "Product IDs"
|
4323 |
+
msgstr "ID prodotti"
|
4324 |
+
|
4325 |
+
# @ fl-builder
|
4326 |
+
#: modules/woocommerce/woocommerce.php:156
|
4327 |
+
msgid ""
|
4328 |
+
"As you add products in the WooCommerce Products area, each will be assigned "
|
4329 |
+
"a unique ID. You can find this unique product ID by visiting the Products "
|
4330 |
+
"area and rolling over the product. The unique ID will be the first attribute "
|
4331 |
+
"and you can add several here separated by a comma."
|
4332 |
+
msgstr ""
|
4333 |
+
"Quando si aggiungono prodotti nell'area prodotti WooCommerce, a ciascuno "
|
4334 |
+
"verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico "
|
4335 |
+
"visitando l'area prodotti e toccando con il mouse il prodotto. L'ID univoco "
|
4336 |
+
"sarà il primo attributo, qui è possibile aggiungere diversi ID separati da "
|
4337 |
+
"una virgola."
|
4338 |
+
|
4339 |
+
# @ fl-builder
|
4340 |
+
#: modules/woocommerce/woocommerce.php:160
|
4341 |
+
msgid "Category Slug"
|
4342 |
+
msgstr "Slug della categoria "
|
4343 |
+
|
4344 |
+
# @ fl-builder
|
4345 |
+
#: modules/woocommerce/woocommerce.php:162
|
4346 |
+
msgid ""
|
4347 |
+
"As you add product categories in the WooCommerce Products area, each will be "
|
4348 |
+
"assigned a unique slug or you can edit and add your own. These slugs can be "
|
4349 |
+
"found in the Categories area under WooCommerce Products. Several can be "
|
4350 |
+
"added here separated by a comma."
|
4351 |
+
msgstr ""
|
4352 |
+
"Quando si aggiungono le categorie di prodotto nell'area prodotti "
|
4353 |
+
"WooCommerce, a ciasuna verrà assegnato uno slug univoco o è possibile "
|
4354 |
+
"modificare e aggiungere il proprio. Questi slug si possono trovare nell'area "
|
4355 |
+
"categorie sotto prodotti WooCommerce. Qui puoi aggiungerne diversi separati "
|
4356 |
+
"da una virgola."
|
4357 |
+
|
4358 |
+
# @ fl-builder
|
4359 |
+
#: modules/woocommerce/woocommerce.php:166
|
4360 |
+
msgid "Number of Products"
|
4361 |
+
msgstr "Numero di prodotti"
|
4362 |
+
|
4363 |
+
# @ fl-builder
|
4364 |
+
#: modules/woocommerce/woocommerce.php:183
|
4365 |
+
msgid "Sort By"
|
4366 |
+
msgstr "Ordina per"
|
4367 |
+
|
4368 |
+
# @ fl-builder
|
4369 |
+
#: modules/woocommerce/woocommerce.php:186
|
4370 |
+
msgctxt "Sort by."
|
4371 |
+
msgid "Default"
|
4372 |
+
msgstr "Predefinito"
|
4373 |
+
|
4374 |
+
# @ fl-builder
|
4375 |
+
#: modules/woocommerce/woocommerce.php:187
|
4376 |
+
msgid "Popularity"
|
4377 |
+
msgstr "Popolarità"
|
4378 |
+
|
4379 |
+
# @ fl-builder
|
4380 |
+
#: modules/woocommerce/woocommerce.php:188
|
4381 |
+
msgid "Rating"
|
4382 |
+
msgstr "Valutazione"
|
4383 |
+
|
4384 |
+
# @ fl-builder
|
4385 |
+
#: modules/woocommerce/woocommerce.php:190
|
4386 |
+
msgid "Price: Low to High"
|
4387 |
+
msgstr "Prezzo: da basso a alto"
|
4388 |
+
|
4389 |
+
# @ fl-builder
|
4390 |
+
#: modules/woocommerce/woocommerce.php:191
|
4391 |
+
msgid "Price: High to Low"
|
4392 |
+
msgstr "Prezzo: da alto a basso"
|
languages/pt_BR.mo
ADDED
Binary file
|
languages/pt_BR.po
ADDED
@@ -0,0 +1,4152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Beaver Builder Plugin (Developer Version) v1.4.5\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2015-02-02 20:33:26+0000\n"
|
7 |
+
"Last-Translator: developer <contato@favolla.com.br>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: CSL v1.x\n"
|
14 |
+
"X-Poedit-Language: Portuguese\n"
|
15 |
+
"X-Poedit-Country: BRAZIL\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: ../\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: classes/class-fl-builder-admin.php:39
|
24 |
+
#, php-format
|
25 |
+
#@ fl-builder
|
26 |
+
msgid "This version of the <strong>Page Builder</strong> plugin is not compatible with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version of this plugin."
|
27 |
+
msgstr "Esta versão do plugin<strong>Construtor de Páginas</strong> não é compatível com o WordPress Multisite. <a%s>Por favor, atualize</a> para a versão Multisite do plugin."
|
28 |
+
|
29 |
+
#: classes/class-fl-builder-admin.php:49
|
30 |
+
#@ fl-builder
|
31 |
+
msgid "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update WordPress before activating the plugin."
|
32 |
+
msgstr "O plugin <strong>Construtor de Páginas</strong> requer WordPress versão 3.5 ou superior. Por favor, atualize seu WordPress antes de ativar o plugin."
|
33 |
+
|
34 |
+
#: classes/class-fl-builder-admin.php:90
|
35 |
+
#, php-format
|
36 |
+
#@ fl-builder
|
37 |
+
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
38 |
+
msgstr "Construtor de Páginas ativado! <a%s>Clique aqui</a> para habilitar atualizações remotas."
|
39 |
+
|
40 |
+
#: classes/class-fl-builder-admin.php:184
|
41 |
+
#@ fl-builder
|
42 |
+
msgctxt "Plugin action link label."
|
43 |
+
msgid "Upgrade"
|
44 |
+
msgstr "Atualizar"
|
45 |
+
|
46 |
+
#: classes/class-fl-builder-admin.php:197
|
47 |
+
#: classes/class-fl-builder-model.php:2437
|
48 |
+
#@ fl-builder
|
49 |
+
msgid "Page Builder"
|
50 |
+
msgstr "Construtor de Páginas"
|
51 |
+
|
52 |
+
#: classes/class-fl-builder-model.php:1852
|
53 |
+
#, php-format
|
54 |
+
#@ fl-builder
|
55 |
+
msgctxt "%s stands for post/page title."
|
56 |
+
msgid "Copy of %s"
|
57 |
+
msgstr "Cópia de %s"
|
58 |
+
|
59 |
+
#: classes/class-fl-builder-photo.php:75
|
60 |
+
#@ fl-builder
|
61 |
+
msgctxt "Image size."
|
62 |
+
msgid "Full Size"
|
63 |
+
msgstr "Tamanho Completo"
|
64 |
+
|
65 |
+
#: classes/class-fl-builder-photo.php:76
|
66 |
+
#@ fl-builder
|
67 |
+
msgctxt "Image size."
|
68 |
+
msgid "Large"
|
69 |
+
msgstr "Grande"
|
70 |
+
|
71 |
+
#: classes/class-fl-builder-photo.php:77
|
72 |
+
#@ fl-builder
|
73 |
+
msgctxt "Image size."
|
74 |
+
msgid "Medium"
|
75 |
+
msgstr "Médio"
|
76 |
+
|
77 |
+
#: classes/class-fl-builder-photo.php:78
|
78 |
+
#@ fl-builder
|
79 |
+
msgctxt "Image size."
|
80 |
+
msgid "Thumbnail"
|
81 |
+
msgstr "Thumbnail"
|
82 |
+
|
83 |
+
#: classes/class-fl-builder.php:699
|
84 |
+
#, php-format
|
85 |
+
#@ fl-builder
|
86 |
+
msgctxt "Field name to add."
|
87 |
+
msgid "Add %s"
|
88 |
+
msgstr "Adicionar %s"
|
89 |
+
|
90 |
+
#: classes/class-fl-builder.php:762
|
91 |
+
#: classes/class-fl-builder.php:764
|
92 |
+
#@ fl-builder
|
93 |
+
msgctxt "Custom post type label."
|
94 |
+
msgid "Layout Templates"
|
95 |
+
msgstr "Templates de Layout"
|
96 |
+
|
97 |
+
#: classes/class-fl-builder.php:763
|
98 |
+
#: classes/class-fl-builder.php:765
|
99 |
+
#@ fl-builder
|
100 |
+
msgctxt "Custom post type label."
|
101 |
+
msgid "Layout Template"
|
102 |
+
msgstr "Template de Layout"
|
103 |
+
|
104 |
+
#: classes/class-fl-builder.php:766
|
105 |
+
#@ fl-builder
|
106 |
+
msgctxt "Custom post type label."
|
107 |
+
msgid "Add New"
|
108 |
+
msgstr "Adicionar Novo"
|
109 |
+
|
110 |
+
#: classes/class-fl-builder.php:767
|
111 |
+
#@ fl-builder
|
112 |
+
msgctxt "Custom post type label."
|
113 |
+
msgid "Add New Layout Template"
|
114 |
+
msgstr "Adicionar Novo Template de Layout"
|
115 |
+
|
116 |
+
#: classes/class-fl-builder.php:768
|
117 |
+
#@ fl-builder
|
118 |
+
msgctxt "Custom post type label."
|
119 |
+
msgid "New Layout Template"
|
120 |
+
msgstr "Novo Template de Layout"
|
121 |
+
|
122 |
+
#: classes/class-fl-builder.php:769
|
123 |
+
#@ fl-builder
|
124 |
+
msgctxt "Custom post type label."
|
125 |
+
msgid "Edit Layout Template"
|
126 |
+
msgstr "Editar Template de Layout"
|
127 |
+
|
128 |
+
#: classes/class-fl-builder.php:770
|
129 |
+
#@ fl-builder
|
130 |
+
msgctxt "Custom post type label."
|
131 |
+
msgid "View Layout Template"
|
132 |
+
msgstr "Ver Template de Layout"
|
133 |
+
|
134 |
+
#: classes/class-fl-builder.php:771
|
135 |
+
#@ fl-builder
|
136 |
+
msgctxt "Custom post type label."
|
137 |
+
msgid "All Layout Templates"
|
138 |
+
msgstr "Todos os Templates de Layout"
|
139 |
+
|
140 |
+
#: classes/class-fl-builder.php:772
|
141 |
+
#@ fl-builder
|
142 |
+
msgctxt "Custom post type label."
|
143 |
+
msgid "Search Layout Templates"
|
144 |
+
msgstr "Pesquisar Templates de Layout"
|
145 |
+
|
146 |
+
#: classes/class-fl-builder.php:773
|
147 |
+
#@ fl-builder
|
148 |
+
msgctxt "Custom post type label."
|
149 |
+
msgid "Parent Layout Templates:"
|
150 |
+
msgstr "Template de Layout Pai:"
|
151 |
+
|
152 |
+
#: classes/class-fl-builder.php:774
|
153 |
+
#@ fl-builder
|
154 |
+
msgctxt "Custom post type label."
|
155 |
+
msgid "No layout templates found."
|
156 |
+
msgstr "Nenhum template de layout encontrado."
|
157 |
+
|
158 |
+
#: classes/class-fl-builder.php:775
|
159 |
+
#@ fl-builder
|
160 |
+
msgctxt "Custom post type label."
|
161 |
+
msgid "No layout templates found in Trash."
|
162 |
+
msgstr "Nenhum template de layout encontrado na Lixeira."
|
163 |
+
|
164 |
+
#: classes/class-fl-builder.php:1113
|
165 |
+
#: includes/js-config.php:58
|
166 |
+
#, php-format
|
167 |
+
#@ fl-builder
|
168 |
+
msgctxt "%s stands for module name."
|
169 |
+
msgid "%s Settings"
|
170 |
+
msgstr "%s - Configurações"
|
171 |
+
|
172 |
+
#: includes/admin-branding.php:3
|
173 |
+
#: includes/admin-settings.php:36
|
174 |
+
#@ fl-builder
|
175 |
+
msgid "Branding"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/admin-branding.php:11
|
179 |
+
#@ fl-builder
|
180 |
+
msgid "White label the page builder by entering a custom name below."
|
181 |
+
msgstr "Customize a marca do Construtor de Páginas inserindo um nome customizado abaixo."
|
182 |
+
|
183 |
+
#: includes/admin-branding.php:14
|
184 |
+
#@ fl-builder
|
185 |
+
msgid "Additionally, you may also add a custom icon by entering the URL of an image below. Leave the field blank if you do not wish to use an icon."
|
186 |
+
msgstr "Adicionalmente, você pode também adicionar um ícone customizado inserindo a url de uma imagem abaixo. Deixe o campo em branco se você não deseja usar um ícone."
|
187 |
+
|
188 |
+
#: includes/admin-branding.php:18
|
189 |
+
#@ fl-builder
|
190 |
+
msgid "Save Branding"
|
191 |
+
msgstr "Salvar Branding"
|
192 |
+
|
193 |
+
#: includes/admin-posts.php:3
|
194 |
+
#: modules/rich-text/rich-text.php:14
|
195 |
+
#@ fl-builder
|
196 |
+
msgid "Text Editor"
|
197 |
+
msgstr "Editor de Texto"
|
198 |
+
|
199 |
+
#: includes/admin-posts.php:7
|
200 |
+
#, php-format
|
201 |
+
#@ fl-builder
|
202 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
203 |
+
msgid "%s is currently active for this page."
|
204 |
+
msgstr "%s está atualmente ativo para esta página."
|
205 |
+
|
206 |
+
#: includes/admin-posts.php:8
|
207 |
+
#, php-format
|
208 |
+
#@ fl-builder
|
209 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
210 |
+
msgid "Launch %s"
|
211 |
+
msgstr "Iniciar %s"
|
212 |
+
|
213 |
+
#: includes/admin-settings.php:7
|
214 |
+
#: includes/global-settings.php:4
|
215 |
+
#, php-format
|
216 |
+
#@ fl-builder
|
217 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
218 |
+
msgid "%s Settings"
|
219 |
+
msgstr "Configurações do %s"
|
220 |
+
|
221 |
+
#: includes/admin-settings.php:12
|
222 |
+
#@ fl-builder
|
223 |
+
msgid "Settings updated!"
|
224 |
+
msgstr "Configurações atualizadas!"
|
225 |
+
|
226 |
+
#: includes/admin-settings.php:19
|
227 |
+
#@ fl-builder
|
228 |
+
msgid "License"
|
229 |
+
msgstr "Licença"
|
230 |
+
|
231 |
+
#: includes/admin-settings.php:23
|
232 |
+
#: includes/admin-settings.php:59
|
233 |
+
#@ fl-builder
|
234 |
+
msgid "Upgrade"
|
235 |
+
msgstr "Atualizar"
|
236 |
+
|
237 |
+
#: includes/admin-settings.php:26
|
238 |
+
#: includes/global-settings.php:67
|
239 |
+
#@ fl-builder
|
240 |
+
msgid "Modules"
|
241 |
+
msgstr "Módulos"
|
242 |
+
|
243 |
+
#: includes/admin-settings.php:29
|
244 |
+
#: includes/ui.php:44
|
245 |
+
#@ fl-builder
|
246 |
+
msgid "Templates"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/admin-settings.php:32
|
250 |
+
#: includes/admin-settings.php:163
|
251 |
+
#@ fl-builder
|
252 |
+
msgid "Post Types"
|
253 |
+
msgstr "Tipos de Post"
|
254 |
+
|
255 |
+
#: includes/admin-settings.php:33
|
256 |
+
#@ fl-builder
|
257 |
+
msgid "Editing"
|
258 |
+
msgstr "Edição"
|
259 |
+
|
260 |
+
#: includes/admin-settings.php:40
|
261 |
+
#: includes/admin-settings.php:250
|
262 |
+
#: includes/admin-settings.php:262
|
263 |
+
#@ fl-builder
|
264 |
+
msgid "Uninstall"
|
265 |
+
msgstr "Desinstalar"
|
266 |
+
|
267 |
+
#: includes/admin-settings.php:61
|
268 |
+
#@ fl-builder
|
269 |
+
msgid "You are currently running the lite version of the Beaver Builder plugin. Upgrade today for access to premium features such as advanced modules, templates, support and more!"
|
270 |
+
msgstr "Atualmente você está usando a versão lite do plugin Beaver Builder. Atualize hoje para ter acesso a recursos premium como módulos avançados, templates, suporte e muito mais!"
|
271 |
+
|
272 |
+
#: includes/admin-settings.php:63
|
273 |
+
#@ fl-builder
|
274 |
+
msgid "Upgrade Now"
|
275 |
+
msgstr "Atualizar Agora"
|
276 |
+
|
277 |
+
#: includes/admin-settings.php:65
|
278 |
+
#@ fl-builder
|
279 |
+
msgid "Learn More"
|
280 |
+
msgstr "Saiba Mais"
|
281 |
+
|
282 |
+
#: includes/admin-settings.php:74
|
283 |
+
#@ fl-builder
|
284 |
+
msgid "Enabled Modules"
|
285 |
+
msgstr "Módulos Ativados"
|
286 |
+
|
287 |
+
#: includes/admin-settings.php:81
|
288 |
+
#: includes/admin-settings.php:132
|
289 |
+
#: includes/admin-settings.php:170
|
290 |
+
#: includes/admin-settings.php:222
|
291 |
+
#@ fl-builder
|
292 |
+
msgid "Override network settings?"
|
293 |
+
msgstr "Sobrescrever configurações da rede?"
|
294 |
+
|
295 |
+
#: includes/admin-settings.php:87
|
296 |
+
#@ fl-builder
|
297 |
+
msgid "Check or uncheck modules below to enable or disable them."
|
298 |
+
msgstr "Marque ou desmarque módulos abaixo para ativá-los ou desativá-los."
|
299 |
+
|
300 |
+
#: includes/admin-settings.php:96
|
301 |
+
#@ fl-builder
|
302 |
+
msgctxt "Plugin setup page: Modules."
|
303 |
+
msgid "All"
|
304 |
+
msgstr "Todos"
|
305 |
+
|
306 |
+
#: includes/admin-settings.php:114
|
307 |
+
#@ fl-builder
|
308 |
+
msgid "Save Module Settings"
|
309 |
+
msgstr "Salvar Configurações de Módulos"
|
310 |
+
|
311 |
+
#: includes/admin-settings.php:125
|
312 |
+
#@ fl-builder
|
313 |
+
msgid "Template Settings"
|
314 |
+
msgstr "Configurações de Template"
|
315 |
+
|
316 |
+
#: includes/admin-settings.php:138
|
317 |
+
#@ fl-builder
|
318 |
+
msgid "Enable or disable templates using the options below."
|
319 |
+
msgstr "Ative ou desative templates usando as opções abaixo."
|
320 |
+
|
321 |
+
#: includes/admin-settings.php:145
|
322 |
+
#@ fl-builder
|
323 |
+
msgid "Enable All Templates"
|
324 |
+
msgstr "Ativar Todos os Templates"
|
325 |
+
|
326 |
+
#: includes/admin-settings.php:146
|
327 |
+
#@ fl-builder
|
328 |
+
msgid "Enable Core Templates Only"
|
329 |
+
msgstr "Ativar Templates Padrões Apenas"
|
330 |
+
|
331 |
+
#: includes/admin-settings.php:147
|
332 |
+
#@ fl-builder
|
333 |
+
msgid "Enable User Templates Only"
|
334 |
+
msgstr "Usar apenas Templates definidos pelo Usuário"
|
335 |
+
|
336 |
+
#: includes/admin-settings.php:148
|
337 |
+
#@ fl-builder
|
338 |
+
msgid "Disable All Templates"
|
339 |
+
msgstr "Desativar Todos os Templates"
|
340 |
+
|
341 |
+
#: includes/admin-settings.php:152
|
342 |
+
#@ fl-builder
|
343 |
+
msgid "Save Template Settings"
|
344 |
+
msgstr "Salvar Configurações de Templates"
|
345 |
+
|
346 |
+
#: includes/admin-settings.php:176
|
347 |
+
#@ fl-builder
|
348 |
+
msgid "Select the post types you would like the builder to work with."
|
349 |
+
msgstr "Selecione os tipos de post em que você gostaria que o construtor de páginas funcione."
|
350 |
+
|
351 |
+
#: includes/admin-settings.php:177
|
352 |
+
#@ fl-builder
|
353 |
+
msgid "NOTE: Not all custom post types may be supported."
|
354 |
+
msgstr "NOTA: Possivelmente, nem todos os tipos de post customizados podem ser suportados."
|
355 |
+
|
356 |
+
#: includes/admin-settings.php:205
|
357 |
+
#@ fl-builder
|
358 |
+
msgid "Save Post Types"
|
359 |
+
msgstr "Salvar Tipos de Post"
|
360 |
+
|
361 |
+
#: includes/admin-settings.php:215
|
362 |
+
#@ fl-builder
|
363 |
+
msgid "Editing Settings"
|
364 |
+
msgstr "Configurações de Edição"
|
365 |
+
|
366 |
+
#: includes/admin-settings.php:228
|
367 |
+
#, php-format
|
368 |
+
#@ fl-builder
|
369 |
+
msgid "Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules."
|
370 |
+
msgstr "Configure uma<a%s>capacidade</a> obrigatória de usuários para acessar o modo de edição avançada do construtor de páginas, como adicionar, deleter ou mover módulos."
|
371 |
+
|
372 |
+
#: includes/admin-settings.php:234
|
373 |
+
#@ fl-builder
|
374 |
+
msgid "Save Editing Settings"
|
375 |
+
msgstr "Salvar Configurações de Edição"
|
376 |
+
|
377 |
+
#: includes/admin-settings.php:252
|
378 |
+
#@ fl-builder
|
379 |
+
msgid "Clicking the button below will uninstall the page builder plugin and delete all of the data associated with it. You can uninstall or deactivate the page builder from the plugins page instead if you do not wish to delete the data."
|
380 |
+
msgstr "Ao clicar no botão abaixo, você irá desinstalar o construtor de páginas e deletará todos os dados associados a ele. Você pode, como alternativa, desinstalar ou desativar o construtor de páginas na página de plugins se você não deseja deletar os dados."
|
381 |
+
|
382 |
+
#: includes/admin-settings.php:254
|
383 |
+
#: includes/admin-settings.php:257
|
384 |
+
#: includes/updater/includes/form.php:31
|
385 |
+
#@ fl-builder
|
386 |
+
msgid "NOTE:"
|
387 |
+
msgstr "NOTA:"
|
388 |
+
|
389 |
+
#: includes/admin-settings.php:254
|
390 |
+
#@ fl-builder
|
391 |
+
msgid "The builder does not delete the post meta <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values."
|
392 |
+
msgstr "O construtor de páginas não deleta os dados de post <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> e <code>_fl_builder_enabled</code> no caso de você desejar reinstalar o plugin posteriormente. Se esse for o caso,o construtor de páginas irá reconstruir todos os seus dados usando os valores de dados preservados."
|
393 |
+
|
394 |
+
#: includes/admin-settings.php:257
|
395 |
+
#: includes/updater/includes/form.php:31
|
396 |
+
#@ fl-builder
|
397 |
+
msgid "This applies to all sites on the network."
|
398 |
+
msgstr "Isto se aplica a todos os sites na rede."
|
399 |
+
|
400 |
+
#: includes/admin-settings.php:276
|
401 |
+
#@ fl-builder
|
402 |
+
msgid "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder and all of its data."
|
403 |
+
msgstr "Por favor, digite \"uninstall\" na caixa abaixo para confirmar que você realmente deseja desinstalar o construtor de páginas e todos os seus dados."
|
404 |
+
|
405 |
+
#: includes/column-settings.php:4
|
406 |
+
#: includes/js-config.php:21
|
407 |
+
#@ fl-builder
|
408 |
+
msgid "Column Settings"
|
409 |
+
msgstr "Configurações de Coluna"
|
410 |
+
|
411 |
+
#: includes/column-settings.php:7
|
412 |
+
#: includes/module-settings.php:95
|
413 |
+
#: includes/row-settings.php:9
|
414 |
+
#: modules/accordion/accordion.php:45
|
415 |
+
#: modules/button/button.php:95
|
416 |
+
#: modules/callout/callout.php:239
|
417 |
+
#: modules/content-slider/content-slider.php:419
|
418 |
+
#: modules/cta/cta.php:99
|
419 |
+
#: modules/heading/heading.php:69
|
420 |
+
#: modules/icon/icon.php:75
|
421 |
+
#: modules/icon-group/icon-group.php:44
|
422 |
+
#: modules/pricing-table/pricing-table.php:43
|
423 |
+
#: modules/pricing-table/pricing-table.php:155
|
424 |
+
#: modules/separator/separator.php:72
|
425 |
+
#: modules/tabs/tabs.php:45
|
426 |
+
#@ fl-builder
|
427 |
+
msgid "Style"
|
428 |
+
msgstr "Estilo"
|
429 |
+
|
430 |
+
#: includes/column-settings.php:14
|
431 |
+
#@ fl-builder
|
432 |
+
msgid "Column Width"
|
433 |
+
msgstr "Largura da Coluna"
|
434 |
+
|
435 |
+
#: includes/column-settings.php:26
|
436 |
+
#: includes/row-settings.php:48
|
437 |
+
#: modules/button/button.php:53
|
438 |
+
#: modules/callout/callout.php:223
|
439 |
+
#: modules/callout/callout.php:476
|
440 |
+
#: modules/callout/callout.php:492
|
441 |
+
#: modules/content-slider/content-slider.php:376
|
442 |
+
#: modules/content-slider/content-slider.php:610
|
443 |
+
#: modules/cta/cta.php:82
|
444 |
+
#: modules/cta/cta.php:219
|
445 |
+
#@ fl-builder
|
446 |
+
msgid "Text"
|
447 |
+
msgstr "Texto"
|
448 |
+
|
449 |
+
#: includes/column-settings.php:30
|
450 |
+
#: includes/column-settings.php:43
|
451 |
+
#: includes/column-settings.php:100
|
452 |
+
#: includes/row-settings.php:52
|
453 |
+
#: includes/row-settings.php:109
|
454 |
+
#: includes/row-settings.php:379
|
455 |
+
#: modules/callout/callout.php:389
|
456 |
+
#: modules/content-slider/content-slider.php:331
|
457 |
+
#: modules/icon/icon.php:82
|
458 |
+
#: modules/icon-group/icon-group.php:51
|
459 |
+
#: modules/separator/separator.php:34
|
460 |
+
#@ fl-builder
|
461 |
+
msgid "Color"
|
462 |
+
msgstr "Cor"
|
463 |
+
|
464 |
+
#: includes/column-settings.php:39
|
465 |
+
#: includes/row-settings.php:105
|
466 |
+
#: modules/button/button.php:102
|
467 |
+
#: modules/callout/callout.php:402
|
468 |
+
#: modules/callout/callout.php:506
|
469 |
+
#: modules/content-slider/content-slider.php:357
|
470 |
+
#: modules/content-slider/content-slider.php:624
|
471 |
+
#: modules/cta/cta.php:195
|
472 |
+
#: modules/cta/cta.php:262
|
473 |
+
#: modules/icon/icon.php:95
|
474 |
+
#: modules/icon-group/icon-group.php:64
|
475 |
+
#@ fl-builder
|
476 |
+
msgid "Background Color"
|
477 |
+
msgstr "Cor de Fundo"
|
478 |
+
|
479 |
+
#: includes/column-settings.php:51
|
480 |
+
#: includes/column-settings.php:108
|
481 |
+
#: includes/row-settings.php:117
|
482 |
+
#: includes/row-settings.php:387
|
483 |
+
#: modules/separator/separator.php:44
|
484 |
+
#@ fl-builder
|
485 |
+
msgid "Opacity"
|
486 |
+
msgstr "Opacidade"
|
487 |
+
|
488 |
+
#: includes/column-settings.php:63
|
489 |
+
#: includes/row-settings.php:342
|
490 |
+
#@ fl-builder
|
491 |
+
msgid "Border"
|
492 |
+
msgstr "Borda"
|
493 |
+
|
494 |
+
#: includes/column-settings.php:67
|
495 |
+
#: includes/row-settings.php:65
|
496 |
+
#: includes/row-settings.php:346
|
497 |
+
#: modules/callout/callout.php:472
|
498 |
+
#: modules/content-slider/content-slider.php:325
|
499 |
+
#: modules/content-slider/content-slider.php:372
|
500 |
+
#: modules/content-slider/content-slider.php:590
|
501 |
+
#: modules/content-slider/content-slider.php:694
|
502 |
+
#: modules/slideshow/slideshow.php:339
|
503 |
+
#@ fl-builder
|
504 |
+
msgid "Type"
|
505 |
+
msgstr "Tipo"
|
506 |
+
|
507 |
+
#: includes/column-settings.php:69
|
508 |
+
#: includes/row-settings.php:348
|
509 |
+
#@ fl-builder
|
510 |
+
msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
|
511 |
+
msgstr "O tipo de borda a ser usado. Bordas duplas precisam ter uma largura de ao menos 3px para renderizar adequadamente."
|
512 |
+
|
513 |
+
#: includes/column-settings.php:71
|
514 |
+
#: includes/row-settings.php:350
|
515 |
+
#@ fl-builder
|
516 |
+
msgctxt "Border type."
|
517 |
+
msgid "None"
|
518 |
+
msgstr "Nenhum"
|
519 |
+
|
520 |
+
#: includes/column-settings.php:72
|
521 |
+
#: includes/row-settings.php:351
|
522 |
+
#: modules/separator/separator.php:75
|
523 |
+
#@ fl-builder
|
524 |
+
msgctxt "Border type."
|
525 |
+
msgid "Solid"
|
526 |
+
msgstr "Sólida"
|
527 |
+
|
528 |
+
#: includes/column-settings.php:73
|
529 |
+
#: includes/row-settings.php:352
|
530 |
+
#: modules/separator/separator.php:76
|
531 |
+
#@ fl-builder
|
532 |
+
msgctxt "Border type."
|
533 |
+
msgid "Dashed"
|
534 |
+
msgstr "Tracejada"
|
535 |
+
|
536 |
+
#: includes/column-settings.php:74
|
537 |
+
#: includes/row-settings.php:353
|
538 |
+
#: modules/separator/separator.php:77
|
539 |
+
#@ fl-builder
|
540 |
+
msgctxt "Border type."
|
541 |
+
msgid "Dotted"
|
542 |
+
msgstr "Pontilhada"
|
543 |
+
|
544 |
+
#: includes/column-settings.php:75
|
545 |
+
#: includes/row-settings.php:354
|
546 |
+
#: modules/separator/separator.php:78
|
547 |
+
#@ fl-builder
|
548 |
+
msgctxt "Border type."
|
549 |
+
msgid "Double"
|
550 |
+
msgstr "Dupla"
|
551 |
+
|
552 |
+
#: includes/column-settings.php:119
|
553 |
+
#: includes/row-settings.php:398
|
554 |
+
#@ fl-builder
|
555 |
+
msgid "Top Width"
|
556 |
+
msgstr "Largura do topo"
|
557 |
+
|
558 |
+
#: includes/column-settings.php:131
|
559 |
+
#: includes/row-settings.php:410
|
560 |
+
#@ fl-builder
|
561 |
+
msgid "Bottom Width"
|
562 |
+
msgstr "Largura da Base"
|
563 |
+
|
564 |
+
#: includes/column-settings.php:143
|
565 |
+
#: includes/row-settings.php:422
|
566 |
+
#@ fl-builder
|
567 |
+
msgid "Left Width"
|
568 |
+
msgstr "Largura da Esquerda"
|
569 |
+
|
570 |
+
#: includes/column-settings.php:155
|
571 |
+
#: includes/row-settings.php:434
|
572 |
+
#@ fl-builder
|
573 |
+
msgid "Right Width"
|
574 |
+
msgstr "Largura da Direita"
|
575 |
+
|
576 |
+
#: includes/column-settings.php:170
|
577 |
+
#: includes/module-settings.php:6
|
578 |
+
#: includes/row-settings.php:449
|
579 |
+
#: modules/content-slider/content-slider.php:267
|
580 |
+
#@ fl-builder
|
581 |
+
msgid "Advanced"
|
582 |
+
msgstr "Avançado"
|
583 |
+
|
584 |
+
#: includes/column-settings.php:177
|
585 |
+
#: includes/module-settings.php:13
|
586 |
+
#: includes/row-settings.php:456
|
587 |
+
#@ fl-builder
|
588 |
+
msgid "CSS Class"
|
589 |
+
msgstr "Classe CSS"
|
590 |
+
|
591 |
+
#: includes/column-settings.php:178
|
592 |
+
#@ fl-builder
|
593 |
+
msgid "A custom CSS class that will be applied to this column. Spaces only, no dots."
|
594 |
+
msgstr "Uma classe CSS customizada que será aplicada a esta coluna. Somente espaços, sem pontos."
|
595 |
+
|
596 |
+
#: includes/column-settings.php:186
|
597 |
+
#: includes/global-settings.php:80
|
598 |
+
#@ fl-builder
|
599 |
+
msgid "Responsive Layout"
|
600 |
+
msgstr "Layout Responsivo"
|
601 |
+
|
602 |
+
#: includes/column-settings.php:190
|
603 |
+
#: includes/module-settings.php:21
|
604 |
+
#: includes/row-settings.php:464
|
605 |
+
#: modules/slideshow/slideshow.php:290
|
606 |
+
#@ fl-builder
|
607 |
+
msgid "Display"
|
608 |
+
msgstr "Mostrar"
|
609 |
+
|
610 |
+
#: includes/column-settings.php:192
|
611 |
+
#: includes/module-settings.php:23
|
612 |
+
#: includes/row-settings.php:466
|
613 |
+
#@ fl-builder
|
614 |
+
msgid "Always"
|
615 |
+
msgstr "Sempre"
|
616 |
+
|
617 |
+
#: includes/column-settings.php:193
|
618 |
+
#: includes/module-settings.php:24
|
619 |
+
#: includes/row-settings.php:467
|
620 |
+
#@ fl-builder
|
621 |
+
msgid "Large Devices Only"
|
622 |
+
msgstr "Apenas para Dispositivos Grandes"
|
623 |
+
|
624 |
+
#: includes/column-settings.php:194
|
625 |
+
#: includes/module-settings.php:25
|
626 |
+
#: includes/row-settings.php:468
|
627 |
+
#@ fl-builder
|
628 |
+
msgid "Large & Medium Devices Only"
|
629 |
+
msgstr "Apenas Dispositivos Grandes & Médios"
|
630 |
+
|
631 |
+
#: includes/column-settings.php:195
|
632 |
+
#: includes/module-settings.php:26
|
633 |
+
#: includes/row-settings.php:469
|
634 |
+
#@ fl-builder
|
635 |
+
msgid "Medium Devices Only"
|
636 |
+
msgstr "Apenas Dispositivos Médios"
|
637 |
+
|
638 |
+
#: includes/column-settings.php:196
|
639 |
+
#: includes/module-settings.php:27
|
640 |
+
#: includes/row-settings.php:470
|
641 |
+
#@ fl-builder
|
642 |
+
msgid "Medium & Small Devices Only"
|
643 |
+
msgstr "Apenas Dispositivos Médios & Pequenos"
|
644 |
+
|
645 |
+
#: includes/column-settings.php:197
|
646 |
+
#: includes/module-settings.php:28
|
647 |
+
#: includes/row-settings.php:471
|
648 |
+
#@ fl-builder
|
649 |
+
msgid "Small Devices Only"
|
650 |
+
msgstr "Apenas dispositivos Pequenos"
|
651 |
+
|
652 |
+
#: includes/column-settings.php:199
|
653 |
+
#@ fl-builder
|
654 |
+
msgid "Choose whether to show or hide this column at different device sizes."
|
655 |
+
msgstr "Escolha entre mostrar ou esconder esta coluna em diferentes tamanhos de dispositivo."
|
656 |
+
|
657 |
+
#: includes/column-settings.php:206
|
658 |
+
#@ fl-builder
|
659 |
+
msgid "Medium Device Width"
|
660 |
+
msgstr "Largura de Dispositivo Médio"
|
661 |
+
|
662 |
+
#: includes/column-settings.php:207
|
663 |
+
#@ fl-builder
|
664 |
+
msgid "The width of this column on medium devices such as tablets."
|
665 |
+
msgstr "A largura desta coluna em dispositivos médios, como tablets."
|
666 |
+
|
667 |
+
#: includes/column-settings.php:209
|
668 |
+
#: includes/column-settings.php:237
|
669 |
+
#: modules/callout/callout.php:281
|
670 |
+
#: modules/content-slider/content-slider.php:442
|
671 |
+
#: modules/cta/cta.php:165
|
672 |
+
#: modules/heading/heading.php:117
|
673 |
+
#: modules/heading/heading.php:144
|
674 |
+
#: modules/heading/heading.php:174
|
675 |
+
#@ fl-builder
|
676 |
+
msgid "Default"
|
677 |
+
msgstr "Padrão"
|
678 |
+
|
679 |
+
#: includes/column-settings.php:210
|
680 |
+
#: includes/column-settings.php:238
|
681 |
+
#: modules/button/button.php:151
|
682 |
+
#: modules/callout/callout.php:282
|
683 |
+
#: modules/content-slider/content-slider.php:443
|
684 |
+
#: modules/cta/cta.php:166
|
685 |
+
#: modules/heading/heading.php:118
|
686 |
+
#: modules/heading/heading.php:145
|
687 |
+
#: modules/heading/heading.php:175
|
688 |
+
#: modules/social-buttons/social-buttons.php:74
|
689 |
+
#@ fl-builder
|
690 |
+
msgid "Custom"
|
691 |
+
msgstr "Customizado"
|
692 |
+
|
693 |
+
#: includes/column-settings.php:223
|
694 |
+
#@ fl-builder
|
695 |
+
msgid "Custom Medium Device Width"
|
696 |
+
msgstr "Largura Customizada de Dispositivo Médio"
|
697 |
+
|
698 |
+
#: includes/column-settings.php:234
|
699 |
+
#@ fl-builder
|
700 |
+
msgid "Small Device Width"
|
701 |
+
msgstr "Largura de Dispositivo Pequeno"
|
702 |
+
|
703 |
+
#: includes/column-settings.php:235
|
704 |
+
#@ fl-builder
|
705 |
+
msgid "The width of this column on small devices such as phones."
|
706 |
+
msgstr "A largura desta coluna em dispositivos pequenos, como smartphones."
|
707 |
+
|
708 |
+
#: includes/column-settings.php:251
|
709 |
+
#@ fl-builder
|
710 |
+
msgid "Custom Small Device Width"
|
711 |
+
msgstr "Largura Customizada de Dispositivo Pequeno"
|
712 |
+
|
713 |
+
#: includes/column-settings.php:263
|
714 |
+
#: includes/global-settings.php:41
|
715 |
+
#: includes/global-settings.php:71
|
716 |
+
#: includes/module-settings.php:38
|
717 |
+
#: includes/row-settings.php:481
|
718 |
+
#@ fl-builder
|
719 |
+
msgid "Margins"
|
720 |
+
msgstr "Margens"
|
721 |
+
|
722 |
+
#: includes/column-settings.php:267
|
723 |
+
#: includes/column-settings.php:320
|
724 |
+
#: includes/module-settings.php:42
|
725 |
+
#: includes/row-settings.php:485
|
726 |
+
#: includes/row-settings.php:538
|
727 |
+
#: modules/slideshow/slideshow.php:475
|
728 |
+
#@ fl-builder
|
729 |
+
msgid "Top"
|
730 |
+
msgstr "Topo"
|
731 |
+
|
732 |
+
#: includes/column-settings.php:279
|
733 |
+
#: includes/column-settings.php:332
|
734 |
+
#: includes/module-settings.php:54
|
735 |
+
#: includes/row-settings.php:497
|
736 |
+
#: includes/row-settings.php:550
|
737 |
+
#: modules/slideshow/slideshow.php:474
|
738 |
+
#@ fl-builder
|
739 |
+
msgid "Bottom"
|
740 |
+
msgstr "Base"
|
741 |
+
|
742 |
+
#: includes/column-settings.php:291
|
743 |
+
#: includes/column-settings.php:344
|
744 |
+
#: includes/module-settings.php:66
|
745 |
+
#: includes/row-settings.php:509
|
746 |
+
#: includes/row-settings.php:562
|
747 |
+
#: modules/button/button.php:177
|
748 |
+
#: modules/callout/callout.php:250
|
749 |
+
#: modules/content-slider/content-slider.php:470
|
750 |
+
#: modules/cta/cta.php:123
|
751 |
+
#: modules/heading/heading.php:89
|
752 |
+
#: modules/heading/heading.php:161
|
753 |
+
#: modules/icon/icon.php:134
|
754 |
+
#: modules/icon-group/icon-group.php:111
|
755 |
+
#: modules/photo/photo.php:417
|
756 |
+
#: modules/social-buttons/social-buttons.php:101
|
757 |
+
#@ fl-builder
|
758 |
+
msgid "Left"
|
759 |
+
msgstr "Esquerda"
|
760 |
+
|
761 |
+
#: includes/column-settings.php:303
|
762 |
+
#: includes/column-settings.php:356
|
763 |
+
#: includes/module-settings.php:78
|
764 |
+
#: includes/row-settings.php:521
|
765 |
+
#: includes/row-settings.php:574
|
766 |
+
#: modules/button/button.php:178
|
767 |
+
#: modules/callout/callout.php:251
|
768 |
+
#: modules/content-slider/content-slider.php:472
|
769 |
+
#: modules/cta/cta.php:125
|
770 |
+
#: modules/heading/heading.php:91
|
771 |
+
#: modules/heading/heading.php:163
|
772 |
+
#: modules/icon/icon.php:135
|
773 |
+
#: modules/icon-group/icon-group.php:112
|
774 |
+
#: modules/photo/photo.php:419
|
775 |
+
#: modules/social-buttons/social-buttons.php:102
|
776 |
+
#@ fl-builder
|
777 |
+
msgid "Right"
|
778 |
+
msgstr "Direita"
|
779 |
+
|
780 |
+
#: includes/column-settings.php:316
|
781 |
+
#: includes/global-settings.php:49
|
782 |
+
#: includes/row-settings.php:534
|
783 |
+
#: modules/button/button.php:191
|
784 |
+
#: modules/callout/callout.php:567
|
785 |
+
#: modules/content-slider/content-slider.php:668
|
786 |
+
#: modules/cta/cta.php:314
|
787 |
+
#@ fl-builder
|
788 |
+
msgid "Padding"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: includes/field-form.php:17
|
792 |
+
#, php-format
|
793 |
+
#@ fl-builder
|
794 |
+
msgctxt "%s stands for form field label."
|
795 |
+
msgid "Edit %s"
|
796 |
+
msgstr "Editar %s"
|
797 |
+
|
798 |
+
#: includes/field-icon.php:2
|
799 |
+
#: includes/icon-selector.php:2
|
800 |
+
#@ fl-builder
|
801 |
+
msgid "Select Icon"
|
802 |
+
msgstr "Selecionar Ícone"
|
803 |
+
|
804 |
+
#: includes/field-icon.php:5
|
805 |
+
#: includes/field-photo.php:13
|
806 |
+
#@ fl-builder
|
807 |
+
msgid "Replace"
|
808 |
+
msgstr "Substituir"
|
809 |
+
|
810 |
+
#: includes/field-icon.php:7
|
811 |
+
#: includes/js-config.php:50
|
812 |
+
#@ fl-builder
|
813 |
+
msgid "Remove"
|
814 |
+
msgstr "Remover"
|
815 |
+
|
816 |
+
#: includes/field-link.php:3
|
817 |
+
#@ fl-builder
|
818 |
+
msgid "Select"
|
819 |
+
msgstr "Selecionar"
|
820 |
+
|
821 |
+
#: includes/field-link.php:5
|
822 |
+
#@ fl-builder
|
823 |
+
msgid "Enter a post title to search."
|
824 |
+
msgstr "Digite um título de post para pesquisar."
|
825 |
+
|
826 |
+
#: includes/field-link.php:6
|
827 |
+
#: includes/field-suggest.php:7
|
828 |
+
#@ fl-builder
|
829 |
+
msgid "Start typing..."
|
830 |
+
msgstr "Comece a digitar..."
|
831 |
+
|
832 |
+
#: includes/field-link.php:7
|
833 |
+
#: includes/icon-selector.php:28
|
834 |
+
#: includes/js-config.php:17
|
835 |
+
#: includes/settings.php:63
|
836 |
+
#: includes/template-selector.php:102
|
837 |
+
#: includes/ui.php:11
|
838 |
+
#@ fl-builder
|
839 |
+
msgid "Cancel"
|
840 |
+
msgstr "Cancelar"
|
841 |
+
|
842 |
+
#: includes/field-multiple-photos.php:8
|
843 |
+
#, php-format
|
844 |
+
#@ fl-builder
|
845 |
+
msgid "1 Photo Selected"
|
846 |
+
msgid_plural "%d Photos Selected"
|
847 |
+
msgstr[0] "1 Foto Selecionada"
|
848 |
+
msgstr[1] "%d Fotos Selecionadas"
|
849 |
+
|
850 |
+
#: includes/field-multiple-photos.php:13
|
851 |
+
#@ fl-builder
|
852 |
+
msgid "Create Gallery"
|
853 |
+
msgstr "Criar Galeria"
|
854 |
+
|
855 |
+
#: includes/field-multiple-photos.php:14
|
856 |
+
#@ fl-builder
|
857 |
+
msgid "Edit Gallery"
|
858 |
+
msgstr "Editar Galeria"
|
859 |
+
|
860 |
+
#: includes/field-multiple-photos.php:15
|
861 |
+
#@ fl-builder
|
862 |
+
msgid "Add Photos"
|
863 |
+
msgstr "Adicionar Fotos"
|
864 |
+
|
865 |
+
#: includes/field-photo.php:3
|
866 |
+
#: includes/js-config.php:55
|
867 |
+
#@ fl-builder
|
868 |
+
msgid "Select Photo"
|
869 |
+
msgstr "Selecionar Foto"
|
870 |
+
|
871 |
+
#: includes/field-photo.php:12
|
872 |
+
#: includes/template-selector.php:83
|
873 |
+
#@ fl-builder
|
874 |
+
msgid "Edit"
|
875 |
+
msgstr "Editar"
|
876 |
+
|
877 |
+
#: includes/field-video.php:3
|
878 |
+
#: includes/js-config.php:57
|
879 |
+
#@ fl-builder
|
880 |
+
msgid "Select Video"
|
881 |
+
msgstr "Selecionar Vídeo"
|
882 |
+
|
883 |
+
#: includes/field-video.php:17
|
884 |
+
#@ fl-builder
|
885 |
+
msgid "Replace Video"
|
886 |
+
msgstr "Substituir Vídeo"
|
887 |
+
|
888 |
+
#: includes/global-settings.php:7
|
889 |
+
#: includes/user-template-settings.php:7
|
890 |
+
#: modules/accordion/accordion.php:110
|
891 |
+
#: modules/button/button.php:46
|
892 |
+
#: modules/callout/callout.php:207
|
893 |
+
#: modules/contact-form/contact-form.php:57
|
894 |
+
#: modules/content-slider/content-slider.php:184
|
895 |
+
#: modules/content-slider/content-slider.php:308
|
896 |
+
#: modules/cta/cta.php:65
|
897 |
+
#: modules/gallery/gallery.php:213
|
898 |
+
#: modules/heading/heading.php:26
|
899 |
+
#: modules/html/html.php:26
|
900 |
+
#: modules/icon/icon.php:27
|
901 |
+
#: modules/icon-group/icon-group.php:128
|
902 |
+
#: modules/map/map.php:26
|
903 |
+
#: modules/photo/photo.php:368
|
904 |
+
#: modules/pricing-table/pricing-table.php:87
|
905 |
+
#: modules/rich-text/rich-text.php:26
|
906 |
+
#: modules/separator/separator.php:27
|
907 |
+
#: modules/sidebar/sidebar.php:27
|
908 |
+
#: modules/slideshow/slideshow.php:256
|
909 |
+
#: modules/social-buttons/social-buttons.php:64
|
910 |
+
#: modules/tabs/tabs.php:77
|
911 |
+
#: modules/testimonials/testimonials.php:30
|
912 |
+
#: modules/testimonials/testimonials.php:200
|
913 |
+
#: modules/video/video.php:76
|
914 |
+
#: modules/widget/widget.php:64
|
915 |
+
#: modules/woocommerce/woocommerce.php:50
|
916 |
+
#@ fl-builder
|
917 |
+
msgid "General"
|
918 |
+
msgstr "Geral"
|
919 |
+
|
920 |
+
#: includes/global-settings.php:8
|
921 |
+
#@ fl-builder
|
922 |
+
msgid "Note: These settings apply to all posts and pages."
|
923 |
+
msgstr "Nota: Estas configurações são aplicadas a todos os posts e páginas."
|
924 |
+
|
925 |
+
#: includes/global-settings.php:11
|
926 |
+
#@ fl-builder
|
927 |
+
msgid "Default Page Heading"
|
928 |
+
msgstr "Cabeçalho padrão de Página"
|
929 |
+
|
930 |
+
#: includes/global-settings.php:15
|
931 |
+
#@ fl-builder
|
932 |
+
msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
|
933 |
+
msgid "Show"
|
934 |
+
msgstr "Mostrar"
|
935 |
+
|
936 |
+
#: includes/global-settings.php:18
|
937 |
+
#: includes/global-settings.php:87
|
938 |
+
#: includes/row-settings.php:307
|
939 |
+
#: modules/accordion/accordion.php:90
|
940 |
+
#: modules/button/button.php:135
|
941 |
+
#: modules/callout/callout.php:418
|
942 |
+
#: modules/callout/callout.php:539
|
943 |
+
#: modules/content-slider/content-slider.php:203
|
944 |
+
#: modules/content-slider/content-slider.php:217
|
945 |
+
#: modules/content-slider/content-slider.php:251
|
946 |
+
#: modules/content-slider/content-slider.php:260
|
947 |
+
#: modules/content-slider/content-slider.php:531
|
948 |
+
#: modules/content-slider/content-slider.php:649
|
949 |
+
#: modules/cta/cta.php:295
|
950 |
+
#: modules/icon/icon.php:111
|
951 |
+
#: modules/icon-group/icon-group.php:80
|
952 |
+
#: modules/slideshow/slideshow.php:315
|
953 |
+
#: modules/slideshow/slideshow.php:325
|
954 |
+
#: modules/slideshow/slideshow.php:376
|
955 |
+
#: modules/slideshow/slideshow.php:417
|
956 |
+
#: modules/slideshow/slideshow.php:439
|
957 |
+
#: modules/slideshow/slideshow.php:488
|
958 |
+
#: modules/slideshow/slideshow.php:497
|
959 |
+
#: modules/slideshow/slideshow.php:506
|
960 |
+
#: modules/slideshow/slideshow.php:515
|
961 |
+
#: modules/slideshow/slideshow.php:524
|
962 |
+
#: modules/slideshow/slideshow.php:533
|
963 |
+
#: modules/slideshow/slideshow.php:542
|
964 |
+
#: modules/slideshow/slideshow.php:556
|
965 |
+
#: modules/slideshow/slideshow.php:571
|
966 |
+
#: modules/slideshow/slideshow.php:606
|
967 |
+
#: modules/slideshow/slideshow.php:618
|
968 |
+
#: modules/slideshow/slideshow.php:630
|
969 |
+
#: modules/slideshow/slideshow.php:642
|
970 |
+
#: modules/social-buttons/social-buttons.php:111
|
971 |
+
#: modules/social-buttons/social-buttons.php:120
|
972 |
+
#: modules/social-buttons/social-buttons.php:129
|
973 |
+
#: modules/testimonials/testimonials.php:85
|
974 |
+
#: modules/testimonials/testimonials.php:124
|
975 |
+
#: modules/testimonials/testimonials.php:154
|
976 |
+
#: modules/video/video.php:111
|
977 |
+
#: modules/video/video.php:123
|
978 |
+
#@ fl-builder
|
979 |
+
msgid "No"
|
980 |
+
msgstr "Não"
|
981 |
+
|
982 |
+
#: includes/global-settings.php:19
|
983 |
+
#: includes/global-settings.php:88
|
984 |
+
#: includes/row-settings.php:308
|
985 |
+
#: modules/accordion/accordion.php:89
|
986 |
+
#: modules/button/button.php:136
|
987 |
+
#: modules/callout/callout.php:419
|
988 |
+
#: modules/callout/callout.php:540
|
989 |
+
#: modules/content-slider/content-slider.php:204
|
990 |
+
#: modules/content-slider/content-slider.php:218
|
991 |
+
#: modules/content-slider/content-slider.php:252
|
992 |
+
#: modules/content-slider/content-slider.php:261
|
993 |
+
#: modules/content-slider/content-slider.php:532
|
994 |
+
#: modules/content-slider/content-slider.php:650
|
995 |
+
#: modules/cta/cta.php:296
|
996 |
+
#: modules/icon/icon.php:112
|
997 |
+
#: modules/icon-group/icon-group.php:81
|
998 |
+
#: modules/slideshow/slideshow.php:316
|
999 |
+
#: modules/slideshow/slideshow.php:326
|
1000 |
+
#: modules/slideshow/slideshow.php:377
|
1001 |
+
#: modules/slideshow/slideshow.php:418
|
1002 |
+
#: modules/slideshow/slideshow.php:440
|
1003 |
+
#: modules/slideshow/slideshow.php:489
|
1004 |
+
#: modules/slideshow/slideshow.php:498
|
1005 |
+
#: modules/slideshow/slideshow.php:507
|
1006 |
+
#: modules/slideshow/slideshow.php:516
|
1007 |
+
#: modules/slideshow/slideshow.php:525
|
1008 |
+
#: modules/slideshow/slideshow.php:534
|
1009 |
+
#: modules/slideshow/slideshow.php:543
|
1010 |
+
#: modules/slideshow/slideshow.php:557
|
1011 |
+
#: modules/slideshow/slideshow.php:572
|
1012 |
+
#: modules/slideshow/slideshow.php:607
|
1013 |
+
#: modules/slideshow/slideshow.php:619
|
1014 |
+
#: modules/slideshow/slideshow.php:631
|
1015 |
+
#: modules/slideshow/slideshow.php:643
|
1016 |
+
#: modules/social-buttons/social-buttons.php:110
|
1017 |
+
#: modules/social-buttons/social-buttons.php:119
|
1018 |
+
#: modules/social-buttons/social-buttons.php:128
|
1019 |
+
#: modules/testimonials/testimonials.php:86
|
1020 |
+
#: modules/testimonials/testimonials.php:125
|
1021 |
+
#: modules/testimonials/testimonials.php:155
|
1022 |
+
#: modules/video/video.php:112
|
1023 |
+
#: modules/video/video.php:124
|
1024 |
+
#@ fl-builder
|
1025 |
+
msgid "Yes"
|
1026 |
+
msgstr "Sim"
|
1027 |
+
|
1028 |
+
#: includes/global-settings.php:26
|
1029 |
+
#@ fl-builder
|
1030 |
+
msgid "Choosing no will hide the default theme heading for the \"Page\" post type. You will also be required to enter some basic CSS for this to work if you choose no."
|
1031 |
+
msgstr "Escolher \"não\\\"\\ irá esconder o cabeçalho padrão do tema para o tipo de post \"Página\". Você também pode precisar inserir algum CSS básico para fazer isto funcionar se selecionar \"não\"."
|
1032 |
+
|
1033 |
+
#: includes/global-settings.php:30
|
1034 |
+
#@ fl-builder
|
1035 |
+
msgid "CSS Selector"
|
1036 |
+
msgstr "Seletor CSS"
|
1037 |
+
|
1038 |
+
#: includes/global-settings.php:32
|
1039 |
+
#@ fl-builder
|
1040 |
+
msgid "Enter a CSS selector for the default page heading to hide it."
|
1041 |
+
msgstr "Insira um seletor CSS para o cabeçalho padrão da página para escondê-lo."
|
1042 |
+
|
1043 |
+
#: includes/global-settings.php:37
|
1044 |
+
#@ fl-builder
|
1045 |
+
msgid "Rows"
|
1046 |
+
msgstr "Linhas"
|
1047 |
+
|
1048 |
+
#: includes/global-settings.php:57
|
1049 |
+
#@ fl-builder
|
1050 |
+
msgid "Max Width"
|
1051 |
+
msgstr "Largura Máxima"
|
1052 |
+
|
1053 |
+
#: includes/global-settings.php:62
|
1054 |
+
#@ fl-builder
|
1055 |
+
msgid "All rows will default to this width. You can override this and make a row full width in the settings for each row."
|
1056 |
+
msgstr "Todas as linhas, por padrão, terão esta largura. Você pode sobrescrever isto e fazer uma linha com largura completa nas configurações de cada linha."
|
1057 |
+
|
1058 |
+
#: includes/global-settings.php:84
|
1059 |
+
#@ fl-builder
|
1060 |
+
msgctxt "General settings form field label. Intended meaning: \"Responsive layout enabled?\""
|
1061 |
+
msgid "Enabled"
|
1062 |
+
msgstr "Ativado"
|
1063 |
+
|
1064 |
+
#: includes/global-settings.php:98
|
1065 |
+
#@ fl-builder
|
1066 |
+
msgid "Medium Device Breakpoint"
|
1067 |
+
msgstr "Ponto de Quebra de Dispositivo Médio"
|
1068 |
+
|
1069 |
+
#: includes/global-settings.php:103
|
1070 |
+
#@ fl-builder
|
1071 |
+
msgid "The browser width at which the layout will adjust for medium devices such as tablets."
|
1072 |
+
msgstr "A largura do navegador em que o layout irá se ajustar para dispositivos médios, como tablets."
|
1073 |
+
|
1074 |
+
#: includes/global-settings.php:107
|
1075 |
+
#@ fl-builder
|
1076 |
+
msgid "Small Device Breakpoint"
|
1077 |
+
msgstr "Ponto de Quebra para Dispositivos Pequenos"
|
1078 |
+
|
1079 |
+
#: includes/global-settings.php:112
|
1080 |
+
#@ fl-builder
|
1081 |
+
msgid "The browser width at which the layout will adjust for small devices such as phones."
|
1082 |
+
msgstr "A largura do navegador em que o layout ir[a se ajustar para dispositivos pequenos, como smartphones."
|
1083 |
+
|
1084 |
+
#: includes/icon-selector.php:5
|
1085 |
+
#@ fl-builder
|
1086 |
+
msgctxt "Select option for showing all icon libraries."
|
1087 |
+
msgid "All Libraries"
|
1088 |
+
msgstr "Todas as bibliotecas"
|
1089 |
+
|
1090 |
+
#: includes/js-config.php:16
|
1091 |
+
#@ fl-builder
|
1092 |
+
msgid "What would you like to do?"
|
1093 |
+
msgstr "O que vocë gostaria de fazer agora?"
|
1094 |
+
|
1095 |
+
#: includes/js-config.php:18
|
1096 |
+
#@ fl-builder
|
1097 |
+
msgid "Change Template"
|
1098 |
+
msgstr "Mudar Template"
|
1099 |
+
|
1100 |
+
#: includes/js-config.php:19
|
1101 |
+
#@ fl-builder
|
1102 |
+
msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
|
1103 |
+
msgstr "Atenção! Mudar o template irá substituir seu layout existente. Você realmente gostaria de fazer isso?"
|
1104 |
+
|
1105 |
+
#: includes/js-config.php:20
|
1106 |
+
#@ fl-builder
|
1107 |
+
msgid "Column"
|
1108 |
+
msgstr "Coluna"
|
1109 |
+
|
1110 |
+
#: includes/js-config.php:22
|
1111 |
+
#@ fl-builder
|
1112 |
+
msgid "Please select either a background layout or content layout before submitting."
|
1113 |
+
msgstr "Por favor, selecione um layout de fundo ou de conteúdo antes de enviar."
|
1114 |
+
|
1115 |
+
#: includes/js-config.php:23
|
1116 |
+
#@ fl-builder
|
1117 |
+
msgid "Do you really want to delete this item?"
|
1118 |
+
msgstr "Você realmente deseja deletar este item?"
|
1119 |
+
|
1120 |
+
#: includes/js-config.php:24
|
1121 |
+
#@ fl-builder
|
1122 |
+
msgid "Do you really want to delete this module? All content data will be permanently deleted."
|
1123 |
+
msgstr "Você realmente deseja deletar este módulo? Todo o seu conteúdo será permanentemente deletado."
|
1124 |
+
|
1125 |
+
#: includes/js-config.php:25
|
1126 |
+
#@ fl-builder
|
1127 |
+
msgid "Do you really want to delete this row? All content data will be permanently deleted."
|
1128 |
+
msgstr "Você realmente deseja deletar esta linha? Todo o seu conteúdo será permanentemente deletado."
|
1129 |
+
|
1130 |
+
#: includes/js-config.php:26
|
1131 |
+
#@ fl-builder
|
1132 |
+
msgid "Do you really want to delete this template?"
|
1133 |
+
msgstr "Você realmente deseja deletar este template?"
|
1134 |
+
|
1135 |
+
#: includes/js-config.php:27
|
1136 |
+
#@ fl-builder
|
1137 |
+
msgid "Discard Draft"
|
1138 |
+
msgstr "Descartar Rascunho"
|
1139 |
+
|
1140 |
+
#: includes/js-config.php:28
|
1141 |
+
#@ fl-builder
|
1142 |
+
msgid "Do you really want to discard this draft? All of your changes that are not published will be lost."
|
1143 |
+
msgstr "Você realmente deseja descartar este rascunho? Todas as suas alterações que não foram publicadas serão perdidas."
|
1144 |
+
|
1145 |
+
#: includes/js-config.php:29
|
1146 |
+
#@ fl-builder
|
1147 |
+
msgid "Save Draft"
|
1148 |
+
msgstr "Salvar Rascunho"
|
1149 |
+
|
1150 |
+
#: includes/js-config.php:30
|
1151 |
+
#@ fl-builder
|
1152 |
+
msgctxt "Duplicate page/post action label."
|
1153 |
+
msgid "Duplicate"
|
1154 |
+
msgstr "Duplicar"
|
1155 |
+
|
1156 |
+
#: includes/js-config.php:31
|
1157 |
+
#@ fl-builder
|
1158 |
+
msgid "Duplicate This Page"
|
1159 |
+
msgstr "Duplicar Esta Página"
|
1160 |
+
|
1161 |
+
#: includes/js-config.php:32
|
1162 |
+
#@ fl-builder
|
1163 |
+
msgid "Duplicate This Template"
|
1164 |
+
msgstr "Duplicar Este Template"
|
1165 |
+
|
1166 |
+
#: includes/js-config.php:33
|
1167 |
+
#@ fl-builder
|
1168 |
+
msgid "Edit Global Settings"
|
1169 |
+
msgstr "Editar Configurações Globais"
|
1170 |
+
|
1171 |
+
#: includes/js-config.php:34
|
1172 |
+
#@ fl-builder
|
1173 |
+
msgid "Drop a row layout or module to get started!"
|
1174 |
+
msgstr "Arraste e solte um layout de linha ou um módulo para começar!"
|
1175 |
+
|
1176 |
+
#: includes/js-config.php:35
|
1177 |
+
#@ fl-builder
|
1178 |
+
msgid "Full Size"
|
1179 |
+
msgstr "Tamanho Completo"
|
1180 |
+
|
1181 |
+
#: includes/js-config.php:36
|
1182 |
+
#@ fl-builder
|
1183 |
+
msgid "Insert"
|
1184 |
+
msgstr "Inserir"
|
1185 |
+
|
1186 |
+
#: includes/js-config.php:37
|
1187 |
+
#@ fl-builder
|
1188 |
+
msgid "Large"
|
1189 |
+
msgstr "Grande"
|
1190 |
+
|
1191 |
+
#: includes/js-config.php:38
|
1192 |
+
#@ fl-builder
|
1193 |
+
msgid "Manage Templates"
|
1194 |
+
msgstr "Administrar Templates"
|
1195 |
+
|
1196 |
+
#: includes/js-config.php:39
|
1197 |
+
#@ fl-builder
|
1198 |
+
msgid "Medium"
|
1199 |
+
msgstr "Médio"
|
1200 |
+
|
1201 |
+
#: includes/js-config.php:40
|
1202 |
+
#@ fl-builder
|
1203 |
+
msgid "Module"
|
1204 |
+
msgstr "Módulo"
|
1205 |
+
|
1206 |
+
#: includes/js-config.php:41
|
1207 |
+
#@ fl-builder
|
1208 |
+
msgid "Move"
|
1209 |
+
msgstr "Mover"
|
1210 |
+
|
1211 |
+
#: includes/js-config.php:42
|
1212 |
+
#@ fl-builder
|
1213 |
+
msgid "New Column"
|
1214 |
+
msgstr "Nova Coluna"
|
1215 |
+
|
1216 |
+
#: includes/js-config.php:43
|
1217 |
+
#@ fl-builder
|
1218 |
+
msgid "New Row"
|
1219 |
+
msgstr "Nova Linha"
|
1220 |
+
|
1221 |
+
#: includes/js-config.php:44
|
1222 |
+
#@ fl-builder
|
1223 |
+
msgid "No results found."
|
1224 |
+
msgstr "Nenhum resultado encontrado."
|
1225 |
+
|
1226 |
+
#: includes/js-config.php:45
|
1227 |
+
#@ fl-builder
|
1228 |
+
msgid "OK"
|
1229 |
+
msgstr "OK"
|
1230 |
+
|
1231 |
+
#: includes/js-config.php:46
|
1232 |
+
#: modules/photo/photo.php:454
|
1233 |
+
#@ fl-builder
|
1234 |
+
msgid "Photo Page"
|
1235 |
+
msgstr "Página da Foto"
|
1236 |
+
|
1237 |
+
#: includes/js-config.php:47
|
1238 |
+
#@ fl-builder
|
1239 |
+
msgid "Photo Selected"
|
1240 |
+
msgstr "Foto Selecionada"
|
1241 |
+
|
1242 |
+
#: includes/js-config.php:48
|
1243 |
+
#@ fl-builder
|
1244 |
+
msgid "Photos Selected"
|
1245 |
+
msgstr "Fotos Selecionadas"
|
1246 |
+
|
1247 |
+
#: includes/js-config.php:49
|
1248 |
+
#@ fl-builder
|
1249 |
+
msgid "Publish Changes"
|
1250 |
+
msgstr "Publicar Alterações"
|
1251 |
+
|
1252 |
+
#: includes/js-config.php:51
|
1253 |
+
#@ fl-builder
|
1254 |
+
msgid "Row"
|
1255 |
+
msgstr "Linha"
|
1256 |
+
|
1257 |
+
#: includes/js-config.php:52
|
1258 |
+
#: includes/row-settings.php:6
|
1259 |
+
#@ fl-builder
|
1260 |
+
msgid "Row Settings"
|
1261 |
+
msgstr "Configurações de Linha"
|
1262 |
+
|
1263 |
+
#: includes/js-config.php:53
|
1264 |
+
#@ fl-builder
|
1265 |
+
msgid "Save Core Template"
|
1266 |
+
msgstr "Salvar Template do Plugin"
|
1267 |
+
|
1268 |
+
#: includes/js-config.php:54
|
1269 |
+
#: includes/ui.php:10
|
1270 |
+
#: includes/user-template-settings.php:4
|
1271 |
+
#@ fl-builder
|
1272 |
+
msgid "Save Template"
|
1273 |
+
msgstr "Salvar Template"
|
1274 |
+
|
1275 |
+
#: includes/js-config.php:56
|
1276 |
+
#@ fl-builder
|
1277 |
+
msgid "Select Photos"
|
1278 |
+
msgstr "Selecionar Fotos"
|
1279 |
+
|
1280 |
+
#: includes/js-config.php:59
|
1281 |
+
#@ fl-builder
|
1282 |
+
msgid "Append New Layout"
|
1283 |
+
msgstr "Anexar Novo Layout"
|
1284 |
+
|
1285 |
+
#: includes/js-config.php:60
|
1286 |
+
#@ fl-builder
|
1287 |
+
msgid "Replace Existing Layout"
|
1288 |
+
msgstr "Substituir Layout Existente"
|
1289 |
+
|
1290 |
+
#: includes/js-config.php:61
|
1291 |
+
#@ fl-builder
|
1292 |
+
msgid "Template Saved!"
|
1293 |
+
msgstr "Template Salvo!"
|
1294 |
+
|
1295 |
+
#: includes/js-config.php:62
|
1296 |
+
#@ fl-builder
|
1297 |
+
msgid "Thumbnail"
|
1298 |
+
msgstr ""
|
1299 |
+
|
1300 |
+
#: includes/js-config.php:63
|
1301 |
+
#@ fl-builder
|
1302 |
+
msgid "The settings you are currently editing will not be saved if you navigate away from this page."
|
1303 |
+
msgstr "As configurações que você está atualmente editando não serão salvas se você sair desta página."
|
1304 |
+
|
1305 |
+
#: includes/loop-settings.php:19
|
1306 |
+
#@ fl-builder
|
1307 |
+
msgid "Post Type"
|
1308 |
+
msgstr "Tipo de Post"
|
1309 |
+
|
1310 |
+
#: includes/loop-settings.php:25
|
1311 |
+
#@ fl-builder
|
1312 |
+
msgid "Order By"
|
1313 |
+
msgstr "Ordenar Por"
|
1314 |
+
|
1315 |
+
#: includes/loop-settings.php:27
|
1316 |
+
#@ fl-builder
|
1317 |
+
msgid "ID"
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: includes/loop-settings.php:28
|
1321 |
+
#: modules/post-grid/post-grid.php:155
|
1322 |
+
#: modules/woocommerce/woocommerce.php:189
|
1323 |
+
#@ fl-builder
|
1324 |
+
msgid "Date"
|
1325 |
+
msgstr "Data"
|
1326 |
+
|
1327 |
+
#: includes/loop-settings.php:29
|
1328 |
+
#@ fl-builder
|
1329 |
+
msgid "Date Last Modified"
|
1330 |
+
msgstr "Data da Última Alteração"
|
1331 |
+
|
1332 |
+
#: includes/loop-settings.php:30
|
1333 |
+
#: modules/pricing-table/pricing-table.php:90
|
1334 |
+
#: modules/pricing-table/pricing-table.php:94
|
1335 |
+
#@ fl-builder
|
1336 |
+
msgid "Title"
|
1337 |
+
msgstr "Título"
|
1338 |
+
|
1339 |
+
#: includes/loop-settings.php:31
|
1340 |
+
#: modules/post-grid/post-grid.php:146
|
1341 |
+
#@ fl-builder
|
1342 |
+
msgid "Author"
|
1343 |
+
msgstr "Autor"
|
1344 |
+
|
1345 |
+
#: includes/loop-settings.php:32
|
1346 |
+
#@ fl-builder
|
1347 |
+
msgid "Comment Count"
|
1348 |
+
msgstr "Número de Comentários"
|
1349 |
+
|
1350 |
+
#: includes/loop-settings.php:33
|
1351 |
+
#@ fl-builder
|
1352 |
+
msgid "Menu Order"
|
1353 |
+
msgstr "Ordem do Menu"
|
1354 |
+
|
1355 |
+
#: includes/loop-settings.php:34
|
1356 |
+
#@ fl-builder
|
1357 |
+
msgid "Random"
|
1358 |
+
msgstr "Aleatório"
|
1359 |
+
|
1360 |
+
#: includes/loop-settings.php:41
|
1361 |
+
#@ fl-builder
|
1362 |
+
msgid "Order"
|
1363 |
+
msgstr "Ordenar"
|
1364 |
+
|
1365 |
+
#: includes/loop-settings.php:43
|
1366 |
+
#@ fl-builder
|
1367 |
+
msgid "Descending"
|
1368 |
+
msgstr "Decrescente"
|
1369 |
+
|
1370 |
+
#: includes/loop-settings.php:44
|
1371 |
+
#@ fl-builder
|
1372 |
+
msgid "Ascending"
|
1373 |
+
msgstr "Crescente"
|
1374 |
+
|
1375 |
+
#: includes/loop-settings.php:52
|
1376 |
+
#@ fl-builder
|
1377 |
+
msgid "Filter"
|
1378 |
+
msgstr "Filtrar"
|
1379 |
+
|
1380 |
+
#: includes/loop-settings.php:63
|
1381 |
+
#, php-format
|
1382 |
+
#@ fl-builder
|
1383 |
+
msgid "Enter a comma separated list of %s. Only these %s will be shown."
|
1384 |
+
msgstr "Insira uma lista de %s separados(as) por vírgulas. Apenas estes / estas %s serão mostrados(as)."
|
1385 |
+
|
1386 |
+
#: includes/loop-settings.php:76
|
1387 |
+
#, php-format
|
1388 |
+
#@ fl-builder
|
1389 |
+
msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
|
1390 |
+
msgstr "Insira uma lista de %s separados(as) por vírgulas. Apenas posts com estes / estas %s serão mostrados(as)."
|
1391 |
+
|
1392 |
+
#: includes/loop-settings.php:90
|
1393 |
+
#@ fl-builder
|
1394 |
+
msgid "Authors"
|
1395 |
+
msgstr "Autores"
|
1396 |
+
|
1397 |
+
#: includes/loop-settings.php:91
|
1398 |
+
#@ fl-builder
|
1399 |
+
msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
|
1400 |
+
msgstr "Insira uma lista de nomes de usuários de autores, separadas por vírgulas. Apenas posts destes autores serão mostrados."
|
1401 |
+
|
1402 |
+
#: includes/module-settings.php:14
|
1403 |
+
#@ fl-builder
|
1404 |
+
msgid "A custom CSS class that will be applied to this module. Spaces only, no dots."
|
1405 |
+
msgstr "Uma classe CSS personalidada que será aplicada a este módulo. Somente espaços, sem pontos."
|
1406 |
+
|
1407 |
+
#: includes/module-settings.php:30
|
1408 |
+
#@ default
|
1409 |
+
msgid "Choose whether to show or hide this module at different device sizes."
|
1410 |
+
msgstr "Escolha entre mostrar ou esconder este módulo em diferentes tamanhos de dispositivo."
|
1411 |
+
|
1412 |
+
#: includes/module-settings.php:91
|
1413 |
+
#@ fl-builder
|
1414 |
+
msgid "Animation"
|
1415 |
+
msgstr "Animação"
|
1416 |
+
|
1417 |
+
#: includes/module-settings.php:97
|
1418 |
+
#@ fl-builder
|
1419 |
+
msgctxt "Animation style."
|
1420 |
+
msgid "None"
|
1421 |
+
msgstr "Nenhuma"
|
1422 |
+
|
1423 |
+
#: includes/module-settings.php:98
|
1424 |
+
#@ fl-builder
|
1425 |
+
msgctxt "Animation style."
|
1426 |
+
msgid "Fade In"
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: includes/module-settings.php:99
|
1430 |
+
#@ fl-builder
|
1431 |
+
msgctxt "Animation style."
|
1432 |
+
msgid "Slide Left"
|
1433 |
+
msgstr "Deslizar pela Esquerda"
|
1434 |
+
|
1435 |
+
#: includes/module-settings.php:100
|
1436 |
+
#@ fl-builder
|
1437 |
+
msgctxt "Animation style."
|
1438 |
+
msgid "Slide Right"
|
1439 |
+
msgstr "Deslizar pela Direita"
|
1440 |
+
|
1441 |
+
#: includes/module-settings.php:101
|
1442 |
+
#@ fl-builder
|
1443 |
+
msgctxt "Animation style."
|
1444 |
+
msgid "Slide Up"
|
1445 |
+
msgstr "Deslizar para Cima"
|
1446 |
+
|
1447 |
+
#: includes/module-settings.php:102
|
1448 |
+
#@ fl-builder
|
1449 |
+
msgctxt "Animation style."
|
1450 |
+
msgid "Slide Down"
|
1451 |
+
msgstr "Deslizar para Baixo"
|
1452 |
+
|
1453 |
+
#: includes/module-settings.php:110
|
1454 |
+
#: modules/content-slider/content-slider.php:223
|
1455 |
+
#: modules/testimonials/testimonials.php:91
|
1456 |
+
#@ fl-builder
|
1457 |
+
msgid "Delay"
|
1458 |
+
msgstr "Atraso"
|
1459 |
+
|
1460 |
+
#: includes/module-settings.php:114
|
1461 |
+
#: includes/row-settings.php:266
|
1462 |
+
#: includes/row-settings.php:297
|
1463 |
+
#: modules/content-slider/content-slider.php:227
|
1464 |
+
#: modules/content-slider/content-slider.php:244
|
1465 |
+
#: modules/slideshow/slideshow.php:385
|
1466 |
+
#: modules/slideshow/slideshow.php:410
|
1467 |
+
#: modules/slideshow/slideshow.php:581
|
1468 |
+
#: modules/testimonials/testimonials.php:95
|
1469 |
+
#: modules/testimonials/testimonials.php:112
|
1470 |
+
#@ fl-builder
|
1471 |
+
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
1472 |
+
msgid "seconds"
|
1473 |
+
msgstr "segundos"
|
1474 |
+
|
1475 |
+
#: includes/module-settings.php:115
|
1476 |
+
#@ fl-builder
|
1477 |
+
msgid "The amount of time in seconds before this animation starts."
|
1478 |
+
msgstr "A quantidade de segundos antes desta animação iniciar."
|
1479 |
+
|
1480 |
+
#: includes/row-settings.php:16
|
1481 |
+
#: modules/button/button.php:146
|
1482 |
+
#: modules/content-slider/content-slider.php:477
|
1483 |
+
#@ fl-builder
|
1484 |
+
msgid "Width"
|
1485 |
+
msgstr "Largura"
|
1486 |
+
|
1487 |
+
#: includes/row-settings.php:19
|
1488 |
+
#: includes/row-settings.php:37
|
1489 |
+
#: includes/row-settings.php:179
|
1490 |
+
#@ fl-builder
|
1491 |
+
msgid "Fixed"
|
1492 |
+
msgstr "Fixa"
|
1493 |
+
|
1494 |
+
#: includes/row-settings.php:20
|
1495 |
+
#: includes/row-settings.php:38
|
1496 |
+
#: modules/button/button.php:150
|
1497 |
+
#: modules/callout/callout.php:554
|
1498 |
+
#@ fl-builder
|
1499 |
+
msgid "Full Width"
|
1500 |
+
msgstr "Largura Completa"
|
1501 |
+
|
1502 |
+
#: includes/row-settings.php:27
|
1503 |
+
#@ fl-builder
|
1504 |
+
msgid "Full width rows span the width of the page from edge to edge. Fixed rows are no wider than the Row Max Width set in the Global Settings."
|
1505 |
+
msgstr "Linhas com largura completa envolvem a página de ponta a ponta. Linhas fixas não serão mais largas que a Largura Máxima de Linha ajustada nas Configurações Globais."
|
1506 |
+
|
1507 |
+
#: includes/row-settings.php:34
|
1508 |
+
#@ fl-builder
|
1509 |
+
msgid "Content Width"
|
1510 |
+
msgstr "Largura do Conteúdo"
|
1511 |
+
|
1512 |
+
#: includes/row-settings.php:40
|
1513 |
+
#@ fl-builder
|
1514 |
+
msgid "Full width content spans the width of the page from edge to edge. Fixed content is no wider than the Row Max Width set in the Global Settings."
|
1515 |
+
msgstr "Conteúdos com largura completa envolvem a página de ponta a ponta. Conteúdos com larguras fixas não serão mais largos que a Largura Máxima de Linha ajustada nas Configurações Globais."
|
1516 |
+
|
1517 |
+
#: includes/row-settings.php:61
|
1518 |
+
#@ fl-builder
|
1519 |
+
msgid "Background"
|
1520 |
+
msgstr "Fundo"
|
1521 |
+
|
1522 |
+
#: includes/row-settings.php:68
|
1523 |
+
#: modules/content-slider/content-slider.php:332
|
1524 |
+
#@ fl-builder
|
1525 |
+
msgctxt "Background type."
|
1526 |
+
msgid "None"
|
1527 |
+
msgstr "Nenhum"
|
1528 |
+
|
1529 |
+
#: includes/row-settings.php:69
|
1530 |
+
#@ fl-builder
|
1531 |
+
msgctxt "Background type."
|
1532 |
+
msgid "Color"
|
1533 |
+
msgstr "Cor"
|
1534 |
+
|
1535 |
+
#: includes/row-settings.php:70
|
1536 |
+
#@ fl-builder
|
1537 |
+
msgctxt "Background type."
|
1538 |
+
msgid "Photo"
|
1539 |
+
msgstr "Foto"
|
1540 |
+
|
1541 |
+
#: includes/row-settings.php:71
|
1542 |
+
#@ fl-builder
|
1543 |
+
msgctxt "Background type."
|
1544 |
+
msgid "Video"
|
1545 |
+
msgstr "Vídeo"
|
1546 |
+
|
1547 |
+
#: includes/row-settings.php:73
|
1548 |
+
#@ fl-builder
|
1549 |
+
msgctxt "Background type."
|
1550 |
+
msgid "Slideshow"
|
1551 |
+
msgstr "Slideshow"
|
1552 |
+
|
1553 |
+
#: includes/row-settings.php:77
|
1554 |
+
#@ fl-builder
|
1555 |
+
msgctxt "Background type."
|
1556 |
+
msgid "Parallax"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: includes/row-settings.php:129
|
1560 |
+
#: modules/content-slider/content-slider.php:353
|
1561 |
+
#@ fl-builder
|
1562 |
+
msgid "Background Photo"
|
1563 |
+
msgstr "Foto de Fundo"
|
1564 |
+
|
1565 |
+
#: includes/row-settings.php:133
|
1566 |
+
#: includes/row-settings.php:321
|
1567 |
+
#: modules/callout/callout.php:314
|
1568 |
+
#: modules/callout/callout.php:330
|
1569 |
+
#: modules/callout/callout.php:334
|
1570 |
+
#: modules/content-slider/content-slider.php:329
|
1571 |
+
#: modules/content-slider/content-slider.php:398
|
1572 |
+
#: modules/content-slider/content-slider.php:710
|
1573 |
+
#: modules/photo/photo.php:25
|
1574 |
+
#: modules/photo/photo.php:392
|
1575 |
+
#@ fl-builder
|
1576 |
+
msgid "Photo"
|
1577 |
+
msgstr "Foto"
|
1578 |
+
|
1579 |
+
#: includes/row-settings.php:140
|
1580 |
+
#@ fl-builder
|
1581 |
+
msgid "Repeat"
|
1582 |
+
msgstr "Repetir"
|
1583 |
+
|
1584 |
+
#: includes/row-settings.php:143
|
1585 |
+
#@ fl-builder
|
1586 |
+
msgctxt "Background repeat."
|
1587 |
+
msgid "None"
|
1588 |
+
msgstr "Nenhum"
|
1589 |
+
|
1590 |
+
#: includes/row-settings.php:144
|
1591 |
+
#@ fl-builder
|
1592 |
+
msgctxt "Background repeat."
|
1593 |
+
msgid "Tile"
|
1594 |
+
msgstr "Ladrilhos"
|
1595 |
+
|
1596 |
+
#: includes/row-settings.php:145
|
1597 |
+
#@ fl-builder
|
1598 |
+
msgctxt "Background repeat."
|
1599 |
+
msgid "Horizontal"
|
1600 |
+
msgstr "Horizontal"
|
1601 |
+
|
1602 |
+
#: includes/row-settings.php:146
|
1603 |
+
#@ fl-builder
|
1604 |
+
msgctxt "Background repeat."
|
1605 |
+
msgid "Vertical"
|
1606 |
+
msgstr "Vertical"
|
1607 |
+
|
1608 |
+
#: includes/row-settings.php:148
|
1609 |
+
#@ fl-builder
|
1610 |
+
msgid "Repeat applies to how the image should display in the row background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the row horizontally and vertically. You can also specify the image to only repeat horizontally or vertically."
|
1611 |
+
msgstr "\"Repetir\" aplica-se a como a imagem deve ser mostrada no fundo da linha. Escolher \"nenhum\" irá mostrar a imagem da maneira como foi enviada. \"Ladrilhos\" irá repetir a imagem quantas vezes for necessário para preencher a linha horizontalmente e verticalmente. Você pode também especificar que a imagem repita-se apenas na horizontal ou na vertical."
|
1612 |
+
|
1613 |
+
#: includes/row-settings.php:155
|
1614 |
+
#: modules/callout/callout.php:351
|
1615 |
+
#: modules/callout/callout.php:371
|
1616 |
+
#: modules/content-slider/content-slider.php:466
|
1617 |
+
#: modules/post-grid/post-grid.php:127
|
1618 |
+
#@ fl-builder
|
1619 |
+
msgid "Position"
|
1620 |
+
msgstr "Posição"
|
1621 |
+
|
1622 |
+
#: includes/row-settings.php:158
|
1623 |
+
#@ fl-builder
|
1624 |
+
msgid "Left Top"
|
1625 |
+
msgstr "Canto Superior Esquerdo"
|
1626 |
+
|
1627 |
+
#: includes/row-settings.php:159
|
1628 |
+
#@ fl-builder
|
1629 |
+
msgid "Left Center"
|
1630 |
+
msgstr "Canto Esquerdo Central"
|
1631 |
+
|
1632 |
+
#: includes/row-settings.php:160
|
1633 |
+
#@ fl-builder
|
1634 |
+
msgid "Left Bottom"
|
1635 |
+
msgstr "Canto Inferior Esquerdo"
|
1636 |
+
|
1637 |
+
#: includes/row-settings.php:161
|
1638 |
+
#@ fl-builder
|
1639 |
+
msgid "Right Top"
|
1640 |
+
msgstr "Canto Superior Direito"
|
1641 |
+
|
1642 |
+
#: includes/row-settings.php:162
|
1643 |
+
#@ fl-builder
|
1644 |
+
msgid "Right Center"
|
1645 |
+
msgstr "Canto Direito Central"
|
1646 |
+
|
1647 |
+
#: includes/row-settings.php:163
|
1648 |
+
#@ fl-builder
|
1649 |
+
msgid "Right Bottom"
|
1650 |
+
msgstr "Canto Inferior Direito"
|
1651 |
+
|
1652 |
+
#: includes/row-settings.php:164
|
1653 |
+
#@ fl-builder
|
1654 |
+
msgid "Center Top"
|
1655 |
+
msgstr "Centro do Topo"
|
1656 |
+
|
1657 |
+
#: includes/row-settings.php:165
|
1658 |
+
#: modules/button/button.php:176
|
1659 |
+
#: modules/callout/callout.php:249
|
1660 |
+
#: modules/content-slider/content-slider.php:471
|
1661 |
+
#: modules/cta/cta.php:124
|
1662 |
+
#: modules/heading/heading.php:90
|
1663 |
+
#: modules/heading/heading.php:162
|
1664 |
+
#: modules/icon/icon.php:133
|
1665 |
+
#: modules/icon-group/icon-group.php:110
|
1666 |
+
#: modules/photo/photo.php:418
|
1667 |
+
#: modules/social-buttons/social-buttons.php:100
|
1668 |
+
#@ fl-builder
|
1669 |
+
msgid "Center"
|
1670 |
+
msgstr "Centralizado"
|
1671 |
+
|
1672 |
+
#: includes/row-settings.php:166
|
1673 |
+
#@ fl-builder
|
1674 |
+
msgid "Center Bottom"
|
1675 |
+
msgstr "Centro da Base"
|
1676 |
+
|
1677 |
+
#: includes/row-settings.php:168
|
1678 |
+
#@ fl-builder
|
1679 |
+
msgid "Position will tell the image where it should sit in the row background."
|
1680 |
+
msgstr "\"Posição\" irá dizer à imagem onde ela deve se posicionar no fundo da linha."
|
1681 |
+
|
1682 |
+
#: includes/row-settings.php:175
|
1683 |
+
#@ fl-builder
|
1684 |
+
msgid "Attachment"
|
1685 |
+
msgstr "Anexação ao Fundo"
|
1686 |
+
|
1687 |
+
#: includes/row-settings.php:178
|
1688 |
+
#: modules/post-grid/post-grid.php:75
|
1689 |
+
#@ fl-builder
|
1690 |
+
msgid "Scroll"
|
1691 |
+
msgstr "Deslizar"
|
1692 |
+
|
1693 |
+
#: includes/row-settings.php:181
|
1694 |
+
#@ fl-builder
|
1695 |
+
msgid "Attachment will specify how the image reacts when scrolling a page. When scrolling is selected, the image will scroll with page scrolling. This is the default setting. Fixed will allow the image to scroll within the row background if fill is selected in the scale setting."
|
1696 |
+
msgstr "\"Anexação ao Fundo\" irá especificar como a imagem deve reagir quando há a rolagem de páginal. Quando \"deslizar\" é selecionado, a imagem irá deslizar em conjunto com a rolagem da página. Esta é a configuração padrão. \\\"\\Fixo\" irá permitir que a imagem permaneça na mesma posição no fundo da linha, se \"preencher\" estiver selecionado na configuração de escala."
|
1697 |
+
|
1698 |
+
#: includes/row-settings.php:188
|
1699 |
+
#@ fl-builder
|
1700 |
+
msgid "Scale"
|
1701 |
+
msgstr "Escaça"
|
1702 |
+
|
1703 |
+
#: includes/row-settings.php:191
|
1704 |
+
#@ fl-builder
|
1705 |
+
msgctxt "Background scale."
|
1706 |
+
msgid "None"
|
1707 |
+
msgstr "Nenhum"
|
1708 |
+
|
1709 |
+
#: includes/row-settings.php:192
|
1710 |
+
#@ fl-builder
|
1711 |
+
msgid "Fit"
|
1712 |
+
msgstr "Ajustar"
|
1713 |
+
|
1714 |
+
#: includes/row-settings.php:193
|
1715 |
+
#@ fl-builder
|
1716 |
+
msgid "Fill"
|
1717 |
+
msgstr "Preencher"
|
1718 |
+
|
1719 |
+
#: includes/row-settings.php:195
|
1720 |
+
#@ fl-builder
|
1721 |
+
msgid "Scale applies to how the image should display in the row background. You can select either fill or fit to the row background."
|
1722 |
+
msgstr "\"Escala\" aplica-se a como a imagem deve ser exibida no fundo da linha. Você pode selecionar entre preencher ou ajustar-se ao fundo da linha."
|
1723 |
+
|
1724 |
+
#: includes/row-settings.php:203
|
1725 |
+
#@ fl-builder
|
1726 |
+
msgid "Background Video"
|
1727 |
+
msgstr "Vídeo de Fundo"
|
1728 |
+
|
1729 |
+
#: includes/row-settings.php:207
|
1730 |
+
#: modules/content-slider/content-slider.php:330
|
1731 |
+
#: modules/video/video.php:19
|
1732 |
+
#: modules/video/video.php:100
|
1733 |
+
#@ fl-builder
|
1734 |
+
msgid "Video"
|
1735 |
+
msgstr "Vídeo"
|
1736 |
+
|
1737 |
+
#: includes/row-settings.php:208
|
1738 |
+
#@ fl-builder
|
1739 |
+
msgid "An HTML5 video to use as the background of this row. Supported types are MP4, WebM and Ogg."
|
1740 |
+
msgstr "Um vídeo em formato HTML5 a ser usado como fundo desta linha. Formatos suportados são MP4, WebM e Ogg."
|
1741 |
+
|
1742 |
+
#: includes/row-settings.php:215
|
1743 |
+
#@ fl-builder
|
1744 |
+
msgid "Fallback Photo"
|
1745 |
+
msgstr "Foto de Reserva"
|
1746 |
+
|
1747 |
+
#: includes/row-settings.php:216
|
1748 |
+
#@ fl-builder
|
1749 |
+
msgid "A photo that will be displayed if the video fails to load."
|
1750 |
+
msgstr "Uma foto que será exibida caso o vídeo não seja carregado."
|
1751 |
+
|
1752 |
+
#: includes/row-settings.php:224
|
1753 |
+
#@ fl-builder
|
1754 |
+
msgid "Background Slideshow"
|
1755 |
+
msgstr "Slideshow de Fundo"
|
1756 |
+
|
1757 |
+
#: includes/row-settings.php:228
|
1758 |
+
#: modules/gallery/gallery.php:234
|
1759 |
+
#: modules/slideshow/slideshow.php:263
|
1760 |
+
#@ fl-builder
|
1761 |
+
msgid "Source"
|
1762 |
+
msgstr "Origem"
|
1763 |
+
|
1764 |
+
#: includes/row-settings.php:231
|
1765 |
+
#: modules/gallery/gallery.php:237
|
1766 |
+
#: modules/photo/photo.php:378
|
1767 |
+
#: modules/slideshow/slideshow.php:266
|
1768 |
+
#: modules/video/video.php:86
|
1769 |
+
#@ fl-builder
|
1770 |
+
msgid "Media Library"
|
1771 |
+
msgstr "Biblioteca de Mídia"
|
1772 |
+
|
1773 |
+
#: includes/row-settings.php:234
|
1774 |
+
#: modules/gallery/gallery.php:240
|
1775 |
+
#: modules/slideshow/slideshow.php:269
|
1776 |
+
#@ fl-builder
|
1777 |
+
msgid "Pull images from the WordPress media library or a gallery on your SmugMug site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be accessed by using the get a link function in your SmugMug gallery."
|
1778 |
+
msgstr "Puxa imagens da biblioteca de mídia do WordPress ou uma galeria em seu site no SmugMug inserindo a URL do feed RSS do SmugMug. A URL do feed RSS pode ser acessada usando a função \"get a link\" em sua galeria no SmugMug."
|
1779 |
+
|
1780 |
+
#: includes/row-settings.php:249
|
1781 |
+
#: modules/gallery/gallery.php:252
|
1782 |
+
#: modules/slideshow/slideshow.php:281
|
1783 |
+
#@ fl-builder
|
1784 |
+
msgid "Photos"
|
1785 |
+
msgstr "Fotos"
|
1786 |
+
|
1787 |
+
#: includes/row-settings.php:256
|
1788 |
+
#: modules/gallery/gallery.php:256
|
1789 |
+
#: modules/slideshow/slideshow.php:285
|
1790 |
+
#@ fl-builder
|
1791 |
+
msgid "Feed URL"
|
1792 |
+
msgstr "URL do Feed"
|
1793 |
+
|
1794 |
+
#: includes/row-settings.php:263
|
1795 |
+
#: includes/row-settings.php:328
|
1796 |
+
#: modules/slideshow/slideshow.php:382
|
1797 |
+
#@ fl-builder
|
1798 |
+
msgid "Speed"
|
1799 |
+
msgstr "Velocidade"
|
1800 |
+
|
1801 |
+
#: includes/row-settings.php:273
|
1802 |
+
#: modules/content-slider/content-slider.php:231
|
1803 |
+
#: modules/slideshow/slideshow.php:389
|
1804 |
+
#: modules/testimonials/testimonials.php:99
|
1805 |
+
#@ fl-builder
|
1806 |
+
msgid "Transition"
|
1807 |
+
msgstr "Transição"
|
1808 |
+
|
1809 |
+
#: includes/row-settings.php:276
|
1810 |
+
#@ fl-builder
|
1811 |
+
msgctxt "Slideshow transition type."
|
1812 |
+
msgid "None"
|
1813 |
+
msgstr "Nenhuma"
|
1814 |
+
|
1815 |
+
#: includes/row-settings.php:277
|
1816 |
+
#: modules/content-slider/content-slider.php:235
|
1817 |
+
#: modules/slideshow/slideshow.php:393
|
1818 |
+
#: modules/testimonials/testimonials.php:103
|
1819 |
+
#@ fl-builder
|
1820 |
+
msgid "Fade"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
+
#: includes/row-settings.php:278
|
1824 |
+
#: modules/slideshow/slideshow.php:394
|
1825 |
+
#@ fl-builder
|
1826 |
+
msgid "Ken Burns"
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#: includes/row-settings.php:279
|
1830 |
+
#: modules/slideshow/slideshow.php:395
|
1831 |
+
#@ fl-builder
|
1832 |
+
msgid "Slide Horizontal"
|
1833 |
+
msgstr "Deslizar Horizontalmente"
|
1834 |
+
|
1835 |
+
#: includes/row-settings.php:280
|
1836 |
+
#: modules/slideshow/slideshow.php:396
|
1837 |
+
#@ fl-builder
|
1838 |
+
msgid "Slide Vertical"
|
1839 |
+
msgstr "Deslizar Verticalmente"
|
1840 |
+
|
1841 |
+
#: includes/row-settings.php:281
|
1842 |
+
#: modules/slideshow/slideshow.php:397
|
1843 |
+
#@ fl-builder
|
1844 |
+
msgid "Blinds"
|
1845 |
+
msgstr "Persianas"
|
1846 |
+
|
1847 |
+
#: includes/row-settings.php:282
|
1848 |
+
#: modules/slideshow/slideshow.php:398
|
1849 |
+
#@ fl-builder
|
1850 |
+
msgid "Bars"
|
1851 |
+
msgstr "Barras"
|
1852 |
+
|
1853 |
+
#: includes/row-settings.php:283
|
1854 |
+
#: modules/slideshow/slideshow.php:399
|
1855 |
+
#@ fl-builder
|
1856 |
+
msgid "Random Bars"
|
1857 |
+
msgstr "Barras Aleatórias"
|
1858 |
+
|
1859 |
+
#: includes/row-settings.php:284
|
1860 |
+
#: modules/slideshow/slideshow.php:400
|
1861 |
+
#@ fl-builder
|
1862 |
+
msgid "Boxes"
|
1863 |
+
msgstr "Caixas"
|
1864 |
+
|
1865 |
+
#: includes/row-settings.php:285
|
1866 |
+
#: modules/slideshow/slideshow.php:401
|
1867 |
+
#@ fl-builder
|
1868 |
+
msgid "Random Boxes"
|
1869 |
+
msgstr "Caixas Aleatórias"
|
1870 |
+
|
1871 |
+
#: includes/row-settings.php:286
|
1872 |
+
#: modules/slideshow/slideshow.php:402
|
1873 |
+
#@ fl-builder
|
1874 |
+
msgid "Boxes Grow"
|
1875 |
+
msgstr "Caixas Crescentes"
|
1876 |
+
|
1877 |
+
#: includes/row-settings.php:294
|
1878 |
+
#: modules/content-slider/content-slider.php:240
|
1879 |
+
#: modules/slideshow/slideshow.php:407
|
1880 |
+
#: modules/testimonials/testimonials.php:108
|
1881 |
+
#@ fl-builder
|
1882 |
+
msgid "Transition Speed"
|
1883 |
+
msgstr "Velocidade de Transição"
|
1884 |
+
|
1885 |
+
#: includes/row-settings.php:304
|
1886 |
+
#: modules/slideshow/slideshow.php:414
|
1887 |
+
#@ fl-builder
|
1888 |
+
msgid "Randomize Photos"
|
1889 |
+
msgstr "Embaralhar Fotos"
|
1890 |
+
|
1891 |
+
#: includes/row-settings.php:317
|
1892 |
+
#@ fl-builder
|
1893 |
+
msgid "Background Parallax"
|
1894 |
+
msgstr "Parallax de Fundo"
|
1895 |
+
|
1896 |
+
#: includes/row-settings.php:331
|
1897 |
+
#@ fl-builder
|
1898 |
+
msgid "Fast"
|
1899 |
+
msgstr "Rápido"
|
1900 |
+
|
1901 |
+
#: includes/row-settings.php:332
|
1902 |
+
#@ fl-builder
|
1903 |
+
msgctxt "Speed."
|
1904 |
+
msgid "Medium"
|
1905 |
+
msgstr "Médio"
|
1906 |
+
|
1907 |
+
#: includes/row-settings.php:333
|
1908 |
+
#@ fl-builder
|
1909 |
+
msgid "Slow"
|
1910 |
+
msgstr "Lento"
|
1911 |
+
|
1912 |
+
#: includes/row-settings.php:457
|
1913 |
+
#@ fl-builder
|
1914 |
+
msgid "Add a custom CSS selector here to apply additional styling to this row."
|
1915 |
+
msgstr "Adicione um seletor CSS personalizado aqui para aplicar um estilo adicional a esta linha."
|
1916 |
+
|
1917 |
+
#: includes/row-settings.php:473
|
1918 |
+
#@ fl-builder
|
1919 |
+
msgid "Choose whether to show or hide this row at different device sizes."
|
1920 |
+
msgstr "Escolha entre mostrar ou esconder esta linha em diferentes tamanhos de dispositivo."
|
1921 |
+
|
1922 |
+
#: includes/settings.php:62
|
1923 |
+
#@ fl-builder
|
1924 |
+
msgid "Save"
|
1925 |
+
msgstr "Salvar"
|
1926 |
+
|
1927 |
+
#: includes/template-selector.php:3
|
1928 |
+
#@ fl-builder
|
1929 |
+
msgid "Layout Templates"
|
1930 |
+
msgstr "Templates de Layout"
|
1931 |
+
|
1932 |
+
#: includes/template-selector.php:8
|
1933 |
+
#@ fl-builder
|
1934 |
+
msgid "Home Pages"
|
1935 |
+
msgstr "Páginas Iniciais"
|
1936 |
+
|
1937 |
+
#: includes/template-selector.php:9
|
1938 |
+
#@ fl-builder
|
1939 |
+
msgid "Content Pages"
|
1940 |
+
msgstr "Páginas de Conteúdo"
|
1941 |
+
|
1942 |
+
#: includes/template-selector.php:13
|
1943 |
+
#@ fl-builder
|
1944 |
+
msgid "Your Templates"
|
1945 |
+
msgstr "Seus Templates"
|
1946 |
+
|
1947 |
+
#: includes/template-selector.php:47
|
1948 |
+
#: includes/template-selector.php:77
|
1949 |
+
#@ fl-builder
|
1950 |
+
msgctxt "Template name."
|
1951 |
+
msgid "Blank"
|
1952 |
+
msgstr "Em Branco"
|
1953 |
+
|
1954 |
+
#: includes/template-selector.php:72
|
1955 |
+
#@ fl-builder
|
1956 |
+
msgid "You haven't saved any templates yet! To do so, create a layout and save it as a template under <strong>Tools → Save Template</strong>."
|
1957 |
+
msgstr "Você não salvou nenhum template ainda! Para fazer isso, crie um layout e salve-o como um template em <strong>Ferramentas → Salvar Template</strong>."
|
1958 |
+
|
1959 |
+
#: includes/template-selector.php:84
|
1960 |
+
#@ fl-builder
|
1961 |
+
msgid "Delete"
|
1962 |
+
msgstr "Deletar"
|
1963 |
+
|
1964 |
+
#: includes/ui.php:7
|
1965 |
+
#, php-format
|
1966 |
+
#@ fl-builder
|
1967 |
+
msgid "Template: %s"
|
1968 |
+
msgstr ""
|
1969 |
+
|
1970 |
+
#: includes/ui.php:23
|
1971 |
+
#@ fl-builder
|
1972 |
+
msgid "Page Builder Demo"
|
1973 |
+
msgstr "Versão de Demonstração do Construtor de Páginas"
|
1974 |
+
|
1975 |
+
#: includes/ui.php:37
|
1976 |
+
#@ fl-builder
|
1977 |
+
msgid "Buy Now!"
|
1978 |
+
msgstr "Adquira já!"
|
1979 |
+
|
1980 |
+
#: includes/ui.php:39
|
1981 |
+
#@ fl-builder
|
1982 |
+
msgid "Upgrade!"
|
1983 |
+
msgstr "Atualize!"
|
1984 |
+
|
1985 |
+
#: includes/ui.php:41
|
1986 |
+
#@ fl-builder
|
1987 |
+
msgid "Done"
|
1988 |
+
msgstr "Feito"
|
1989 |
+
|
1990 |
+
#: includes/ui.php:42
|
1991 |
+
#@ fl-builder
|
1992 |
+
msgid "Tools"
|
1993 |
+
msgstr "Ferramentas"
|
1994 |
+
|
1995 |
+
#: includes/ui.php:46
|
1996 |
+
#@ fl-builder
|
1997 |
+
msgid "Add Content"
|
1998 |
+
msgstr "Adicionar Conteúdo"
|
1999 |
+
|
2000 |
+
#: includes/ui.php:64
|
2001 |
+
#@ fl-builder
|
2002 |
+
msgid "Row Layouts"
|
2003 |
+
msgstr "Layout de Linhas"
|
2004 |
+
|
2005 |
+
#: includes/ui.php:68
|
2006 |
+
#@ fl-builder
|
2007 |
+
msgid "1 Column"
|
2008 |
+
msgstr "1 Coluna"
|
2009 |
+
|
2010 |
+
#: includes/ui.php:69
|
2011 |
+
#@ fl-builder
|
2012 |
+
msgid "2 Columns"
|
2013 |
+
msgstr "2 Colunas"
|
2014 |
+
|
2015 |
+
#: includes/ui.php:70
|
2016 |
+
#@ fl-builder
|
2017 |
+
msgid "3 Columns"
|
2018 |
+
msgstr "3 Colunas"
|
2019 |
+
|
2020 |
+
#: includes/ui.php:71
|
2021 |
+
#@ fl-builder
|
2022 |
+
msgid "4 Columns"
|
2023 |
+
msgstr "4 Colunas"
|
2024 |
+
|
2025 |
+
#: includes/ui.php:72
|
2026 |
+
#@ fl-builder
|
2027 |
+
msgid "5 Columns"
|
2028 |
+
msgstr "5 Colunas"
|
2029 |
+
|
2030 |
+
#: includes/ui.php:73
|
2031 |
+
#@ fl-builder
|
2032 |
+
msgid "6 Columns"
|
2033 |
+
msgstr "6 Colunas"
|
2034 |
+
|
2035 |
+
#: includes/ui.php:74
|
2036 |
+
#@ fl-builder
|
2037 |
+
msgid "Left Sidebar"
|
2038 |
+
msgstr "Barra Lateral na Esquerda"
|
2039 |
+
|
2040 |
+
#: includes/ui.php:75
|
2041 |
+
#@ fl-builder
|
2042 |
+
msgid "Right Sidebar"
|
2043 |
+
msgstr "Barra Lateral na Direita"
|
2044 |
+
|
2045 |
+
#: includes/ui.php:76
|
2046 |
+
#@ fl-builder
|
2047 |
+
msgid "Left & Right Sidebar"
|
2048 |
+
msgstr "Barra Lateral na Esquerda & Direita"
|
2049 |
+
|
2050 |
+
#: includes/ui.php:85
|
2051 |
+
#: modules/widget/widget.php:16
|
2052 |
+
#@ fl-builder
|
2053 |
+
msgid "WordPress Widgets"
|
2054 |
+
msgstr "Widgets do WordPress"
|
2055 |
+
|
2056 |
+
#: includes/updater/classes/class-fl-updater.php:107
|
2057 |
+
#@ fl-builder
|
2058 |
+
msgid "<strong>UPDATE UNAVAILABLE!</strong>"
|
2059 |
+
msgstr "<strong>ATUALIZAÇÃO INDISPONÍVEL!</strong>"
|
2060 |
+
|
2061 |
+
#: includes/updater/classes/class-fl-updater.php:109
|
2062 |
+
#@ fl-builder
|
2063 |
+
msgid "Please subscribe to enable automatic updates for this plugin."
|
2064 |
+
msgstr "Por favor, inscreva-se para receber atualizações automáticas deste plugin."
|
2065 |
+
|
2066 |
+
#: includes/updater/classes/class-fl-updater.php:111
|
2067 |
+
#: includes/updater/includes/form.php:6
|
2068 |
+
#@ fl-builder
|
2069 |
+
msgid "Subscribe Now"
|
2070 |
+
msgstr "Inscrever-se Agora"
|
2071 |
+
|
2072 |
+
#: includes/updater/includes/form.php:5
|
2073 |
+
#@ fl-builder
|
2074 |
+
msgid "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates."
|
2075 |
+
msgstr "ATUALIZAÇÕES INDISPONÍVEIS! Por favor, inscreva-se ou insira sua chave de licença abaixo para ativar atualizações automáticas."
|
2076 |
+
|
2077 |
+
#: includes/updater/includes/form.php:11
|
2078 |
+
#@ fl-builder
|
2079 |
+
msgid "Updates & Support Subscription"
|
2080 |
+
msgstr "Inscrição para Atualizações & Suporte"
|
2081 |
+
|
2082 |
+
#: includes/updater/includes/form.php:14
|
2083 |
+
#@ fl-builder
|
2084 |
+
msgid "Active!"
|
2085 |
+
msgstr "Ativada!"
|
2086 |
+
|
2087 |
+
#: includes/updater/includes/form.php:16
|
2088 |
+
#@ fl-builder
|
2089 |
+
msgid "Not Active!"
|
2090 |
+
msgstr "Desativada!"
|
2091 |
+
|
2092 |
+
#: includes/updater/includes/form.php:22
|
2093 |
+
#@ fl-builder
|
2094 |
+
msgid "Email address saved!"
|
2095 |
+
msgstr "Endereço de Email salvo!"
|
2096 |
+
|
2097 |
+
#: includes/updater/includes/form.php:27
|
2098 |
+
#, php-format
|
2099 |
+
#@ fl-builder
|
2100 |
+
msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
|
2101 |
+
msgstr "Insira sua <a%s>chave de licença</a> para habilitar atualizações remotas e suporte."
|
2102 |
+
|
2103 |
+
#: includes/updater/includes/form.php:39
|
2104 |
+
#@ fl-builder
|
2105 |
+
msgid "Save Subscription Settings"
|
2106 |
+
msgstr "Salva Configurações de Inscrição"
|
2107 |
+
|
2108 |
+
#: includes/user-template-settings.php:8
|
2109 |
+
#@ fl-builder
|
2110 |
+
msgid "Save the current layout as a template that can be reused under <strong>Templates → Your Templates</strong>."
|
2111 |
+
msgstr "Salve o layout atual como um template que poderá ser reutilizado em <strong>Templates → Seus Templates</strong>."
|
2112 |
+
|
2113 |
+
#: includes/user-template-settings.php:15
|
2114 |
+
#@ fl-builder
|
2115 |
+
msgctxt "Template name."
|
2116 |
+
msgid "Name"
|
2117 |
+
msgstr "Nome"
|
2118 |
+
|
2119 |
+
#: modules/accordion/accordion.php:14
|
2120 |
+
#@ fl-builder
|
2121 |
+
msgid "Accordion"
|
2122 |
+
msgstr "Sanfona"
|
2123 |
+
|
2124 |
+
#: modules/accordion/accordion.php:15
|
2125 |
+
#@ fl-builder
|
2126 |
+
msgid "Display a collapsible accordion of items."
|
2127 |
+
msgstr "Exibe uma sanfona de itens que se expandem."
|
2128 |
+
|
2129 |
+
#: modules/accordion/accordion.php:16
|
2130 |
+
#: modules/button/button.php:16
|
2131 |
+
#: modules/callout/callout.php:16
|
2132 |
+
#: modules/contact-form/contact-form.php:16
|
2133 |
+
#: modules/content-slider/content-slider.php:16
|
2134 |
+
#: modules/cta/cta.php:16
|
2135 |
+
#: modules/gallery/gallery.php:16
|
2136 |
+
#: modules/html/html.php:16
|
2137 |
+
#: modules/icon/icon.php:16
|
2138 |
+
#: modules/icon-group/icon-group.php:16
|
2139 |
+
#: modules/map/map.php:16
|
2140 |
+
#: modules/post-grid/post-grid.php:16
|
2141 |
+
#: modules/pricing-table/pricing-table.php:16
|
2142 |
+
#: modules/sidebar/sidebar.php:16
|
2143 |
+
#: modules/slideshow/slideshow.php:16
|
2144 |
+
#: modules/social-buttons/social-buttons.php:16
|
2145 |
+
#: modules/tabs/tabs.php:16
|
2146 |
+
#: modules/testimonials/testimonials.php:16
|
2147 |
+
#: modules/woocommerce/woocommerce.php:18
|
2148 |
+
#@ fl-builder
|
2149 |
+
msgid "Advanced Modules"
|
2150 |
+
msgstr "Módulos Avançados"
|
2151 |
+
|
2152 |
+
#: modules/accordion/accordion.php:28
|
2153 |
+
#: modules/tabs/tabs.php:28
|
2154 |
+
#@ fl-builder
|
2155 |
+
msgid "Items"
|
2156 |
+
msgstr "Itens"
|
2157 |
+
|
2158 |
+
#: modules/accordion/accordion.php:35
|
2159 |
+
#: modules/tabs/tabs.php:35
|
2160 |
+
#@ fl-builder
|
2161 |
+
msgid "Item"
|
2162 |
+
msgstr "Item"
|
2163 |
+
|
2164 |
+
#: modules/accordion/accordion.php:52
|
2165 |
+
#: modules/tabs/tabs.php:61
|
2166 |
+
#@ fl-builder
|
2167 |
+
msgid "Border Color"
|
2168 |
+
msgstr "Cor da Borda"
|
2169 |
+
|
2170 |
+
#: modules/accordion/accordion.php:62
|
2171 |
+
#@ fl-builder
|
2172 |
+
msgid "Label Size"
|
2173 |
+
msgstr "Tamanho do Rótulo"
|
2174 |
+
|
2175 |
+
#: modules/accordion/accordion.php:65
|
2176 |
+
#@ fl-builder
|
2177 |
+
msgctxt "Label size."
|
2178 |
+
msgid "Small"
|
2179 |
+
msgstr "Pequeno"
|
2180 |
+
|
2181 |
+
#: modules/accordion/accordion.php:66
|
2182 |
+
#@ fl-builder
|
2183 |
+
msgctxt "Label size."
|
2184 |
+
msgid "Medium"
|
2185 |
+
msgstr "Médio"
|
2186 |
+
|
2187 |
+
#: modules/accordion/accordion.php:67
|
2188 |
+
#@ fl-builder
|
2189 |
+
msgctxt "Label size."
|
2190 |
+
msgid "Large"
|
2191 |
+
msgstr "Grande"
|
2192 |
+
|
2193 |
+
#: modules/accordion/accordion.php:75
|
2194 |
+
#@ fl-builder
|
2195 |
+
msgid "Item Spacing"
|
2196 |
+
msgstr "Espaçamento do Item"
|
2197 |
+
|
2198 |
+
#: modules/accordion/accordion.php:86
|
2199 |
+
#@ fl-builder
|
2200 |
+
msgid "Collapse Inactive"
|
2201 |
+
msgstr "Expansão Inativa"
|
2202 |
+
|
2203 |
+
#: modules/accordion/accordion.php:92
|
2204 |
+
#@ fl-builder
|
2205 |
+
msgid "Choosing yes will keep only one item open at a time. Choosing no will allow multiple items to be open at the same time."
|
2206 |
+
msgstr "Escolher \"sim\" irá manter apenas um item aberto por vez. Escolher \"não\\\"\\ irá permitir que múltiplos itens permaneçam abertos ao mesmo tempo."
|
2207 |
+
|
2208 |
+
#: modules/accordion/accordion.php:107
|
2209 |
+
#: modules/tabs/tabs.php:74
|
2210 |
+
#@ fl-builder
|
2211 |
+
msgid "Add Item"
|
2212 |
+
msgstr "Adicionar Item"
|
2213 |
+
|
2214 |
+
#: modules/accordion/accordion.php:117
|
2215 |
+
#: modules/tabs/tabs.php:84
|
2216 |
+
#@ fl-builder
|
2217 |
+
msgid "Label"
|
2218 |
+
msgstr "Rótulo"
|
2219 |
+
|
2220 |
+
#: modules/accordion/accordion.php:122
|
2221 |
+
#: modules/post-grid/post-grid.php:195
|
2222 |
+
#: modules/post-grid/post-grid.php:199
|
2223 |
+
#: modules/post-grid/post-grid.php:235
|
2224 |
+
#: modules/tabs/tabs.php:89
|
2225 |
+
#@ fl-builder
|
2226 |
+
msgid "Content"
|
2227 |
+
msgstr "Conteúdo"
|
2228 |
+
|
2229 |
+
#: modules/button/button.php:14
|
2230 |
+
#: modules/callout/callout.php:477
|
2231 |
+
#: modules/content-slider/content-slider.php:595
|
2232 |
+
#: modules/cta/cta.php:212
|
2233 |
+
#: modules/pricing-table/pricing-table.php:129
|
2234 |
+
#@ fl-builder
|
2235 |
+
msgid "Button"
|
2236 |
+
msgstr "Botão"
|
2237 |
+
|
2238 |
+
#: modules/button/button.php:15
|
2239 |
+
#@ fl-builder
|
2240 |
+
msgid "A simple call to action button."
|
2241 |
+
msgstr "Um botão simples de chamada para ação."
|
2242 |
+
|
2243 |
+
#: modules/button/button.php:54
|
2244 |
+
#: modules/cta/cta.php:220
|
2245 |
+
#@ fl-builder
|
2246 |
+
msgid "Click Here"
|
2247 |
+
msgstr "Clique Aqui"
|
2248 |
+
|
2249 |
+
#: modules/button/button.php:62
|
2250 |
+
#: modules/callout/callout.php:315
|
2251 |
+
#: modules/callout/callout.php:363
|
2252 |
+
#: modules/callout/callout.php:367
|
2253 |
+
#: modules/cta/cta.php:228
|
2254 |
+
#: modules/icon/icon.php:14
|
2255 |
+
#: modules/icon/icon.php:34
|
2256 |
+
#: modules/icon-group/icon-group.php:34
|
2257 |
+
#: modules/icon-group/icon-group.php:135
|
2258 |
+
#@ fl-builder
|
2259 |
+
msgid "Icon"
|
2260 |
+
msgstr "Ícone"
|
2261 |
+
|
2262 |
+
#: modules/button/button.php:68
|
2263 |
+
#: modules/button/button.php:72
|
2264 |
+
#: modules/callout/callout.php:443
|
2265 |
+
#: modules/callout/callout.php:447
|
2266 |
+
#: modules/content-slider/content-slider.php:567
|
2267 |
+
#: modules/content-slider/content-slider.php:571
|
2268 |
+
#: modules/content-slider/content-slider.php:594
|
2269 |
+
#: modules/cta/cta.php:238
|
2270 |
+
#: modules/heading/heading.php:43
|
2271 |
+
#: modules/heading/heading.php:47
|
2272 |
+
#: modules/icon/icon.php:43
|
2273 |
+
#: modules/icon-group/icon-group.php:139
|
2274 |
+
#: modules/slideshow/slideshow.php:343
|
2275 |
+
#@ fl-builder
|
2276 |
+
msgid "Link"
|
2277 |
+
msgstr ""
|
2278 |
+
|
2279 |
+
#: modules/button/button.php:73
|
2280 |
+
#@ fl-builder
|
2281 |
+
msgid "http://www.example.com"
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: modules/button/button.php:80
|
2285 |
+
#: modules/callout/callout.php:455
|
2286 |
+
#: modules/content-slider/content-slider.php:576
|
2287 |
+
#: modules/cta/cta.php:245
|
2288 |
+
#: modules/heading/heading.php:54
|
2289 |
+
#: modules/icon/icon.php:50
|
2290 |
+
#: modules/photo/photo.php:478
|
2291 |
+
#@ fl-builder
|
2292 |
+
msgid "Link Target"
|
2293 |
+
msgstr "Destino do Link"
|
2294 |
+
|
2295 |
+
#: modules/button/button.php:83
|
2296 |
+
#: modules/callout/callout.php:458
|
2297 |
+
#: modules/content-slider/content-slider.php:579
|
2298 |
+
#: modules/cta/cta.php:248
|
2299 |
+
#: modules/heading/heading.php:57
|
2300 |
+
#: modules/icon/icon.php:53
|
2301 |
+
#: modules/photo/photo.php:481
|
2302 |
+
#@ fl-builder
|
2303 |
+
msgid "Same Window"
|
2304 |
+
msgstr "Mesma Janela"
|
2305 |
+
|
2306 |
+
#: modules/button/button.php:84
|
2307 |
+
#: modules/callout/callout.php:459
|
2308 |
+
#: modules/content-slider/content-slider.php:580
|
2309 |
+
#: modules/cta/cta.php:249
|
2310 |
+
#: modules/heading/heading.php:58
|
2311 |
+
#: modules/icon/icon.php:54
|
2312 |
+
#: modules/photo/photo.php:482
|
2313 |
+
#@ fl-builder
|
2314 |
+
msgid "New Window"
|
2315 |
+
msgstr "Nova Janela"
|
2316 |
+
|
2317 |
+
#: modules/button/button.php:98
|
2318 |
+
#: modules/cta/cta.php:185
|
2319 |
+
#: modules/heading/heading.php:72
|
2320 |
+
#: modules/icon/icon.php:78
|
2321 |
+
#: modules/icon-group/icon-group.php:47
|
2322 |
+
#@ fl-builder
|
2323 |
+
#@ default
|
2324 |
+
msgid "Colors"
|
2325 |
+
msgstr "Cores"
|
2326 |
+
|
2327 |
+
#: modules/button/button.php:108
|
2328 |
+
#: modules/callout/callout.php:407
|
2329 |
+
#: modules/callout/callout.php:512
|
2330 |
+
#: modules/content-slider/content-slider.php:630
|
2331 |
+
#: modules/cta/cta.php:268
|
2332 |
+
#: modules/icon/icon.php:100
|
2333 |
+
#: modules/icon-group/icon-group.php:69
|
2334 |
+
#@ fl-builder
|
2335 |
+
msgid "Background Hover Color"
|
2336 |
+
msgstr "Cor de Fundo (mouse sobrepondo o elemento)"
|
2337 |
+
|
2338 |
+
#: modules/button/button.php:117
|
2339 |
+
#: modules/callout/callout.php:521
|
2340 |
+
#: modules/content-slider/content-slider.php:522
|
2341 |
+
#: modules/content-slider/content-slider.php:635
|
2342 |
+
#: modules/content-slider/content-slider.php:719
|
2343 |
+
#: modules/cta/cta.php:189
|
2344 |
+
#: modules/cta/cta.php:277
|
2345 |
+
#: modules/heading/heading.php:77
|
2346 |
+
#@ fl-builder
|
2347 |
+
msgid "Text Color"
|
2348 |
+
msgstr "Cor do Texto"
|
2349 |
+
|
2350 |
+
#: modules/button/button.php:123
|
2351 |
+
#: modules/callout/callout.php:527
|
2352 |
+
#: modules/content-slider/content-slider.php:641
|
2353 |
+
#: modules/cta/cta.php:283
|
2354 |
+
#@ fl-builder
|
2355 |
+
msgid "Text Hover Color"
|
2356 |
+
msgstr "Cor do Texto (mouse sobrepondo o elemento)"
|
2357 |
+
|
2358 |
+
#: modules/button/button.php:132
|
2359 |
+
#: modules/callout/callout.php:415
|
2360 |
+
#: modules/callout/callout.php:536
|
2361 |
+
#: modules/content-slider/content-slider.php:646
|
2362 |
+
#: modules/cta/cta.php:292
|
2363 |
+
#: modules/icon/icon.php:108
|
2364 |
+
#: modules/icon-group/icon-group.php:77
|
2365 |
+
#@ fl-builder
|
2366 |
+
msgid "Gradient"
|
2367 |
+
msgstr "Degradê"
|
2368 |
+
|
2369 |
+
#: modules/button/button.php:142
|
2370 |
+
#: modules/callout/callout.php:242
|
2371 |
+
#: modules/cta/cta.php:102
|
2372 |
+
#: modules/heading/heading.php:82
|
2373 |
+
#: modules/icon/icon.php:118
|
2374 |
+
#: modules/icon-group/icon-group.php:87
|
2375 |
+
#@ fl-builder
|
2376 |
+
msgid "Structure"
|
2377 |
+
msgstr "Estrutura"
|
2378 |
+
|
2379 |
+
#: modules/button/button.php:149
|
2380 |
+
#: modules/callout/callout.php:553
|
2381 |
+
#@ fl-builder
|
2382 |
+
msgctxt "Width."
|
2383 |
+
msgid "Auto"
|
2384 |
+
msgstr "Automática"
|
2385 |
+
|
2386 |
+
#: modules/button/button.php:165
|
2387 |
+
#@ fl-builder
|
2388 |
+
msgid "Custom Width"
|
2389 |
+
msgstr "Tamanho Personalizado"
|
2390 |
+
|
2391 |
+
#: modules/button/button.php:173
|
2392 |
+
#: modules/cta/cta.php:120
|
2393 |
+
#: modules/heading/heading.php:86
|
2394 |
+
#: modules/heading/heading.php:141
|
2395 |
+
#: modules/icon/icon.php:130
|
2396 |
+
#: modules/icon-group/icon-group.php:107
|
2397 |
+
#: modules/photo/photo.php:414
|
2398 |
+
#: modules/social-buttons/social-buttons.php:97
|
2399 |
+
#@ fl-builder
|
2400 |
+
msgid "Alignment"
|
2401 |
+
msgstr "Alinhamento"
|
2402 |
+
|
2403 |
+
#: modules/button/button.php:183
|
2404 |
+
#: modules/callout/callout.php:559
|
2405 |
+
#: modules/content-slider/content-slider.php:660
|
2406 |
+
#: modules/cta/cta.php:306
|
2407 |
+
#: modules/heading/heading.php:114
|
2408 |
+
#: modules/heading/heading.php:171
|
2409 |
+
#@ fl-builder
|
2410 |
+
msgid "Font Size"
|
2411 |
+
msgstr "Tamanho da Fonte"
|
2412 |
+
|
2413 |
+
#: modules/button/button.php:199
|
2414 |
+
#: modules/callout/callout.php:575
|
2415 |
+
#: modules/cta/cta.php:322
|
2416 |
+
#@ fl-builder
|
2417 |
+
msgid "Round Corners"
|
2418 |
+
msgstr "Cantos Arredondados"
|
2419 |
+
|
2420 |
+
#: modules/callout/callout.php:14
|
2421 |
+
#@ fl-builder
|
2422 |
+
msgid "Callout"
|
2423 |
+
msgstr "Chamada"
|
2424 |
+
|
2425 |
+
#: modules/callout/callout.php:15
|
2426 |
+
#@ fl-builder
|
2427 |
+
msgid "A heading and snippet of text with an optional link, icon and image."
|
2428 |
+
msgstr "Uma cabeçalho e um trecho de texto com link, ícone e imagem opcionais."
|
2429 |
+
|
2430 |
+
#: modules/callout/callout.php:214
|
2431 |
+
#: modules/content-slider/content-slider.php:407
|
2432 |
+
#: modules/content-slider/content-slider.php:422
|
2433 |
+
#: modules/cta/cta.php:72
|
2434 |
+
#: modules/heading/heading.php:14
|
2435 |
+
#: modules/heading/heading.php:33
|
2436 |
+
#: modules/testimonials/testimonials.php:56
|
2437 |
+
#: modules/testimonials/testimonials.php:61
|
2438 |
+
#@ fl-builder
|
2439 |
+
msgid "Heading"
|
2440 |
+
msgstr "Cabeçalho"
|
2441 |
+
|
2442 |
+
#: modules/callout/callout.php:246
|
2443 |
+
#@ fl-builder
|
2444 |
+
msgid "Overall Alignment"
|
2445 |
+
msgstr "Alinhamento Geral"
|
2446 |
+
|
2447 |
+
#: modules/callout/callout.php:253
|
2448 |
+
#@ fl-builder
|
2449 |
+
msgid "The alignment that will apply to all elements within the callout."
|
2450 |
+
msgstr "O alinhamento que será aplicado a todos os elementos dentro do bloco de chamada."
|
2451 |
+
|
2452 |
+
#: modules/callout/callout.php:261
|
2453 |
+
#: modules/cta/cta.php:145
|
2454 |
+
#@ fl-builder
|
2455 |
+
msgid "Heading Structure"
|
2456 |
+
msgstr "Estrutura do Cabeçalho"
|
2457 |
+
|
2458 |
+
#: modules/callout/callout.php:265
|
2459 |
+
#: modules/content-slider/content-slider.php:426
|
2460 |
+
#: modules/cta/cta.php:149
|
2461 |
+
#@ fl-builder
|
2462 |
+
msgid "Heading Tag"
|
2463 |
+
msgstr "Tag HTML do Cabeçalho"
|
2464 |
+
|
2465 |
+
#: modules/callout/callout.php:278
|
2466 |
+
#: modules/content-slider/content-slider.php:439
|
2467 |
+
#: modules/content-slider/content-slider.php:453
|
2468 |
+
#: modules/cta/cta.php:162
|
2469 |
+
#: modules/testimonials/testimonials.php:69
|
2470 |
+
#@ fl-builder
|
2471 |
+
msgid "Heading Size"
|
2472 |
+
msgstr "Tamanho do Cabeçalho"
|
2473 |
+
|
2474 |
+
#: modules/callout/callout.php:292
|
2475 |
+
#: modules/cta/cta.php:176
|
2476 |
+
#@ fl-builder
|
2477 |
+
msgid "Heading Custom Size"
|
2478 |
+
msgstr "Tamanho Personalizado do Cabeçalho"
|
2479 |
+
|
2480 |
+
#: modules/callout/callout.php:303
|
2481 |
+
#: modules/post-grid/post-grid.php:113
|
2482 |
+
#@ fl-builder
|
2483 |
+
msgid "Image"
|
2484 |
+
msgstr "Imagem"
|
2485 |
+
|
2486 |
+
#: modules/callout/callout.php:310
|
2487 |
+
#@ fl-builder
|
2488 |
+
msgid "Image Type"
|
2489 |
+
msgstr "Tipo de Imagem"
|
2490 |
+
|
2491 |
+
#: modules/callout/callout.php:313
|
2492 |
+
#@ fl-builder
|
2493 |
+
msgctxt "Image type."
|
2494 |
+
msgid "None"
|
2495 |
+
msgstr "Nenhuma"
|
2496 |
+
|
2497 |
+
#: modules/callout/callout.php:338
|
2498 |
+
#: modules/photo/photo.php:401
|
2499 |
+
#: modules/slideshow/slideshow.php:312
|
2500 |
+
#@ fl-builder
|
2501 |
+
msgid "Crop"
|
2502 |
+
msgstr "Recorte"
|
2503 |
+
|
2504 |
+
#: modules/callout/callout.php:341
|
2505 |
+
#@ fl-builder
|
2506 |
+
msgctxt "Crop"
|
2507 |
+
msgid "None"
|
2508 |
+
msgstr "Nenhum"
|
2509 |
+
|
2510 |
+
#: modules/callout/callout.php:342
|
2511 |
+
#: modules/photo/photo.php:405
|
2512 |
+
#@ fl-builder
|
2513 |
+
msgid "Landscape"
|
2514 |
+
msgstr "Paisagem"
|
2515 |
+
|
2516 |
+
#: modules/callout/callout.php:343
|
2517 |
+
#: modules/photo/photo.php:406
|
2518 |
+
#@ fl-builder
|
2519 |
+
msgid "Panorama"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: modules/callout/callout.php:344
|
2523 |
+
#: modules/photo/photo.php:407
|
2524 |
+
#@ fl-builder
|
2525 |
+
msgid "Portrait"
|
2526 |
+
msgstr "Retrato"
|
2527 |
+
|
2528 |
+
#: modules/callout/callout.php:345
|
2529 |
+
#: modules/photo/photo.php:408
|
2530 |
+
#@ fl-builder
|
2531 |
+
msgid "Square"
|
2532 |
+
msgstr "Quadrado"
|
2533 |
+
|
2534 |
+
#: modules/callout/callout.php:346
|
2535 |
+
#: modules/photo/photo.php:409
|
2536 |
+
#@ fl-builder
|
2537 |
+
msgid "Circle"
|
2538 |
+
msgstr "Círculo"
|
2539 |
+
|
2540 |
+
#: modules/callout/callout.php:354
|
2541 |
+
#: modules/callout/callout.php:374
|
2542 |
+
#@ fl-builder
|
2543 |
+
msgid "Above Heading"
|
2544 |
+
msgstr "Acima do Cabeçalho"
|
2545 |
+
|
2546 |
+
#: modules/callout/callout.php:355
|
2547 |
+
#: modules/callout/callout.php:375
|
2548 |
+
#@ fl-builder
|
2549 |
+
msgid "Below Heading"
|
2550 |
+
msgstr "Abaixo do Cabeçalho"
|
2551 |
+
|
2552 |
+
#: modules/callout/callout.php:356
|
2553 |
+
#: modules/callout/callout.php:378
|
2554 |
+
#@ fl-builder
|
2555 |
+
msgid "Left of Text and Heading"
|
2556 |
+
msgstr "À Esquerda do Texto e Cabeçalho"
|
2557 |
+
|
2558 |
+
#: modules/callout/callout.php:357
|
2559 |
+
#: modules/callout/callout.php:379
|
2560 |
+
#@ fl-builder
|
2561 |
+
msgid "Right of Text and Heading"
|
2562 |
+
msgstr "À Direita do Texto e Cabeçalho"
|
2563 |
+
|
2564 |
+
#: modules/callout/callout.php:376
|
2565 |
+
#@ fl-builder
|
2566 |
+
msgid "Left of Heading"
|
2567 |
+
msgstr "À Esquerda do Cabeçalho"
|
2568 |
+
|
2569 |
+
#: modules/callout/callout.php:377
|
2570 |
+
#@ fl-builder
|
2571 |
+
msgid "Right of Heading"
|
2572 |
+
msgstr "À Direita do Cabeçalho"
|
2573 |
+
|
2574 |
+
#: modules/callout/callout.php:385
|
2575 |
+
#@ fl-builder
|
2576 |
+
msgid "Icon Colors"
|
2577 |
+
msgstr "Cores do Ícone"
|
2578 |
+
|
2579 |
+
#: modules/callout/callout.php:394
|
2580 |
+
#: modules/icon/icon.php:87
|
2581 |
+
#: modules/icon-group/icon-group.php:56
|
2582 |
+
#@ fl-builder
|
2583 |
+
msgid "Hover Color"
|
2584 |
+
msgstr "Cor com mouse sobrepondo"
|
2585 |
+
|
2586 |
+
#: modules/callout/callout.php:425
|
2587 |
+
#@ fl-builder
|
2588 |
+
msgid "Icon Structure"
|
2589 |
+
msgstr "Estrutura do Ícone"
|
2590 |
+
|
2591 |
+
#: modules/callout/callout.php:429
|
2592 |
+
#: modules/icon/icon.php:122
|
2593 |
+
#: modules/icon-group/icon-group.php:91
|
2594 |
+
#: modules/post-grid/post-grid.php:136
|
2595 |
+
#@ fl-builder
|
2596 |
+
msgid "Size"
|
2597 |
+
msgstr "Tamanho"
|
2598 |
+
|
2599 |
+
#: modules/callout/callout.php:440
|
2600 |
+
#: modules/content-slider/content-slider.php:564
|
2601 |
+
#@ fl-builder
|
2602 |
+
msgid "Call To Action"
|
2603 |
+
msgstr "Chamada de Ação"
|
2604 |
+
|
2605 |
+
#: modules/callout/callout.php:448
|
2606 |
+
#@ fl-builder
|
2607 |
+
msgid "The link applies to the entire module. If choosing a call to action type below, this link will also be used for the text or button."
|
2608 |
+
msgstr "O link aplica-se ao módulo por inteiro. Se escolher um tipo de chamada de ação abaixo, este link também será usado para o texto ou botão."
|
2609 |
+
|
2610 |
+
#: modules/callout/callout.php:468
|
2611 |
+
#: modules/content-slider/content-slider.php:586
|
2612 |
+
#: modules/cta/cta.php:14
|
2613 |
+
#@ fl-builder
|
2614 |
+
msgid "Call to Action"
|
2615 |
+
msgstr "Chamada para Ação"
|
2616 |
+
|
2617 |
+
#: modules/callout/callout.php:475
|
2618 |
+
#: modules/content-slider/content-slider.php:593
|
2619 |
+
#@ fl-builder
|
2620 |
+
msgctxt "Call to action."
|
2621 |
+
msgid "None"
|
2622 |
+
msgstr "Nenhuma"
|
2623 |
+
|
2624 |
+
#: modules/callout/callout.php:496
|
2625 |
+
#: modules/content-slider/content-slider.php:614
|
2626 |
+
#@ fl-builder
|
2627 |
+
msgid "Button Icon"
|
2628 |
+
msgstr "Ícone do Botão"
|
2629 |
+
|
2630 |
+
#: modules/callout/callout.php:502
|
2631 |
+
#: modules/content-slider/content-slider.php:620
|
2632 |
+
#: modules/cta/cta.php:258
|
2633 |
+
#@ fl-builder
|
2634 |
+
msgid "Button Colors"
|
2635 |
+
msgstr "Cores do Botão"
|
2636 |
+
|
2637 |
+
#: modules/callout/callout.php:546
|
2638 |
+
#: modules/content-slider/content-slider.php:656
|
2639 |
+
#: modules/cta/cta.php:302
|
2640 |
+
#@ fl-builder
|
2641 |
+
msgid "Button Structure"
|
2642 |
+
msgstr "Estrutura do Botão"
|
2643 |
+
|
2644 |
+
#: modules/callout/callout.php:550
|
2645 |
+
#@ fl-builder
|
2646 |
+
msgid "Button Width"
|
2647 |
+
msgstr "Largura do Botão"
|
2648 |
+
|
2649 |
+
#: modules/contact-form/contact-form.php:14
|
2650 |
+
#@ fl-builder
|
2651 |
+
msgid "Contact Form"
|
2652 |
+
msgstr "Formulário de Contato"
|
2653 |
+
|
2654 |
+
#: modules/contact-form/contact-form.php:15
|
2655 |
+
#@ fl-builder
|
2656 |
+
msgid "A very simple contact form."
|
2657 |
+
msgstr "Um formulário simples de contato."
|
2658 |
+
|
2659 |
+
#: modules/contact-form/contact-form.php:36
|
2660 |
+
#@ fl-builder
|
2661 |
+
msgid "Contact Form Submission"
|
2662 |
+
msgstr "Envio do Formulário de Contato"
|
2663 |
+
|
2664 |
+
#: modules/contact-form/contact-form.php:64
|
2665 |
+
#@ fl-builder
|
2666 |
+
msgid "Send To Email"
|
2667 |
+
msgstr "Enviar para Email"
|
2668 |
+
|
2669 |
+
#: modules/contact-form/contact-form.php:66
|
2670 |
+
#@ fl-builder
|
2671 |
+
msgid "example@mail.com"
|
2672 |
+
msgstr ""
|
2673 |
+
|
2674 |
+
#: modules/contact-form/contact-form.php:67
|
2675 |
+
#@ fl-builder
|
2676 |
+
msgid "The contact form will send to this e-mail"
|
2677 |
+
msgstr "O formulário de contato será enviado para este e-mail"
|
2678 |
+
|
2679 |
+
#: modules/contact-form/includes/frontend.php:4
|
2680 |
+
#@ fl-builder
|
2681 |
+
msgctxt "Contact form field label."
|
2682 |
+
msgid "Name"
|
2683 |
+
msgstr "Nome"
|
2684 |
+
|
2685 |
+
#: modules/contact-form/includes/frontend.php:5
|
2686 |
+
#@ fl-builder
|
2687 |
+
msgid "Please enter your name."
|
2688 |
+
msgstr "Por favor, insira seu nome."
|
2689 |
+
|
2690 |
+
#: modules/contact-form/includes/frontend.php:6
|
2691 |
+
#@ fl-builder
|
2692 |
+
msgid "Your name"
|
2693 |
+
msgstr "Seu nome"
|
2694 |
+
|
2695 |
+
#: modules/contact-form/includes/frontend.php:10
|
2696 |
+
#@ fl-builder
|
2697 |
+
msgid "Email"
|
2698 |
+
msgstr "Email"
|
2699 |
+
|
2700 |
+
#: modules/contact-form/includes/frontend.php:11
|
2701 |
+
#@ fl-builder
|
2702 |
+
msgid "Please enter a valid email."
|
2703 |
+
msgstr "Por favor, insira um email válido."
|
2704 |
+
|
2705 |
+
#: modules/contact-form/includes/frontend.php:12
|
2706 |
+
#@ fl-builder
|
2707 |
+
msgid "Your email"
|
2708 |
+
msgstr "Seu email"
|
2709 |
+
|
2710 |
+
#: modules/contact-form/includes/frontend.php:16
|
2711 |
+
#@ fl-builder
|
2712 |
+
msgid "Your Message"
|
2713 |
+
msgstr "Sua Mensagem"
|
2714 |
+
|
2715 |
+
#: modules/contact-form/includes/frontend.php:17
|
2716 |
+
#@ fl-builder
|
2717 |
+
msgid "Please enter a message."
|
2718 |
+
msgstr "Por favor, escreva sua mensagem."
|
2719 |
+
|
2720 |
+
#: modules/contact-form/includes/frontend.php:18
|
2721 |
+
#@ fl-builder
|
2722 |
+
msgid "Your message"
|
2723 |
+
msgstr "Sua mensagem"
|
2724 |
+
|
2725 |
+
#: modules/contact-form/includes/frontend.php:23
|
2726 |
+
#@ fl-builder
|
2727 |
+
msgid "Send"
|
2728 |
+
msgstr "Enviar"
|
2729 |
+
|
2730 |
+
#: modules/contact-form/includes/frontend.php:24
|
2731 |
+
#@ fl-builder
|
2732 |
+
msgid "Message Sent!"
|
2733 |
+
msgstr "Mensagem Enviada!"
|
2734 |
+
|
2735 |
+
#: modules/contact-form/includes/frontend.php:25
|
2736 |
+
#@ fl-builder
|
2737 |
+
msgid "Message failed. Please try again."
|
2738 |
+
msgstr "Falha na Mensagem. Por favor, tente novamente."
|
2739 |
+
|
2740 |
+
#: modules/content-slider/content-slider.php:14
|
2741 |
+
#@ fl-builder
|
2742 |
+
msgid "Content Slider"
|
2743 |
+
msgstr "Slider de Conteúdo"
|
2744 |
+
|
2745 |
+
#: modules/content-slider/content-slider.php:15
|
2746 |
+
#@ fl-builder
|
2747 |
+
msgid "Displays multiple slides with an optional heading and call to action."
|
2748 |
+
msgstr "Exibe múltiplos slides com cabeçalho e chamada de ação opcionais."
|
2749 |
+
|
2750 |
+
#: modules/content-slider/content-slider.php:191
|
2751 |
+
#: modules/map/map.php:41
|
2752 |
+
#: modules/separator/separator.php:58
|
2753 |
+
#: modules/slideshow/slideshow.php:294
|
2754 |
+
#@ fl-builder
|
2755 |
+
msgid "Height"
|
2756 |
+
msgstr "Altura"
|
2757 |
+
|
2758 |
+
#: modules/content-slider/content-slider.php:196
|
2759 |
+
#@ fl-builder
|
2760 |
+
msgid "This setting is the minimum height of the content slider. Content will expand the height automatically."
|
2761 |
+
msgstr "Esta configuração é a altura mínima para o slider de conteúdo. O conteúdo irá expandir a altura automaticamente."
|
2762 |
+
|
2763 |
+
#: modules/content-slider/content-slider.php:200
|
2764 |
+
#: modules/slideshow/slideshow.php:373
|
2765 |
+
#: modules/testimonials/testimonials.php:82
|
2766 |
+
#: modules/video/video.php:108
|
2767 |
+
#@ fl-builder
|
2768 |
+
msgid "Auto Play"
|
2769 |
+
msgstr "Reproduzir Automaticamente"
|
2770 |
+
|
2771 |
+
#: modules/content-slider/content-slider.php:214
|
2772 |
+
#@ fl-builder
|
2773 |
+
msgid "Show Play/Pause"
|
2774 |
+
msgstr "Mostrar botão de Reproduzir / Pausar"
|
2775 |
+
|
2776 |
+
#: modules/content-slider/content-slider.php:234
|
2777 |
+
#: modules/testimonials/testimonials.php:102
|
2778 |
+
#@ fl-builder
|
2779 |
+
msgctxt "Transition type."
|
2780 |
+
msgid "Slide"
|
2781 |
+
msgstr ""
|
2782 |
+
|
2783 |
+
#: modules/content-slider/content-slider.php:248
|
2784 |
+
#: modules/testimonials/testimonials.php:121
|
2785 |
+
#@ fl-builder
|
2786 |
+
msgid "Show Arrows"
|
2787 |
+
msgstr "Mostrar Setas"
|
2788 |
+
|
2789 |
+
#: modules/content-slider/content-slider.php:257
|
2790 |
+
#: modules/testimonials/testimonials.php:151
|
2791 |
+
#@ fl-builder
|
2792 |
+
msgid "Show Dots"
|
2793 |
+
msgstr "Mostrar Pontos"
|
2794 |
+
|
2795 |
+
#: modules/content-slider/content-slider.php:271
|
2796 |
+
#@ fl-builder
|
2797 |
+
msgid "Max Content Width"
|
2798 |
+
msgstr "Largura Máxima do Conteúdo"
|
2799 |
+
|
2800 |
+
#: modules/content-slider/content-slider.php:276
|
2801 |
+
#@ fl-builder
|
2802 |
+
msgid "The max width that the content area will be within your slides."
|
2803 |
+
msgstr "A largura máxima que a área de conteúdo irá ocupar dentro de seus slides."
|
2804 |
+
|
2805 |
+
#: modules/content-slider/content-slider.php:283
|
2806 |
+
#@ fl-builder
|
2807 |
+
msgid "Slides"
|
2808 |
+
msgstr ""
|
2809 |
+
|
2810 |
+
#: modules/content-slider/content-slider.php:290
|
2811 |
+
#@ fl-builder
|
2812 |
+
msgid "Slide"
|
2813 |
+
msgstr ""
|
2814 |
+
|
2815 |
+
#: modules/content-slider/content-slider.php:305
|
2816 |
+
#@ fl-builder
|
2817 |
+
msgid "Slide Settings"
|
2818 |
+
msgstr "Configurações do Slide"
|
2819 |
+
|
2820 |
+
#: modules/content-slider/content-slider.php:315
|
2821 |
+
#@ fl-builder
|
2822 |
+
msgid "Slide Label"
|
2823 |
+
msgstr "Rótulo do Slide"
|
2824 |
+
|
2825 |
+
#: modules/content-slider/content-slider.php:316
|
2826 |
+
#@ fl-builder
|
2827 |
+
msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
|
2828 |
+
msgstr "Um rótulo para identificar este slide na aba de Slides, nas configurações do Slider de Conteúdo"
|
2829 |
+
|
2830 |
+
#: modules/content-slider/content-slider.php:321
|
2831 |
+
#@ fl-builder
|
2832 |
+
msgid "Background Layout"
|
2833 |
+
msgstr "Layout do Fundo"
|
2834 |
+
|
2835 |
+
#: modules/content-slider/content-slider.php:327
|
2836 |
+
#@ fl-builder
|
2837 |
+
msgid "This setting is for the entire background of your slide."
|
2838 |
+
msgstr "Esta configuração corresponde ao fundo inteiro de seu slide."
|
2839 |
+
|
2840 |
+
#: modules/content-slider/content-slider.php:362
|
2841 |
+
#@ fl-builder
|
2842 |
+
msgid "Background Video Code"
|
2843 |
+
msgstr "Código do Vídeo de Fundo"
|
2844 |
+
|
2845 |
+
#: modules/content-slider/content-slider.php:368
|
2846 |
+
#@ fl-builder
|
2847 |
+
msgid "Content Layout"
|
2848 |
+
msgstr "Layout do Conteúdo"
|
2849 |
+
|
2850 |
+
#: modules/content-slider/content-slider.php:374
|
2851 |
+
#@ fl-builder
|
2852 |
+
msgid "This allows you to add content over or in addition to the background selection above. The location of the content layout can be selected in the style tab."
|
2853 |
+
msgstr "Isto permite que você adicione conteúdo sobre, ou em complemento à seleção do fundo acima. A localização do layout do conteúdo pode ser selecionada na aba de estilo."
|
2854 |
+
|
2855 |
+
#: modules/content-slider/content-slider.php:377
|
2856 |
+
#@ fl-builder
|
2857 |
+
msgid "Text & Photo"
|
2858 |
+
msgstr "Texto & Foto"
|
2859 |
+
|
2860 |
+
#: modules/content-slider/content-slider.php:378
|
2861 |
+
#@ fl-builder
|
2862 |
+
msgid "Text & Video"
|
2863 |
+
msgstr "Texto & Vídeo"
|
2864 |
+
|
2865 |
+
#: modules/content-slider/content-slider.php:379
|
2866 |
+
#@ fl-builder
|
2867 |
+
msgctxt "Content type."
|
2868 |
+
msgid "None"
|
2869 |
+
msgstr "Nenhum"
|
2870 |
+
|
2871 |
+
#: modules/content-slider/content-slider.php:402
|
2872 |
+
#: modules/video/video.php:132
|
2873 |
+
#@ fl-builder
|
2874 |
+
msgid "Video Embed Code"
|
2875 |
+
msgstr "Código de Incorporação do Vídeo"
|
2876 |
+
|
2877 |
+
#: modules/content-slider/content-slider.php:462
|
2878 |
+
#@ fl-builder
|
2879 |
+
msgid "Text Position"
|
2880 |
+
msgstr "Posição do Texto"
|
2881 |
+
|
2882 |
+
#: modules/content-slider/content-slider.php:468
|
2883 |
+
#@ fl-builder
|
2884 |
+
msgid "The position will move the content layout selections left, right or center over the background of the slide."
|
2885 |
+
msgstr "A posição irá mover o layout do conteúdo para a esquerda, direita ou no centro, sobre o fundo do slide."
|
2886 |
+
|
2887 |
+
#: modules/content-slider/content-slider.php:485
|
2888 |
+
#@ fl-builder
|
2889 |
+
msgid "Top Margin"
|
2890 |
+
msgstr "Margem Superior"
|
2891 |
+
|
2892 |
+
#: modules/content-slider/content-slider.php:493
|
2893 |
+
#@ fl-builder
|
2894 |
+
msgid "Bottom Margin"
|
2895 |
+
msgstr "Margem Inferior"
|
2896 |
+
|
2897 |
+
#: modules/content-slider/content-slider.php:501
|
2898 |
+
#@ fl-builder
|
2899 |
+
msgid "Left Margin"
|
2900 |
+
msgstr "Margem Esquerda"
|
2901 |
+
|
2902 |
+
#: modules/content-slider/content-slider.php:509
|
2903 |
+
#@ fl-builder
|
2904 |
+
msgid "Right Margin"
|
2905 |
+
msgstr "Margem Direita"
|
2906 |
+
|
2907 |
+
#: modules/content-slider/content-slider.php:518
|
2908 |
+
#@ fl-builder
|
2909 |
+
msgid "Text Colors"
|
2910 |
+
msgstr "Cores do Texto"
|
2911 |
+
|
2912 |
+
#: modules/content-slider/content-slider.php:528
|
2913 |
+
#@ fl-builder
|
2914 |
+
msgid "Text Shadow"
|
2915 |
+
msgstr "Sombra do Texto"
|
2916 |
+
|
2917 |
+
#: modules/content-slider/content-slider.php:537
|
2918 |
+
#: modules/content-slider/content-slider.php:725
|
2919 |
+
#@ fl-builder
|
2920 |
+
msgid "Text Background Color"
|
2921 |
+
msgstr "Cor de Fundo do Texto"
|
2922 |
+
|
2923 |
+
#: modules/content-slider/content-slider.php:538
|
2924 |
+
#@ fl-builder
|
2925 |
+
msgid "The color applies to the overlay behind text over the background selections."
|
2926 |
+
msgstr "A cor aplica-se ao elemento que posiciona-se atrás do texto e acima do fundo."
|
2927 |
+
|
2928 |
+
#: modules/content-slider/content-slider.php:543
|
2929 |
+
#@ fl-builder
|
2930 |
+
msgid "Text Background Opacity"
|
2931 |
+
msgstr "Opacidade do Fundo do Texto"
|
2932 |
+
|
2933 |
+
#: modules/content-slider/content-slider.php:551
|
2934 |
+
#@ fl-builder
|
2935 |
+
msgid "Text Background Height"
|
2936 |
+
msgstr "Altura do Fundo do Texto"
|
2937 |
+
|
2938 |
+
#: modules/content-slider/content-slider.php:553
|
2939 |
+
#@ fl-builder
|
2940 |
+
msgid "Auto will allow the overlay to fit however long the text content is. 100% will fit the overlay to the top and bottom of the slide."
|
2941 |
+
msgstr "\"Automático\" irá permitir que o elemento atrás do texto ajuste-se a texto, não importa o quão grande ele seja. 100% irá ajustar o elemento atrás do texto ao topo e base do slide."
|
2942 |
+
|
2943 |
+
#: modules/content-slider/content-slider.php:555
|
2944 |
+
#@ fl-builder
|
2945 |
+
msgctxt "Background height."
|
2946 |
+
msgid "Auto"
|
2947 |
+
msgstr "Automático"
|
2948 |
+
|
2949 |
+
#: modules/content-slider/content-slider.php:572
|
2950 |
+
#@ fl-builder
|
2951 |
+
msgid "The link applies to the entire slide. If choosing a call to action type below, this link will also be used for the text or button."
|
2952 |
+
msgstr "O link aplica-se ao slide por completo. Se você escolher um tipo de chamada de ação abaixo, o link também será usado para o texto ou botão."
|
2953 |
+
|
2954 |
+
#: modules/content-slider/content-slider.php:676
|
2955 |
+
#@ fl-builder
|
2956 |
+
msgid "Border Radius"
|
2957 |
+
msgstr "Arredondamento dos Cantos"
|
2958 |
+
|
2959 |
+
#: modules/content-slider/content-slider.php:687
|
2960 |
+
#@ fl-builder
|
2961 |
+
msgctxt "Module settings form tab. Display on mobile devices."
|
2962 |
+
msgid "Mobile"
|
2963 |
+
msgstr "Dispositivos Móveis"
|
2964 |
+
|
2965 |
+
#: modules/content-slider/content-slider.php:690
|
2966 |
+
#@ fl-builder
|
2967 |
+
msgid "Mobile Photo"
|
2968 |
+
msgstr "Foto para Dispositivos Móveis"
|
2969 |
+
|
2970 |
+
#: modules/content-slider/content-slider.php:696
|
2971 |
+
#@ fl-builder
|
2972 |
+
msgid "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
|
2973 |
+
msgstr "Você pode escolher uma foto diferente para que o slide alterne em dispositivos móveis, ou também pode não selecionar nenhuma foto, se desejar."
|
2974 |
+
|
2975 |
+
#: modules/content-slider/content-slider.php:698
|
2976 |
+
#@ fl-builder
|
2977 |
+
msgid "Use Main Photo"
|
2978 |
+
msgstr "Usar Foto Principal"
|
2979 |
+
|
2980 |
+
#: modules/content-slider/content-slider.php:699
|
2981 |
+
#@ fl-builder
|
2982 |
+
msgid "Choose Another Photo"
|
2983 |
+
msgstr "Escolher Outra Foto"
|
2984 |
+
|
2985 |
+
#: modules/content-slider/content-slider.php:700
|
2986 |
+
#@ fl-builder
|
2987 |
+
msgid "No Photo"
|
2988 |
+
msgstr "Nenhuma Foto"
|
2989 |
+
|
2990 |
+
#: modules/content-slider/content-slider.php:715
|
2991 |
+
#@ fl-builder
|
2992 |
+
msgid "Mobile Text Colors"
|
2993 |
+
msgstr "Cores do Texto em Dispositivos Móveis"
|
2994 |
+
|
2995 |
+
#: modules/cta/cta.php:15
|
2996 |
+
#@ fl-builder
|
2997 |
+
msgid "Display a heading, subheading and a button."
|
2998 |
+
msgstr "Exibe um cabeçalho, um subcabeçalho e um botão."
|
2999 |
+
|
3000 |
+
#: modules/cta/cta.php:73
|
3001 |
+
#@ fl-builder
|
3002 |
+
msgid "Ready to find out more?"
|
3003 |
+
msgstr "Pronto para saber mais?"
|
3004 |
+
|
3005 |
+
#: modules/cta/cta.php:88
|
3006 |
+
#@ fl-builder
|
3007 |
+
msgid "Drop us a line today for a free quote!"
|
3008 |
+
msgstr "Envie uma mensagem hoje para nós, para receber um orçamento gratuito!"
|
3009 |
+
|
3010 |
+
#: modules/cta/cta.php:106
|
3011 |
+
#: modules/gallery/gallery.php:220
|
3012 |
+
#: modules/post-grid/post-grid.php:44
|
3013 |
+
#: modules/tabs/tabs.php:52
|
3014 |
+
#: modules/testimonials/testimonials.php:37
|
3015 |
+
#: modules/woocommerce/woocommerce.php:57
|
3016 |
+
#@ fl-builder
|
3017 |
+
msgid "Layout"
|
3018 |
+
msgstr ""
|
3019 |
+
|
3020 |
+
#: modules/cta/cta.php:109
|
3021 |
+
#@ fl-builder
|
3022 |
+
msgid "Inline"
|
3023 |
+
msgstr "Em Linha"
|
3024 |
+
|
3025 |
+
#: modules/cta/cta.php:110
|
3026 |
+
#@ fl-builder
|
3027 |
+
msgid "Stacked"
|
3028 |
+
msgstr "Empilhado"
|
3029 |
+
|
3030 |
+
#: modules/cta/cta.php:130
|
3031 |
+
#: modules/icon-group/icon-group.php:99
|
3032 |
+
#@ fl-builder
|
3033 |
+
msgid "Spacing"
|
3034 |
+
msgstr "Espaçamento"
|
3035 |
+
|
3036 |
+
#: modules/cta/cta.php:201
|
3037 |
+
#@ fl-builder
|
3038 |
+
msgid "Background Opacity"
|
3039 |
+
msgstr "Opacidade do Fundo"
|
3040 |
+
|
3041 |
+
#: modules/cta/cta.php:234
|
3042 |
+
#@ fl-builder
|
3043 |
+
msgid "Button Link"
|
3044 |
+
msgstr "Link do Botão"
|
3045 |
+
|
3046 |
+
#: modules/gallery/gallery.php:14
|
3047 |
+
#: modules/post-grid/post-grid.php:55
|
3048 |
+
#@ fl-builder
|
3049 |
+
msgid "Gallery"
|
3050 |
+
msgstr "Galeria"
|
3051 |
+
|
3052 |
+
#: modules/gallery/gallery.php:15
|
3053 |
+
#@ fl-builder
|
3054 |
+
msgid "Display multiple photos in a gallery view."
|
3055 |
+
msgstr "Exibe múltiplas fotos em modo de galeria de imagens."
|
3056 |
+
|
3057 |
+
#: modules/gallery/gallery.php:223
|
3058 |
+
#@ fl-builder
|
3059 |
+
msgid "Collage"
|
3060 |
+
msgstr "Colagem"
|
3061 |
+
|
3062 |
+
#: modules/gallery/gallery.php:224
|
3063 |
+
#@ fl-builder
|
3064 |
+
msgctxt "Gallery layout: thumbnails."
|
3065 |
+
msgid "Thumbs"
|
3066 |
+
msgstr ""
|
3067 |
+
|
3068 |
+
#: modules/gallery/gallery.php:260
|
3069 |
+
#@ fl-builder
|
3070 |
+
msgid "Photo Size"
|
3071 |
+
msgstr "Tamanho da Foto"
|
3072 |
+
|
3073 |
+
#: modules/gallery/gallery.php:263
|
3074 |
+
#@ fl-builder
|
3075 |
+
msgctxt "Photo size."
|
3076 |
+
msgid "Small"
|
3077 |
+
msgstr "Pequena"
|
3078 |
+
|
3079 |
+
#: modules/gallery/gallery.php:264
|
3080 |
+
#@ fl-builder
|
3081 |
+
msgctxt "Photo size."
|
3082 |
+
msgid "Medium"
|
3083 |
+
msgstr "Média"
|
3084 |
+
|
3085 |
+
#: modules/gallery/gallery.php:265
|
3086 |
+
#@ fl-builder
|
3087 |
+
msgctxt "Photo size."
|
3088 |
+
msgid "Large"
|
3089 |
+
msgstr "Grande"
|
3090 |
+
|
3091 |
+
#: modules/gallery/gallery.php:270
|
3092 |
+
#@ fl-builder
|
3093 |
+
msgid "Photo Spacing"
|
3094 |
+
msgstr "Espaçamento da Foto"
|
3095 |
+
|
3096 |
+
#: modules/gallery/gallery.php:278
|
3097 |
+
#@ fl-builder
|
3098 |
+
msgid "Show Captions"
|
3099 |
+
msgstr "Mostrar Legendas"
|
3100 |
+
|
3101 |
+
#: modules/gallery/gallery.php:281
|
3102 |
+
#: modules/photo/photo.php:432
|
3103 |
+
#@ fl-builder
|
3104 |
+
msgid "Never"
|
3105 |
+
msgstr "Nunca"
|
3106 |
+
|
3107 |
+
#: modules/gallery/gallery.php:282
|
3108 |
+
#: modules/photo/photo.php:433
|
3109 |
+
#@ fl-builder
|
3110 |
+
msgid "On Hover"
|
3111 |
+
msgstr "Com o mouse sobrepondo"
|
3112 |
+
|
3113 |
+
#: modules/gallery/gallery.php:283
|
3114 |
+
#: modules/photo/photo.php:434
|
3115 |
+
#@ fl-builder
|
3116 |
+
msgid "Below Photo"
|
3117 |
+
msgstr "Abaixo da Foto"
|
3118 |
+
|
3119 |
+
#: modules/gallery/gallery.php:285
|
3120 |
+
#@ fl-builder
|
3121 |
+
msgid "The caption pulls from whatever text you put in the caption area in the media manager for each image. The caption is also pulled directly from SmugMug if you have captions set in your gallery."
|
3122 |
+
msgstr "A legenda corresponde a qualquer texto que você tenha inserido na área de legenda, no gerenciador de mídia, para cada imagem. A legenda também pode vir também do SmugMug se você tiver legendas configuradas em sua galeria."
|
3123 |
+
|
3124 |
+
#: modules/gallery/gallery.php:289
|
3125 |
+
#: modules/slideshow/slideshow.php:335
|
3126 |
+
#@ fl-builder
|
3127 |
+
msgid "Click Action"
|
3128 |
+
msgstr "Ação do Clique"
|
3129 |
+
|
3130 |
+
#: modules/gallery/gallery.php:292
|
3131 |
+
#@ fl-builder
|
3132 |
+
msgctxt "Click action."
|
3133 |
+
msgid "None"
|
3134 |
+
msgstr "Nenhuma"
|
3135 |
+
|
3136 |
+
#: modules/gallery/gallery.php:293
|
3137 |
+
#: modules/photo/photo.php:452
|
3138 |
+
#@ fl-builder
|
3139 |
+
msgid "Lightbox"
|
3140 |
+
msgstr ""
|
3141 |
+
|
3142 |
+
#: modules/gallery/gallery.php:294
|
3143 |
+
#@ fl-builder
|
3144 |
+
msgid "Photo Link"
|
3145 |
+
msgstr "Link da Foto"
|
3146 |
+
|
3147 |
+
#: modules/heading/heading.php:15
|
3148 |
+
#@ fl-builder
|
3149 |
+
msgid "Display a title/page heading."
|
3150 |
+
msgstr "Exibe um título / cabeçalho de página."
|
3151 |
+
|
3152 |
+
#: modules/heading/heading.php:16
|
3153 |
+
#: modules/photo/photo.php:27
|
3154 |
+
#: modules/rich-text/rich-text.php:16
|
3155 |
+
#: modules/separator/separator.php:16
|
3156 |
+
#: modules/video/video.php:21
|
3157 |
+
#@ fl-builder
|
3158 |
+
msgid "Basic Modules"
|
3159 |
+
msgstr "Módulos Básicos"
|
3160 |
+
|
3161 |
+
#: modules/heading/heading.php:101
|
3162 |
+
#@ fl-builder
|
3163 |
+
msgid "HTML Tag"
|
3164 |
+
msgstr "Tag HTML"
|
3165 |
+
|
3166 |
+
#: modules/heading/heading.php:128
|
3167 |
+
#: modules/heading/heading.php:188
|
3168 |
+
#@ fl-builder
|
3169 |
+
msgid "Custom Font Size"
|
3170 |
+
msgstr "Tamanho Personalizado da Fonte"
|
3171 |
+
|
3172 |
+
#: modules/heading/heading.php:137
|
3173 |
+
#@ fl-builder
|
3174 |
+
msgid "Mobile Structure"
|
3175 |
+
msgstr "Estrutura para Dispositivos Móveis"
|
3176 |
+
|
3177 |
+
#: modules/heading/heading.php:158
|
3178 |
+
#@ fl-builder
|
3179 |
+
msgid "Custom Alignment"
|
3180 |
+
msgstr "Alinhamento Personalizado"
|
3181 |
+
|
3182 |
+
#: modules/html/html.php:14
|
3183 |
+
#@ fl-builder
|
3184 |
+
msgid "HTML"
|
3185 |
+
msgstr ""
|
3186 |
+
|
3187 |
+
#: modules/html/html.php:15
|
3188 |
+
#@ fl-builder
|
3189 |
+
msgid "Display raw HTML code."
|
3190 |
+
msgstr "Exibe código HTML bruto."
|
3191 |
+
|
3192 |
+
#: modules/icon/icon.php:15
|
3193 |
+
#@ fl-builder
|
3194 |
+
msgid "Display an icon and optional title."
|
3195 |
+
msgstr "Exibe um ícone com um título opcional."
|
3196 |
+
|
3197 |
+
#: modules/icon-group/icon-group.php:14
|
3198 |
+
#@ fl-builder
|
3199 |
+
msgid "Icon Group"
|
3200 |
+
msgstr "Grupo de Ícones"
|
3201 |
+
|
3202 |
+
#: modules/icon-group/icon-group.php:15
|
3203 |
+
#@ fl-builder
|
3204 |
+
msgid "Display a group of linked Font Awesome icons."
|
3205 |
+
msgstr "Exibe um grupo de ícones da biblioteca Fonte Awesome, com links."
|
3206 |
+
|
3207 |
+
#: modules/icon-group/icon-group.php:27
|
3208 |
+
#@ fl-builder
|
3209 |
+
msgid "Icons"
|
3210 |
+
msgstr "Ícones"
|
3211 |
+
|
3212 |
+
#: modules/icon-group/icon-group.php:125
|
3213 |
+
#@ fl-builder
|
3214 |
+
msgid "Add Icon"
|
3215 |
+
msgstr "Adicionar Ícone"
|
3216 |
+
|
3217 |
+
#: modules/map/map.php:14
|
3218 |
+
#@ fl-builder
|
3219 |
+
msgid "Map"
|
3220 |
+
msgstr "Mapa"
|
3221 |
+
|
3222 |
+
#: modules/map/map.php:15
|
3223 |
+
#@ fl-builder
|
3224 |
+
msgid "Display a Google map."
|
3225 |
+
msgstr "Exibe um Mapa do Google."
|
3226 |
+
|
3227 |
+
#: modules/map/map.php:33
|
3228 |
+
#@ fl-builder
|
3229 |
+
msgid "Address"
|
3230 |
+
msgstr "Endereço"
|
3231 |
+
|
3232 |
+
#: modules/map/map.php:34
|
3233 |
+
#@ fl-builder
|
3234 |
+
msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
|
3235 |
+
msgstr ""
|
3236 |
+
|
3237 |
+
#: modules/photo/photo.php:26
|
3238 |
+
#@ fl-builder
|
3239 |
+
msgid "Upload a photo or display one from the media library."
|
3240 |
+
msgstr "Carregar uma foto ou exibir uma da biblioteca de mídia."
|
3241 |
+
|
3242 |
+
#: modules/photo/photo.php:375
|
3243 |
+
#@ fl-builder
|
3244 |
+
msgid "Photo Source"
|
3245 |
+
msgstr "Origem da Foto"
|
3246 |
+
|
3247 |
+
#: modules/photo/photo.php:379
|
3248 |
+
#: modules/photo/photo.php:451
|
3249 |
+
#@ fl-builder
|
3250 |
+
msgid "URL"
|
3251 |
+
msgstr ""
|
3252 |
+
|
3253 |
+
#: modules/photo/photo.php:396
|
3254 |
+
#@ fl-builder
|
3255 |
+
msgid "Photo URL"
|
3256 |
+
msgstr "URL da Foto"
|
3257 |
+
|
3258 |
+
#: modules/photo/photo.php:397
|
3259 |
+
#@ fl-builder
|
3260 |
+
msgid "http://www.example.com/my-photo.jpg"
|
3261 |
+
msgstr ""
|
3262 |
+
|
3263 |
+
#: modules/photo/photo.php:404
|
3264 |
+
#@ fl-builder
|
3265 |
+
msgctxt "Crop."
|
3266 |
+
msgid "None"
|
3267 |
+
msgstr "Nenhuma"
|
3268 |
+
|
3269 |
+
#: modules/photo/photo.php:425
|
3270 |
+
#: modules/photo/photo.php:439
|
3271 |
+
#@ fl-builder
|
3272 |
+
msgid "Caption"
|
3273 |
+
msgstr "Legenda"
|
3274 |
+
|
3275 |
+
#: modules/photo/photo.php:429
|
3276 |
+
#@ fl-builder
|
3277 |
+
msgid "Show Caption"
|
3278 |
+
msgstr "Mostrar Legenda"
|
3279 |
+
|
3280 |
+
#: modules/photo/photo.php:448
|
3281 |
+
#@ fl-builder
|
3282 |
+
msgid "Link Type"
|
3283 |
+
msgstr "Tipo de Link"
|
3284 |
+
|
3285 |
+
#: modules/photo/photo.php:450
|
3286 |
+
#@ fl-builder
|
3287 |
+
msgctxt "Link type."
|
3288 |
+
msgid "None"
|
3289 |
+
msgstr "Nenhum"
|
3290 |
+
|
3291 |
+
#: modules/photo/photo.php:453
|
3292 |
+
#@ fl-builder
|
3293 |
+
msgid "Photo File"
|
3294 |
+
msgstr "Arquivo da Foto"
|
3295 |
+
|
3296 |
+
#: modules/photo/photo.php:464
|
3297 |
+
#@ fl-builder
|
3298 |
+
msgid "Link type applies to how the image should be linked on click. You can choose a specific URL, the individual photo or a separate page with the photo."
|
3299 |
+
msgstr "\"Link\" é referente a como a imagem deve ser linkada quando for clicada. Você pode escolher uma URL específica, o arquivo da foto ou uma página com a foto."
|
3300 |
+
|
3301 |
+
#: modules/photo/photo.php:471
|
3302 |
+
#: modules/slideshow/slideshow.php:356
|
3303 |
+
#@ fl-builder
|
3304 |
+
msgid "Link URL"
|
3305 |
+
msgstr "URL do Link"
|
3306 |
+
|
3307 |
+
#: modules/post-grid/includes/frontend.php:41
|
3308 |
+
#@ fl-builder
|
3309 |
+
msgid "No posts found."
|
3310 |
+
msgstr "Nenhum post encontrado."
|
3311 |
+
|
3312 |
+
#: modules/post-grid/includes/post-feed.php:14
|
3313 |
+
#: modules/post-grid/includes/post-grid.php:24
|
3314 |
+
#, php-format
|
3315 |
+
#@ fl-builder
|
3316 |
+
msgctxt "%s stands for author name."
|
3317 |
+
msgid "By %s"
|
3318 |
+
msgstr "Por %s"
|
3319 |
+
|
3320 |
+
#: modules/post-grid/post-grid.php:14
|
3321 |
+
#@ fl-builder
|
3322 |
+
msgid "Posts"
|
3323 |
+
msgstr ""
|
3324 |
+
|
3325 |
+
#: modules/post-grid/post-grid.php:15
|
3326 |
+
#@ fl-builder
|
3327 |
+
msgid "Display a grid of your WordPress posts."
|
3328 |
+
msgstr "Exibe uma grade de seus post no WordPress."
|
3329 |
+
|
3330 |
+
#: modules/post-grid/post-grid.php:51
|
3331 |
+
#@ fl-builder
|
3332 |
+
msgid "Layout Style"
|
3333 |
+
msgstr "Estilo de Layout"
|
3334 |
+
|
3335 |
+
#: modules/post-grid/post-grid.php:54
|
3336 |
+
#: modules/post-grid/post-grid.php:88
|
3337 |
+
#@ fl-builder
|
3338 |
+
msgid "Grid"
|
3339 |
+
msgstr "Grade"
|
3340 |
+
|
3341 |
+
#: modules/post-grid/post-grid.php:56
|
3342 |
+
#@ fl-builder
|
3343 |
+
msgid "Feed"
|
3344 |
+
msgstr ""
|
3345 |
+
|
3346 |
+
#: modules/post-grid/post-grid.php:71
|
3347 |
+
#@ fl-builder
|
3348 |
+
msgid "Pagination Style"
|
3349 |
+
msgstr "Estilo de Paginação"
|
3350 |
+
|
3351 |
+
#: modules/post-grid/post-grid.php:74
|
3352 |
+
#@ fl-builder
|
3353 |
+
msgid "Numbers"
|
3354 |
+
msgstr "Números"
|
3355 |
+
|
3356 |
+
#: modules/post-grid/post-grid.php:76
|
3357 |
+
#@ fl-builder
|
3358 |
+
msgctxt "Pagination style."
|
3359 |
+
msgid "None"
|
3360 |
+
msgstr "Nenhum"
|
3361 |
+
|
3362 |
+
#: modules/post-grid/post-grid.php:81
|
3363 |
+
#@ fl-builder
|
3364 |
+
msgid "Posts Per Page"
|
3365 |
+
msgstr "Posts Por Página"
|
3366 |
+
|
3367 |
+
#: modules/post-grid/post-grid.php:92
|
3368 |
+
#@ fl-builder
|
3369 |
+
msgid "Post Width"
|
3370 |
+
msgstr "Largura do Post"
|
3371 |
+
|
3372 |
+
#: modules/post-grid/post-grid.php:100
|
3373 |
+
#@ fl-builder
|
3374 |
+
msgid "Post Spacing"
|
3375 |
+
msgstr "Espaçamento do Post"
|
3376 |
+
|
3377 |
+
#: modules/post-grid/post-grid.php:109
|
3378 |
+
#@ fl-builder
|
3379 |
+
msgid "Featured Image"
|
3380 |
+
msgstr "Imagem Destacada"
|
3381 |
+
|
3382 |
+
#: modules/post-grid/post-grid.php:116
|
3383 |
+
#: modules/post-grid/post-grid.php:149
|
3384 |
+
#: modules/post-grid/post-grid.php:158
|
3385 |
+
#: modules/post-grid/post-grid.php:188
|
3386 |
+
#: modules/post-grid/post-grid.php:202
|
3387 |
+
#: modules/post-grid/post-grid.php:216
|
3388 |
+
#@ fl-builder
|
3389 |
+
msgid "Show"
|
3390 |
+
msgstr "Mostrar"
|
3391 |
+
|
3392 |
+
#: modules/post-grid/post-grid.php:117
|
3393 |
+
#: modules/post-grid/post-grid.php:150
|
3394 |
+
#: modules/post-grid/post-grid.php:159
|
3395 |
+
#: modules/post-grid/post-grid.php:189
|
3396 |
+
#: modules/post-grid/post-grid.php:203
|
3397 |
+
#: modules/post-grid/post-grid.php:217
|
3398 |
+
#@ fl-builder
|
3399 |
+
msgid "Hide"
|
3400 |
+
msgstr "Esconder"
|
3401 |
+
|
3402 |
+
#: modules/post-grid/post-grid.php:130
|
3403 |
+
#@ fl-builder
|
3404 |
+
msgid "Above Text"
|
3405 |
+
msgstr "Acima do Texto"
|
3406 |
+
|
3407 |
+
#: modules/post-grid/post-grid.php:131
|
3408 |
+
#@ fl-builder
|
3409 |
+
msgid "Beside Text"
|
3410 |
+
msgstr "Ao lado do Texto"
|
3411 |
+
|
3412 |
+
#: modules/post-grid/post-grid.php:142
|
3413 |
+
#@ fl-builder
|
3414 |
+
msgid "Post Info"
|
3415 |
+
msgstr "Informações do Post"
|
3416 |
+
|
3417 |
+
#: modules/post-grid/post-grid.php:169
|
3418 |
+
#@ fl-builder
|
3419 |
+
msgid "Date Format"
|
3420 |
+
msgstr "Formato da Data"
|
3421 |
+
|
3422 |
+
#: modules/post-grid/post-grid.php:185
|
3423 |
+
#@ fl-builder
|
3424 |
+
msgid "Comments"
|
3425 |
+
msgstr "Comentários"
|
3426 |
+
|
3427 |
+
#: modules/post-grid/post-grid.php:213
|
3428 |
+
#@ fl-builder
|
3429 |
+
msgid "More Link"
|
3430 |
+
msgstr "Link \"Leia Mais\""
|
3431 |
+
|
3432 |
+
#: modules/post-grid/post-grid.php:227
|
3433 |
+
#@ fl-builder
|
3434 |
+
msgid "More Link Text"
|
3435 |
+
msgstr "texto do Link \"Leia Mais\""
|
3436 |
+
|
3437 |
+
#: modules/post-grid/post-grid.php:228
|
3438 |
+
#@ fl-builder
|
3439 |
+
msgid "Read More"
|
3440 |
+
msgstr "Leia Mais"
|
3441 |
+
|
3442 |
+
#: modules/pricing-table/pricing-table.php:14
|
3443 |
+
#@ fl-builder
|
3444 |
+
msgid "Pricing Table"
|
3445 |
+
msgstr "Tabela de Preços"
|
3446 |
+
|
3447 |
+
#: modules/pricing-table/pricing-table.php:15
|
3448 |
+
#@ fl-builder
|
3449 |
+
msgid "A simple pricing table generator."
|
3450 |
+
msgstr "Um simples gerador de tabela de preços"
|
3451 |
+
|
3452 |
+
#: modules/pricing-table/pricing-table.php:26
|
3453 |
+
#@ fl-builder
|
3454 |
+
msgid "Pricing Boxes"
|
3455 |
+
msgstr "Caixas de Preço"
|
3456 |
+
|
3457 |
+
#: modules/pricing-table/pricing-table.php:33
|
3458 |
+
#@ fl-builder
|
3459 |
+
msgid "Pricing Box"
|
3460 |
+
msgstr "Caixa de Preço"
|
3461 |
+
|
3462 |
+
#: modules/pricing-table/pricing-table.php:50
|
3463 |
+
#@ fl-builder
|
3464 |
+
msgid "Box Spacing"
|
3465 |
+
msgstr "Espaçamento da Caixa"
|
3466 |
+
|
3467 |
+
#: modules/pricing-table/pricing-table.php:53
|
3468 |
+
#: modules/testimonials/testimonials.php:40
|
3469 |
+
#@ fl-builder
|
3470 |
+
msgid "Wide"
|
3471 |
+
msgstr "Largo"
|
3472 |
+
|
3473 |
+
#: modules/pricing-table/pricing-table.php:54
|
3474 |
+
#@ fl-builder
|
3475 |
+
msgid "Tight"
|
3476 |
+
msgstr "Estreito"
|
3477 |
+
|
3478 |
+
#: modules/pricing-table/pricing-table.php:59
|
3479 |
+
#@ fl-builder
|
3480 |
+
msgid "Features Min Height"
|
3481 |
+
msgstr "Altura mínima das Funcionalidades"
|
3482 |
+
|
3483 |
+
#: modules/pricing-table/pricing-table.php:63
|
3484 |
+
#@ fl-builder
|
3485 |
+
msgid "Use this to normalize the height of your boxes when they have different numbers of features."
|
3486 |
+
msgstr "Use esta configuração para normalizar a altura das suas caixas quando elas tem diferentes números de funcionalidades."
|
3487 |
+
|
3488 |
+
#: modules/pricing-table/pricing-table.php:67
|
3489 |
+
#@ fl-builder
|
3490 |
+
msgid "Border Size"
|
3491 |
+
msgstr "Tamanho da Borda"
|
3492 |
+
|
3493 |
+
#: modules/pricing-table/pricing-table.php:70
|
3494 |
+
#@ fl-builder
|
3495 |
+
msgctxt "Border size."
|
3496 |
+
msgid "Wide"
|
3497 |
+
msgstr "Larga"
|
3498 |
+
|
3499 |
+
#: modules/pricing-table/pricing-table.php:71
|
3500 |
+
#@ fl-builder
|
3501 |
+
msgctxt "Border size."
|
3502 |
+
msgid "Tight"
|
3503 |
+
msgstr "Estreita"
|
3504 |
+
|
3505 |
+
#: modules/pricing-table/pricing-table.php:84
|
3506 |
+
#@ fl-builder
|
3507 |
+
msgid "Add Pricing Box"
|
3508 |
+
msgstr "Adicionar Caixa de Preço"
|
3509 |
+
|
3510 |
+
#: modules/pricing-table/pricing-table.php:98
|
3511 |
+
#@ fl-builder
|
3512 |
+
msgid "Title Size"
|
3513 |
+
msgstr "Tamanho do Título"
|
3514 |
+
|
3515 |
+
#: modules/pricing-table/pricing-table.php:107
|
3516 |
+
#@ fl-builder
|
3517 |
+
msgid "Price Box"
|
3518 |
+
msgstr "Caixa de Preço"
|
3519 |
+
|
3520 |
+
#: modules/pricing-table/pricing-table.php:111
|
3521 |
+
#@ fl-builder
|
3522 |
+
msgid "Price"
|
3523 |
+
msgstr "Preço"
|
3524 |
+
|
3525 |
+
#: modules/pricing-table/pricing-table.php:115
|
3526 |
+
#@ fl-builder
|
3527 |
+
msgid "Duration"
|
3528 |
+
msgstr "Duração"
|
3529 |
+
|
3530 |
+
#: modules/pricing-table/pricing-table.php:116
|
3531 |
+
#@ fl-builder
|
3532 |
+
msgid "per Year"
|
3533 |
+
msgstr "por Ano"
|
3534 |
+
|
3535 |
+
#: modules/pricing-table/pricing-table.php:120
|
3536 |
+
#@ fl-builder
|
3537 |
+
msgid "Price Size"
|
3538 |
+
msgstr "Tamanho do Preço"
|
3539 |
+
|
3540 |
+
#: modules/pricing-table/pricing-table.php:133
|
3541 |
+
#@ fl-builder
|
3542 |
+
msgid "Button Text"
|
3543 |
+
msgstr "Texto do Botão"
|
3544 |
+
|
3545 |
+
#: modules/pricing-table/pricing-table.php:137
|
3546 |
+
#@ fl-builder
|
3547 |
+
msgid "Button URL"
|
3548 |
+
msgstr "URL do Botão"
|
3549 |
+
|
3550 |
+
#: modules/pricing-table/pricing-table.php:142
|
3551 |
+
#@ fl-builder
|
3552 |
+
msgctxt "Price features displayed in pricing box."
|
3553 |
+
msgid "Features"
|
3554 |
+
msgstr "Funcionalidades"
|
3555 |
+
|
3556 |
+
#: modules/pricing-table/pricing-table.php:147
|
3557 |
+
#@ fl-builder
|
3558 |
+
msgid "One feature per line. HTML is okay."
|
3559 |
+
msgstr "Uma funcionalidade por linha. HTML é permitido."
|
3560 |
+
|
3561 |
+
#: modules/pricing-table/pricing-table.php:162
|
3562 |
+
#@ fl-builder
|
3563 |
+
msgid "Box Background"
|
3564 |
+
msgstr "Fundo da Caixa"
|
3565 |
+
|
3566 |
+
#: modules/pricing-table/pricing-table.php:167
|
3567 |
+
#@ fl-builder
|
3568 |
+
msgid "Box Foreground"
|
3569 |
+
msgstr "Exterior da Caixa"
|
3570 |
+
|
3571 |
+
#: modules/pricing-table/pricing-table.php:173
|
3572 |
+
#@ fl-builder
|
3573 |
+
msgid "Accent Color"
|
3574 |
+
msgstr "Cor de realce"
|
3575 |
+
|
3576 |
+
#: modules/pricing-table/pricing-table.php:178
|
3577 |
+
#@ fl-builder
|
3578 |
+
msgid "Accent Text Color"
|
3579 |
+
msgstr "Cor do Texto com realce"
|
3580 |
+
|
3581 |
+
#: modules/pricing-table/pricing-table.php:182
|
3582 |
+
#@ fl-builder
|
3583 |
+
msgid "Box Top Margin"
|
3584 |
+
msgstr "Margem Superior da Caixa"
|
3585 |
+
|
3586 |
+
#: modules/rich-text/rich-text.php:15
|
3587 |
+
#@ fl-builder
|
3588 |
+
msgid "A WYSIWYG text editor."
|
3589 |
+
msgstr "Um editor de texto WYSIWYG."
|
3590 |
+
|
3591 |
+
#: modules/separator/separator.php:14
|
3592 |
+
#@ fl-builder
|
3593 |
+
msgid "Separator"
|
3594 |
+
msgstr "Separador"
|
3595 |
+
|
3596 |
+
#: modules/separator/separator.php:15
|
3597 |
+
#@ fl-builder
|
3598 |
+
msgid "A divider line to separate content."
|
3599 |
+
msgstr "Uma linha divisória para separar conteúdo."
|
3600 |
+
|
3601 |
+
#: modules/separator/separator.php:85
|
3602 |
+
#@ fl-builder
|
3603 |
+
msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
|
3604 |
+
msgstr "O tipo de borda a ser usado. Bordas duplas precisam ter uma altura de no mínimo 3px para renderizar adequadamente."
|
3605 |
+
|
3606 |
+
#: modules/sidebar/includes/settings-general.php:5
|
3607 |
+
#: modules/sidebar/sidebar.php:14
|
3608 |
+
#@ fl-builder
|
3609 |
+
msgid "Sidebar"
|
3610 |
+
msgstr "Barra Lateral"
|
3611 |
+
|
3612 |
+
#: modules/sidebar/sidebar.php:15
|
3613 |
+
#@ fl-builder
|
3614 |
+
msgid "Display a WordPress sidebar that has been registered by the current theme."
|
3615 |
+
msgstr "Exibe uma barra lateral do WordPress que foi registrata no tema atual."
|
3616 |
+
|
3617 |
+
#: modules/slideshow/slideshow.php:14
|
3618 |
+
#@ fl-builder
|
3619 |
+
msgid "Slideshow"
|
3620 |
+
msgstr ""
|
3621 |
+
|
3622 |
+
#: modules/slideshow/slideshow.php:15
|
3623 |
+
#@ fl-builder
|
3624 |
+
msgid "Display multiple photos in a slideshow view."
|
3625 |
+
msgstr "Exibe múltiplas fotos em um slideshow."
|
3626 |
+
|
3627 |
+
#: modules/slideshow/slideshow.php:302
|
3628 |
+
#@ fl-builder
|
3629 |
+
msgid "Skin Color"
|
3630 |
+
msgstr "Tema de Cor"
|
3631 |
+
|
3632 |
+
#: modules/slideshow/slideshow.php:305
|
3633 |
+
#@ fl-builder
|
3634 |
+
msgctxt "Color."
|
3635 |
+
msgid "Light"
|
3636 |
+
msgstr "Claro"
|
3637 |
+
|
3638 |
+
#: modules/slideshow/slideshow.php:306
|
3639 |
+
#@ fl-builder
|
3640 |
+
msgctxt "Color."
|
3641 |
+
msgid "Dark"
|
3642 |
+
msgstr "Escuro"
|
3643 |
+
|
3644 |
+
#: modules/slideshow/slideshow.php:308
|
3645 |
+
#@ fl-builder
|
3646 |
+
msgid "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and vice versa for dark."
|
3647 |
+
msgstr "Se a maioria das imagens ou do tema forem mais claras, a opção \"claro\" irá exibir botões em um tema de cor mais escuro, e vice versa para a opção \"escuro\"."
|
3648 |
+
|
3649 |
+
#: modules/slideshow/slideshow.php:318
|
3650 |
+
#@ fl-builder
|
3651 |
+
msgid "Crop set to no will fit the slideshow images to the height you specify and keep the width proportional, whereas crop set to yes will fit the slideshow images to all sides of the content area while cropping the left and right to fit the height you specify."
|
3652 |
+
msgstr "Recorte configurado como \"não\" irá ajustar as imagens do slideshow à altura que você especificar e irá manter a largura proporcional, enquanto Recorte configurado como \"sim \" irá ajustar as imagens do slideshow a todos os slides da área de conteúdo, enquanto faz recortes na esquerda e na direita para ajustar-se à altura que você especificar."
|
3653 |
+
|
3654 |
+
#: modules/slideshow/slideshow.php:322
|
3655 |
+
#@ fl-builder
|
3656 |
+
msgid "Disable Right-Click"
|
3657 |
+
msgstr "Desabilitar Botão Direto do Mouse"
|
3658 |
+
|
3659 |
+
#: modules/slideshow/slideshow.php:342
|
3660 |
+
#@ fl-builder
|
3661 |
+
msgctxt "Click action type."
|
3662 |
+
msgid "None"
|
3663 |
+
msgstr "Nenhum"
|
3664 |
+
|
3665 |
+
#: modules/slideshow/slideshow.php:366
|
3666 |
+
#@ fl-builder
|
3667 |
+
msgid "Playback"
|
3668 |
+
msgstr ""
|
3669 |
+
|
3670 |
+
#: modules/slideshow/slideshow.php:392
|
3671 |
+
#@ fl-builder
|
3672 |
+
msgctxt "Slideshow transition."
|
3673 |
+
msgid "None"
|
3674 |
+
msgstr "Nenhum"
|
3675 |
+
|
3676 |
+
#: modules/slideshow/slideshow.php:429
|
3677 |
+
#@ fl-builder
|
3678 |
+
msgid "Controls"
|
3679 |
+
msgstr "Controles"
|
3680 |
+
|
3681 |
+
#: modules/slideshow/slideshow.php:436
|
3682 |
+
#: modules/slideshow/slideshow.php:485
|
3683 |
+
#@ fl-builder
|
3684 |
+
msgid "Navigation Arrows"
|
3685 |
+
msgstr "Setas de Navegação"
|
3686 |
+
|
3687 |
+
#: modules/slideshow/slideshow.php:442
|
3688 |
+
#@ fl-builder
|
3689 |
+
msgid "Navigational arrows allow the visitor to freely move through the images in your slideshow. These are larger arrows that overlay your slideshow images and are separate from the control bar navigational arrows."
|
3690 |
+
msgstr "Setas de navegação permitem que o visitante alterne livremente entre as imagens de seu slideshow. Essas são setas maiores que sobrepõem suas imagens de slideshow e são separadas das setas de navegação da barra de controle."
|
3691 |
+
|
3692 |
+
#: modules/slideshow/slideshow.php:447
|
3693 |
+
#@ fl-builder
|
3694 |
+
msgid "Control Bar"
|
3695 |
+
msgstr "Barra de Controle"
|
3696 |
+
|
3697 |
+
#: modules/slideshow/slideshow.php:451
|
3698 |
+
#@ fl-builder
|
3699 |
+
msgid "Nav Type"
|
3700 |
+
msgstr "Tipo de Navegação"
|
3701 |
+
|
3702 |
+
#: modules/slideshow/slideshow.php:454
|
3703 |
+
#@ fl-builder
|
3704 |
+
msgctxt "Nav type."
|
3705 |
+
msgid "None"
|
3706 |
+
msgstr "Nenhum"
|
3707 |
+
|
3708 |
+
#: modules/slideshow/slideshow.php:455
|
3709 |
+
#@ fl-builder
|
3710 |
+
msgid "Buttons"
|
3711 |
+
msgstr "Botões"
|
3712 |
+
|
3713 |
+
#: modules/slideshow/slideshow.php:456
|
3714 |
+
#: modules/slideshow/slideshow.php:586
|
3715 |
+
#@ fl-builder
|
3716 |
+
msgid "Thumbs"
|
3717 |
+
msgstr ""
|
3718 |
+
|
3719 |
+
#: modules/slideshow/slideshow.php:471
|
3720 |
+
#@ fl-builder
|
3721 |
+
msgid "Nav Position"
|
3722 |
+
msgstr "Posição da Navegação"
|
3723 |
+
|
3724 |
+
#: modules/slideshow/slideshow.php:481
|
3725 |
+
#@ fl-builder
|
3726 |
+
msgid "Control Bar Buttons"
|
3727 |
+
msgstr "Botões da Barra de Controle"
|
3728 |
+
|
3729 |
+
#: modules/slideshow/slideshow.php:494
|
3730 |
+
#@ fl-builder
|
3731 |
+
msgid "Play Button"
|
3732 |
+
msgstr "Botão de Reprodução"
|
3733 |
+
|
3734 |
+
#: modules/slideshow/slideshow.php:503
|
3735 |
+
#@ fl-builder
|
3736 |
+
msgid "Fullscreen Button"
|
3737 |
+
msgstr "Botão de Tela Cheia"
|
3738 |
+
|
3739 |
+
#: modules/slideshow/slideshow.php:512
|
3740 |
+
#@ fl-builder
|
3741 |
+
msgid "Photo Count"
|
3742 |
+
msgstr "Contagem de Fotos"
|
3743 |
+
|
3744 |
+
#: modules/slideshow/slideshow.php:521
|
3745 |
+
#@ fl-builder
|
3746 |
+
msgid "Thumbs Button"
|
3747 |
+
msgstr "Botão dos Thumbs"
|
3748 |
+
|
3749 |
+
#: modules/slideshow/slideshow.php:530
|
3750 |
+
#@ fl-builder
|
3751 |
+
msgid "Caption Button"
|
3752 |
+
msgstr "Botão de Legenda"
|
3753 |
+
|
3754 |
+
#: modules/slideshow/slideshow.php:539
|
3755 |
+
#@ fl-builder
|
3756 |
+
msgid "Social Button"
|
3757 |
+
msgstr "Botão Social"
|
3758 |
+
|
3759 |
+
#: modules/slideshow/slideshow.php:549
|
3760 |
+
#@ fl-builder
|
3761 |
+
msgid "Control Bar Overlay"
|
3762 |
+
msgstr "Invólucro da Barra de Controle"
|
3763 |
+
|
3764 |
+
#: modules/slideshow/slideshow.php:553
|
3765 |
+
#@ fl-builder
|
3766 |
+
msgid "Overlay Enabled"
|
3767 |
+
msgstr "Invólucro Ativado"
|
3768 |
+
|
3769 |
+
#: modules/slideshow/slideshow.php:564
|
3770 |
+
#@ fl-builder
|
3771 |
+
msgid "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site below the slideshow completely."
|
3772 |
+
msgstr "Invólucro da barra de controle especifica se os botões da barra que você escolheu irão sobrebor as imagens do slideshow ou irão ficar completamente abaixo do slideshow."
|
3773 |
+
|
3774 |
+
#: modules/slideshow/slideshow.php:568
|
3775 |
+
#@ fl-builder
|
3776 |
+
msgid "Overlay Hide"
|
3777 |
+
msgstr "Esconder Invólucro"
|
3778 |
+
|
3779 |
+
#: modules/slideshow/slideshow.php:574
|
3780 |
+
#@ fl-builder
|
3781 |
+
msgid "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear upon mouse over."
|
3782 |
+
msgstr "\"Esconder Invólucro\" irá esconder a barra de controle depois de quantos segundos você especificar abaixo. A barra irá reaparecer quando o mouse sobrepor o slideshow."
|
3783 |
+
|
3784 |
+
#: modules/slideshow/slideshow.php:578
|
3785 |
+
#@ fl-builder
|
3786 |
+
msgid "Overlay Hide Delay"
|
3787 |
+
msgstr "Atraso para Esconder Invólucro"
|
3788 |
+
|
3789 |
+
#: modules/slideshow/slideshow.php:590
|
3790 |
+
#@ fl-builder
|
3791 |
+
msgid "Thumbs Size"
|
3792 |
+
msgstr "Tamanho dos Thumbs"
|
3793 |
+
|
3794 |
+
#: modules/slideshow/slideshow.php:599
|
3795 |
+
#@ fl-builder
|
3796 |
+
msgid "Social"
|
3797 |
+
msgstr ""
|
3798 |
+
|
3799 |
+
#: modules/slideshow/slideshow.php:603
|
3800 |
+
#@ fl-builder
|
3801 |
+
msgid "Facebook Button"
|
3802 |
+
msgstr "Botão Facebook"
|
3803 |
+
|
3804 |
+
#: modules/slideshow/slideshow.php:615
|
3805 |
+
#@ fl-builder
|
3806 |
+
msgid "Twitter Button"
|
3807 |
+
msgstr "Botão Twitter"
|
3808 |
+
|
3809 |
+
#: modules/slideshow/slideshow.php:627
|
3810 |
+
#@ fl-builder
|
3811 |
+
msgid "Google Plus Button"
|
3812 |
+
msgstr "Botão Google Plus"
|
3813 |
+
|
3814 |
+
#: modules/slideshow/slideshow.php:639
|
3815 |
+
#@ fl-builder
|
3816 |
+
msgid "Pinterest Button"
|
3817 |
+
msgstr "Botão Pinterest"
|
3818 |
+
|
3819 |
+
#: modules/social-buttons/social-buttons.php:14
|
3820 |
+
#@ fl-builder
|
3821 |
+
msgid "Social Buttons"
|
3822 |
+
msgstr "Botões Sociais"
|
3823 |
+
|
3824 |
+
#: modules/social-buttons/social-buttons.php:15
|
3825 |
+
#@ fl-builder
|
3826 |
+
msgid "Displays social buttons."
|
3827 |
+
msgstr "Exibe botões sociais."
|
3828 |
+
|
3829 |
+
#: modules/social-buttons/social-buttons.php:71
|
3830 |
+
#@ fl-builder
|
3831 |
+
msgid "Target URL"
|
3832 |
+
msgstr "URL de Destino"
|
3833 |
+
|
3834 |
+
#: modules/social-buttons/social-buttons.php:75
|
3835 |
+
#@ fl-builder
|
3836 |
+
msgid "Current Page"
|
3837 |
+
msgstr "Página Atual"
|
3838 |
+
|
3839 |
+
#: modules/social-buttons/social-buttons.php:82
|
3840 |
+
#@ fl-builder
|
3841 |
+
msgid "The Target URL field correlates to the page you would like your social icons to interface with. For example, if you show Facebook, the user will \"Like\" whatever you put in this field."
|
3842 |
+
msgstr "O campo \"URL de Destino\" corresponde à página com que você quer que seus ícones de redes sociais se comuniquem. Por exemplo, se você escolher \"Exibir Facebook\", o usuário irá \"Curtir\" o que você inserir neste campo. "
|
3843 |
+
|
3844 |
+
#: modules/social-buttons/social-buttons.php:89
|
3845 |
+
#@ fl-builder
|
3846 |
+
msgid "Custom URL"
|
3847 |
+
msgstr "URL Personalizada"
|
3848 |
+
|
3849 |
+
#: modules/social-buttons/social-buttons.php:107
|
3850 |
+
#@ fl-builder
|
3851 |
+
msgid "Show Facebook"
|
3852 |
+
msgstr "Exibir Facebook"
|
3853 |
+
|
3854 |
+
#: modules/social-buttons/social-buttons.php:116
|
3855 |
+
#@ fl-builder
|
3856 |
+
msgid "Show Twitter"
|
3857 |
+
msgstr "Exibir Twitter"
|
3858 |
+
|
3859 |
+
#: modules/social-buttons/social-buttons.php:125
|
3860 |
+
#@ fl-builder
|
3861 |
+
msgid "Show Google+"
|
3862 |
+
msgstr "Exibir Google+"
|
3863 |
+
|
3864 |
+
#: modules/tabs/tabs.php:14
|
3865 |
+
#@ fl-builder
|
3866 |
+
msgid "Tabs"
|
3867 |
+
msgstr "Abas"
|
3868 |
+
|
3869 |
+
#: modules/tabs/tabs.php:15
|
3870 |
+
#@ fl-builder
|
3871 |
+
msgid "Display a collection of tabbed content."
|
3872 |
+
msgstr "Exibe uma coleção de conteúdo separado em abas."
|
3873 |
+
|
3874 |
+
#: modules/tabs/tabs.php:55
|
3875 |
+
#@ fl-builder
|
3876 |
+
msgid "Horizontal"
|
3877 |
+
msgstr ""
|
3878 |
+
|
3879 |
+
#: modules/tabs/tabs.php:56
|
3880 |
+
#@ fl-builder
|
3881 |
+
msgid "Vertical"
|
3882 |
+
msgstr ""
|
3883 |
+
|
3884 |
+
#: modules/testimonials/testimonials.php:14
|
3885 |
+
#: modules/testimonials/testimonials.php:60
|
3886 |
+
#: modules/testimonials/testimonials.php:174
|
3887 |
+
#@ fl-builder
|
3888 |
+
msgid "Testimonials"
|
3889 |
+
msgstr "Depoimentos"
|
3890 |
+
|
3891 |
+
#: modules/testimonials/testimonials.php:15
|
3892 |
+
#@ fl-builder
|
3893 |
+
msgid "An animated tesimonials area."
|
3894 |
+
msgstr "Uma área de depoimentos com animação."
|
3895 |
+
|
3896 |
+
#: modules/testimonials/testimonials.php:41
|
3897 |
+
#@ fl-builder
|
3898 |
+
msgid "Compact"
|
3899 |
+
msgstr "Compacto"
|
3900 |
+
|
3901 |
+
#: modules/testimonials/testimonials.php:51
|
3902 |
+
#@ fl-builder
|
3903 |
+
msgid "Wide is for 1 column rows, compact is for multi-column rows."
|
3904 |
+
msgstr "\"Largo\" é para linhas de 1 coluna, \"compacto\" é para linhas com várias colunas."
|
3905 |
+
|
3906 |
+
#: modules/testimonials/testimonials.php:78
|
3907 |
+
#@ fl-builder
|
3908 |
+
msgid "Slider Settings"
|
3909 |
+
msgstr "Configurações do Slider"
|
3910 |
+
|
3911 |
+
#: modules/testimonials/testimonials.php:135
|
3912 |
+
#@ fl-builder
|
3913 |
+
msgid "Arrow Color"
|
3914 |
+
msgstr "Cor da Seta"
|
3915 |
+
|
3916 |
+
#: modules/testimonials/testimonials.php:165
|
3917 |
+
#@ fl-builder
|
3918 |
+
msgid "Dot Color"
|
3919 |
+
msgstr "Cor do Ponto"
|
3920 |
+
|
3921 |
+
#: modules/testimonials/testimonials.php:181
|
3922 |
+
#@ fl-builder
|
3923 |
+
msgid "Testimonial"
|
3924 |
+
msgstr "Depoimento"
|
3925 |
+
|
3926 |
+
#: modules/testimonials/testimonials.php:197
|
3927 |
+
#@ fl-builder
|
3928 |
+
msgid "Add Testimonial"
|
3929 |
+
msgstr "Adicionar Depoimento"
|
3930 |
+
|
3931 |
+
#: modules/video/video.php:20
|
3932 |
+
#@ fl-builder
|
3933 |
+
msgid "Render a WordPress or embedable video."
|
3934 |
+
msgstr "Renderiza um vídeo incorporado ou do WordPress."
|
3935 |
+
|
3936 |
+
#: modules/video/video.php:83
|
3937 |
+
#@ fl-builder
|
3938 |
+
msgid "Video Type"
|
3939 |
+
msgstr "Tipo de Vídeo"
|
3940 |
+
|
3941 |
+
#: modules/video/video.php:87
|
3942 |
+
#@ fl-builder
|
3943 |
+
msgid "Embed"
|
3944 |
+
msgstr "Incorporado"
|
3945 |
+
|
3946 |
+
#: modules/video/video.php:104
|
3947 |
+
#@ fl-builder
|
3948 |
+
msgctxt "Video preview/fallback image."
|
3949 |
+
msgid "Poster"
|
3950 |
+
msgstr ""
|
3951 |
+
|
3952 |
+
#: modules/video/video.php:120
|
3953 |
+
#@ fl-builder
|
3954 |
+
msgid "Loop"
|
3955 |
+
msgstr ""
|
3956 |
+
|
3957 |
+
#: modules/widget/includes/frontend.php:35
|
3958 |
+
#: modules/widget/includes/settings-general.php:44
|
3959 |
+
#, php-format
|
3960 |
+
#@ fl-builder
|
3961 |
+
msgctxt "%s stands for widget slug."
|
3962 |
+
msgid "%s no longer exists."
|
3963 |
+
msgstr ""
|
3964 |
+
|
3965 |
+
#: modules/widget/widget.php:14
|
3966 |
+
#@ fl-builder
|
3967 |
+
msgid "Widget"
|
3968 |
+
msgstr ""
|
3969 |
+
|
3970 |
+
#: modules/widget/widget.php:15
|
3971 |
+
#@ fl-builder
|
3972 |
+
msgid "Display a WordPress widget."
|
3973 |
+
msgstr "Exibe um widget do WordPress."
|
3974 |
+
|
3975 |
+
#: modules/woocommerce/woocommerce.php:16
|
3976 |
+
#@ fl-builder
|
3977 |
+
msgid "WooCommerce"
|
3978 |
+
msgstr ""
|
3979 |
+
|
3980 |
+
#: modules/woocommerce/woocommerce.php:17
|
3981 |
+
#@ fl-builder
|
3982 |
+
msgid "Display products or categories from your WooCommerce store."
|
3983 |
+
msgstr "Exibe produtos ou categorias de sua loja do WooCommerce."
|
3984 |
+
|
3985 |
+
#: modules/woocommerce/woocommerce.php:60
|
3986 |
+
#@ fl-builder
|
3987 |
+
msgid "Choose..."
|
3988 |
+
msgstr "Escolha..."
|
3989 |
+
|
3990 |
+
#: modules/woocommerce/woocommerce.php:61
|
3991 |
+
#@ fl-builder
|
3992 |
+
msgid "Single Product"
|
3993 |
+
msgstr "Produto Simples"
|
3994 |
+
|
3995 |
+
#: modules/woocommerce/woocommerce.php:62
|
3996 |
+
#: modules/woocommerce/woocommerce.php:113
|
3997 |
+
#@ fl-builder
|
3998 |
+
msgid "Multiple Products"
|
3999 |
+
msgstr "Vários Produtos"
|
4000 |
+
|
4001 |
+
#: modules/woocommerce/woocommerce.php:63
|
4002 |
+
#@ fl-builder
|
4003 |
+
msgid "\"Add to Cart\" Button"
|
4004 |
+
msgstr "Botão \"Adicionar ao Carrinho\""
|
4005 |
+
|
4006 |
+
#: modules/woocommerce/woocommerce.php:64
|
4007 |
+
#@ fl-builder
|
4008 |
+
msgid "Categories"
|
4009 |
+
msgstr "Categorias"
|
4010 |
+
|
4011 |
+
#: modules/woocommerce/woocommerce.php:65
|
4012 |
+
#@ fl-builder
|
4013 |
+
msgid "Cart"
|
4014 |
+
msgstr "Carrinho"
|
4015 |
+
|
4016 |
+
#: modules/woocommerce/woocommerce.php:66
|
4017 |
+
#@ fl-builder
|
4018 |
+
msgid "Checkout"
|
4019 |
+
msgstr ""
|
4020 |
+
|
4021 |
+
#: modules/woocommerce/woocommerce.php:67
|
4022 |
+
#@ fl-builder
|
4023 |
+
msgid "Order Tracking"
|
4024 |
+
msgstr "Rastreamento de Pedido"
|
4025 |
+
|
4026 |
+
#: modules/woocommerce/woocommerce.php:68
|
4027 |
+
#@ fl-builder
|
4028 |
+
msgid "My Account"
|
4029 |
+
msgstr "Minha Conta"
|
4030 |
+
|
4031 |
+
#: modules/woocommerce/woocommerce.php:87
|
4032 |
+
#@ fl-builder
|
4033 |
+
msgid "Product ID"
|
4034 |
+
msgstr "ID do Produto"
|
4035 |
+
|
4036 |
+
#: modules/woocommerce/woocommerce.php:90
|
4037 |
+
#@ fl-builder
|
4038 |
+
msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute."
|
4039 |
+
msgstr "Conforme você adiciona produtos na área de Produtos no WooCommerce, cada um será salvo com um ID único. Você pode encontrar esse ID único visitando a área de Produtos e passando o mouse sobre o produto. O ID único será o primeiro atributo."
|
4040 |
+
|
4041 |
+
#: modules/woocommerce/woocommerce.php:94
|
4042 |
+
#@ fl-builder
|
4043 |
+
msgid "Parent Category ID"
|
4044 |
+
msgstr "ID da Categoria Pai"
|
4045 |
+
|
4046 |
+
#: modules/woocommerce/woocommerce.php:97
|
4047 |
+
#@ fl-builder
|
4048 |
+
msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique ID. This ID can be found by hovering on the category in the categories area under Products and looking in the URL that is displayed in your browser. The ID will be the only number value in the URL."
|
4049 |
+
msgstr "Conforme você adiciona categorias de produtos na área de Produtos no WooCommerce, cada uma será salva com um ID único. Você pode encontrar esse ID único passando o mouse sobre a categoria na área de categorias abaixo de Produtos, e observando a URL que é exibida no seu navegador. O ID único será único valor numérico na URL."
|
4050 |
+
|
4051 |
+
#: modules/woocommerce/woocommerce.php:101
|
4052 |
+
#: modules/woocommerce/woocommerce.php:172
|
4053 |
+
#@ fl-builder
|
4054 |
+
msgid "Columns"
|
4055 |
+
msgstr "Colunas"
|
4056 |
+
|
4057 |
+
#: modules/woocommerce/woocommerce.php:117
|
4058 |
+
#@ fl-builder
|
4059 |
+
msgid "Products Source"
|
4060 |
+
msgstr "Origem dos Produtos"
|
4061 |
+
|
4062 |
+
#: modules/woocommerce/woocommerce.php:120
|
4063 |
+
#@ fl-builder
|
4064 |
+
msgid "Products IDs"
|
4065 |
+
msgstr "IDs dos Produtos"
|
4066 |
+
|
4067 |
+
#: modules/woocommerce/woocommerce.php:121
|
4068 |
+
#@ fl-builder
|
4069 |
+
msgid "Product Category"
|
4070 |
+
msgstr "Categoria de Produto"
|
4071 |
+
|
4072 |
+
#: modules/woocommerce/woocommerce.php:122
|
4073 |
+
#@ fl-builder
|
4074 |
+
msgid "Recent Products"
|
4075 |
+
msgstr "Produtos Recentes"
|
4076 |
+
|
4077 |
+
#: modules/woocommerce/woocommerce.php:123
|
4078 |
+
#@ fl-builder
|
4079 |
+
msgid "Featured Products"
|
4080 |
+
msgstr "Produtos em Destaque"
|
4081 |
+
|
4082 |
+
#: modules/woocommerce/woocommerce.php:124
|
4083 |
+
#@ fl-builder
|
4084 |
+
msgid "Sale Products"
|
4085 |
+
msgstr "Produtos em Promoção"
|
4086 |
+
|
4087 |
+
#: modules/woocommerce/woocommerce.php:125
|
4088 |
+
#@ fl-builder
|
4089 |
+
msgid "Best Selling Products"
|
4090 |
+
msgstr "Produtos Mais Vendidos"
|
4091 |
+
|
4092 |
+
#: modules/woocommerce/woocommerce.php:126
|
4093 |
+
#@ fl-builder
|
4094 |
+
msgid "Top Rated Products"
|
4095 |
+
msgstr "Produtos mais bem votados"
|
4096 |
+
|
4097 |
+
#: modules/woocommerce/woocommerce.php:154
|
4098 |
+
#@ fl-builder
|
4099 |
+
msgid "Product IDs"
|
4100 |
+
msgstr "IDs de Produto"
|
4101 |
+
|
4102 |
+
#: modules/woocommerce/woocommerce.php:156
|
4103 |
+
#@ fl-builder
|
4104 |
+
msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute and you can add several here separated by a comma."
|
4105 |
+
msgstr "Conforme você adiciona produtos na área de Produtos no WooCommerce, cada um será salvo com um ID único. Você pode encontrar esse ID único de produto visitando passando o mouse sobre o produto. O ID único será o primeiro atributo, e vocë pode adicionar vários IDs aqui, separados por uma vírgula."
|
4106 |
+
|
4107 |
+
#: modules/woocommerce/woocommerce.php:160
|
4108 |
+
#@ fl-builder
|
4109 |
+
msgid "Category Slug"
|
4110 |
+
msgstr "Slug de Categoria"
|
4111 |
+
|
4112 |
+
#: modules/woocommerce/woocommerce.php:162
|
4113 |
+
#@ fl-builder
|
4114 |
+
msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique slug or you can edit and add your own. These slugs can be found in the Categories area under WooCommerce Products. Several can be added here separated by a comma."
|
4115 |
+
msgstr "Conforme você adiciona categorias de produtos na área de Produtos no WooCommerce, cada uma será salva com um slug único, ou você pode editar e inserir um de sua preferência. Esses slugs podem ser encontrados na área de Categorias abaixo de Produtos. Vários podem ser adicionados aqui, separados por uma vírgula."
|
4116 |
+
|
4117 |
+
#: modules/woocommerce/woocommerce.php:166
|
4118 |
+
#@ fl-builder
|
4119 |
+
msgid "Number of Products"
|
4120 |
+
msgstr "Número de Produtos"
|
4121 |
+
|
4122 |
+
#: modules/woocommerce/woocommerce.php:183
|
4123 |
+
#@ fl-builder
|
4124 |
+
msgid "Sort By"
|
4125 |
+
msgstr "Ordenar Por"
|
4126 |
+
|
4127 |
+
#: modules/woocommerce/woocommerce.php:186
|
4128 |
+
#@ fl-builder
|
4129 |
+
msgctxt "Sort by."
|
4130 |
+
msgid "Default"
|
4131 |
+
msgstr "Padrão"
|
4132 |
+
|
4133 |
+
#: modules/woocommerce/woocommerce.php:187
|
4134 |
+
#@ fl-builder
|
4135 |
+
msgid "Popularity"
|
4136 |
+
msgstr "Popularidade"
|
4137 |
+
|
4138 |
+
#: modules/woocommerce/woocommerce.php:188
|
4139 |
+
#@ fl-builder
|
4140 |
+
msgid "Rating"
|
4141 |
+
msgstr "Votos"
|
4142 |
+
|
4143 |
+
#: modules/woocommerce/woocommerce.php:190
|
4144 |
+
#@ fl-builder
|
4145 |
+
msgid "Price: Low to High"
|
4146 |
+
msgstr "Preço: mais baixo ao mais alto"
|
4147 |
+
|
4148 |
+
#: modules/woocommerce/woocommerce.php:191
|
4149 |
+
#@ fl-builder
|
4150 |
+
msgid "Price: High to Low"
|
4151 |
+
msgstr "Preço: mais alto ao mais baixo"
|
4152 |
+
|
languages/sk_SK.mo
CHANGED
Binary file
|
languages/sk_SK.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
|
7 |
"Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
|
8 |
"Language: sk_SK\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.7.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
@@ -18,7 +18,73 @@ msgstr ""
|
|
18 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: classes/class-fl-builder-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
#, php-format
|
23 |
msgid ""
|
24 |
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
@@ -29,7 +95,7 @@ msgstr ""
|
|
29 |
"sieťovou inštaláciou WordPress (Multisite). <a%s>Aktualizujte modul</a> na "
|
30 |
"jeho sieťovú verziu."
|
31 |
|
32 |
-
#: classes/class-fl-builder-admin.php:
|
33 |
msgid ""
|
34 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
35 |
"greater. Please update WordPress before activating the plugin."
|
@@ -37,23 +103,33 @@ msgstr ""
|
|
37 |
"Modul <strong>Editora stránok</strong> vyžaduje WordPress aspoň vo verzii "
|
38 |
"3.5. Aktualizujte WordPress pred aktiváciou modulu."
|
39 |
|
40 |
-
#: classes/class-fl-builder-admin.php:
|
41 |
#, php-format
|
42 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
43 |
msgstr ""
|
44 |
"Editor stránok bol aktivovaný! <a%s>Zapnite automatické aktualizácie.</a>"
|
45 |
|
46 |
-
#: classes/class-fl-builder-admin.php:
|
47 |
msgctxt "Plugin action link label."
|
48 |
msgid "Upgrade"
|
49 |
msgstr "Aktualizovať"
|
50 |
|
51 |
-
#: classes/class-fl-builder-admin.php:
|
52 |
-
#: classes/class-fl-builder-model.php:
|
53 |
msgid "Page Builder"
|
54 |
msgstr "Editor stránok"
|
55 |
|
56 |
-
#: classes/class-fl-builder-model.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
#, php-format
|
58 |
msgctxt "%s stands for post/page title."
|
59 |
msgid "Copy of %s"
|
@@ -83,206 +159,78 @@ msgstr "Miniatúra"
|
|
83 |
msgid "Page Builder Templates"
|
84 |
msgstr "Šablóny Editora stránok"
|
85 |
|
86 |
-
#: classes/class-fl-builder.php:
|
87 |
#, php-format
|
88 |
msgctxt "Field name to add."
|
89 |
msgid "Add %s"
|
90 |
msgstr "%s → pridať"
|
91 |
|
92 |
-
#: classes/class-fl-builder.php:
|
93 |
msgctxt "Custom post type label."
|
94 |
msgid "Layout Templates"
|
95 |
msgstr "Šablóny rozloženia"
|
96 |
|
97 |
-
#: classes/class-fl-builder.php:
|
98 |
msgctxt "Custom post type label."
|
99 |
msgid "Layout Template"
|
100 |
msgstr "Šablóna rozloženia"
|
101 |
|
102 |
-
#: classes/class-fl-builder.php:
|
103 |
msgctxt "Custom post type label."
|
104 |
msgid "Add New"
|
105 |
msgstr "Pridať novú"
|
106 |
|
107 |
-
#: classes/class-fl-builder.php:
|
108 |
msgctxt "Custom post type label."
|
109 |
msgid "Add New Layout Template"
|
110 |
msgstr "Pridať novú šablónu rozloženia"
|
111 |
|
112 |
-
#: classes/class-fl-builder.php:
|
113 |
msgctxt "Custom post type label."
|
114 |
msgid "New Layout Template"
|
115 |
msgstr "Nová šablóna rozloženia"
|
116 |
|
117 |
-
#: classes/class-fl-builder.php:
|
118 |
msgctxt "Custom post type label."
|
119 |
msgid "Edit Layout Template"
|
120 |
msgstr "Upraviť šablónu rozloženia"
|
121 |
|
122 |
-
#: classes/class-fl-builder.php:
|
123 |
msgctxt "Custom post type label."
|
124 |
msgid "View Layout Template"
|
125 |
msgstr "Zobraziť šablónu rozloženia"
|
126 |
|
127 |
-
#: classes/class-fl-builder.php:
|
128 |
msgctxt "Custom post type label."
|
129 |
msgid "All Layout Templates"
|
130 |
msgstr "Všetky šablóny rozloženia"
|
131 |
|
132 |
-
#: classes/class-fl-builder.php:
|
133 |
msgctxt "Custom post type label."
|
134 |
msgid "Search Layout Templates"
|
135 |
msgstr "Hľadať šablóny rozloženia"
|
136 |
|
137 |
-
#: classes/class-fl-builder.php:
|
138 |
msgctxt "Custom post type label."
|
139 |
msgid "Parent Layout Templates:"
|
140 |
msgstr "Nadradené šablóny rozloženia:"
|
141 |
|
142 |
-
#: classes/class-fl-builder.php:
|
143 |
msgctxt "Custom post type label."
|
144 |
msgid "No layout templates found."
|
145 |
msgstr "Nenašli sa žiadne šablóny rozloženia."
|
146 |
|
147 |
-
#: classes/class-fl-builder.php:
|
148 |
msgctxt "Custom post type label."
|
149 |
msgid "No layout templates found in Trash."
|
150 |
msgstr "V koši sa nenašli žiadne šablóny rozloženia."
|
151 |
|
152 |
-
#: classes/class-fl-builder.php:
|
153 |
#, php-format
|
154 |
msgctxt "%s stands for module name."
|
155 |
msgid "%s Settings"
|
156 |
msgstr "%s → Nastavenia"
|
157 |
|
158 |
-
#: includes/admin-branding.php:3 includes/admin-settings.php:36
|
159 |
-
#: includes/multisite-settings.php:23
|
160 |
-
msgid "Branding"
|
161 |
-
msgstr "Značka"
|
162 |
-
|
163 |
-
#: includes/admin-branding.php:11
|
164 |
-
msgid "White label the page builder by entering a custom name below."
|
165 |
-
msgstr "Zmeňte značku editora stránok zadaním vlastného mena, názvu editora."
|
166 |
-
|
167 |
-
#: includes/admin-branding.php:14
|
168 |
-
msgid ""
|
169 |
-
"Additionally, you may also add a custom icon by entering the URL of an image "
|
170 |
-
"below. Leave the field blank if you do not wish to use an icon."
|
171 |
-
msgstr ""
|
172 |
-
"Dodatočne môžete pridať aj vlastnú ikonku zadaním URL adresy obrázku. Ak "
|
173 |
-
"ikonku nechcete použiť, ponechajte pole prázdne."
|
174 |
-
|
175 |
-
#: includes/admin-branding.php:18
|
176 |
-
msgid "Save Branding"
|
177 |
-
msgstr "Uložiť nastavenie značky"
|
178 |
-
|
179 |
-
#: includes/admin-edit-template.php:3
|
180 |
-
msgid "Edit Template"
|
181 |
-
msgstr "Upraviť šablónu"
|
182 |
-
|
183 |
-
#: includes/admin-edit-template.php:8
|
184 |
-
msgctxt "Template edit form field label. Template name."
|
185 |
-
msgid "Name"
|
186 |
-
msgstr "Názov"
|
187 |
-
|
188 |
-
#: includes/admin-edit-template.php:12 modules/callout/callout.php:303
|
189 |
-
#: modules/post-grid/post-grid.php:113
|
190 |
-
msgid "Image"
|
191 |
-
msgstr "Obrázok"
|
192 |
-
|
193 |
-
#: includes/admin-edit-template.php:16 includes/row-settings.php:155
|
194 |
-
#: includes/template-settings.php:23 modules/callout/callout.php:351
|
195 |
-
#: modules/callout/callout.php:371
|
196 |
-
#: modules/content-slider/content-slider.php:466
|
197 |
-
#: modules/post-grid/post-grid.php:127
|
198 |
-
msgid "Position"
|
199 |
-
msgstr "Pozícia"
|
200 |
-
|
201 |
-
#: includes/admin-edit-template.php:20 includes/template-settings.php:28
|
202 |
-
msgctxt "Template edit form field label. Is template premium one?"
|
203 |
-
msgid "Premium"
|
204 |
-
msgstr "Prémiová"
|
205 |
-
|
206 |
-
#: includes/admin-edit-template.php:23 includes/admin-templates.php:30
|
207 |
-
#: includes/global-settings.php:18 includes/global-settings.php:87
|
208 |
-
#: includes/row-settings.php:307 includes/template-settings.php:31
|
209 |
-
#: modules/accordion/accordion.php:90 modules/button/button.php:135
|
210 |
-
#: modules/callout/callout.php:418 modules/callout/callout.php:539
|
211 |
-
#: modules/content-slider/content-slider.php:203
|
212 |
-
#: modules/content-slider/content-slider.php:217
|
213 |
-
#: modules/content-slider/content-slider.php:251
|
214 |
-
#: modules/content-slider/content-slider.php:260
|
215 |
-
#: modules/content-slider/content-slider.php:531
|
216 |
-
#: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
|
217 |
-
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
218 |
-
#: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
|
219 |
-
#: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
|
220 |
-
#: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
|
221 |
-
#: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
|
222 |
-
#: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
|
223 |
-
#: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
|
224 |
-
#: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
|
225 |
-
#: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
|
226 |
-
#: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
|
227 |
-
#: modules/social-buttons/social-buttons.php:111
|
228 |
-
#: modules/social-buttons/social-buttons.php:120
|
229 |
-
#: modules/social-buttons/social-buttons.php:129
|
230 |
-
#: modules/testimonials/testimonials.php:85
|
231 |
-
#: modules/testimonials/testimonials.php:124
|
232 |
-
#: modules/testimonials/testimonials.php:154 modules/video/video.php:111
|
233 |
-
#: modules/video/video.php:123
|
234 |
-
msgid "No"
|
235 |
-
msgstr "Nie"
|
236 |
-
|
237 |
-
#: includes/admin-edit-template.php:24 includes/admin-templates.php:30
|
238 |
-
#: includes/global-settings.php:19 includes/global-settings.php:88
|
239 |
-
#: includes/row-settings.php:308 includes/template-settings.php:32
|
240 |
-
#: modules/accordion/accordion.php:89 modules/button/button.php:136
|
241 |
-
#: modules/callout/callout.php:419 modules/callout/callout.php:540
|
242 |
-
#: modules/content-slider/content-slider.php:204
|
243 |
-
#: modules/content-slider/content-slider.php:218
|
244 |
-
#: modules/content-slider/content-slider.php:252
|
245 |
-
#: modules/content-slider/content-slider.php:261
|
246 |
-
#: modules/content-slider/content-slider.php:532
|
247 |
-
#: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
|
248 |
-
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
249 |
-
#: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
|
250 |
-
#: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
|
251 |
-
#: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
|
252 |
-
#: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
|
253 |
-
#: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
|
254 |
-
#: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
|
255 |
-
#: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
|
256 |
-
#: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
|
257 |
-
#: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
|
258 |
-
#: modules/social-buttons/social-buttons.php:110
|
259 |
-
#: modules/social-buttons/social-buttons.php:119
|
260 |
-
#: modules/social-buttons/social-buttons.php:128
|
261 |
-
#: modules/testimonials/testimonials.php:86
|
262 |
-
#: modules/testimonials/testimonials.php:125
|
263 |
-
#: modules/testimonials/testimonials.php:155 modules/video/video.php:112
|
264 |
-
#: modules/video/video.php:124
|
265 |
-
msgid "Yes"
|
266 |
-
msgstr "Áno"
|
267 |
-
|
268 |
-
#: includes/admin-edit-template.php:29 includes/template-settings.php:37
|
269 |
-
msgid "Category"
|
270 |
-
msgstr "Kategória"
|
271 |
-
|
272 |
-
#: includes/admin-edit-template.php:32 includes/template-settings.php:40
|
273 |
-
msgctxt "Templates category label."
|
274 |
-
msgid "Landing Pages"
|
275 |
-
msgstr "Vstupné stránky"
|
276 |
-
|
277 |
-
#: includes/admin-edit-template.php:33 includes/template-settings.php:41
|
278 |
-
msgctxt "Templates category label."
|
279 |
-
msgid "Company Info"
|
280 |
-
msgstr "Informačné"
|
281 |
-
|
282 |
-
#: includes/admin-edit-template.php:40
|
283 |
-
msgid "Update Template"
|
284 |
-
msgstr "Aktualizovať šablónu"
|
285 |
-
|
286 |
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
287 |
msgid "Text Editor"
|
288 |
msgstr "Textový editor"
|
@@ -299,191 +247,318 @@ msgctxt "%s stands for custom branded \"Page Builder\" name."
|
|
299 |
msgid "Launch %s"
|
300 |
msgstr "Spustiť %s"
|
301 |
|
302 |
-
#: includes/admin-settings.php:7
|
303 |
-
|
304 |
-
|
305 |
-
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
306 |
-
msgid "%s Settings"
|
307 |
-
msgstr "Nastavenia pre %s"
|
308 |
|
309 |
-
#: includes/admin-settings
|
310 |
-
msgid "
|
311 |
-
|
|
|
|
|
|
|
|
|
312 |
|
313 |
-
#: includes/admin-settings
|
314 |
-
msgid "
|
315 |
-
msgstr "
|
316 |
|
317 |
-
#: includes/admin-settings
|
318 |
-
msgid "
|
319 |
-
msgstr "
|
320 |
|
321 |
-
#: includes/admin-settings.php:
|
322 |
-
#: includes/
|
323 |
-
|
324 |
-
|
|
|
|
|
325 |
|
326 |
-
#: includes/admin-settings
|
327 |
-
|
328 |
-
msgid "
|
329 |
-
|
|
|
|
|
|
|
|
|
330 |
|
331 |
-
#: includes/admin-settings
|
332 |
-
|
333 |
-
|
334 |
-
msgstr "Typy obsahu"
|
335 |
|
336 |
-
#: includes/admin-settings
|
337 |
-
msgid "
|
338 |
-
msgstr "
|
339 |
|
340 |
-
#: includes/admin-settings
|
341 |
-
|
342 |
-
|
343 |
-
msgid "Uninstall"
|
344 |
-
msgstr "Odinštalovať"
|
345 |
|
346 |
-
#: includes/admin-settings.php:
|
|
|
347 |
msgid ""
|
348 |
-
"
|
349 |
-
"
|
350 |
-
"templates, support and more!"
|
351 |
msgstr ""
|
352 |
-
"
|
353 |
-
"
|
354 |
-
"prémiových vylepšení!"
|
355 |
|
356 |
-
#: includes/admin-settings.php:
|
357 |
-
|
358 |
-
|
|
|
359 |
|
360 |
-
#: includes/admin-settings.php:
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: includes/admin-settings
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
msgid "Enabled Modules"
|
366 |
msgstr "Aktivované moduly"
|
367 |
|
368 |
-
#: includes/admin-settings
|
369 |
-
#: includes/admin-settings.php:170 includes/admin-settings.php:222
|
370 |
-
msgid "Override network settings?"
|
371 |
-
msgstr "Ignorovať sieťové nastavenia?"
|
372 |
-
|
373 |
-
#: includes/admin-settings.php:87 includes/multisite-settings.php:45
|
374 |
msgid "Check or uncheck modules below to enable or disable them."
|
375 |
msgstr ""
|
376 |
"Zaškrtnite alebo odškrtnite doleuvedené moduly pre ich aktiváciu alebo "
|
377 |
"deaktiváciu."
|
378 |
|
379 |
-
#: includes/admin-settings
|
380 |
msgctxt "Plugin setup page: Modules."
|
381 |
msgid "All"
|
382 |
msgstr "Všetky"
|
383 |
|
384 |
-
#: includes/admin-settings
|
385 |
msgid "Save Module Settings"
|
386 |
msgstr "Uložiť nastavenia modulov"
|
387 |
|
388 |
-
#: includes/admin-settings
|
389 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid "Template Settings"
|
391 |
msgstr "Nastavenia šablón"
|
392 |
|
393 |
-
#: includes/admin-settings
|
394 |
msgid "Enable or disable templates using the options below."
|
395 |
msgstr "Aktivujte alebo deaktivujte šablóny pomocou doleuvedených možností."
|
396 |
|
397 |
-
#: includes/admin-settings
|
398 |
msgid "Enable All Templates"
|
399 |
msgstr "Sprístupniť všetky šablóny"
|
400 |
|
401 |
-
#: includes/admin-settings
|
402 |
msgid "Enable Core Templates Only"
|
403 |
msgstr "Sprístupniť iba základné šablóny"
|
404 |
|
405 |
-
#: includes/admin-settings
|
406 |
msgid "Enable User Templates Only"
|
407 |
msgstr "Sprístupniť iba užívateľské šablóny"
|
408 |
|
409 |
-
#: includes/admin-settings
|
410 |
msgid "Disable All Templates"
|
411 |
msgstr "Zakázať všetky šablóny"
|
412 |
|
413 |
-
#: includes/admin-settings
|
414 |
msgid "Save Template Settings"
|
415 |
msgstr "Uložiť nastavenia šablón"
|
416 |
|
417 |
-
#: includes/admin-settings.php:
|
418 |
-
msgid "
|
|
|
|
|
|
|
419 |
msgstr ""
|
420 |
-
"
|
|
|
|
|
421 |
|
422 |
-
#: includes/admin-settings
|
423 |
-
|
424 |
-
|
|
|
|
|
425 |
|
426 |
-
#: includes/admin-settings
|
427 |
-
msgid "
|
428 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
|
430 |
-
#: includes/admin-settings
|
431 |
-
|
432 |
-
|
|
|
433 |
|
434 |
-
#: includes/admin-settings
|
435 |
-
#, php-format
|
436 |
msgid ""
|
437 |
-
"
|
438 |
-
"
|
|
|
439 |
msgstr ""
|
440 |
-
"
|
441 |
-
"
|
|
|
442 |
|
443 |
-
#: includes/admin-settings
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
|
447 |
-
#: includes/admin-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
|
457 |
-
#: includes/admin-
|
458 |
-
|
459 |
-
|
460 |
-
msgid "NOTE:"
|
461 |
-
msgstr "UPOZORNENIE:"
|
462 |
|
463 |
-
#: includes/admin-
|
464 |
-
|
465 |
-
"
|
466 |
-
"
|
467 |
-
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
468 |
-
"its data using those meta values."
|
469 |
-
msgstr ""
|
470 |
-
"Nebudú odstránené <code>_fl_builder_data</code>, <code>_fl_builder_draft</"
|
471 |
-
"code> a <code>_fl_builder_enabled</code> meta dáta článov pre prípad, že sa "
|
472 |
-
"rozhodnete znovu Editor stránok nainštalovať. V takom prípade sa dáta "
|
473 |
-
"použijú na obnovenie rozloženia stránok."
|
474 |
|
475 |
-
#: includes/admin-
|
476 |
-
|
477 |
-
msgid "
|
478 |
-
msgstr "
|
479 |
|
480 |
-
#: includes/admin-
|
481 |
-
msgid ""
|
482 |
-
|
483 |
-
"to uninstall the page builder and all of its data."
|
484 |
-
msgstr ""
|
485 |
-
"Zadajte \"uninstall\" pre potvrdenie odinštalovania editora stránok a "
|
486 |
-
"odstránenia všetkých jeho dát."
|
487 |
|
488 |
#: includes/admin-templates.php:3
|
489 |
msgid "Page Builder Template"
|
@@ -513,15 +588,15 @@ msgstr "Upraviť"
|
|
513 |
msgid "Delete"
|
514 |
msgstr "Odstrániť"
|
515 |
|
516 |
-
#: includes/admin-templates.php:40 includes/js-config.php:
|
517 |
msgid "Do you really want to delete this template?"
|
518 |
msgstr "Naozaj chcete túto šablónu vymazať?"
|
519 |
|
520 |
-
#: includes/column-settings.php:4 includes/js-config.php:
|
521 |
msgid "Column Settings"
|
522 |
msgstr "Nastavenia stĺpca"
|
523 |
|
524 |
-
#: includes/column-settings.php:7 includes/module-settings.php:
|
525 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
526 |
#: modules/button/button.php:95 modules/callout/callout.php:239
|
527 |
#: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
|
@@ -643,71 +718,107 @@ msgstr "Šírka vpravo"
|
|
643 |
msgid "Advanced"
|
644 |
msgstr "Pokročilé"
|
645 |
|
646 |
-
#: includes/column-settings.php:
|
647 |
-
#: includes/
|
648 |
-
|
649 |
-
|
|
|
650 |
|
651 |
-
#: includes/column-settings.php:
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
|
658 |
-
#: includes/column-settings.php:
|
|
|
659 |
msgid "Responsive Layout"
|
660 |
msgstr "Responzívne rozloženie"
|
661 |
|
662 |
-
#: includes/column-settings.php:
|
663 |
-
#: includes/row-settings.php:
|
664 |
msgid "Display"
|
665 |
msgstr "Zobrazenie"
|
666 |
|
667 |
-
#: includes/column-settings.php:
|
668 |
-
#: includes/row-settings.php:
|
669 |
msgid "Always"
|
670 |
msgstr "Vždy"
|
671 |
|
672 |
-
#: includes/column-settings.php:
|
673 |
-
#: includes/row-settings.php:
|
674 |
msgid "Large Devices Only"
|
675 |
msgstr "Iba na veľkých zariadeniach"
|
676 |
|
677 |
-
#: includes/column-settings.php:
|
678 |
-
#: includes/row-settings.php:
|
679 |
msgid "Large & Medium Devices Only"
|
680 |
msgstr "Iba na veľkých a stredných zariadeniach"
|
681 |
|
682 |
-
#: includes/column-settings.php:
|
683 |
-
#: includes/row-settings.php:
|
684 |
msgid "Medium Devices Only"
|
685 |
msgstr "Iba na stredných zariadeniach"
|
686 |
|
687 |
-
#: includes/column-settings.php:
|
688 |
-
#: includes/row-settings.php:
|
689 |
msgid "Medium & Small Devices Only"
|
690 |
msgstr "Iba na stredných a malých zariadeniach"
|
691 |
|
692 |
-
#: includes/column-settings.php:
|
693 |
-
#: includes/row-settings.php:
|
694 |
msgid "Small Devices Only"
|
695 |
msgstr "Iba na malých zariadeniach"
|
696 |
|
697 |
-
#: includes/column-settings.php:
|
698 |
msgid "Choose whether to show or hide this column at different device sizes."
|
699 |
msgstr ""
|
700 |
"Zvoľte, či sa má tento stĺpec zobraziť na zariadeniach rôznych veľkostí."
|
701 |
|
702 |
-
#: includes/column-settings.php:
|
703 |
msgid "Medium Device Width"
|
704 |
msgstr "Šírka pre stredne veľké zariadenia"
|
705 |
|
706 |
-
#: includes/column-settings.php:
|
707 |
msgid "The width of this column on medium devices such as tablets."
|
708 |
msgstr "Šírka tohto stĺpca na stredne veľkých zariadeniach, ako sú tablety."
|
709 |
|
710 |
-
#: includes/column-settings.php:
|
711 |
#: modules/callout/callout.php:281
|
712 |
#: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
|
713 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
@@ -715,7 +826,7 @@ msgstr "Šírka tohto stĺpca na stredne veľkých zariadeniach, ako sú tablety
|
|
715 |
msgid "Default"
|
716 |
msgstr "Prednastavené"
|
717 |
|
718 |
-
#: includes/column-settings.php:
|
719 |
#: modules/button/button.php:151 modules/callout/callout.php:282
|
720 |
#: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
|
721 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
@@ -724,70 +835,54 @@ msgstr "Prednastavené"
|
|
724 |
msgid "Custom"
|
725 |
msgstr "Vlastné"
|
726 |
|
727 |
-
#: includes/column-settings.php:
|
728 |
msgid "Custom Medium Device Width"
|
729 |
msgstr "Vlastná šírka na stredne veľkých zariadeniach"
|
730 |
|
731 |
-
#: includes/column-settings.php:
|
732 |
msgid "Small Device Width"
|
733 |
msgstr "Šírka pre malé zariadenia"
|
734 |
|
735 |
-
#: includes/column-settings.php:
|
736 |
msgid "The width of this column on small devices such as phones."
|
737 |
msgstr "Šírka tohto stĺpca na malých zariadeniach, ako sú telefóny."
|
738 |
|
739 |
-
#: includes/column-settings.php:
|
740 |
msgid "Custom Small Device Width"
|
741 |
msgstr "Vlastná šírka na malých zariadeniach"
|
742 |
|
743 |
-
#: includes/column-settings.php:
|
744 |
-
#: includes/
|
745 |
-
|
746 |
-
|
747 |
-
msgstr "Odsadenie"
|
748 |
-
|
749 |
-
#: includes/column-settings.php:267 includes/column-settings.php:320
|
750 |
-
#: includes/module-settings.php:42 includes/row-settings.php:485
|
751 |
-
#: includes/row-settings.php:538 modules/slideshow/slideshow.php:475
|
752 |
-
msgid "Top"
|
753 |
-
msgstr "Hore"
|
754 |
|
755 |
-
#: includes/column-settings.php:
|
756 |
-
#: includes/module-settings.php:
|
757 |
-
|
758 |
-
|
759 |
-
msgstr "Dole"
|
760 |
|
761 |
-
#: includes/column-settings.php:
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
769 |
-
msgid "Left"
|
770 |
-
msgstr "Vľavo"
|
771 |
|
772 |
-
#: includes/column-settings.php:
|
773 |
-
|
774 |
-
|
775 |
-
#: modules/callout/callout.php:251
|
776 |
-
#: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
|
777 |
-
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
778 |
-
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
779 |
-
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
780 |
-
msgid "Right"
|
781 |
-
msgstr "Vpravo"
|
782 |
|
783 |
-
#: includes/column-settings.php:
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
msgstr "
|
|
|
|
|
789 |
|
790 |
-
#: includes/field-form.php:
|
791 |
#, php-format
|
792 |
msgctxt "%s stands for form field label."
|
793 |
msgid "Edit %s"
|
@@ -801,7 +896,7 @@ msgstr "Zvoliť ikonku"
|
|
801 |
msgid "Replace"
|
802 |
msgstr "Nahradiť"
|
803 |
|
804 |
-
#: includes/field-icon.php:7 includes/js-config.php:
|
805 |
msgid "Remove"
|
806 |
msgstr "Odstrániť"
|
807 |
|
@@ -817,8 +912,8 @@ msgstr "Zadajte názov hľadaného článku."
|
|
817 |
msgid "Start typing..."
|
818 |
msgstr "Začnite písať..."
|
819 |
|
820 |
-
#: includes/field-link.php:7 includes/icon-selector.php:
|
821 |
-
#: includes/js-config.php:
|
822 |
#: includes/template-selector.php:102 includes/ui.php:11
|
823 |
msgid "Cancel"
|
824 |
msgstr "Zrušiť"
|
@@ -843,11 +938,11 @@ msgstr "Upraviť galériu"
|
|
843 |
msgid "Add Photos"
|
844 |
msgstr "Pridať obrázky"
|
845 |
|
846 |
-
#: includes/field-photo.php:3 includes/js-config.php:
|
847 |
msgid "Select Photo"
|
848 |
msgstr "Zvoliť obrázok"
|
849 |
|
850 |
-
#: includes/field-video.php:3 includes/js-config.php:
|
851 |
msgid "Select Video"
|
852 |
msgstr "Zvoliť video"
|
853 |
|
@@ -953,19 +1048,20 @@ msgstr ""
|
|
953 |
"Šírka internetového prehliadača, v ktorej sa rozloženie nastaví do režimu "
|
954 |
"pre malých zariadení, ako sú telefóny."
|
955 |
|
956 |
-
#: includes/icon-selector.php:
|
957 |
-
|
958 |
-
|
|
|
959 |
|
960 |
-
#: includes/js-config.php:
|
961 |
msgid "What would you like to do?"
|
962 |
msgstr "Čo si prajete urobiť?"
|
963 |
|
964 |
-
#: includes/js-config.php:
|
965 |
msgid "Change Template"
|
966 |
msgstr "Zmeniť šablónu"
|
967 |
|
968 |
-
#: includes/js-config.php:
|
969 |
msgid ""
|
970 |
"Warning! Changing the template will replace your existing layout. Do you "
|
971 |
"really want to do this?"
|
@@ -973,38 +1069,38 @@ msgstr ""
|
|
973 |
"Pozor! Zmenou šablóny nahradíte existujúce rozloženie. Naozaj to chcete "
|
974 |
"urobiť?"
|
975 |
|
976 |
-
#: includes/js-config.php:
|
977 |
msgid "Column"
|
978 |
msgstr "Stĺpec"
|
979 |
|
980 |
-
#: includes/js-config.php:
|
981 |
msgid ""
|
982 |
"Please select either a background layout or content layout before submitting."
|
983 |
msgstr "Najskôr zvoľte rozloženie pozadia alebo obsahu."
|
984 |
|
985 |
-
#: includes/js-config.php:
|
986 |
msgid "Do you really want to delete this item?"
|
987 |
msgstr "Naozaj chcete túto položku odstrániť?"
|
988 |
|
989 |
-
#: includes/js-config.php:
|
990 |
msgid ""
|
991 |
"Do you really want to delete this module? All content data will be "
|
992 |
"permanently deleted."
|
993 |
msgstr ""
|
994 |
"Naozaj chcete tento modul odstrániť? Všetky dáta jeho obsahu budu vymazané."
|
995 |
|
996 |
-
#: includes/js-config.php:
|
997 |
msgid ""
|
998 |
"Do you really want to delete this row? All content data will be permanently "
|
999 |
"deleted."
|
1000 |
msgstr ""
|
1001 |
"Naozaj chcete odstrániť tento riadok? Všetok obsah riadku bude vymazaný."
|
1002 |
|
1003 |
-
#: includes/js-config.php:
|
1004 |
msgid "Discard Draft"
|
1005 |
msgstr "Zahodiť koncept"
|
1006 |
|
1007 |
-
#: includes/js-config.php:
|
1008 |
msgid ""
|
1009 |
"Do you really want to discard this draft? All of your changes that are not "
|
1010 |
"published will be lost."
|
@@ -1012,129 +1108,146 @@ msgstr ""
|
|
1012 |
"Naozaj chcete zahodiť vytvorený koncept? Stratíte všetky zmeny, ktoré nie sú "
|
1013 |
"publikované."
|
1014 |
|
1015 |
-
#: includes/js-config.php:
|
1016 |
msgid "Save Draft"
|
1017 |
msgstr "Uložiť koncept"
|
1018 |
|
1019 |
-
#: includes/js-config.php:
|
1020 |
msgctxt "Duplicate page/post action label."
|
1021 |
msgid "Duplicate"
|
1022 |
msgstr "Duplikovať"
|
1023 |
|
1024 |
-
#: includes/js-config.php:
|
1025 |
msgid "Duplicate This Page"
|
1026 |
msgstr "Duplikovať túto stránku"
|
1027 |
|
1028 |
-
#: includes/js-config.php:
|
1029 |
msgid "Duplicate This Template"
|
1030 |
msgstr "Duplikovať túto šablónu"
|
1031 |
|
1032 |
-
#: includes/js-config.php:
|
1033 |
msgid "Edit Global Settings"
|
1034 |
msgstr "Upraviť globálne nastavenia"
|
1035 |
|
1036 |
-
#: includes/js-config.php:
|
1037 |
msgid "Drop a row layout or module to get started!"
|
1038 |
msgstr "Začnite vložením riadku alebo modulu!"
|
1039 |
|
1040 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
msgid "Full Size"
|
1042 |
msgstr "Pôvodná veľkosť"
|
1043 |
|
1044 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
1045 |
msgid "Insert"
|
1046 |
msgstr "Vložiť"
|
1047 |
|
1048 |
-
#: includes/js-config.php:
|
1049 |
msgid "Large"
|
1050 |
msgstr "Veľké"
|
1051 |
|
1052 |
-
#: includes/js-config.php:
|
1053 |
msgid "Manage Templates"
|
1054 |
msgstr "Správa šablón"
|
1055 |
|
1056 |
-
#: includes/js-config.php:
|
1057 |
msgid "Medium"
|
1058 |
msgstr "Stredné"
|
1059 |
|
1060 |
-
#: includes/js-config.php:
|
1061 |
msgid "Module"
|
1062 |
msgstr "Modul"
|
1063 |
|
1064 |
-
#: includes/js-config.php:
|
1065 |
msgid "Move"
|
1066 |
msgstr "Presunúť"
|
1067 |
|
1068 |
-
#: includes/js-config.php:
|
1069 |
msgid "New Column"
|
1070 |
msgstr "Nový stĺpec"
|
1071 |
|
1072 |
-
#: includes/js-config.php:
|
1073 |
msgid "New Row"
|
1074 |
msgstr "Nový riadok"
|
1075 |
|
1076 |
-
#: includes/js-config.php:
|
1077 |
msgid "No results found."
|
1078 |
msgstr "Nenašli sa žiadne záznamy."
|
1079 |
|
1080 |
-
#: includes/js-config.php:
|
1081 |
msgid "OK"
|
1082 |
msgstr "OK"
|
1083 |
|
1084 |
-
#: includes/js-config.php:
|
1085 |
msgid "Photo Page"
|
1086 |
msgstr "Stránka obrázku"
|
1087 |
|
1088 |
-
#: includes/js-config.php:
|
1089 |
msgid "Photo Selected"
|
1090 |
msgstr "Obrázok bol zvolený"
|
1091 |
|
1092 |
-
#: includes/js-config.php:
|
1093 |
msgid "Photos Selected"
|
1094 |
msgstr "Obrázky boli zvolené"
|
1095 |
|
1096 |
-
#: includes/js-config.php:
|
1097 |
msgid "Publish Changes"
|
1098 |
msgstr "Publikovať zmeny"
|
1099 |
|
1100 |
-
#: includes/js-config.php:
|
1101 |
msgid "Row"
|
1102 |
msgstr "Riadok"
|
1103 |
|
1104 |
-
#: includes/js-config.php:
|
1105 |
msgid "Row Settings"
|
1106 |
msgstr "Nastavenia riadku"
|
1107 |
|
1108 |
-
#: includes/js-config.php:
|
1109 |
msgid "Save Core Template"
|
1110 |
msgstr "Uložiť základnú šablónu"
|
1111 |
|
1112 |
-
#: includes/js-config.php:
|
1113 |
#: includes/user-template-settings.php:4
|
1114 |
msgid "Save Template"
|
1115 |
msgstr "Uložiť šablónu"
|
1116 |
|
1117 |
-
#: includes/js-config.php:
|
1118 |
msgid "Select Photos"
|
1119 |
msgstr "Zvoliť obrázky"
|
1120 |
|
1121 |
-
#: includes/js-config.php:
|
1122 |
msgid "Append New Layout"
|
1123 |
msgstr "Pridať nové rozloženie"
|
1124 |
|
1125 |
-
#: includes/js-config.php:
|
1126 |
msgid "Replace Existing Layout"
|
1127 |
msgstr "Nahradiť existujúce rozloženie"
|
1128 |
|
1129 |
-
#: includes/js-config.php:
|
1130 |
msgid "Template Saved!"
|
1131 |
msgstr "Šablóna bola uložená!"
|
1132 |
|
1133 |
-
#: includes/js-config.php:
|
1134 |
msgid "Thumbnail"
|
1135 |
msgstr "Miniatúra"
|
1136 |
|
1137 |
-
#: includes/js-config.php:
|
1138 |
msgid ""
|
1139 |
"The settings you are currently editing will not be saved if you navigate "
|
1140 |
"away from this page."
|
@@ -1149,10 +1262,6 @@ msgstr "Typ článku"
|
|
1149 |
msgid "Order By"
|
1150 |
msgstr "Zoradit podľa"
|
1151 |
|
1152 |
-
#: includes/loop-settings.php:27
|
1153 |
-
msgid "ID"
|
1154 |
-
msgstr "ID"
|
1155 |
-
|
1156 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1157 |
#: modules/woocommerce/woocommerce.php:189
|
1158 |
msgid "Date"
|
@@ -1224,60 +1333,53 @@ msgstr ""
|
|
1224 |
"Zadajte čiarkou oddelený zoznam užívateľských mien autorov. Zobrazia sa iba "
|
1225 |
"články od týchto autorov."
|
1226 |
|
1227 |
-
#: includes/module-settings.php:
|
1228 |
-
msgid ""
|
1229 |
-
"A custom CSS class that will be applied to this module. Spaces only, no dots."
|
1230 |
-
msgstr ""
|
1231 |
-
"Vlastná trieda CSS aplikovaná na tento modul. Nepoužívajte bodky, iba "
|
1232 |
-
"medzery."
|
1233 |
-
|
1234 |
-
#: includes/module-settings.php:30
|
1235 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1236 |
msgstr ""
|
1237 |
"Vyberte, či chcete zobraziť alebo skryť tento modul na zariadeniach rôznych "
|
1238 |
"veľkostí."
|
1239 |
|
1240 |
-
#: includes/module-settings.php:
|
1241 |
msgid "Animation"
|
1242 |
msgstr "Animácia"
|
1243 |
|
1244 |
-
#: includes/module-settings.php:
|
1245 |
msgctxt "Animation style."
|
1246 |
msgid "None"
|
1247 |
msgstr "Žiadny"
|
1248 |
|
1249 |
-
#: includes/module-settings.php:
|
1250 |
msgctxt "Animation style."
|
1251 |
msgid "Fade In"
|
1252 |
msgstr "Pozvoľna zobraziť"
|
1253 |
|
1254 |
-
#: includes/module-settings.php:
|
1255 |
msgctxt "Animation style."
|
1256 |
msgid "Slide Left"
|
1257 |
msgstr "Vkĺznuť doľava"
|
1258 |
|
1259 |
-
#: includes/module-settings.php:
|
1260 |
msgctxt "Animation style."
|
1261 |
msgid "Slide Right"
|
1262 |
msgstr "Vkĺznuť doprava"
|
1263 |
|
1264 |
-
#: includes/module-settings.php:
|
1265 |
msgctxt "Animation style."
|
1266 |
msgid "Slide Up"
|
1267 |
msgstr "Vkĺznuť hore"
|
1268 |
|
1269 |
-
#: includes/module-settings.php:
|
1270 |
msgctxt "Animation style."
|
1271 |
msgid "Slide Down"
|
1272 |
msgstr "Vkĺznut dole"
|
1273 |
|
1274 |
-
#: includes/module-settings.php:
|
1275 |
#: modules/content-slider/content-slider.php:223
|
1276 |
#: modules/testimonials/testimonials.php:91
|
1277 |
msgid "Delay"
|
1278 |
msgstr "Oneskorenie"
|
1279 |
|
1280 |
-
#: includes/module-settings.php:
|
1281 |
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
|
1282 |
#: modules/content-slider/content-slider.php:244
|
1283 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
@@ -1288,21 +1390,30 @@ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
|
1288 |
msgid "seconds"
|
1289 |
msgstr "(v sekundách)"
|
1290 |
|
1291 |
-
#: includes/module-settings.php:
|
1292 |
msgid "The amount of time in seconds before this animation starts."
|
1293 |
msgstr "Čas v sekundách pred tým ako sa spustí animácia."
|
1294 |
|
1295 |
-
#: includes/
|
1296 |
msgid ""
|
1297 |
-
"
|
1298 |
-
"
|
1299 |
msgstr ""
|
1300 |
-
"
|
1301 |
-
"
|
1302 |
|
1303 |
-
#: includes/
|
1304 |
-
msgid "
|
1305 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1306 |
|
1307 |
#: includes/row-settings.php:16 modules/button/button.php:146
|
1308 |
#: modules/content-slider/content-slider.php:477
|
@@ -1662,17 +1773,28 @@ msgstr "Stredne"
|
|
1662 |
msgid "Slow"
|
1663 |
msgstr "Pomaly"
|
1664 |
|
1665 |
-
#: includes/row-settings.php:
|
1666 |
-
msgid "Add a custom CSS selector here to apply additional styling to this row."
|
1667 |
-
msgstr ""
|
1668 |
-
"Zadajte vlastný CSS selector pre aplikáciu dodatočných štýlov na tento "
|
1669 |
-
"riadok."
|
1670 |
-
|
1671 |
-
#: includes/row-settings.php:473
|
1672 |
msgid "Choose whether to show or hide this row at different device sizes."
|
1673 |
msgstr ""
|
1674 |
"Zvoľte, či sa má tento riadok zobraziť na zariadeniach rôznych veľkostí."
|
1675 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1676 |
#: includes/settings.php:62
|
1677 |
msgid "Save"
|
1678 |
msgstr "Uložiť"
|
@@ -2699,10 +2821,6 @@ msgstr "Skupina ikoniek"
|
|
2699 |
msgid "Display a group of linked Font Awesome icons."
|
2700 |
msgstr "Zobrazí zvolenú skupinu ikoniek Font Awesome."
|
2701 |
|
2702 |
-
#: modules/icon-group/icon-group.php:27
|
2703 |
-
msgid "Icons"
|
2704 |
-
msgstr "Ikonky"
|
2705 |
-
|
2706 |
#: modules/icon-group/icon-group.php:125
|
2707 |
msgid "Add Icon"
|
2708 |
msgstr "Pridať ikonku"
|
@@ -3536,6 +3654,33 @@ msgstr "Ceny: od najnižšej po najvyššiu"
|
|
3536 |
msgid "Price: High to Low"
|
3537 |
msgstr "Ceny: od najvyššej po najnižšiu"
|
3538 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3539 |
#~ msgid "Upgrade Today!"
|
3540 |
#~ msgstr "Aktualizovať!"
|
3541 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
+
"POT-Creation-Date: 2015-02-12 10:28-0800\n"
|
5 |
+
"PO-Revision-Date: 2015-02-12 21:02+0100\n"
|
6 |
"Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
|
7 |
"Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
|
8 |
"Language: sk_SK\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: classes/class-fl-builder-admin-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 "Nastavenia pre %s"
|
27 |
+
|
28 |
+
#: classes/class-fl-builder-admin-settings.php:107
|
29 |
+
msgid "Settings updated!"
|
30 |
+
msgstr "Nastavenia boli aktualizované!"
|
31 |
+
|
32 |
+
#: classes/class-fl-builder-admin-settings.php:118
|
33 |
+
msgid "License"
|
34 |
+
msgstr "Licencia"
|
35 |
+
|
36 |
+
#: classes/class-fl-builder-admin-settings.php:122
|
37 |
+
#: includes/admin-settings-upgrade.php:3
|
38 |
+
msgid "Upgrade"
|
39 |
+
msgstr "Aktualizácia"
|
40 |
+
|
41 |
+
#: classes/class-fl-builder-admin-settings.php:126
|
42 |
+
#: includes/global-settings.php:67
|
43 |
+
msgid "Modules"
|
44 |
+
msgstr "Moduly"
|
45 |
+
|
46 |
+
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:44
|
47 |
+
msgid "Templates"
|
48 |
+
msgstr "Šablóny"
|
49 |
+
|
50 |
+
#: classes/class-fl-builder-admin-settings.php:134
|
51 |
+
#: includes/admin-settings-post-types.php:3
|
52 |
+
msgid "Post Types"
|
53 |
+
msgstr "Typy obsahu"
|
54 |
+
|
55 |
+
#: classes/class-fl-builder-admin-settings.php:138
|
56 |
+
#: modules/icon-group/icon-group.php:27
|
57 |
+
msgid "Icons"
|
58 |
+
msgstr "Ikonky"
|
59 |
+
|
60 |
+
#: classes/class-fl-builder-admin-settings.php:142
|
61 |
+
msgid "Editing"
|
62 |
+
msgstr "Editácia"
|
63 |
+
|
64 |
+
#: classes/class-fl-builder-admin-settings.php:146
|
65 |
+
#: includes/admin-settings-branding.php:3
|
66 |
+
msgid "Branding"
|
67 |
+
msgstr "Značka"
|
68 |
+
|
69 |
+
#: classes/class-fl-builder-admin-settings.php:150
|
70 |
+
#: includes/admin-settings-uninstall.php:3
|
71 |
+
#: includes/admin-settings-uninstall.php:15
|
72 |
+
msgid "Uninstall"
|
73 |
+
msgstr "Odinštalovať"
|
74 |
+
|
75 |
+
#: classes/class-fl-builder-admin-settings.php:368
|
76 |
+
msgid "Error! You must have at least one icon set enabled."
|
77 |
+
msgstr "Chyba! Musíte povoliť aspon jednu sadu ikoniek."
|
78 |
+
|
79 |
+
#: classes/class-fl-builder-admin-settings.php:410
|
80 |
+
msgid "Error! Could not unzip file."
|
81 |
+
msgstr "Chyba! Nepodarilo sa rozbalit súbor."
|
82 |
+
|
83 |
+
#: classes/class-fl-builder-admin-settings.php:444
|
84 |
+
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
85 |
+
msgstr "Chyba! Prosíme, nahrajte sadu ikoniek z Icomoon alebo Fontello."
|
86 |
+
|
87 |
+
#: classes/class-fl-builder-admin.php:40
|
88 |
#, php-format
|
89 |
msgid ""
|
90 |
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
95 |
"sieťovou inštaláciou WordPress (Multisite). <a%s>Aktualizujte modul</a> na "
|
96 |
"jeho sieťovú verziu."
|
97 |
|
98 |
+
#: classes/class-fl-builder-admin.php:50
|
99 |
msgid ""
|
100 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
101 |
"greater. Please update WordPress before activating the plugin."
|
103 |
"Modul <strong>Editora stránok</strong> vyžaduje WordPress aspoň vo verzii "
|
104 |
"3.5. Aktualizujte WordPress pred aktiváciou modulu."
|
105 |
|
106 |
+
#: classes/class-fl-builder-admin.php:96
|
107 |
#, php-format
|
108 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
109 |
msgstr ""
|
110 |
"Editor stránok bol aktivovaný! <a%s>Zapnite automatické aktualizácie.</a>"
|
111 |
|
112 |
+
#: classes/class-fl-builder-admin.php:191
|
113 |
msgctxt "Plugin action link label."
|
114 |
msgid "Upgrade"
|
115 |
msgstr "Aktualizovať"
|
116 |
|
117 |
+
#: classes/class-fl-builder-admin.php:202
|
118 |
+
#: classes/class-fl-builder-model.php:2538
|
119 |
msgid "Page Builder"
|
120 |
msgstr "Editor stránok"
|
121 |
|
122 |
+
#: classes/class-fl-builder-model.php:1363
|
123 |
+
#, php-format
|
124 |
+
msgctxt "%s stands for the module filename"
|
125 |
+
msgid ""
|
126 |
+
"A module with the filename %s.php already exists! Please namespace your "
|
127 |
+
"module filenames to ensure compatibility with Beaver Builder."
|
128 |
+
msgstr ""
|
129 |
+
"Súbor %s.php modulu už existuje! Prosíme, použite predponu v názvoch súborov "
|
130 |
+
"vlastných modulov aby bola zachovaná kompatibilita s Beaver Builder modulom."
|
131 |
+
|
132 |
+
#: classes/class-fl-builder-model.php:1953
|
133 |
#, php-format
|
134 |
msgctxt "%s stands for post/page title."
|
135 |
msgid "Copy of %s"
|
159 |
msgid "Page Builder Templates"
|
160 |
msgstr "Šablóny Editora stránok"
|
161 |
|
162 |
+
#: classes/class-fl-builder.php:702
|
163 |
#, php-format
|
164 |
msgctxt "Field name to add."
|
165 |
msgid "Add %s"
|
166 |
msgstr "%s → pridať"
|
167 |
|
168 |
+
#: classes/class-fl-builder.php:765 classes/class-fl-builder.php:767
|
169 |
msgctxt "Custom post type label."
|
170 |
msgid "Layout Templates"
|
171 |
msgstr "Šablóny rozloženia"
|
172 |
|
173 |
+
#: classes/class-fl-builder.php:766 classes/class-fl-builder.php:768
|
174 |
msgctxt "Custom post type label."
|
175 |
msgid "Layout Template"
|
176 |
msgstr "Šablóna rozloženia"
|
177 |
|
178 |
+
#: classes/class-fl-builder.php:769
|
179 |
msgctxt "Custom post type label."
|
180 |
msgid "Add New"
|
181 |
msgstr "Pridať novú"
|
182 |
|
183 |
+
#: classes/class-fl-builder.php:770
|
184 |
msgctxt "Custom post type label."
|
185 |
msgid "Add New Layout Template"
|
186 |
msgstr "Pridať novú šablónu rozloženia"
|
187 |
|
188 |
+
#: classes/class-fl-builder.php:771
|
189 |
msgctxt "Custom post type label."
|
190 |
msgid "New Layout Template"
|
191 |
msgstr "Nová šablóna rozloženia"
|
192 |
|
193 |
+
#: classes/class-fl-builder.php:772
|
194 |
msgctxt "Custom post type label."
|
195 |
msgid "Edit Layout Template"
|
196 |
msgstr "Upraviť šablónu rozloženia"
|
197 |
|
198 |
+
#: classes/class-fl-builder.php:773
|
199 |
msgctxt "Custom post type label."
|
200 |
msgid "View Layout Template"
|
201 |
msgstr "Zobraziť šablónu rozloženia"
|
202 |
|
203 |
+
#: classes/class-fl-builder.php:774
|
204 |
msgctxt "Custom post type label."
|
205 |
msgid "All Layout Templates"
|
206 |
msgstr "Všetky šablóny rozloženia"
|
207 |
|
208 |
+
#: classes/class-fl-builder.php:775
|
209 |
msgctxt "Custom post type label."
|
210 |
msgid "Search Layout Templates"
|
211 |
msgstr "Hľadať šablóny rozloženia"
|
212 |
|
213 |
+
#: classes/class-fl-builder.php:776
|
214 |
msgctxt "Custom post type label."
|
215 |
msgid "Parent Layout Templates:"
|
216 |
msgstr "Nadradené šablóny rozloženia:"
|
217 |
|
218 |
+
#: classes/class-fl-builder.php:777
|
219 |
msgctxt "Custom post type label."
|
220 |
msgid "No layout templates found."
|
221 |
msgstr "Nenašli sa žiadne šablóny rozloženia."
|
222 |
|
223 |
+
#: classes/class-fl-builder.php:778
|
224 |
msgctxt "Custom post type label."
|
225 |
msgid "No layout templates found in Trash."
|
226 |
msgstr "V koši sa nenašli žiadne šablóny rozloženia."
|
227 |
|
228 |
+
#: classes/class-fl-builder.php:1143 includes/js-config.php:61
|
229 |
#, php-format
|
230 |
msgctxt "%s stands for module name."
|
231 |
msgid "%s Settings"
|
232 |
msgstr "%s → Nastavenia"
|
233 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
235 |
msgid "Text Editor"
|
236 |
msgstr "Textový editor"
|
247 |
msgid "Launch %s"
|
248 |
msgstr "Spustiť %s"
|
249 |
|
250 |
+
#: includes/admin-settings-branding.php:7
|
251 |
+
msgid "White label the page builder by entering a custom name below."
|
252 |
+
msgstr "Zmeňte značku editora stránok zadaním vlastného mena, názvu editora."
|
|
|
|
|
|
|
253 |
|
254 |
+
#: includes/admin-settings-branding.php:10
|
255 |
+
msgid ""
|
256 |
+
"Additionally, you may also add a custom icon by entering the URL of an image "
|
257 |
+
"below. Leave the field blank if you do not wish to use an icon."
|
258 |
+
msgstr ""
|
259 |
+
"Dodatočne môžete pridať aj vlastnú ikonku zadaním URL adresy obrázku. Ak "
|
260 |
+
"ikonku nechcete použiť, ponechajte pole prázdne."
|
261 |
|
262 |
+
#: includes/admin-settings-branding.php:14
|
263 |
+
msgid "Save Branding"
|
264 |
+
msgstr "Uložiť nastavenie značky"
|
265 |
|
266 |
+
#: includes/admin-settings-editing.php:3
|
267 |
+
msgid "Editing Settings"
|
268 |
+
msgstr "Nastavenia editácie"
|
269 |
|
270 |
+
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
271 |
+
#: includes/admin-settings-modules.php:10
|
272 |
+
#: includes/admin-settings-post-types.php:10
|
273 |
+
#: includes/admin-settings-templates.php:10
|
274 |
+
msgid "Override network settings?"
|
275 |
+
msgstr "Ignorovať sieťové nastavenia?"
|
276 |
|
277 |
+
#: includes/admin-settings-editing.php:16
|
278 |
+
#, php-format
|
279 |
+
msgid ""
|
280 |
+
"Set the <a%s>capability</a> required for users to access advanced builder "
|
281 |
+
"editing such as adding, deleting or moving modules."
|
282 |
+
msgstr ""
|
283 |
+
"Nastavte <a%s>oprávnenia</a> vyžadované k pokročilej editácii stránok, ako "
|
284 |
+
"je pridávanie, odstraňovanie alebo presun modulov."
|
285 |
|
286 |
+
#: includes/admin-settings-editing.php:22
|
287 |
+
msgid "Save Editing Settings"
|
288 |
+
msgstr "Uložiť nastavenia editácie"
|
|
|
289 |
|
290 |
+
#: includes/admin-settings-icons.php:3
|
291 |
+
msgid "Icon Settings"
|
292 |
+
msgstr "Nastavenia ikoniek"
|
293 |
|
294 |
+
#: includes/admin-settings-icons.php:13
|
295 |
+
msgid "Icons for the main site must be managed in the network admin."
|
296 |
+
msgstr "Ikonky pre hlavnú stránku musíte nastaviť v administrácii siete."
|
|
|
|
|
297 |
|
298 |
+
#: includes/admin-settings-icons.php:33
|
299 |
+
#, php-format
|
300 |
msgid ""
|
301 |
+
"Enable or disable icon sets using the options below or upload a custom icon "
|
302 |
+
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
|
|
303 |
msgstr ""
|
304 |
+
"Povoľte alebo zakážte sady ikoniek alebo nahrajte vlastnú sadu ikoniek zo "
|
305 |
+
"stránky <a%s>Icomoon</a> alebo <a%s>Fontello</a>."
|
|
|
306 |
|
307 |
+
#: includes/admin-settings-icons.php:48
|
308 |
+
msgctxt "Plugin setup page: Delete icon set."
|
309 |
+
msgid "Delete"
|
310 |
+
msgstr "Vymazať"
|
311 |
|
312 |
+
#: includes/admin-settings-icons.php:59
|
313 |
+
msgid "Upload Icon Set"
|
314 |
+
msgstr "Nahrať sadu ikoniek"
|
315 |
|
316 |
+
#: includes/admin-settings-icons.php:60
|
317 |
+
msgid "Save Icon Settings"
|
318 |
+
msgstr "Uložiť nastavenia ikoniek"
|
319 |
+
|
320 |
+
#: includes/admin-settings-js-config.php:4
|
321 |
+
msgid "Select File"
|
322 |
+
msgstr "Zvoliť súbor"
|
323 |
+
|
324 |
+
#: includes/admin-settings-js-config.php:5
|
325 |
+
msgid ""
|
326 |
+
"Please type \"uninstall\" in the box below to confirm that you really want "
|
327 |
+
"to uninstall the page builder and all of its data."
|
328 |
+
msgstr ""
|
329 |
+
"Zadajte \"uninstall\" pre potvrdenie odinštalovania editora stránok a "
|
330 |
+
"odstránenia všetkých jeho dát."
|
331 |
+
|
332 |
+
#: includes/admin-settings-modules.php:3
|
333 |
msgid "Enabled Modules"
|
334 |
msgstr "Aktivované moduly"
|
335 |
|
336 |
+
#: includes/admin-settings-modules.php:16
|
|
|
|
|
|
|
|
|
|
|
337 |
msgid "Check or uncheck modules below to enable or disable them."
|
338 |
msgstr ""
|
339 |
"Zaškrtnite alebo odškrtnite doleuvedené moduly pre ich aktiváciu alebo "
|
340 |
"deaktiváciu."
|
341 |
|
342 |
+
#: includes/admin-settings-modules.php:25
|
343 |
msgctxt "Plugin setup page: Modules."
|
344 |
msgid "All"
|
345 |
msgstr "Všetky"
|
346 |
|
347 |
+
#: includes/admin-settings-modules.php:43
|
348 |
msgid "Save Module Settings"
|
349 |
msgstr "Uložiť nastavenia modulov"
|
350 |
|
351 |
+
#: includes/admin-settings-post-types.php:18
|
352 |
+
msgid ""
|
353 |
+
"Enter a comma separated list of the post types you would like the builder to "
|
354 |
+
"work with."
|
355 |
+
msgstr ""
|
356 |
+
"Zadajte čiarkou oddelený zoznam typov článkou, s ktorými chcete editor "
|
357 |
+
"stránok používať."
|
358 |
+
|
359 |
+
#: includes/admin-settings-post-types.php:19
|
360 |
+
#: includes/admin-settings-post-types.php:39
|
361 |
+
msgid "NOTE: Not all custom post types may be supported."
|
362 |
+
msgstr "UPOZORNENIE: Nie všetky vlastné typy článkov môžu byť podporované."
|
363 |
+
|
364 |
+
#: includes/admin-settings-post-types.php:34
|
365 |
+
msgid "Example: page, post, product"
|
366 |
+
msgstr "Napríklad: page, post, product"
|
367 |
+
|
368 |
+
#: includes/admin-settings-post-types.php:38
|
369 |
+
msgid "Select the post types you would like the builder to work with."
|
370 |
+
msgstr ""
|
371 |
+
"Zvoľte typy obsahu (článkov), s ktorými chcete editor stránok používať."
|
372 |
+
|
373 |
+
#: includes/admin-settings-post-types.php:70
|
374 |
+
msgid "Save Post Types"
|
375 |
+
msgstr "Uložiť typy obsahu"
|
376 |
+
|
377 |
+
#: includes/admin-settings-templates.php:3 includes/template-settings.php:4
|
378 |
msgid "Template Settings"
|
379 |
msgstr "Nastavenia šablón"
|
380 |
|
381 |
+
#: includes/admin-settings-templates.php:16
|
382 |
msgid "Enable or disable templates using the options below."
|
383 |
msgstr "Aktivujte alebo deaktivujte šablóny pomocou doleuvedených možností."
|
384 |
|
385 |
+
#: includes/admin-settings-templates.php:23
|
386 |
msgid "Enable All Templates"
|
387 |
msgstr "Sprístupniť všetky šablóny"
|
388 |
|
389 |
+
#: includes/admin-settings-templates.php:24
|
390 |
msgid "Enable Core Templates Only"
|
391 |
msgstr "Sprístupniť iba základné šablóny"
|
392 |
|
393 |
+
#: includes/admin-settings-templates.php:25
|
394 |
msgid "Enable User Templates Only"
|
395 |
msgstr "Sprístupniť iba užívateľské šablóny"
|
396 |
|
397 |
+
#: includes/admin-settings-templates.php:26
|
398 |
msgid "Disable All Templates"
|
399 |
msgstr "Zakázať všetky šablóny"
|
400 |
|
401 |
+
#: includes/admin-settings-templates.php:30
|
402 |
msgid "Save Template Settings"
|
403 |
msgstr "Uložiť nastavenia šablón"
|
404 |
|
405 |
+
#: includes/admin-settings-uninstall.php:5
|
406 |
+
msgid ""
|
407 |
+
"Clicking the button below will uninstall the page builder plugin and delete "
|
408 |
+
"all of the data associated with it. You can uninstall or deactivate the page "
|
409 |
+
"builder from the plugins page instead if you do not wish to delete the data."
|
410 |
msgstr ""
|
411 |
+
"Kliknutím na tlačidlo odinštalujete modul editora stránok a odstránite "
|
412 |
+
"všetky dáta s ním asociované. Editor stránok môžete odinštalovať alebo "
|
413 |
+
"deaktivovať aj v sekcii modulov, ak si neprajete odstrániť dáta."
|
414 |
|
415 |
+
#: includes/admin-settings-uninstall.php:7
|
416 |
+
#: includes/admin-settings-uninstall.php:10
|
417 |
+
#: includes/updater/includes/form.php:31
|
418 |
+
msgid "NOTE:"
|
419 |
+
msgstr "UPOZORNENIE:"
|
420 |
|
421 |
+
#: includes/admin-settings-uninstall.php:7
|
422 |
+
msgid ""
|
423 |
+
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
424 |
+
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
425 |
+
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
426 |
+
"its data using those meta values."
|
427 |
+
msgstr ""
|
428 |
+
"Nebudú odstránené <code>_fl_builder_data</code>, <code>_fl_builder_draft</"
|
429 |
+
"code> a <code>_fl_builder_enabled</code> meta dáta článov pre prípad, že sa "
|
430 |
+
"rozhodnete znovu Editor stránok nainštalovať. V takom prípade sa dáta "
|
431 |
+
"použijú na obnovenie rozloženia stránok."
|
432 |
|
433 |
+
#: includes/admin-settings-uninstall.php:10
|
434 |
+
#: includes/updater/includes/form.php:31
|
435 |
+
msgid "This applies to all sites on the network."
|
436 |
+
msgstr "Toto nastavenie sa aplikuje na všetky stránky v sieti."
|
437 |
|
438 |
+
#: includes/admin-settings-upgrade.php:5
|
|
|
439 |
msgid ""
|
440 |
+
"You are currently running the lite version of the Beaver Builder plugin. "
|
441 |
+
"Upgrade today for access to premium features such as advanced modules, "
|
442 |
+
"templates, support and more!"
|
443 |
msgstr ""
|
444 |
+
"Používate odľahčenú (Lite) verziu modulu Beaver Builder. Aktualizujte na Pro "
|
445 |
+
"verziu pre získanie pokročilých modulov, šablón, technickej podpory a iných "
|
446 |
+
"prémiových vylepšení!"
|
447 |
|
448 |
+
#: includes/admin-settings-upgrade.php:7
|
449 |
+
msgid "Upgrade Now"
|
450 |
+
msgstr "Aktualizovať"
|
451 |
+
|
452 |
+
#: includes/admin-settings-upgrade.php:9
|
453 |
+
msgid "Learn More"
|
454 |
+
msgstr "Dozvedieť sa viac"
|
455 |
+
|
456 |
+
#: includes/admin-templates-edit.php:3
|
457 |
+
msgid "Edit Template"
|
458 |
+
msgstr "Upraviť šablónu"
|
459 |
+
|
460 |
+
#: includes/admin-templates-edit.php:8
|
461 |
+
msgctxt "Template edit form field label. Template name."
|
462 |
+
msgid "Name"
|
463 |
+
msgstr "Názov"
|
464 |
+
|
465 |
+
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:303
|
466 |
+
#: modules/post-grid/post-grid.php:113
|
467 |
+
msgid "Image"
|
468 |
+
msgstr "Obrázok"
|
469 |
+
|
470 |
+
#: includes/admin-templates-edit.php:16 includes/row-settings.php:155
|
471 |
+
#: includes/template-settings.php:23 modules/callout/callout.php:351
|
472 |
+
#: modules/callout/callout.php:371
|
473 |
+
#: modules/content-slider/content-slider.php:466
|
474 |
+
#: modules/post-grid/post-grid.php:127
|
475 |
+
msgid "Position"
|
476 |
+
msgstr "Pozícia"
|
477 |
+
|
478 |
+
#: includes/admin-templates-edit.php:20 includes/template-settings.php:28
|
479 |
+
msgctxt "Template edit form field label. Is template premium one?"
|
480 |
+
msgid "Premium"
|
481 |
+
msgstr "Prémiová"
|
482 |
+
|
483 |
+
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
484 |
+
#: includes/global-settings.php:18 includes/global-settings.php:87
|
485 |
+
#: includes/row-settings.php:307 includes/template-settings.php:31
|
486 |
+
#: modules/accordion/accordion.php:90 modules/button/button.php:135
|
487 |
+
#: modules/callout/callout.php:418 modules/callout/callout.php:539
|
488 |
+
#: modules/content-slider/content-slider.php:203
|
489 |
+
#: modules/content-slider/content-slider.php:217
|
490 |
+
#: modules/content-slider/content-slider.php:251
|
491 |
+
#: modules/content-slider/content-slider.php:260
|
492 |
+
#: modules/content-slider/content-slider.php:531
|
493 |
+
#: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
|
494 |
+
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
495 |
+
#: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
|
496 |
+
#: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
|
497 |
+
#: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
|
498 |
+
#: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
|
499 |
+
#: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
|
500 |
+
#: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
|
501 |
+
#: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
|
502 |
+
#: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
|
503 |
+
#: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
|
504 |
+
#: modules/social-buttons/social-buttons.php:111
|
505 |
+
#: modules/social-buttons/social-buttons.php:120
|
506 |
+
#: modules/social-buttons/social-buttons.php:129
|
507 |
+
#: modules/testimonials/testimonials.php:85
|
508 |
+
#: modules/testimonials/testimonials.php:124
|
509 |
+
#: modules/testimonials/testimonials.php:154 modules/video/video.php:111
|
510 |
+
#: modules/video/video.php:123
|
511 |
+
msgid "No"
|
512 |
+
msgstr "Nie"
|
513 |
|
514 |
+
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
515 |
+
#: includes/global-settings.php:19 includes/global-settings.php:88
|
516 |
+
#: includes/row-settings.php:308 includes/template-settings.php:32
|
517 |
+
#: modules/accordion/accordion.php:89 modules/button/button.php:136
|
518 |
+
#: modules/callout/callout.php:419 modules/callout/callout.php:540
|
519 |
+
#: modules/content-slider/content-slider.php:204
|
520 |
+
#: modules/content-slider/content-slider.php:218
|
521 |
+
#: modules/content-slider/content-slider.php:252
|
522 |
+
#: modules/content-slider/content-slider.php:261
|
523 |
+
#: modules/content-slider/content-slider.php:532
|
524 |
+
#: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
|
525 |
+
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
526 |
+
#: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
|
527 |
+
#: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
|
528 |
+
#: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
|
529 |
+
#: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
|
530 |
+
#: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
|
531 |
+
#: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
|
532 |
+
#: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
|
533 |
+
#: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
|
534 |
+
#: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
|
535 |
+
#: modules/social-buttons/social-buttons.php:110
|
536 |
+
#: modules/social-buttons/social-buttons.php:119
|
537 |
+
#: modules/social-buttons/social-buttons.php:128
|
538 |
+
#: modules/testimonials/testimonials.php:86
|
539 |
+
#: modules/testimonials/testimonials.php:125
|
540 |
+
#: modules/testimonials/testimonials.php:155 modules/video/video.php:112
|
541 |
+
#: modules/video/video.php:124
|
542 |
+
msgid "Yes"
|
543 |
+
msgstr "Áno"
|
544 |
|
545 |
+
#: includes/admin-templates-edit.php:29 includes/template-settings.php:37
|
546 |
+
msgid "Category"
|
547 |
+
msgstr "Kategória"
|
|
|
|
|
548 |
|
549 |
+
#: includes/admin-templates-edit.php:32 includes/template-settings.php:40
|
550 |
+
msgctxt "Templates category label."
|
551 |
+
msgid "Landing Pages"
|
552 |
+
msgstr "Vstupné stránky"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
|
554 |
+
#: includes/admin-templates-edit.php:33 includes/template-settings.php:41
|
555 |
+
msgctxt "Templates category label."
|
556 |
+
msgid "Company Info"
|
557 |
+
msgstr "Informačné"
|
558 |
|
559 |
+
#: includes/admin-templates-edit.php:40
|
560 |
+
msgid "Update Template"
|
561 |
+
msgstr "Aktualizovať šablónu"
|
|
|
|
|
|
|
|
|
562 |
|
563 |
#: includes/admin-templates.php:3
|
564 |
msgid "Page Builder Template"
|
588 |
msgid "Delete"
|
589 |
msgstr "Odstrániť"
|
590 |
|
591 |
+
#: includes/admin-templates.php:40 includes/js-config.php:27
|
592 |
msgid "Do you really want to delete this template?"
|
593 |
msgstr "Naozaj chcete túto šablónu vymazať?"
|
594 |
|
595 |
+
#: includes/column-settings.php:4 includes/js-config.php:22
|
596 |
msgid "Column Settings"
|
597 |
msgstr "Nastavenia stĺpca"
|
598 |
|
599 |
+
#: includes/column-settings.php:7 includes/module-settings.php:87
|
600 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
601 |
#: modules/button/button.php:95 modules/callout/callout.php:239
|
602 |
#: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
|
718 |
msgid "Advanced"
|
719 |
msgstr "Pokročilé"
|
720 |
|
721 |
+
#: includes/column-settings.php:173 includes/global-settings.php:41
|
722 |
+
#: includes/global-settings.php:71 includes/module-settings.php:9
|
723 |
+
#: includes/row-settings.php:452
|
724 |
+
msgid "Margins"
|
725 |
+
msgstr "Odsadenie"
|
726 |
|
727 |
+
#: includes/column-settings.php:177 includes/column-settings.php:230
|
728 |
+
#: includes/module-settings.php:13 includes/row-settings.php:456
|
729 |
+
#: includes/row-settings.php:509 modules/slideshow/slideshow.php:475
|
730 |
+
msgid "Top"
|
731 |
+
msgstr "Hore"
|
732 |
+
|
733 |
+
#: includes/column-settings.php:189 includes/column-settings.php:242
|
734 |
+
#: includes/module-settings.php:25 includes/row-settings.php:468
|
735 |
+
#: includes/row-settings.php:521 modules/slideshow/slideshow.php:474
|
736 |
+
msgid "Bottom"
|
737 |
+
msgstr "Dole"
|
738 |
+
|
739 |
+
#: includes/column-settings.php:201 includes/column-settings.php:254
|
740 |
+
#: includes/module-settings.php:37 includes/row-settings.php:480
|
741 |
+
#: includes/row-settings.php:533 modules/button/button.php:177
|
742 |
+
#: modules/callout/callout.php:250
|
743 |
+
#: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
|
744 |
+
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
745 |
+
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
746 |
+
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
747 |
+
msgid "Left"
|
748 |
+
msgstr "Vľavo"
|
749 |
+
|
750 |
+
#: includes/column-settings.php:213 includes/column-settings.php:266
|
751 |
+
#: includes/module-settings.php:49 includes/row-settings.php:492
|
752 |
+
#: includes/row-settings.php:545 modules/button/button.php:178
|
753 |
+
#: modules/callout/callout.php:251
|
754 |
+
#: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
|
755 |
+
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
756 |
+
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
757 |
+
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
758 |
+
msgid "Right"
|
759 |
+
msgstr "Vpravo"
|
760 |
+
|
761 |
+
#: includes/column-settings.php:226 includes/global-settings.php:49
|
762 |
+
#: includes/row-settings.php:505 modules/button/button.php:191
|
763 |
+
#: modules/callout/callout.php:567
|
764 |
+
#: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
|
765 |
+
msgid "Padding"
|
766 |
+
msgstr "Vnútorné odsadenie"
|
767 |
|
768 |
+
#: includes/column-settings.php:279 includes/global-settings.php:80
|
769 |
+
#: includes/module-settings.php:62 includes/row-settings.php:558
|
770 |
msgid "Responsive Layout"
|
771 |
msgstr "Responzívne rozloženie"
|
772 |
|
773 |
+
#: includes/column-settings.php:283 includes/module-settings.php:66
|
774 |
+
#: includes/row-settings.php:562 modules/slideshow/slideshow.php:290
|
775 |
msgid "Display"
|
776 |
msgstr "Zobrazenie"
|
777 |
|
778 |
+
#: includes/column-settings.php:285 includes/module-settings.php:68
|
779 |
+
#: includes/row-settings.php:564
|
780 |
msgid "Always"
|
781 |
msgstr "Vždy"
|
782 |
|
783 |
+
#: includes/column-settings.php:286 includes/module-settings.php:69
|
784 |
+
#: includes/row-settings.php:565
|
785 |
msgid "Large Devices Only"
|
786 |
msgstr "Iba na veľkých zariadeniach"
|
787 |
|
788 |
+
#: includes/column-settings.php:287 includes/module-settings.php:70
|
789 |
+
#: includes/row-settings.php:566
|
790 |
msgid "Large & Medium Devices Only"
|
791 |
msgstr "Iba na veľkých a stredných zariadeniach"
|
792 |
|
793 |
+
#: includes/column-settings.php:288 includes/module-settings.php:71
|
794 |
+
#: includes/row-settings.php:567
|
795 |
msgid "Medium Devices Only"
|
796 |
msgstr "Iba na stredných zariadeniach"
|
797 |
|
798 |
+
#: includes/column-settings.php:289 includes/module-settings.php:72
|
799 |
+
#: includes/row-settings.php:568
|
800 |
msgid "Medium & Small Devices Only"
|
801 |
msgstr "Iba na stredných a malých zariadeniach"
|
802 |
|
803 |
+
#: includes/column-settings.php:290 includes/module-settings.php:73
|
804 |
+
#: includes/row-settings.php:569
|
805 |
msgid "Small Devices Only"
|
806 |
msgstr "Iba na malých zariadeniach"
|
807 |
|
808 |
+
#: includes/column-settings.php:292
|
809 |
msgid "Choose whether to show or hide this column at different device sizes."
|
810 |
msgstr ""
|
811 |
"Zvoľte, či sa má tento stĺpec zobraziť na zariadeniach rôznych veľkostí."
|
812 |
|
813 |
+
#: includes/column-settings.php:299
|
814 |
msgid "Medium Device Width"
|
815 |
msgstr "Šírka pre stredne veľké zariadenia"
|
816 |
|
817 |
+
#: includes/column-settings.php:300
|
818 |
msgid "The width of this column on medium devices such as tablets."
|
819 |
msgstr "Šírka tohto stĺpca na stredne veľkých zariadeniach, ako sú tablety."
|
820 |
|
821 |
+
#: includes/column-settings.php:302 includes/column-settings.php:330
|
822 |
#: modules/callout/callout.php:281
|
823 |
#: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
|
824 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
826 |
msgid "Default"
|
827 |
msgstr "Prednastavené"
|
828 |
|
829 |
+
#: includes/column-settings.php:303 includes/column-settings.php:331
|
830 |
#: modules/button/button.php:151 modules/callout/callout.php:282
|
831 |
#: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
|
832 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
835 |
msgid "Custom"
|
836 |
msgstr "Vlastné"
|
837 |
|
838 |
+
#: includes/column-settings.php:316
|
839 |
msgid "Custom Medium Device Width"
|
840 |
msgstr "Vlastná šírka na stredne veľkých zariadeniach"
|
841 |
|
842 |
+
#: includes/column-settings.php:327
|
843 |
msgid "Small Device Width"
|
844 |
msgstr "Šírka pre malé zariadenia"
|
845 |
|
846 |
+
#: includes/column-settings.php:328
|
847 |
msgid "The width of this column on small devices such as phones."
|
848 |
msgstr "Šírka tohto stĺpca na malých zariadeniach, ako sú telefóny."
|
849 |
|
850 |
+
#: includes/column-settings.php:344
|
851 |
msgid "Custom Small Device Width"
|
852 |
msgstr "Vlastná šírka na malých zariadeniach"
|
853 |
|
854 |
+
#: includes/column-settings.php:356 includes/module-settings.php:115
|
855 |
+
#: includes/row-settings.php:579
|
856 |
+
msgid "CSS Selectors"
|
857 |
+
msgstr "CSS selektor"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
858 |
|
859 |
+
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
860 |
+
#: includes/module-settings.php:119 includes/row-settings.php:583
|
861 |
+
msgid "ID"
|
862 |
+
msgstr "ID"
|
|
|
863 |
|
864 |
+
#: includes/column-settings.php:361
|
865 |
+
msgid ""
|
866 |
+
"A unique ID that will be applied to this column's HTML. Must start with a "
|
867 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
868 |
+
msgstr ""
|
869 |
+
"Unikátne ID aplikované na HTML tohto stĺpca. Musí začínať písmenom a "
|
870 |
+
"obsahovať iba pomlčky, podtržníky, písmená a čísla. Medzery nie sú povolené."
|
|
|
|
|
|
|
871 |
|
872 |
+
#: includes/column-settings.php:368
|
873 |
+
msgid "CSS Class"
|
874 |
+
msgstr "Trieda CSS"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
875 |
|
876 |
+
#: includes/column-settings.php:369
|
877 |
+
msgid ""
|
878 |
+
"A class that will be applied to this column's HTML. Must start with a letter "
|
879 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
880 |
+
"classes with spaces."
|
881 |
+
msgstr ""
|
882 |
+
"Trieda aplikovaná na HTML tohto stĺpca. Musí začínať písmenom a obsahovať "
|
883 |
+
"iba pomlčky, podtržníky, písmená a čísla. Viaceré triedy oddeľte medzerami."
|
884 |
|
885 |
+
#: includes/field-form.php:28
|
886 |
#, php-format
|
887 |
msgctxt "%s stands for form field label."
|
888 |
msgid "Edit %s"
|
896 |
msgid "Replace"
|
897 |
msgstr "Nahradiť"
|
898 |
|
899 |
+
#: includes/field-icon.php:7 includes/js-config.php:53
|
900 |
msgid "Remove"
|
901 |
msgstr "Odstrániť"
|
902 |
|
912 |
msgid "Start typing..."
|
913 |
msgstr "Začnite písať..."
|
914 |
|
915 |
+
#: includes/field-link.php:7 includes/icon-selector.php:28
|
916 |
+
#: includes/js-config.php:18 includes/settings.php:63
|
917 |
#: includes/template-selector.php:102 includes/ui.php:11
|
918 |
msgid "Cancel"
|
919 |
msgstr "Zrušiť"
|
938 |
msgid "Add Photos"
|
939 |
msgstr "Pridať obrázky"
|
940 |
|
941 |
+
#: includes/field-photo.php:3 includes/js-config.php:58
|
942 |
msgid "Select Photo"
|
943 |
msgstr "Zvoliť obrázok"
|
944 |
|
945 |
+
#: includes/field-video.php:3 includes/js-config.php:60
|
946 |
msgid "Select Video"
|
947 |
msgstr "Zvoliť video"
|
948 |
|
1048 |
"Šírka internetového prehliadača, v ktorej sa rozloženie nastaví do režimu "
|
1049 |
"pre malých zariadení, ako sú telefóny."
|
1050 |
|
1051 |
+
#: includes/icon-selector.php:5
|
1052 |
+
msgctxt "Select option for showing all icon libraries."
|
1053 |
+
msgid "All Libraries"
|
1054 |
+
msgstr "Všetky knižnice"
|
1055 |
|
1056 |
+
#: includes/js-config.php:17
|
1057 |
msgid "What would you like to do?"
|
1058 |
msgstr "Čo si prajete urobiť?"
|
1059 |
|
1060 |
+
#: includes/js-config.php:19
|
1061 |
msgid "Change Template"
|
1062 |
msgstr "Zmeniť šablónu"
|
1063 |
|
1064 |
+
#: includes/js-config.php:20
|
1065 |
msgid ""
|
1066 |
"Warning! Changing the template will replace your existing layout. Do you "
|
1067 |
"really want to do this?"
|
1069 |
"Pozor! Zmenou šablóny nahradíte existujúce rozloženie. Naozaj to chcete "
|
1070 |
"urobiť?"
|
1071 |
|
1072 |
+
#: includes/js-config.php:21
|
1073 |
msgid "Column"
|
1074 |
msgstr "Stĺpec"
|
1075 |
|
1076 |
+
#: includes/js-config.php:23
|
1077 |
msgid ""
|
1078 |
"Please select either a background layout or content layout before submitting."
|
1079 |
msgstr "Najskôr zvoľte rozloženie pozadia alebo obsahu."
|
1080 |
|
1081 |
+
#: includes/js-config.php:24
|
1082 |
msgid "Do you really want to delete this item?"
|
1083 |
msgstr "Naozaj chcete túto položku odstrániť?"
|
1084 |
|
1085 |
+
#: includes/js-config.php:25
|
1086 |
msgid ""
|
1087 |
"Do you really want to delete this module? All content data will be "
|
1088 |
"permanently deleted."
|
1089 |
msgstr ""
|
1090 |
"Naozaj chcete tento modul odstrániť? Všetky dáta jeho obsahu budu vymazané."
|
1091 |
|
1092 |
+
#: includes/js-config.php:26
|
1093 |
msgid ""
|
1094 |
"Do you really want to delete this row? All content data will be permanently "
|
1095 |
"deleted."
|
1096 |
msgstr ""
|
1097 |
"Naozaj chcete odstrániť tento riadok? Všetok obsah riadku bude vymazaný."
|
1098 |
|
1099 |
+
#: includes/js-config.php:28
|
1100 |
msgid "Discard Draft"
|
1101 |
msgstr "Zahodiť koncept"
|
1102 |
|
1103 |
+
#: includes/js-config.php:29
|
1104 |
msgid ""
|
1105 |
"Do you really want to discard this draft? All of your changes that are not "
|
1106 |
"published will be lost."
|
1108 |
"Naozaj chcete zahodiť vytvorený koncept? Stratíte všetky zmeny, ktoré nie sú "
|
1109 |
"publikované."
|
1110 |
|
1111 |
+
#: includes/js-config.php:30
|
1112 |
msgid "Save Draft"
|
1113 |
msgstr "Uložiť koncept"
|
1114 |
|
1115 |
+
#: includes/js-config.php:31
|
1116 |
msgctxt "Duplicate page/post action label."
|
1117 |
msgid "Duplicate"
|
1118 |
msgstr "Duplikovať"
|
1119 |
|
1120 |
+
#: includes/js-config.php:32
|
1121 |
msgid "Duplicate This Page"
|
1122 |
msgstr "Duplikovať túto stránku"
|
1123 |
|
1124 |
+
#: includes/js-config.php:33
|
1125 |
msgid "Duplicate This Template"
|
1126 |
msgstr "Duplikovať túto šablónu"
|
1127 |
|
1128 |
+
#: includes/js-config.php:34
|
1129 |
msgid "Edit Global Settings"
|
1130 |
msgstr "Upraviť globálne nastavenia"
|
1131 |
|
1132 |
+
#: includes/js-config.php:35
|
1133 |
msgid "Drop a row layout or module to get started!"
|
1134 |
msgstr "Začnite vložením riadku alebo modulu!"
|
1135 |
|
1136 |
+
#: includes/js-config.php:36
|
1137 |
+
msgid ""
|
1138 |
+
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1139 |
+
"not functioning as expected the cause is most likely this error. Please help "
|
1140 |
+
"us by disabling all plugins and testing Beaver Builder while reactivating "
|
1141 |
+
"each to determine if the issue is related to a third party plugin."
|
1142 |
+
msgstr ""
|
1143 |
+
"Beaver Builder zaznamenal nasledovnú JavaScript chybu. Ak Beaver Builder "
|
1144 |
+
"nefunguje správne, dôvodom je pravdepodobne táto chyba. Pomôžte nám "
|
1145 |
+
"deaktiváciou ostatných modulov a otestovaním Beaver Builder modulu počas "
|
1146 |
+
"opätovnej, postupnej aktivácie ostatných modulov pre zistenie, či je problém "
|
1147 |
+
"spôsobený jedným z týchto modulov."
|
1148 |
+
|
1149 |
+
#: includes/js-config.php:37
|
1150 |
msgid "Full Size"
|
1151 |
msgstr "Pôvodná veľkosť"
|
1152 |
|
1153 |
+
#: includes/js-config.php:38
|
1154 |
+
msgid "\"{message}\" on line {line} of {file}."
|
1155 |
+
msgstr "\"{message}\" na riadku {line} súboru {file}."
|
1156 |
+
|
1157 |
+
#: includes/js-config.php:39
|
1158 |
msgid "Insert"
|
1159 |
msgstr "Vložiť"
|
1160 |
|
1161 |
+
#: includes/js-config.php:40
|
1162 |
msgid "Large"
|
1163 |
msgstr "Veľké"
|
1164 |
|
1165 |
+
#: includes/js-config.php:41
|
1166 |
msgid "Manage Templates"
|
1167 |
msgstr "Správa šablón"
|
1168 |
|
1169 |
+
#: includes/js-config.php:42
|
1170 |
msgid "Medium"
|
1171 |
msgstr "Stredné"
|
1172 |
|
1173 |
+
#: includes/js-config.php:43
|
1174 |
msgid "Module"
|
1175 |
msgstr "Modul"
|
1176 |
|
1177 |
+
#: includes/js-config.php:44
|
1178 |
msgid "Move"
|
1179 |
msgstr "Presunúť"
|
1180 |
|
1181 |
+
#: includes/js-config.php:45
|
1182 |
msgid "New Column"
|
1183 |
msgstr "Nový stĺpec"
|
1184 |
|
1185 |
+
#: includes/js-config.php:46
|
1186 |
msgid "New Row"
|
1187 |
msgstr "Nový riadok"
|
1188 |
|
1189 |
+
#: includes/js-config.php:47
|
1190 |
msgid "No results found."
|
1191 |
msgstr "Nenašli sa žiadne záznamy."
|
1192 |
|
1193 |
+
#: includes/js-config.php:48
|
1194 |
msgid "OK"
|
1195 |
msgstr "OK"
|
1196 |
|
1197 |
+
#: includes/js-config.php:49 modules/photo/photo.php:454
|
1198 |
msgid "Photo Page"
|
1199 |
msgstr "Stránka obrázku"
|
1200 |
|
1201 |
+
#: includes/js-config.php:50
|
1202 |
msgid "Photo Selected"
|
1203 |
msgstr "Obrázok bol zvolený"
|
1204 |
|
1205 |
+
#: includes/js-config.php:51
|
1206 |
msgid "Photos Selected"
|
1207 |
msgstr "Obrázky boli zvolené"
|
1208 |
|
1209 |
+
#: includes/js-config.php:52
|
1210 |
msgid "Publish Changes"
|
1211 |
msgstr "Publikovať zmeny"
|
1212 |
|
1213 |
+
#: includes/js-config.php:54
|
1214 |
msgid "Row"
|
1215 |
msgstr "Riadok"
|
1216 |
|
1217 |
+
#: includes/js-config.php:55 includes/row-settings.php:6
|
1218 |
msgid "Row Settings"
|
1219 |
msgstr "Nastavenia riadku"
|
1220 |
|
1221 |
+
#: includes/js-config.php:56
|
1222 |
msgid "Save Core Template"
|
1223 |
msgstr "Uložiť základnú šablónu"
|
1224 |
|
1225 |
+
#: includes/js-config.php:57 includes/ui.php:10
|
1226 |
#: includes/user-template-settings.php:4
|
1227 |
msgid "Save Template"
|
1228 |
msgstr "Uložiť šablónu"
|
1229 |
|
1230 |
+
#: includes/js-config.php:59
|
1231 |
msgid "Select Photos"
|
1232 |
msgstr "Zvoliť obrázky"
|
1233 |
|
1234 |
+
#: includes/js-config.php:62
|
1235 |
msgid "Append New Layout"
|
1236 |
msgstr "Pridať nové rozloženie"
|
1237 |
|
1238 |
+
#: includes/js-config.php:63
|
1239 |
msgid "Replace Existing Layout"
|
1240 |
msgstr "Nahradiť existujúce rozloženie"
|
1241 |
|
1242 |
+
#: includes/js-config.php:64
|
1243 |
msgid "Template Saved!"
|
1244 |
msgstr "Šablóna bola uložená!"
|
1245 |
|
1246 |
+
#: includes/js-config.php:65
|
1247 |
msgid "Thumbnail"
|
1248 |
msgstr "Miniatúra"
|
1249 |
|
1250 |
+
#: includes/js-config.php:66
|
1251 |
msgid ""
|
1252 |
"The settings you are currently editing will not be saved if you navigate "
|
1253 |
"away from this page."
|
1262 |
msgid "Order By"
|
1263 |
msgstr "Zoradit podľa"
|
1264 |
|
|
|
|
|
|
|
|
|
1265 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1266 |
#: modules/woocommerce/woocommerce.php:189
|
1267 |
msgid "Date"
|
1333 |
"Zadajte čiarkou oddelený zoznam užívateľských mien autorov. Zobrazia sa iba "
|
1334 |
"články od týchto autorov."
|
1335 |
|
1336 |
+
#: includes/module-settings.php:75
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1337 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1338 |
msgstr ""
|
1339 |
"Vyberte, či chcete zobraziť alebo skryť tento modul na zariadeniach rôznych "
|
1340 |
"veľkostí."
|
1341 |
|
1342 |
+
#: includes/module-settings.php:83
|
1343 |
msgid "Animation"
|
1344 |
msgstr "Animácia"
|
1345 |
|
1346 |
+
#: includes/module-settings.php:89
|
1347 |
msgctxt "Animation style."
|
1348 |
msgid "None"
|
1349 |
msgstr "Žiadny"
|
1350 |
|
1351 |
+
#: includes/module-settings.php:90
|
1352 |
msgctxt "Animation style."
|
1353 |
msgid "Fade In"
|
1354 |
msgstr "Pozvoľna zobraziť"
|
1355 |
|
1356 |
+
#: includes/module-settings.php:91
|
1357 |
msgctxt "Animation style."
|
1358 |
msgid "Slide Left"
|
1359 |
msgstr "Vkĺznuť doľava"
|
1360 |
|
1361 |
+
#: includes/module-settings.php:92
|
1362 |
msgctxt "Animation style."
|
1363 |
msgid "Slide Right"
|
1364 |
msgstr "Vkĺznuť doprava"
|
1365 |
|
1366 |
+
#: includes/module-settings.php:93
|
1367 |
msgctxt "Animation style."
|
1368 |
msgid "Slide Up"
|
1369 |
msgstr "Vkĺznuť hore"
|
1370 |
|
1371 |
+
#: includes/module-settings.php:94
|
1372 |
msgctxt "Animation style."
|
1373 |
msgid "Slide Down"
|
1374 |
msgstr "Vkĺznut dole"
|
1375 |
|
1376 |
+
#: includes/module-settings.php:102
|
1377 |
#: modules/content-slider/content-slider.php:223
|
1378 |
#: modules/testimonials/testimonials.php:91
|
1379 |
msgid "Delay"
|
1380 |
msgstr "Oneskorenie"
|
1381 |
|
1382 |
+
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1383 |
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
|
1384 |
#: modules/content-slider/content-slider.php:244
|
1385 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1390 |
msgid "seconds"
|
1391 |
msgstr "(v sekundách)"
|
1392 |
|
1393 |
+
#: includes/module-settings.php:107
|
1394 |
msgid "The amount of time in seconds before this animation starts."
|
1395 |
msgstr "Čas v sekundách pred tým ako sa spustí animácia."
|
1396 |
|
1397 |
+
#: includes/module-settings.php:120
|
1398 |
msgid ""
|
1399 |
+
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1400 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1401 |
msgstr ""
|
1402 |
+
"Unikátne ID aplikované na HTML tohto modulu. Musí začínať písmenom a "
|
1403 |
+
"obsahovať iba pomlčky, podtržníky, písmená a čísla. Medzery nie sú povolené."
|
1404 |
|
1405 |
+
#: includes/module-settings.php:127 includes/row-settings.php:591
|
1406 |
+
msgid "Class"
|
1407 |
+
msgstr "Trieda"
|
1408 |
+
|
1409 |
+
#: includes/module-settings.php:128
|
1410 |
+
msgid ""
|
1411 |
+
"A class that will be applied to this module's HTML. Must start with a letter "
|
1412 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1413 |
+
"classes with spaces."
|
1414 |
+
msgstr ""
|
1415 |
+
"Trieda aplikovaná na HTML tohto modulu. Musí začínať písmenom a obsahovať "
|
1416 |
+
"iba pomlčky, podtržníky, písmená a čísla. Viaceré triedy oddeľte medzerami."
|
1417 |
|
1418 |
#: includes/row-settings.php:16 modules/button/button.php:146
|
1419 |
#: modules/content-slider/content-slider.php:477
|
1773 |
msgid "Slow"
|
1774 |
msgstr "Pomaly"
|
1775 |
|
1776 |
+
#: includes/row-settings.php:571
|
|
|
|
|
|
|
|
|
|
|
|
|
1777 |
msgid "Choose whether to show or hide this row at different device sizes."
|
1778 |
msgstr ""
|
1779 |
"Zvoľte, či sa má tento riadok zobraziť na zariadeniach rôznych veľkostí."
|
1780 |
|
1781 |
+
#: includes/row-settings.php:584
|
1782 |
+
msgid ""
|
1783 |
+
"A unique ID that will be applied to this row's HTML. Must start with a "
|
1784 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1785 |
+
msgstr ""
|
1786 |
+
"Unikátne ID aplikované na HTML tohto riadka. Musí začínať písmenom a "
|
1787 |
+
"obsahovať iba pomlčky, podtržníky, písmená a čísla. Medzery nie sú povolené."
|
1788 |
+
|
1789 |
+
#: includes/row-settings.php:592
|
1790 |
+
msgid ""
|
1791 |
+
"A class that will be applied to this row's HTML. Must start with a letter "
|
1792 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1793 |
+
"classes with spaces."
|
1794 |
+
msgstr ""
|
1795 |
+
"Trieda aplikovaná na HTML tohto riadka. Musí začínať písmenom a obsahovať "
|
1796 |
+
"iba pomlčky, podtržníky, písmená a čísla. Viaceré triedy oddeľte medzerami."
|
1797 |
+
|
1798 |
#: includes/settings.php:62
|
1799 |
msgid "Save"
|
1800 |
msgstr "Uložiť"
|
2821 |
msgid "Display a group of linked Font Awesome icons."
|
2822 |
msgstr "Zobrazí zvolenú skupinu ikoniek Font Awesome."
|
2823 |
|
|
|
|
|
|
|
|
|
2824 |
#: modules/icon-group/icon-group.php:125
|
2825 |
msgid "Add Icon"
|
2826 |
msgstr "Pridať ikonku"
|
3654 |
msgid "Price: High to Low"
|
3655 |
msgstr "Ceny: od najvyššej po najnižšiu"
|
3656 |
|
3657 |
+
#~ msgctxt "Fontello icon set with no name."
|
3658 |
+
#~ msgid "Fontello (Unnamed)"
|
3659 |
+
#~ msgstr "Fontello (nepomenované)"
|
3660 |
+
|
3661 |
+
#~ msgid ""
|
3662 |
+
#~ "A custom CSS class that will be applied to this column. Spaces only, no "
|
3663 |
+
#~ "dots."
|
3664 |
+
#~ msgstr ""
|
3665 |
+
#~ "Vlastná trieda CSS aplikovaná na tento stĺpec. Povolené sú iba medzery, "
|
3666 |
+
#~ "žiadne bodky."
|
3667 |
+
|
3668 |
+
#~ msgid "Filter: "
|
3669 |
+
#~ msgstr "Filter: "
|
3670 |
+
|
3671 |
+
#~ msgid ""
|
3672 |
+
#~ "A custom CSS class that will be applied to this module. Spaces only, no "
|
3673 |
+
#~ "dots."
|
3674 |
+
#~ msgstr ""
|
3675 |
+
#~ "Vlastná trieda CSS aplikovaná na tento modul. Nepoužívajte bodky, iba "
|
3676 |
+
#~ "medzery."
|
3677 |
+
|
3678 |
+
#~ msgid ""
|
3679 |
+
#~ "Add a custom CSS selector here to apply additional styling to this row."
|
3680 |
+
#~ msgstr ""
|
3681 |
+
#~ "Zadajte vlastný CSS selector pre aplikáciu dodatočných štýlov na tento "
|
3682 |
+
#~ "riadok."
|
3683 |
+
|
3684 |
#~ msgid "Upgrade Today!"
|
3685 |
#~ msgstr "Aktualizovať!"
|
3686 |
|
languages/xx_XX.mo
ADDED
Binary file
|
languages/xx_XX.pot
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
-
"Last-Translator:
|
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.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
@@ -18,7 +18,73 @@ msgstr ""
|
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: classes/class-fl-builder-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
#, php-format
|
23 |
msgid ""
|
24 |
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
@@ -26,28 +92,36 @@ msgid ""
|
|
26 |
"of this plugin."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: classes/class-fl-builder-admin.php:
|
30 |
msgid ""
|
31 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
32 |
"greater. Please update WordPress before activating the plugin."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: classes/class-fl-builder-admin.php:
|
36 |
#, php-format
|
37 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: classes/class-fl-builder-admin.php:
|
41 |
msgctxt "Plugin action link label."
|
42 |
msgid "Upgrade"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: classes/class-fl-builder-admin.php:
|
46 |
-
#: classes/class-fl-builder-model.php:
|
47 |
msgid "Page Builder"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: classes/class-fl-builder-model.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
#, php-format
|
52 |
msgctxt "%s stands for post/page title."
|
53 |
msgid "Copy of %s"
|
@@ -77,112 +151,292 @@ msgstr ""
|
|
77 |
msgid "Page Builder Templates"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: classes/class-fl-builder.php:
|
81 |
#, php-format
|
82 |
msgctxt "Field name to add."
|
83 |
msgid "Add %s"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: classes/class-fl-builder.php:
|
87 |
msgctxt "Custom post type label."
|
88 |
msgid "Layout Templates"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: classes/class-fl-builder.php:
|
92 |
msgctxt "Custom post type label."
|
93 |
msgid "Layout Template"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: classes/class-fl-builder.php:
|
97 |
msgctxt "Custom post type label."
|
98 |
msgid "Add New"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: classes/class-fl-builder.php:
|
102 |
msgctxt "Custom post type label."
|
103 |
msgid "Add New Layout Template"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: classes/class-fl-builder.php:
|
107 |
msgctxt "Custom post type label."
|
108 |
msgid "New Layout Template"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: classes/class-fl-builder.php:
|
112 |
msgctxt "Custom post type label."
|
113 |
msgid "Edit Layout Template"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: classes/class-fl-builder.php:
|
117 |
msgctxt "Custom post type label."
|
118 |
msgid "View Layout Template"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: classes/class-fl-builder.php:
|
122 |
msgctxt "Custom post type label."
|
123 |
msgid "All Layout Templates"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: classes/class-fl-builder.php:
|
127 |
msgctxt "Custom post type label."
|
128 |
msgid "Search Layout Templates"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: classes/class-fl-builder.php:
|
132 |
msgctxt "Custom post type label."
|
133 |
msgid "Parent Layout Templates:"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: classes/class-fl-builder.php:
|
137 |
msgctxt "Custom post type label."
|
138 |
msgid "No layout templates found."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: classes/class-fl-builder.php:
|
142 |
msgctxt "Custom post type label."
|
143 |
msgid "No layout templates found in Trash."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: classes/class-fl-builder.php:
|
147 |
#, php-format
|
148 |
msgctxt "%s stands for module name."
|
149 |
msgid "%s Settings"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/admin-
|
153 |
-
|
154 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/admin-branding.php:
|
158 |
msgid "White label the page builder by entering a custom name below."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/admin-branding.php:
|
162 |
msgid ""
|
163 |
"Additionally, you may also add a custom icon by entering the URL of an image "
|
164 |
"below. Leave the field blank if you do not wish to use an icon."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/admin-branding.php:
|
168 |
msgid "Save Branding"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
msgid "Edit Template"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/admin-edit
|
176 |
msgctxt "Template edit form field label. Template name."
|
177 |
msgid "Name"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: includes/admin-edit
|
181 |
#: modules/post-grid/post-grid.php:113
|
182 |
msgid "Image"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/admin-edit
|
186 |
#: includes/template-settings.php:23 modules/callout/callout.php:351
|
187 |
#: modules/callout/callout.php:371
|
188 |
#: modules/content-slider/content-slider.php:466
|
@@ -190,12 +444,12 @@ msgstr ""
|
|
190 |
msgid "Position"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/admin-edit
|
194 |
msgctxt "Template edit form field label. Is template premium one?"
|
195 |
msgid "Premium"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/admin-edit
|
199 |
#: includes/global-settings.php:18 includes/global-settings.php:87
|
200 |
#: includes/row-settings.php:307 includes/template-settings.php:31
|
201 |
#: modules/accordion/accordion.php:90 modules/button/button.php:135
|
@@ -226,7 +480,7 @@ msgstr ""
|
|
226 |
msgid "No"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/admin-edit
|
230 |
#: includes/global-settings.php:19 includes/global-settings.php:88
|
231 |
#: includes/row-settings.php:308 includes/template-settings.php:32
|
232 |
#: modules/accordion/accordion.php:89 modules/button/button.php:136
|
@@ -257,209 +511,24 @@ msgstr ""
|
|
257 |
msgid "Yes"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/admin-edit
|
261 |
msgid "Category"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/admin-edit
|
265 |
msgctxt "Templates category label."
|
266 |
msgid "Landing Pages"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/admin-edit
|
270 |
msgctxt "Templates category label."
|
271 |
msgid "Company Info"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/admin-edit
|
275 |
msgid "Update Template"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
279 |
-
msgid "Text Editor"
|
280 |
-
msgstr ""
|
281 |
-
|
282 |
-
#: includes/admin-posts.php:7
|
283 |
-
#, php-format
|
284 |
-
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
285 |
-
msgid "%s is currently active for this page."
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: includes/admin-posts.php:8
|
289 |
-
#, php-format
|
290 |
-
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
291 |
-
msgid "Launch %s"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: includes/admin-settings.php:7 includes/global-settings.php:4
|
295 |
-
#: includes/multisite-settings.php:7
|
296 |
-
#, php-format
|
297 |
-
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
298 |
-
msgid "%s Settings"
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#: includes/admin-settings.php:12 includes/multisite-settings.php:12
|
302 |
-
msgid "Settings updated!"
|
303 |
-
msgstr ""
|
304 |
-
|
305 |
-
#: includes/admin-settings.php:19 includes/multisite-settings.php:18
|
306 |
-
msgid "License"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: includes/admin-settings.php:23 includes/admin-settings.php:59
|
310 |
-
msgid "Upgrade"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: includes/admin-settings.php:26 includes/global-settings.php:67
|
314 |
-
#: includes/multisite-settings.php:19
|
315 |
-
msgid "Modules"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: includes/admin-settings.php:29 includes/multisite-settings.php:20
|
319 |
-
#: includes/ui.php:44
|
320 |
-
msgid "Templates"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: includes/admin-settings.php:32 includes/admin-settings.php:163
|
324 |
-
#: includes/multisite-settings.php:21 includes/multisite-settings.php:112
|
325 |
-
msgid "Post Types"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: includes/admin-settings.php:33 includes/multisite-settings.php:22
|
329 |
-
msgid "Editing"
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#: includes/admin-settings.php:40 includes/admin-settings.php:250
|
333 |
-
#: includes/admin-settings.php:262 includes/multisite-settings.php:24
|
334 |
-
#: includes/multisite-settings.php:172 includes/multisite-settings.php:184
|
335 |
-
msgid "Uninstall"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: includes/admin-settings.php:61
|
339 |
-
msgid ""
|
340 |
-
"You are currently running the lite version of the Beaver Builder plugin. "
|
341 |
-
"Upgrade today for access to premium features such as advanced modules, "
|
342 |
-
"templates, support and more!"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: includes/admin-settings.php:63
|
346 |
-
msgid "Upgrade Now"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: includes/admin-settings.php:65
|
350 |
-
msgid "Learn More"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: includes/admin-settings.php:74 includes/multisite-settings.php:39
|
354 |
-
msgid "Enabled Modules"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: includes/admin-settings.php:81 includes/admin-settings.php:132
|
358 |
-
#: includes/admin-settings.php:170 includes/admin-settings.php:222
|
359 |
-
msgid "Override network settings?"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: includes/admin-settings.php:87 includes/multisite-settings.php:45
|
363 |
-
msgid "Check or uncheck modules below to enable or disable them."
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: includes/admin-settings.php:96 includes/multisite-settings.php:54
|
367 |
-
msgctxt "Plugin setup page: Modules."
|
368 |
-
msgid "All"
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: includes/admin-settings.php:114 includes/multisite-settings.php:72
|
372 |
-
msgid "Save Module Settings"
|
373 |
-
msgstr ""
|
374 |
-
|
375 |
-
#: includes/admin-settings.php:125 includes/multisite-settings.php:82
|
376 |
-
#: includes/template-settings.php:4
|
377 |
-
msgid "Template Settings"
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: includes/admin-settings.php:138 includes/multisite-settings.php:88
|
381 |
-
msgid "Enable or disable templates using the options below."
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: includes/admin-settings.php:145 includes/multisite-settings.php:95
|
385 |
-
msgid "Enable All Templates"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: includes/admin-settings.php:146 includes/multisite-settings.php:96
|
389 |
-
msgid "Enable Core Templates Only"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: includes/admin-settings.php:147 includes/multisite-settings.php:97
|
393 |
-
msgid "Enable User Templates Only"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: includes/admin-settings.php:148 includes/multisite-settings.php:98
|
397 |
-
msgid "Disable All Templates"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: includes/admin-settings.php:152 includes/multisite-settings.php:102
|
401 |
-
msgid "Save Template Settings"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: includes/admin-settings.php:176
|
405 |
-
msgid "Select the post types you would like the builder to work with."
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: includes/admin-settings.php:177 includes/multisite-settings.php:117
|
409 |
-
msgid "NOTE: Not all custom post types may be supported."
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: includes/admin-settings.php:205 includes/multisite-settings.php:135
|
413 |
-
msgid "Save Post Types"
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: includes/admin-settings.php:215 includes/multisite-settings.php:145
|
417 |
-
msgid "Editing Settings"
|
418 |
-
msgstr ""
|
419 |
-
|
420 |
-
#: includes/admin-settings.php:228 includes/multisite-settings.php:150
|
421 |
-
#, php-format
|
422 |
-
msgid ""
|
423 |
-
"Set the <a%s>capability</a> required for users to access advanced builder "
|
424 |
-
"editing such as adding, deleting or moving modules."
|
425 |
-
msgstr ""
|
426 |
-
|
427 |
-
#: includes/admin-settings.php:234 includes/multisite-settings.php:156
|
428 |
-
msgid "Save Editing Settings"
|
429 |
-
msgstr ""
|
430 |
-
|
431 |
-
#: includes/admin-settings.php:252 includes/multisite-settings.php:174
|
432 |
-
msgid ""
|
433 |
-
"Clicking the button below will uninstall the page builder plugin and delete "
|
434 |
-
"all of the data associated with it. You can uninstall or deactivate the page "
|
435 |
-
"builder from the plugins page instead if you do not wish to delete the data."
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
#: includes/admin-settings.php:254 includes/admin-settings.php:257
|
439 |
-
#: includes/multisite-settings.php:176 includes/multisite-settings.php:179
|
440 |
-
#: includes/updater/includes/form.php:31
|
441 |
-
msgid "NOTE:"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: includes/admin-settings.php:254 includes/multisite-settings.php:176
|
445 |
-
msgid ""
|
446 |
-
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
447 |
-
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
448 |
-
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
449 |
-
"its data using those meta values."
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: includes/admin-settings.php:257 includes/multisite-settings.php:179
|
453 |
-
#: includes/updater/includes/form.php:31
|
454 |
-
msgid "This applies to all sites on the network."
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: includes/admin-settings.php:276 includes/multisite-settings.php:198
|
458 |
-
msgid ""
|
459 |
-
"Please type \"uninstall\" in the box below to confirm that you really want "
|
460 |
-
"to uninstall the page builder and all of its data."
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
#: includes/admin-templates.php:3
|
464 |
msgid "Page Builder Template"
|
465 |
msgstr ""
|
@@ -488,15 +557,15 @@ msgstr ""
|
|
488 |
msgid "Delete"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/admin-templates.php:40 includes/js-config.php:
|
492 |
msgid "Do you really want to delete this template?"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/column-settings.php:4 includes/js-config.php:
|
496 |
msgid "Column Settings"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/column-settings.php:7 includes/module-settings.php:
|
500 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
501 |
#: modules/button/button.php:95 modules/callout/callout.php:239
|
502 |
#: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
|
@@ -616,68 +685,106 @@ msgstr ""
|
|
616 |
msgid "Advanced"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: includes/column-settings.php:
|
620 |
-
#: includes/
|
621 |
-
|
|
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: includes/column-settings.php:
|
625 |
-
|
626 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: includes/column-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
msgid "Responsive Layout"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/column-settings.php:
|
634 |
-
#: includes/row-settings.php:
|
635 |
msgid "Display"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: includes/column-settings.php:
|
639 |
-
#: includes/row-settings.php:
|
640 |
msgid "Always"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/column-settings.php:
|
644 |
-
#: includes/row-settings.php:
|
645 |
msgid "Large Devices Only"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: includes/column-settings.php:
|
649 |
-
#: includes/row-settings.php:
|
650 |
msgid "Large & Medium Devices Only"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: includes/column-settings.php:
|
654 |
-
#: includes/row-settings.php:
|
655 |
msgid "Medium Devices Only"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: includes/column-settings.php:
|
659 |
-
#: includes/row-settings.php:
|
660 |
msgid "Medium & Small Devices Only"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/column-settings.php:
|
664 |
-
#: includes/row-settings.php:
|
665 |
msgid "Small Devices Only"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: includes/column-settings.php:
|
669 |
msgid "Choose whether to show or hide this column at different device sizes."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: includes/column-settings.php:
|
673 |
msgid "Medium Device Width"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: includes/column-settings.php:
|
677 |
msgid "The width of this column on medium devices such as tablets."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: includes/column-settings.php:
|
681 |
#: modules/callout/callout.php:281
|
682 |
#: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
|
683 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
@@ -685,7 +792,7 @@ msgstr ""
|
|
685 |
msgid "Default"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: includes/column-settings.php:
|
689 |
#: modules/button/button.php:151 modules/callout/callout.php:282
|
690 |
#: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
|
691 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
@@ -694,70 +801,50 @@ msgstr ""
|
|
694 |
msgid "Custom"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/column-settings.php:
|
698 |
msgid "Custom Medium Device Width"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/column-settings.php:
|
702 |
msgid "Small Device Width"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/column-settings.php:
|
706 |
msgid "The width of this column on small devices such as phones."
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/column-settings.php:
|
710 |
msgid "Custom Small Device Width"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/column-settings.php:
|
714 |
-
#: includes/
|
715 |
-
|
716 |
-
msgid "Margins"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/column-settings.php:
|
720 |
-
#: includes/module-settings.php:
|
721 |
-
|
722 |
-
msgid "Top"
|
723 |
-
msgstr ""
|
724 |
-
|
725 |
-
#: includes/column-settings.php:279 includes/column-settings.php:332
|
726 |
-
#: includes/module-settings.php:54 includes/row-settings.php:497
|
727 |
-
#: includes/row-settings.php:550 modules/slideshow/slideshow.php:474
|
728 |
-
msgid "Bottom"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: includes/column-settings.php:
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
#: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
|
736 |
-
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
737 |
-
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
738 |
-
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
739 |
-
msgid "Left"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/column-settings.php:
|
743 |
-
|
744 |
-
#: includes/row-settings.php:574 modules/button/button.php:178
|
745 |
-
#: modules/callout/callout.php:251
|
746 |
-
#: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
|
747 |
-
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
748 |
-
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
749 |
-
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
750 |
-
msgid "Right"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: includes/column-settings.php:
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: includes/field-form.php:
|
761 |
#, php-format
|
762 |
msgctxt "%s stands for form field label."
|
763 |
msgid "Edit %s"
|
@@ -771,7 +858,7 @@ msgstr ""
|
|
771 |
msgid "Replace"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: includes/field-icon.php:7 includes/js-config.php:
|
775 |
msgid "Remove"
|
776 |
msgstr ""
|
777 |
|
@@ -787,8 +874,8 @@ msgstr ""
|
|
787 |
msgid "Start typing..."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: includes/field-link.php:7 includes/icon-selector.php:
|
791 |
-
#: includes/js-config.php:
|
792 |
#: includes/template-selector.php:102 includes/ui.php:11
|
793 |
msgid "Cancel"
|
794 |
msgstr ""
|
@@ -812,11 +899,11 @@ msgstr ""
|
|
812 |
msgid "Add Photos"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: includes/field-photo.php:3 includes/js-config.php:
|
816 |
msgid "Select Photo"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: includes/field-video.php:3 includes/js-config.php:
|
820 |
msgid "Select Video"
|
821 |
msgstr ""
|
822 |
|
@@ -913,182 +1000,195 @@ msgid ""
|
|
913 |
"phones."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: includes/icon-selector.php:
|
917 |
-
|
|
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/js-config.php:
|
921 |
msgid "What would you like to do?"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: includes/js-config.php:
|
925 |
msgid "Change Template"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: includes/js-config.php:
|
929 |
msgid ""
|
930 |
"Warning! Changing the template will replace your existing layout. Do you "
|
931 |
"really want to do this?"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/js-config.php:
|
935 |
msgid "Column"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: includes/js-config.php:
|
939 |
msgid ""
|
940 |
"Please select either a background layout or content layout before submitting."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: includes/js-config.php:
|
944 |
msgid "Do you really want to delete this item?"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: includes/js-config.php:
|
948 |
msgid ""
|
949 |
"Do you really want to delete this module? All content data will be "
|
950 |
"permanently deleted."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/js-config.php:
|
954 |
msgid ""
|
955 |
"Do you really want to delete this row? All content data will be permanently "
|
956 |
"deleted."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: includes/js-config.php:
|
960 |
msgid "Discard Draft"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/js-config.php:
|
964 |
msgid ""
|
965 |
"Do you really want to discard this draft? All of your changes that are not "
|
966 |
"published will be lost."
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/js-config.php:
|
970 |
msgid "Save Draft"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/js-config.php:
|
974 |
msgctxt "Duplicate page/post action label."
|
975 |
msgid "Duplicate"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: includes/js-config.php:
|
979 |
msgid "Duplicate This Page"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: includes/js-config.php:
|
983 |
msgid "Duplicate This Template"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/js-config.php:
|
987 |
msgid "Edit Global Settings"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/js-config.php:
|
991 |
msgid "Drop a row layout or module to get started!"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
995 |
msgid "Full Size"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/js-config.php:
|
|
|
|
|
|
|
|
|
999 |
msgid "Insert"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/js-config.php:
|
1003 |
msgid "Large"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: includes/js-config.php:
|
1007 |
msgid "Manage Templates"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/js-config.php:
|
1011 |
msgid "Medium"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/js-config.php:
|
1015 |
msgid "Module"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/js-config.php:
|
1019 |
msgid "Move"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/js-config.php:
|
1023 |
msgid "New Column"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/js-config.php:
|
1027 |
msgid "New Row"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/js-config.php:
|
1031 |
msgid "No results found."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/js-config.php:
|
1035 |
msgid "OK"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: includes/js-config.php:
|
1039 |
msgid "Photo Page"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/js-config.php:
|
1043 |
msgid "Photo Selected"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/js-config.php:
|
1047 |
msgid "Photos Selected"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/js-config.php:
|
1051 |
msgid "Publish Changes"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/js-config.php:
|
1055 |
msgid "Row"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: includes/js-config.php:
|
1059 |
msgid "Row Settings"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/js-config.php:
|
1063 |
msgid "Save Core Template"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/js-config.php:
|
1067 |
#: includes/user-template-settings.php:4
|
1068 |
msgid "Save Template"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/js-config.php:
|
1072 |
msgid "Select Photos"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/js-config.php:
|
1076 |
msgid "Append New Layout"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/js-config.php:
|
1080 |
msgid "Replace Existing Layout"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/js-config.php:
|
1084 |
msgid "Template Saved!"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/js-config.php:
|
1088 |
msgid "Thumbnail"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: includes/js-config.php:
|
1092 |
msgid ""
|
1093 |
"The settings you are currently editing will not be saved if you navigate "
|
1094 |
"away from this page."
|
@@ -1102,10 +1202,6 @@ msgstr ""
|
|
1102 |
msgid "Order By"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/loop-settings.php:27
|
1106 |
-
msgid "ID"
|
1107 |
-
msgstr ""
|
1108 |
-
|
1109 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1110 |
#: modules/woocommerce/woocommerce.php:189
|
1111 |
msgid "Date"
|
@@ -1173,56 +1269,51 @@ msgid ""
|
|
1173 |
"authors will be shown."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/module-settings.php:
|
1177 |
-
msgid ""
|
1178 |
-
"A custom CSS class that will be applied to this module. Spaces only, no dots."
|
1179 |
-
msgstr ""
|
1180 |
-
|
1181 |
-
#: includes/module-settings.php:30
|
1182 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: includes/module-settings.php:
|
1186 |
msgid "Animation"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: includes/module-settings.php:
|
1190 |
msgctxt "Animation style."
|
1191 |
msgid "None"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: includes/module-settings.php:
|
1195 |
msgctxt "Animation style."
|
1196 |
msgid "Fade In"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/module-settings.php:
|
1200 |
msgctxt "Animation style."
|
1201 |
msgid "Slide Left"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/module-settings.php:
|
1205 |
msgctxt "Animation style."
|
1206 |
msgid "Slide Right"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: includes/module-settings.php:
|
1210 |
msgctxt "Animation style."
|
1211 |
msgid "Slide Up"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/module-settings.php:
|
1215 |
msgctxt "Animation style."
|
1216 |
msgid "Slide Down"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: includes/module-settings.php:
|
1220 |
#: modules/content-slider/content-slider.php:223
|
1221 |
#: modules/testimonials/testimonials.php:91
|
1222 |
msgid "Delay"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: includes/module-settings.php:
|
1226 |
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
|
1227 |
#: modules/content-slider/content-slider.php:244
|
1228 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
@@ -1233,18 +1324,25 @@ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
|
1233 |
msgid "seconds"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/module-settings.php:
|
1237 |
msgid "The amount of time in seconds before this animation starts."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/
|
1241 |
msgid ""
|
1242 |
-
"
|
1243 |
-
"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/
|
1247 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
msgstr ""
|
1249 |
|
1250 |
#: includes/row-settings.php:16 modules/button/button.php:146
|
@@ -1583,12 +1681,21 @@ msgstr ""
|
|
1583 |
msgid "Slow"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: includes/row-settings.php:
|
1587 |
-
msgid "
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: includes/row-settings.php:
|
1591 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1592 |
msgstr ""
|
1593 |
|
1594 |
#: includes/settings.php:62
|
@@ -2585,10 +2692,6 @@ msgstr ""
|
|
2585 |
msgid "Display a group of linked Font Awesome icons."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: modules/icon-group/icon-group.php:27
|
2589 |
-
msgid "Icons"
|
2590 |
-
msgstr ""
|
2591 |
-
|
2592 |
#: modules/icon-group/icon-group.php:125
|
2593 |
msgid "Add Icon"
|
2594 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
+
"POT-Creation-Date: 2015-02-12 10:28-0800\n"
|
5 |
+
"PO-Revision-Date: 2015-02-12 10:28-0800\n"
|
6 |
+
"Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
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 ""
|
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:67
|
43 |
+
msgid "Modules"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: classes/class-fl-builder-admin-settings.php:130 includes/ui.php:44
|
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 |
+
#: includes/admin-settings-uninstall.php:3
|
71 |
+
#: includes/admin-settings-uninstall.php:15
|
72 |
+
msgid "Uninstall"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: classes/class-fl-builder-admin-settings.php:368
|
76 |
+
msgid "Error! You must have at least one icon set enabled."
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: classes/class-fl-builder-admin-settings.php:410
|
80 |
+
msgid "Error! Could not unzip file."
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: classes/class-fl-builder-admin-settings.php:444
|
84 |
+
msgid "Error! Please upload an icon set from either Icomoon or Fontello."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: classes/class-fl-builder-admin.php:40
|
88 |
#, php-format
|
89 |
msgid ""
|
90 |
"This version of the <strong>Page Builder</strong> plugin is not compatible "
|
92 |
"of this plugin."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: classes/class-fl-builder-admin.php:50
|
96 |
msgid ""
|
97 |
"The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
|
98 |
"greater. Please update WordPress before activating the plugin."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: classes/class-fl-builder-admin.php:96
|
102 |
#, php-format
|
103 |
msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: classes/class-fl-builder-admin.php:191
|
107 |
msgctxt "Plugin action link label."
|
108 |
msgid "Upgrade"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: classes/class-fl-builder-admin.php:202
|
112 |
+
#: classes/class-fl-builder-model.php:2538
|
113 |
msgid "Page Builder"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: classes/class-fl-builder-model.php:1363
|
117 |
+
#, php-format
|
118 |
+
msgctxt "%s stands for the module filename"
|
119 |
+
msgid ""
|
120 |
+
"A module with the filename %s.php already exists! Please namespace your "
|
121 |
+
"module filenames to ensure compatibility with Beaver Builder."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: classes/class-fl-builder-model.php:1953
|
125 |
#, php-format
|
126 |
msgctxt "%s stands for post/page title."
|
127 |
msgid "Copy of %s"
|
151 |
msgid "Page Builder Templates"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: classes/class-fl-builder.php:702
|
155 |
#, php-format
|
156 |
msgctxt "Field name to add."
|
157 |
msgid "Add %s"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: classes/class-fl-builder.php:765 classes/class-fl-builder.php:767
|
161 |
msgctxt "Custom post type label."
|
162 |
msgid "Layout Templates"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: classes/class-fl-builder.php:766 classes/class-fl-builder.php:768
|
166 |
msgctxt "Custom post type label."
|
167 |
msgid "Layout Template"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: classes/class-fl-builder.php:769
|
171 |
msgctxt "Custom post type label."
|
172 |
msgid "Add New"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: classes/class-fl-builder.php:770
|
176 |
msgctxt "Custom post type label."
|
177 |
msgid "Add New Layout Template"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: classes/class-fl-builder.php:771
|
181 |
msgctxt "Custom post type label."
|
182 |
msgid "New Layout Template"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: classes/class-fl-builder.php:772
|
186 |
msgctxt "Custom post type label."
|
187 |
msgid "Edit Layout Template"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: classes/class-fl-builder.php:773
|
191 |
msgctxt "Custom post type label."
|
192 |
msgid "View Layout Template"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: classes/class-fl-builder.php:774
|
196 |
msgctxt "Custom post type label."
|
197 |
msgid "All Layout Templates"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: classes/class-fl-builder.php:775
|
201 |
msgctxt "Custom post type label."
|
202 |
msgid "Search Layout Templates"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: classes/class-fl-builder.php:776
|
206 |
msgctxt "Custom post type label."
|
207 |
msgid "Parent Layout Templates:"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: classes/class-fl-builder.php:777
|
211 |
msgctxt "Custom post type label."
|
212 |
msgid "No layout templates found."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: classes/class-fl-builder.php:778
|
216 |
msgctxt "Custom post type label."
|
217 |
msgid "No layout templates found in Trash."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: classes/class-fl-builder.php:1143 includes/js-config.php:61
|
221 |
#, php-format
|
222 |
msgctxt "%s stands for module name."
|
223 |
msgid "%s Settings"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
|
227 |
+
msgid "Text Editor"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/admin-posts.php:7
|
231 |
+
#, php-format
|
232 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
233 |
+
msgid "%s is currently active for this page."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: includes/admin-posts.php:8
|
237 |
+
#, php-format
|
238 |
+
msgctxt "%s stands for custom branded \"Page Builder\" name."
|
239 |
+
msgid "Launch %s"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: includes/admin-settings-branding.php:7
|
243 |
msgid "White label the page builder by entering a custom name below."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: includes/admin-settings-branding.php:10
|
247 |
msgid ""
|
248 |
"Additionally, you may also add a custom icon by entering the URL of an image "
|
249 |
"below. Leave the field blank if you do not wish to use an icon."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/admin-settings-branding.php:14
|
253 |
msgid "Save Branding"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/admin-settings-editing.php:3
|
257 |
+
msgid "Editing Settings"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
|
261 |
+
#: includes/admin-settings-modules.php:10
|
262 |
+
#: includes/admin-settings-post-types.php:10
|
263 |
+
#: includes/admin-settings-templates.php:10
|
264 |
+
msgid "Override network settings?"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: includes/admin-settings-editing.php:16
|
268 |
+
#, php-format
|
269 |
+
msgid ""
|
270 |
+
"Set the <a%s>capability</a> required for users to access advanced builder "
|
271 |
+
"editing such as adding, deleting or moving modules."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/admin-settings-editing.php:22
|
275 |
+
msgid "Save Editing Settings"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/admin-settings-icons.php:3
|
279 |
+
msgid "Icon Settings"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/admin-settings-icons.php:13
|
283 |
+
msgid "Icons for the main site must be managed in the network admin."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/admin-settings-icons.php:33
|
287 |
+
#, php-format
|
288 |
+
msgid ""
|
289 |
+
"Enable or disable icon sets using the options below or upload a custom icon "
|
290 |
+
"set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: includes/admin-settings-icons.php:48
|
294 |
+
msgctxt "Plugin setup page: Delete icon set."
|
295 |
+
msgid "Delete"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/admin-settings-icons.php:59
|
299 |
+
msgid "Upload Icon Set"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/admin-settings-icons.php:60
|
303 |
+
msgid "Save Icon Settings"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/admin-settings-js-config.php:4
|
307 |
+
msgid "Select File"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/admin-settings-js-config.php:5
|
311 |
+
msgid ""
|
312 |
+
"Please type \"uninstall\" in the box below to confirm that you really want "
|
313 |
+
"to uninstall the page builder and all of its data."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: includes/admin-settings-modules.php:3
|
317 |
+
msgid "Enabled Modules"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/admin-settings-modules.php:16
|
321 |
+
msgid "Check or uncheck modules below to enable or disable them."
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: includes/admin-settings-modules.php:25
|
325 |
+
msgctxt "Plugin setup page: Modules."
|
326 |
+
msgid "All"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: includes/admin-settings-modules.php:43
|
330 |
+
msgid "Save Module Settings"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: includes/admin-settings-post-types.php:18
|
334 |
+
msgid ""
|
335 |
+
"Enter a comma separated list of the post types you would like the builder to "
|
336 |
+
"work with."
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: includes/admin-settings-post-types.php:19
|
340 |
+
#: includes/admin-settings-post-types.php:39
|
341 |
+
msgid "NOTE: Not all custom post types may be supported."
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/admin-settings-post-types.php:34
|
345 |
+
msgid "Example: page, post, product"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: includes/admin-settings-post-types.php:38
|
349 |
+
msgid "Select the post types you would like the builder to work with."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/admin-settings-post-types.php:70
|
353 |
+
msgid "Save Post Types"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: includes/admin-settings-templates.php:3 includes/template-settings.php:4
|
357 |
+
msgid "Template Settings"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/admin-settings-templates.php:16
|
361 |
+
msgid "Enable or disable templates using the options below."
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: includes/admin-settings-templates.php:23
|
365 |
+
msgid "Enable All Templates"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: includes/admin-settings-templates.php:24
|
369 |
+
msgid "Enable Core Templates Only"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: includes/admin-settings-templates.php:25
|
373 |
+
msgid "Enable User Templates Only"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: includes/admin-settings-templates.php:26
|
377 |
+
msgid "Disable All Templates"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: includes/admin-settings-templates.php:30
|
381 |
+
msgid "Save Template Settings"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: includes/admin-settings-uninstall.php:5
|
385 |
+
msgid ""
|
386 |
+
"Clicking the button below will uninstall the page builder plugin and delete "
|
387 |
+
"all of the data associated with it. You can uninstall or deactivate the page "
|
388 |
+
"builder from the plugins page instead if you do not wish to delete the data."
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: includes/admin-settings-uninstall.php:7
|
392 |
+
#: includes/admin-settings-uninstall.php:10
|
393 |
+
#: includes/updater/includes/form.php:31
|
394 |
+
msgid "NOTE:"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/admin-settings-uninstall.php:7
|
398 |
+
msgid ""
|
399 |
+
"The builder does not delete the post meta <code>_fl_builder_data</code>, "
|
400 |
+
"<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
|
401 |
+
"you want to reinstall it later. If you do, the builder will rebuild all of "
|
402 |
+
"its data using those meta values."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/admin-settings-uninstall.php:10
|
406 |
+
#: includes/updater/includes/form.php:31
|
407 |
+
msgid "This applies to all sites on the network."
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: includes/admin-settings-upgrade.php:5
|
411 |
+
msgid ""
|
412 |
+
"You are currently running the lite version of the Beaver Builder plugin. "
|
413 |
+
"Upgrade today for access to premium features such as advanced modules, "
|
414 |
+
"templates, support and more!"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin-settings-upgrade.php:7
|
418 |
+
msgid "Upgrade Now"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/admin-settings-upgrade.php:9
|
422 |
+
msgid "Learn More"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/admin-templates-edit.php:3
|
426 |
msgid "Edit Template"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/admin-templates-edit.php:8
|
430 |
msgctxt "Template edit form field label. Template name."
|
431 |
msgid "Name"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:303
|
435 |
#: modules/post-grid/post-grid.php:113
|
436 |
msgid "Image"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/admin-templates-edit.php:16 includes/row-settings.php:155
|
440 |
#: includes/template-settings.php:23 modules/callout/callout.php:351
|
441 |
#: modules/callout/callout.php:371
|
442 |
#: modules/content-slider/content-slider.php:466
|
444 |
msgid "Position"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/admin-templates-edit.php:20 includes/template-settings.php:28
|
448 |
msgctxt "Template edit form field label. Is template premium one?"
|
449 |
msgid "Premium"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
453 |
#: includes/global-settings.php:18 includes/global-settings.php:87
|
454 |
#: includes/row-settings.php:307 includes/template-settings.php:31
|
455 |
#: modules/accordion/accordion.php:90 modules/button/button.php:135
|
480 |
msgid "No"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
484 |
#: includes/global-settings.php:19 includes/global-settings.php:88
|
485 |
#: includes/row-settings.php:308 includes/template-settings.php:32
|
486 |
#: modules/accordion/accordion.php:89 modules/button/button.php:136
|
511 |
msgid "Yes"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/admin-templates-edit.php:29 includes/template-settings.php:37
|
515 |
msgid "Category"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: includes/admin-templates-edit.php:32 includes/template-settings.php:40
|
519 |
msgctxt "Templates category label."
|
520 |
msgid "Landing Pages"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: includes/admin-templates-edit.php:33 includes/template-settings.php:41
|
524 |
msgctxt "Templates category label."
|
525 |
msgid "Company Info"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: includes/admin-templates-edit.php:40
|
529 |
msgid "Update Template"
|
530 |
msgstr ""
|
531 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
#: includes/admin-templates.php:3
|
533 |
msgid "Page Builder Template"
|
534 |
msgstr ""
|
557 |
msgid "Delete"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/admin-templates.php:40 includes/js-config.php:27
|
561 |
msgid "Do you really want to delete this template?"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/column-settings.php:4 includes/js-config.php:22
|
565 |
msgid "Column Settings"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/column-settings.php:7 includes/module-settings.php:87
|
569 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
570 |
#: modules/button/button.php:95 modules/callout/callout.php:239
|
571 |
#: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
|
685 |
msgid "Advanced"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/column-settings.php:173 includes/global-settings.php:41
|
689 |
+
#: includes/global-settings.php:71 includes/module-settings.php:9
|
690 |
+
#: includes/row-settings.php:452
|
691 |
+
msgid "Margins"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/column-settings.php:177 includes/column-settings.php:230
|
695 |
+
#: includes/module-settings.php:13 includes/row-settings.php:456
|
696 |
+
#: includes/row-settings.php:509 modules/slideshow/slideshow.php:475
|
697 |
+
msgid "Top"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: includes/column-settings.php:189 includes/column-settings.php:242
|
701 |
+
#: includes/module-settings.php:25 includes/row-settings.php:468
|
702 |
+
#: includes/row-settings.php:521 modules/slideshow/slideshow.php:474
|
703 |
+
msgid "Bottom"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: includes/column-settings.php:201 includes/column-settings.php:254
|
707 |
+
#: includes/module-settings.php:37 includes/row-settings.php:480
|
708 |
+
#: includes/row-settings.php:533 modules/button/button.php:177
|
709 |
+
#: modules/callout/callout.php:250
|
710 |
+
#: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
|
711 |
+
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
712 |
+
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
713 |
+
#: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
|
714 |
+
msgid "Left"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: includes/column-settings.php:213 includes/column-settings.php:266
|
718 |
+
#: includes/module-settings.php:49 includes/row-settings.php:492
|
719 |
+
#: includes/row-settings.php:545 modules/button/button.php:178
|
720 |
+
#: modules/callout/callout.php:251
|
721 |
+
#: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
|
722 |
+
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
723 |
+
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
724 |
+
#: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
|
725 |
+
msgid "Right"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: includes/column-settings.php:226 includes/global-settings.php:49
|
729 |
+
#: includes/row-settings.php:505 modules/button/button.php:191
|
730 |
+
#: modules/callout/callout.php:567
|
731 |
+
#: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
|
732 |
+
msgid "Padding"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: includes/column-settings.php:279 includes/global-settings.php:80
|
736 |
+
#: includes/module-settings.php:62 includes/row-settings.php:558
|
737 |
msgid "Responsive Layout"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/column-settings.php:283 includes/module-settings.php:66
|
741 |
+
#: includes/row-settings.php:562 modules/slideshow/slideshow.php:290
|
742 |
msgid "Display"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: includes/column-settings.php:285 includes/module-settings.php:68
|
746 |
+
#: includes/row-settings.php:564
|
747 |
msgid "Always"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: includes/column-settings.php:286 includes/module-settings.php:69
|
751 |
+
#: includes/row-settings.php:565
|
752 |
msgid "Large Devices Only"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/column-settings.php:287 includes/module-settings.php:70
|
756 |
+
#: includes/row-settings.php:566
|
757 |
msgid "Large & Medium Devices Only"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/column-settings.php:288 includes/module-settings.php:71
|
761 |
+
#: includes/row-settings.php:567
|
762 |
msgid "Medium Devices Only"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/column-settings.php:289 includes/module-settings.php:72
|
766 |
+
#: includes/row-settings.php:568
|
767 |
msgid "Medium & Small Devices Only"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: includes/column-settings.php:290 includes/module-settings.php:73
|
771 |
+
#: includes/row-settings.php:569
|
772 |
msgid "Small Devices Only"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: includes/column-settings.php:292
|
776 |
msgid "Choose whether to show or hide this column at different device sizes."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: includes/column-settings.php:299
|
780 |
msgid "Medium Device Width"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/column-settings.php:300
|
784 |
msgid "The width of this column on medium devices such as tablets."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/column-settings.php:302 includes/column-settings.php:330
|
788 |
#: modules/callout/callout.php:281
|
789 |
#: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
|
790 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
792 |
msgid "Default"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: includes/column-settings.php:303 includes/column-settings.php:331
|
796 |
#: modules/button/button.php:151 modules/callout/callout.php:282
|
797 |
#: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
|
798 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
801 |
msgid "Custom"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/column-settings.php:316
|
805 |
msgid "Custom Medium Device Width"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: includes/column-settings.php:327
|
809 |
msgid "Small Device Width"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: includes/column-settings.php:328
|
813 |
msgid "The width of this column on small devices such as phones."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: includes/column-settings.php:344
|
817 |
msgid "Custom Small Device Width"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: includes/column-settings.php:356 includes/module-settings.php:115
|
821 |
+
#: includes/row-settings.php:579
|
822 |
+
msgid "CSS Selectors"
|
|
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: includes/column-settings.php:360 includes/loop-settings.php:27
|
826 |
+
#: includes/module-settings.php:119 includes/row-settings.php:583
|
827 |
+
msgid "ID"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/column-settings.php:361
|
831 |
+
msgid ""
|
832 |
+
"A unique ID that will be applied to this column's HTML. Must start with a "
|
833 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
|
|
|
|
|
|
|
|
|
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: includes/column-settings.php:368
|
837 |
+
msgid "CSS Class"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: includes/column-settings.php:369
|
841 |
+
msgid ""
|
842 |
+
"A class that will be applied to this column's HTML. Must start with a letter "
|
843 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
844 |
+
"classes with spaces."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/field-form.php:28
|
848 |
#, php-format
|
849 |
msgctxt "%s stands for form field label."
|
850 |
msgid "Edit %s"
|
858 |
msgid "Replace"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: includes/field-icon.php:7 includes/js-config.php:53
|
862 |
msgid "Remove"
|
863 |
msgstr ""
|
864 |
|
874 |
msgid "Start typing..."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/field-link.php:7 includes/icon-selector.php:28
|
878 |
+
#: includes/js-config.php:18 includes/settings.php:63
|
879 |
#: includes/template-selector.php:102 includes/ui.php:11
|
880 |
msgid "Cancel"
|
881 |
msgstr ""
|
899 |
msgid "Add Photos"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/field-photo.php:3 includes/js-config.php:58
|
903 |
msgid "Select Photo"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/field-video.php:3 includes/js-config.php:60
|
907 |
msgid "Select Video"
|
908 |
msgstr ""
|
909 |
|
1000 |
"phones."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/icon-selector.php:5
|
1004 |
+
msgctxt "Select option for showing all icon libraries."
|
1005 |
+
msgid "All Libraries"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: includes/js-config.php:17
|
1009 |
msgid "What would you like to do?"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/js-config.php:19
|
1013 |
msgid "Change Template"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: includes/js-config.php:20
|
1017 |
msgid ""
|
1018 |
"Warning! Changing the template will replace your existing layout. Do you "
|
1019 |
"really want to do this?"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/js-config.php:21
|
1023 |
msgid "Column"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: includes/js-config.php:23
|
1027 |
msgid ""
|
1028 |
"Please select either a background layout or content layout before submitting."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/js-config.php:24
|
1032 |
msgid "Do you really want to delete this item?"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: includes/js-config.php:25
|
1036 |
msgid ""
|
1037 |
"Do you really want to delete this module? All content data will be "
|
1038 |
"permanently deleted."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: includes/js-config.php:26
|
1042 |
msgid ""
|
1043 |
"Do you really want to delete this row? All content data will be permanently "
|
1044 |
"deleted."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/js-config.php:28
|
1048 |
msgid "Discard Draft"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: includes/js-config.php:29
|
1052 |
msgid ""
|
1053 |
"Do you really want to discard this draft? All of your changes that are not "
|
1054 |
"published will be lost."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/js-config.php:30
|
1058 |
msgid "Save Draft"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/js-config.php:31
|
1062 |
msgctxt "Duplicate page/post action label."
|
1063 |
msgid "Duplicate"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/js-config.php:32
|
1067 |
msgid "Duplicate This Page"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/js-config.php:33
|
1071 |
msgid "Duplicate This Template"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/js-config.php:34
|
1075 |
msgid "Edit Global Settings"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/js-config.php:35
|
1079 |
msgid "Drop a row layout or module to get started!"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/js-config.php:36
|
1083 |
+
msgid ""
|
1084 |
+
"Beaver Builder caught the following JavaScript error. If Beaver Builder is "
|
1085 |
+
"not functioning as expected the cause is most likely this error. Please help "
|
1086 |
+
"us by disabling all plugins and testing Beaver Builder while reactivating "
|
1087 |
+
"each to determine if the issue is related to a third party plugin."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: includes/js-config.php:37
|
1091 |
msgid "Full Size"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/js-config.php:38
|
1095 |
+
msgid "\"{message}\" on line {line} of {file}."
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: includes/js-config.php:39
|
1099 |
msgid "Insert"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: includes/js-config.php:40
|
1103 |
msgid "Large"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/js-config.php:41
|
1107 |
msgid "Manage Templates"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: includes/js-config.php:42
|
1111 |
msgid "Medium"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: includes/js-config.php:43
|
1115 |
msgid "Module"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/js-config.php:44
|
1119 |
msgid "Move"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/js-config.php:45
|
1123 |
msgid "New Column"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/js-config.php:46
|
1127 |
msgid "New Row"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/js-config.php:47
|
1131 |
msgid "No results found."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/js-config.php:48
|
1135 |
msgid "OK"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/js-config.php:49 modules/photo/photo.php:454
|
1139 |
msgid "Photo Page"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/js-config.php:50
|
1143 |
msgid "Photo Selected"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/js-config.php:51
|
1147 |
msgid "Photos Selected"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: includes/js-config.php:52
|
1151 |
msgid "Publish Changes"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: includes/js-config.php:54
|
1155 |
msgid "Row"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/js-config.php:55 includes/row-settings.php:6
|
1159 |
msgid "Row Settings"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/js-config.php:56
|
1163 |
msgid "Save Core Template"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/js-config.php:57 includes/ui.php:10
|
1167 |
#: includes/user-template-settings.php:4
|
1168 |
msgid "Save Template"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: includes/js-config.php:59
|
1172 |
msgid "Select Photos"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: includes/js-config.php:62
|
1176 |
msgid "Append New Layout"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: includes/js-config.php:63
|
1180 |
msgid "Replace Existing Layout"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: includes/js-config.php:64
|
1184 |
msgid "Template Saved!"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/js-config.php:65
|
1188 |
msgid "Thumbnail"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/js-config.php:66
|
1192 |
msgid ""
|
1193 |
"The settings you are currently editing will not be saved if you navigate "
|
1194 |
"away from this page."
|
1202 |
msgid "Order By"
|
1203 |
msgstr ""
|
1204 |
|
|
|
|
|
|
|
|
|
1205 |
#: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
|
1206 |
#: modules/woocommerce/woocommerce.php:189
|
1207 |
msgid "Date"
|
1269 |
"authors will be shown."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/module-settings.php:75
|
|
|
|
|
|
|
|
|
|
|
1273 |
msgid "Choose whether to show or hide this module at different device sizes."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/module-settings.php:83
|
1277 |
msgid "Animation"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/module-settings.php:89
|
1281 |
msgctxt "Animation style."
|
1282 |
msgid "None"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/module-settings.php:90
|
1286 |
msgctxt "Animation style."
|
1287 |
msgid "Fade In"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/module-settings.php:91
|
1291 |
msgctxt "Animation style."
|
1292 |
msgid "Slide Left"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/module-settings.php:92
|
1296 |
msgctxt "Animation style."
|
1297 |
msgid "Slide Right"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/module-settings.php:93
|
1301 |
msgctxt "Animation style."
|
1302 |
msgid "Slide Up"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/module-settings.php:94
|
1306 |
msgctxt "Animation style."
|
1307 |
msgid "Slide Down"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/module-settings.php:102
|
1311 |
#: modules/content-slider/content-slider.php:223
|
1312 |
#: modules/testimonials/testimonials.php:91
|
1313 |
msgid "Delay"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: includes/module-settings.php:106 includes/row-settings.php:266
|
1317 |
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
|
1318 |
#: modules/content-slider/content-slider.php:244
|
1319 |
#: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
|
1324 |
msgid "seconds"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/module-settings.php:107
|
1328 |
msgid "The amount of time in seconds before this animation starts."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/module-settings.php:120
|
1332 |
msgid ""
|
1333 |
+
"A unique ID that will be applied to this module's HTML. Must start with a "
|
1334 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/module-settings.php:127 includes/row-settings.php:591
|
1338 |
+
msgid "Class"
|
1339 |
+
msgstr ""
|
1340 |
+
|
1341 |
+
#: includes/module-settings.php:128
|
1342 |
+
msgid ""
|
1343 |
+
"A class that will be applied to this module's HTML. Must start with a letter "
|
1344 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1345 |
+
"classes with spaces."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
#: includes/row-settings.php:16 modules/button/button.php:146
|
1681 |
msgid "Slow"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: includes/row-settings.php:571
|
1685 |
+
msgid "Choose whether to show or hide this row at different device sizes."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: includes/row-settings.php:584
|
1689 |
+
msgid ""
|
1690 |
+
"A unique ID that will be applied to this row's HTML. Must start with a "
|
1691 |
+
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: includes/row-settings.php:592
|
1695 |
+
msgid ""
|
1696 |
+
"A class that will be applied to this row's HTML. Must start with a letter "
|
1697 |
+
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
1698 |
+
"classes with spaces."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
#: includes/settings.php:62
|
2692 |
msgid "Display a group of linked Font Awesome icons."
|
2693 |
msgstr ""
|
2694 |
|
|
|
|
|
|
|
|
|
2695 |
#: modules/icon-group/icon-group.php:125
|
2696 |
msgid "Add Icon"
|
2697 |
msgstr ""
|
readme.txt
CHANGED
@@ -13,15 +13,15 @@ Beaver Builder is a drag and drop frontend WordPress page builder that works wit
|
|
13 |
|
14 |
= What Is The Beaver Builder WordPress Page Builder? =
|
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
|
17 |
|
18 |
[youtube https://www.youtube.com/watch?v=CNJbH2gaACo]
|
19 |
|
20 |
-
Head on over to [our website](
|
21 |
|
22 |
= Who Is Beaver Builder For? =
|
23 |
|
24 |
-
Anyone that can learn WordPress can learn to use Beaver Builder. Developers that need a little more can build custom widgets using the WordPress plugin system to get the job done. Users of the [pro or agency versions](
|
25 |
|
26 |
= A WordPress Page Builder That Works With Your Theme =
|
27 |
|
@@ -41,7 +41,7 @@ We've designed Beaver Builder to create layouts that load quickly. Many page bui
|
|
41 |
|
42 |
= WordPress.org Support =
|
43 |
|
44 |
-
> As this is the lite version of [Beaver Builder](
|
45 |
|
46 |
== Installation ==
|
47 |
|
@@ -51,11 +51,11 @@ We've designed Beaver Builder to create layouts that load quickly. Many page bui
|
|
51 |
|
52 |
3. Beaver Builder will now be available to use for any of the post types you chose.
|
53 |
|
54 |
-
Visit our [documentation pages](
|
55 |
|
56 |
== Frequently Asked Questions ==
|
57 |
|
58 |
-
Visit our [documentation pages](
|
59 |
|
60 |
== Screenshots ==
|
61 |
|
@@ -65,9 +65,9 @@ Visit our [documentation pages](http://www.wpbeaverbuilder.com/documentation/) f
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
-
Visit our [change logs page](
|
69 |
|
70 |
== Upgrade Notice ==
|
71 |
|
72 |
-
Visit our [change logs page](
|
73 |
|
13 |
|
14 |
= What Is The Beaver Builder WordPress Page Builder? =
|
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 |
[youtube https://www.youtube.com/watch?v=CNJbH2gaACo]
|
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 |
|
22 |
= Who Is Beaver Builder For? =
|
23 |
|
24 |
+
Anyone that can learn WordPress can learn to use Beaver Builder. Developers that need a little more can build custom widgets using the WordPress plugin system to get the job done. Users of the [pro or agency versions](https://www.wpbeaverbuilder.com/pricing/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-description) also get access to premium documentation and support for extending the builder through the development of custom modules.
|
25 |
|
26 |
= A WordPress Page Builder That Works With Your Theme =
|
27 |
|
41 |
|
42 |
= WordPress.org Support =
|
43 |
|
44 |
+
> As this is the lite version of [Beaver Builder](https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-support), the only support we offer through these forums is for bugs. Support for questions regarding working with or extending the Beaver Builder is available as part of either the [standard, pro or agency versions](https://www.wpbeaverbuilder.com/pricing/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-support) on our website.
|
45 |
|
46 |
== Installation ==
|
47 |
|
51 |
|
52 |
3. Beaver Builder will now be available to use for any of the post types you chose.
|
53 |
|
54 |
+
Visit our [documentation pages](https://www.wpbeaverbuilder.com/documentation/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-installation) for more information on working with Beaver Builder. Please note that not all features described in the documentation are available in this version of the Beaver Builder plugin.
|
55 |
|
56 |
== Frequently Asked Questions ==
|
57 |
|
58 |
+
Visit our [documentation pages](https://www.wpbeaverbuilder.com/documentation/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-faq) for more information on working with Beaver Builder. Please note that not all features described in the documentation are available in this version of the Beaver Builder plugin.
|
59 |
|
60 |
== Screenshots ==
|
61 |
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
Visit our [change logs page](https://www.wpbeaverbuilder.com/change-logs/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-changelog) for up-to-date information on what has been going on with the development of Beaver Builder.
|
69 |
|
70 |
== Upgrade Notice ==
|
71 |
|
72 |
+
Visit our [change logs page](https://www.wpbeaverbuilder.com/change-logs/?utm_source=external&utm_medium=wp-repo&utm_campaign=builder-changelog) for up-to-date information on what has been going on with the development of Beaver Builder.
|
73 |
|