Version Description
-
Added the possibility to save options in separate database location #838
Will be used in next release of the PageBuilder extension, the builder value will be moved to a separate post meta.
-
Lazy Tabs: Render only the visible tabs #1174
This feature can be disabled by adding in
{theme}/framework-customizations/theme/config.php
:$cfg['lazy_tabs']
Download this release
Release Info
Developer | Unyson |
Plugin | Unyson |
Version | 2.5.0 |
Comparing to | |
See all releases |
Code changes from version 2.4.17 to 2.5.0
- README.md +0 -2
- framework/bootstrap.php +3 -1
- framework/core/components/backend.php +7 -14
- framework/core/components/theme.php +3 -0
- framework/core/extends/class-fw-option-type.php +66 -0
- framework/core/extends/interface-fw-option-handler.php +3 -0
- framework/helpers/database.php +263 -14
- framework/helpers/general.php +26 -9
- framework/helpers/meta.php +19 -19
- framework/includes/container-types/tab/view.php +19 -9
- framework/includes/hooks.php +1 -1
- framework/includes/option-storage/class--fw-option-storage-type-register.php +10 -0
- framework/includes/option-storage/class-fw-option-storage-type.php +97 -0
- framework/includes/option-storage/type/class-fw-option-storage-type-post-meta.php +73 -0
- framework/includes/option-storage/type/class-fw-option-storage-type-wp-option.php +54 -0
- framework/includes/option-types/addable-box/class-fw-option-type-addable-box.php +14 -0
- framework/includes/option-types/addable-box/static/css/styles.css +12 -0
- framework/includes/option-types/addable-box/static/js/scripts.js +8 -0
- framework/includes/option-types/addable-box/view.php +7 -1
- framework/includes/option-types/popup/static/js/popup.js +26 -7
- framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php +1 -1
- framework/includes/option-types/rgba-color-picker/static/js/scripts.js +4 -2
- framework/includes/option-types/simple.php +46 -21
- framework/includes/option-types/typography-v2/class-fw-option-type-typography-v2.php +21 -18
- framework/includes/option-types/typography-v2/static/js/scripts.js +1 -1
- framework/includes/option-types/typography-v2/view.php +2 -3
- framework/includes/option-types/typography/static/css/styles.css +1 -1
- framework/languages/fw.pot +6233 -0
- {languages → framework/languages}/index.html +0 -0
- framework/manifest.php +1 -1
- framework/static/css/backend-options.css +13 -3
- framework/static/js/backend-options.js +54 -26
- framework/static/js/fw.js +7 -0
- framework/views/backend-settings-form.php +0 -33
- readme.txt +16 -141
- unyson.php +2 -2
README.md
CHANGED
@@ -4,8 +4,6 @@
|
|
4 |
|
5 |
This framework was created from the ground up by the team behind [ThemeFuse](http://themefuse.com/) from the desire to empower developers to build outstanding WordPress themes fast and easy.
|
6 |
|
7 |
-
To get started, check out the [Scratch Theme](https://github.com/ThemeFuse/Scratch-Theme).
|
8 |
-
|
9 |
If you are not a developer, please use the [Unyson plugin page](https://wordpress.org/plugins/unyson/) on WordPress.org.
|
10 |
|
11 |
[![Build Status](https://travis-ci.org/ThemeFuse/Unyson.svg?branch=master)](https://travis-ci.org/ThemeFuse/Unyson) [![Stories in Ready](https://badge.waffle.io/ThemeFuse/Unyson.svg?label=ready&title=Ready)](http://waffle.io/ThemeFuse/Unyson)
|
4 |
|
5 |
This framework was created from the ground up by the team behind [ThemeFuse](http://themefuse.com/) from the desire to empower developers to build outstanding WordPress themes fast and easy.
|
6 |
|
|
|
|
|
7 |
If you are not a developer, please use the [Unyson plugin page](https://wordpress.org/plugins/unyson/) on WordPress.org.
|
8 |
|
9 |
[![Build Status](https://travis-ci.org/ThemeFuse/Unyson.svg?branch=master)](https://travis-ci.org/ThemeFuse/Unyson) [![Stories in Ready](https://badge.waffle.io/ThemeFuse/Unyson.svg?label=ready&title=Ready)](http://waffle.io/ThemeFuse/Unyson)
|
framework/bootstrap.php
CHANGED
@@ -14,7 +14,9 @@ if (defined('FW')) {
|
|
14 |
add_action('after_setup_theme', '_action_init_framework');
|
15 |
|
16 |
function _action_init_framework() {
|
17 |
-
|
|
|
|
|
18 |
|
19 |
$fw_dir = dirname(__FILE__);
|
20 |
|
14 |
add_action('after_setup_theme', '_action_init_framework');
|
15 |
|
16 |
function _action_init_framework() {
|
17 |
+
if (did_action('fw_init')) {
|
18 |
+
return;
|
19 |
+
}
|
20 |
|
21 |
$fw_dir = dirname(__FILE__);
|
22 |
|
framework/core/components/backend.php
CHANGED
@@ -375,6 +375,10 @@ final class _FW_Component_Backend {
|
|
375 |
fw()->manifest->get_version(),
|
376 |
true
|
377 |
);
|
|
|
|
|
|
|
|
|
378 |
}
|
379 |
|
380 |
{
|
@@ -937,6 +941,7 @@ final class _FW_Component_Backend {
|
|
937 |
* @param int $post_id
|
938 |
*
|
939 |
* @return bool
|
|
|
940 |
*/
|
941 |
public function _sync_post_separate_meta( $post_id ) {
|
942 |
$post_type = get_post_type( $post_id );
|
@@ -1006,7 +1011,7 @@ final class _FW_Component_Backend {
|
|
1006 |
}
|
1007 |
|
1008 |
foreach ( $separate_meta_options as $meta_key => $option_value ) {
|
1009 |
-
|
1010 |
}
|
1011 |
|
1012 |
return true;
|
@@ -1189,7 +1194,7 @@ final class _FW_Component_Backend {
|
|
1189 |
continue;
|
1190 |
}
|
1191 |
|
1192 |
-
$values[ $option_id ] = (
|
1193 |
|
1194 |
continue 2;
|
1195 |
} while(false);
|
@@ -1285,7 +1290,6 @@ final class _FW_Component_Backend {
|
|
1285 |
fw_render_view( fw_get_framework_directory( '/views/backend-settings-form.php' ), array(
|
1286 |
'options' => $options,
|
1287 |
'values' => $values,
|
1288 |
-
'focus_tab_input_name' => '_focus_tab',
|
1289 |
'reset_input_name' => '_fw_reset_options',
|
1290 |
'ajax_submit' => $ajax_submit,
|
1291 |
'side_tabs' => $side_tabs,
|
@@ -1327,17 +1331,6 @@ final class _FW_Component_Backend {
|
|
1327 |
|
1328 |
$redirect_url = fw_current_url();
|
1329 |
|
1330 |
-
{
|
1331 |
-
$focus_tab_input_name = '_focus_tab';
|
1332 |
-
$focus_tab_id = trim( FW_Request::POST( $focus_tab_input_name ) );
|
1333 |
-
|
1334 |
-
if ( ! empty( $focus_tab_id ) ) {
|
1335 |
-
$redirect_url = add_query_arg( $focus_tab_input_name, $focus_tab_id,
|
1336 |
-
remove_query_arg( $focus_tab_input_name, $redirect_url )
|
1337 |
-
);
|
1338 |
-
}
|
1339 |
-
}
|
1340 |
-
|
1341 |
$data['redirect'] = $redirect_url;
|
1342 |
|
1343 |
return $data;
|
375 |
fw()->manifest->get_version(),
|
376 |
true
|
377 |
);
|
378 |
+
|
379 |
+
wp_localize_script( 'fw', '_fw_backend_options_localized', array(
|
380 |
+
'lazy_tabs' => fw()->theme->get_config('lazy_tabs')
|
381 |
+
) );
|
382 |
}
|
383 |
|
384 |
{
|
941 |
* @param int $post_id
|
942 |
*
|
943 |
* @return bool
|
944 |
+
* @deprecated since 2.5.0
|
945 |
*/
|
946 |
public function _sync_post_separate_meta( $post_id ) {
|
947 |
$post_type = get_post_type( $post_id );
|
1011 |
}
|
1012 |
|
1013 |
foreach ( $separate_meta_options as $meta_key => $option_value ) {
|
1014 |
+
fw_update_post_meta($post_id, $meta_key, $option_value );
|
1015 |
}
|
1016 |
|
1017 |
return true;
|
1194 |
continue;
|
1195 |
}
|
1196 |
|
1197 |
+
$values[ $option_id ] = (float) $values[ $option_id ];
|
1198 |
|
1199 |
continue 2;
|
1200 |
} while(false);
|
1290 |
fw_render_view( fw_get_framework_directory( '/views/backend-settings-form.php' ), array(
|
1291 |
'options' => $options,
|
1292 |
'values' => $values,
|
|
|
1293 |
'reset_input_name' => '_fw_reset_options',
|
1294 |
'ajax_submit' => $ajax_submit,
|
1295 |
'side_tabs' => $side_tabs,
|
1331 |
|
1332 |
$redirect_url = fw_current_url();
|
1333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1334 |
$data['redirect'] = $redirect_url;
|
1335 |
|
1336 |
return $data;
|
framework/core/components/theme.php
CHANGED
@@ -153,11 +153,14 @@ final class _FW_Component_Theme
|
|
153 |
try {
|
154 |
$config = FW_Cache::get($cache_key);
|
155 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
|
|
156 |
$config = array(
|
157 |
/** Toggle Theme Settings form ajax submit */
|
158 |
'settings_form_ajax_submit' => true,
|
159 |
/** Toggle Theme Settings side tabs */
|
160 |
'settings_form_side_tabs' => false,
|
|
|
|
|
161 |
);
|
162 |
|
163 |
if (file_exists(fw_get_template_customizations_directory('/theme/config.php'))) {
|
153 |
try {
|
154 |
$config = FW_Cache::get($cache_key);
|
155 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
156 |
+
// default values
|
157 |
$config = array(
|
158 |
/** Toggle Theme Settings form ajax submit */
|
159 |
'settings_form_ajax_submit' => true,
|
160 |
/** Toggle Theme Settings side tabs */
|
161 |
'settings_form_side_tabs' => false,
|
162 |
+
/** Toggle Tabs rendered all at once, or initialized only on open/display */
|
163 |
+
'lazy_tabs' => true,
|
164 |
);
|
165 |
|
166 |
if (file_exists(fw_get_template_customizations_directory('/theme/config.php'))) {
|
framework/core/extends/class-fw-option-type.php
CHANGED
@@ -317,4 +317,70 @@ abstract class FW_Option_Type
|
|
317 |
|
318 |
fw()->backend->_register_option_type($registration_access_key, $option_type_class);
|
319 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
}
|
317 |
|
318 |
fw()->backend->_register_option_type($registration_access_key, $option_type_class);
|
319 |
}
|
320 |
+
|
321 |
+
/**
|
322 |
+
* If the option is composed of more options (added by user) which values are stored in database
|
323 |
+
* the option must call fw_db_option_storage_load() for each sub-option
|
324 |
+
* because some of them may have configured the save to be done in separate place (post meta, wp option, etc.)
|
325 |
+
* @param string $id
|
326 |
+
* @param array $option
|
327 |
+
* @param mixed $value
|
328 |
+
* @param array $params
|
329 |
+
* @return mixed
|
330 |
+
* @since 2.5.0
|
331 |
+
*/
|
332 |
+
final public function storage_load($id, array $option, $value, array $params = array()) {
|
333 |
+
if ($this->get_type() === $option['type']) {
|
334 |
+
return $this->_storage_load($id, $option, $value, $params);
|
335 |
+
} else {
|
336 |
+
return $value;
|
337 |
+
}
|
338 |
+
}
|
339 |
+
|
340 |
+
/**
|
341 |
+
* @see storage_load
|
342 |
+
* @param string $id
|
343 |
+
* @param array $option
|
344 |
+
* @param mixed $value
|
345 |
+
* @param array $params
|
346 |
+
* @return mixed
|
347 |
+
* @since 2.5.0
|
348 |
+
* @internal
|
349 |
+
*/
|
350 |
+
protected function _storage_load($id, array $option, $value, array $params) {
|
351 |
+
return fw_db_option_storage_load($id, $option, $value, $params);
|
352 |
+
}
|
353 |
+
|
354 |
+
/**
|
355 |
+
* If the option is composed of more options (added by user) which values are stored in database
|
356 |
+
* the option must call fw_db_option_storage_save() for each sub-option
|
357 |
+
* because some of them may have configured the save to be done in separate place (post meta, wp option, etc.)
|
358 |
+
* @param string $id
|
359 |
+
* @param array $option
|
360 |
+
* @param mixed $value
|
361 |
+
* @param array $params
|
362 |
+
* @return mixed
|
363 |
+
* @since 2.5.0
|
364 |
+
*/
|
365 |
+
final public function storage_save($id, array $option, $value, array $params = array()) {
|
366 |
+
if ($this->get_type() === $option['type']) {
|
367 |
+
return $this->_storage_save($id, $option, $value, $params);
|
368 |
+
} else {
|
369 |
+
return $value;
|
370 |
+
}
|
371 |
+
}
|
372 |
+
|
373 |
+
/**
|
374 |
+
* @see storage_save
|
375 |
+
* @param string $id
|
376 |
+
* @param array $option
|
377 |
+
* @param mixed $value
|
378 |
+
* @param array $params
|
379 |
+
* @return mixed
|
380 |
+
* @since 2.5.0
|
381 |
+
* @internal
|
382 |
+
*/
|
383 |
+
protected function _storage_save($id, array $option, $value, array $params) {
|
384 |
+
return fw_db_option_storage_save($id, $option, $value, $params);
|
385 |
+
}
|
386 |
}
|
framework/core/extends/interface-fw-option-handler.php
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
<?php if (!defined('FW')) die('Forbidden');
|
2 |
|
|
|
|
|
|
|
3 |
interface FW_Option_Handler
|
4 |
{
|
5 |
function get_option_value($option_id, $option, $data = array());
|
1 |
<?php if (!defined('FW')) die('Forbidden');
|
2 |
|
3 |
+
/**
|
4 |
+
* @deprecated since 2.5.0
|
5 |
+
*/
|
6 |
interface FW_Option_Handler
|
7 |
{
|
8 |
function get_option_value($option_id, $option, $data = array());
|
framework/helpers/database.php
CHANGED
@@ -98,18 +98,103 @@
|
|
98 |
* 1. https://github.com/WordPress/WordPress/blob/2096b451c704715db3c4faf699a1184260deade9/wp-includes/query.php#L3573-L3583
|
99 |
* 2. https://github.com/WordPress/WordPress/blob/4a31dd6fe8b774d56f901a29e72dcf9523e9ce85/wp-includes/revision.php#L485-L528
|
100 |
*/
|
101 |
-
if (is_preview()) {
|
102 |
-
$
|
|
|
|
|
103 |
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
}
|
109 |
|
110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
-
|
|
|
113 |
}
|
114 |
|
115 |
/**
|
@@ -133,15 +218,68 @@
|
|
133 |
}
|
134 |
}
|
135 |
|
136 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
|
138 |
-
$sub_keys =
|
139 |
-
$base_key = array_shift($sub_keys);
|
140 |
|
141 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
|
143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
fw()->backend->_sync_post_separate_meta($post_id);
|
146 |
|
147 |
/**
|
@@ -158,7 +296,7 @@
|
|
158 |
* if $option_id is 'hello/world/7'
|
159 |
* this will be 'hello'
|
160 |
*/
|
161 |
-
$
|
162 |
/**
|
163 |
* The remaining sub-keys
|
164 |
*
|
@@ -170,7 +308,7 @@
|
|
170 |
* if $option_id is 'hello'
|
171 |
* $option_id_keys will be array()
|
172 |
*/
|
173 |
-
$sub_keys,
|
174 |
/**
|
175 |
* Old post option(s) value
|
176 |
* @since 2.3.3
|
@@ -500,3 +638,114 @@
|
|
500 |
);
|
501 |
}
|
502 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
* 1. https://github.com/WordPress/WordPress/blob/2096b451c704715db3c4faf699a1184260deade9/wp-includes/query.php#L3573-L3583
|
99 |
* 2. https://github.com/WordPress/WordPress/blob/4a31dd6fe8b774d56f901a29e72dcf9523e9ce85/wp-includes/revision.php#L485-L528
|
100 |
*/
|
101 |
+
if ( is_preview() && is_object($preview = wp_get_post_autosave($post->ID)) ) {
|
102 |
+
$post_id = $preview->ID;
|
103 |
+
}
|
104 |
+
}
|
105 |
|
106 |
+
$post_type = get_post_type(
|
107 |
+
($post_revision_id = wp_is_post_revision($post_id)) ? $post_revision_id : $post_id
|
108 |
+
);
|
109 |
+
|
110 |
+
/**
|
111 |
+
* Before fw_db_option_storage_load() feature
|
112 |
+
* there was possible to call fw_get_db_post_option() and it worked fine
|
113 |
+
* but after v2.5.0 it's not possible anymore (it creates an infinite recursion)
|
114 |
+
* but the Slider extension does that and maybe other extensions,
|
115 |
+
* so the solution is to check if it is recursion, to not load the options array (disable the storage feature)
|
116 |
+
*/
|
117 |
+
static $recursion = array();
|
118 |
+
|
119 |
+
if (!isset($recursion[$post_type])) {
|
120 |
+
$recursion[$post_type] = false;
|
121 |
+
}
|
122 |
+
|
123 |
+
if ($recursion[$post_type]) {
|
124 |
+
/**
|
125 |
+
* Allow known post types that sure don't have options with 'fw-storage' parameter
|
126 |
+
*/
|
127 |
+
if (!in_array($post_type, array('fw-slider'))) {
|
128 |
+
trigger_error(
|
129 |
+
'Infinite recursion detected in post type "'. $post_type .'" options caused by '. __FUNCTION__ .'()',
|
130 |
+
E_USER_WARNING
|
131 |
+
);
|
132 |
}
|
133 |
+
|
134 |
+
$options = array();
|
135 |
+
} else {
|
136 |
+
$recursion[$post_type] = true;
|
137 |
+
|
138 |
+
$options = fw_extract_only_options( // todo: cache this (by post type)
|
139 |
+
fw()->theme->get_post_options( $post_type )
|
140 |
+
);
|
141 |
+
|
142 |
+
$recursion[$post_type] = false;
|
143 |
}
|
144 |
|
145 |
+
if ($option_id) {
|
146 |
+
$option_id = explode('/', $option_id); // 'option_id/sub/keys'
|
147 |
+
$_option_id = array_shift($option_id); // 'option_id'
|
148 |
+
$sub_keys = implode('/', $option_id); // 'sub/keys'
|
149 |
+
$option_id = $_option_id;
|
150 |
+
unset($_option_id);
|
151 |
+
|
152 |
+
$value = FW_WP_Meta::get(
|
153 |
+
'post',
|
154 |
+
$post_id,
|
155 |
+
'fw_options/' . $option_id,
|
156 |
+
null,
|
157 |
+
$get_original_value
|
158 |
+
);
|
159 |
+
|
160 |
+
if (isset($options[$option_id])) {
|
161 |
+
$value = fw()->backend->option_type($options[$option_id]['type'])->storage_load(
|
162 |
+
$option_id,
|
163 |
+
$options[$option_id],
|
164 |
+
$value,
|
165 |
+
array( 'post-id' => $post_id, )
|
166 |
+
);
|
167 |
+
}
|
168 |
+
|
169 |
+
if ($sub_keys) {
|
170 |
+
return fw_akg($sub_keys, $value, $default_value);
|
171 |
+
} else {
|
172 |
+
return is_null($value) ? $default_value : $value;
|
173 |
+
}
|
174 |
+
} else {
|
175 |
+
$value = FW_WP_Meta::get(
|
176 |
+
'post',
|
177 |
+
$post_id,
|
178 |
+
'fw_options',
|
179 |
+
$default_value,
|
180 |
+
$get_original_value
|
181 |
+
);
|
182 |
+
|
183 |
+
if (!is_array($value)) {
|
184 |
+
$value = array();
|
185 |
+
}
|
186 |
+
|
187 |
+
foreach ($options as $_option_id => $_option) {
|
188 |
+
$value[$_option_id] = fw()->backend->option_type($_option['type'])->storage_load(
|
189 |
+
$_option_id,
|
190 |
+
$_option,
|
191 |
+
isset($value[$_option_id]) ? $value[$_option_id] : null,
|
192 |
+
array( 'post-id' => $post_id, )
|
193 |
+
);
|
194 |
+
}
|
195 |
|
196 |
+
return $value;
|
197 |
+
}
|
198 |
}
|
199 |
|
200 |
/**
|
218 |
}
|
219 |
}
|
220 |
|
221 |
+
$options = fw_extract_only_options( // todo: cache this (by post type)
|
222 |
+
fw()->theme->get_post_options(
|
223 |
+
get_post_type(
|
224 |
+
($post_revision_id = wp_is_post_revision($post_id)) ? $post_revision_id : $post_id
|
225 |
+
)
|
226 |
+
)
|
227 |
+
);
|
228 |
|
229 |
+
$sub_keys = null;
|
|
|
230 |
|
231 |
+
if ($option_id) {
|
232 |
+
$option_id = explode('/', $option_id); // 'option_id/sub/keys'
|
233 |
+
$_option_id = array_shift($option_id); // 'option_id'
|
234 |
+
$sub_keys = implode('/', $option_id); // 'sub/keys'
|
235 |
+
$option_id = $_option_id;
|
236 |
+
unset($_option_id);
|
237 |
+
|
238 |
+
$old_value = fw_get_db_post_option($post_id, $option_id);
|
239 |
+
|
240 |
+
if ($sub_keys) { // update sub_key in old_value and use the entire value
|
241 |
+
$new_value = $old_value;
|
242 |
+
fw_aks($sub_keys, $value, $new_value);
|
243 |
+
$value = $new_value;
|
244 |
+
unset($new_value);
|
245 |
|
246 |
+
$old_value = fw_akg($sub_keys, $old_value);
|
247 |
+
}
|
248 |
+
|
249 |
+
if (isset($options[$option_id])) {
|
250 |
+
$value = fw()->backend->option_type($options[$option_id]['type'])->storage_save(
|
251 |
+
$option_id,
|
252 |
+
$options[$option_id],
|
253 |
+
$value,
|
254 |
+
array( 'post-id' => $post_id, )
|
255 |
+
);
|
256 |
+
}
|
257 |
|
258 |
+
FW_WP_Meta::set( 'post', $post_id, 'fw_options/'. $option_id, $value );
|
259 |
+
} else {
|
260 |
+
$old_value = fw_get_db_post_option($post_id);
|
261 |
+
|
262 |
+
if (!is_array($value)) {
|
263 |
+
$value = array();
|
264 |
+
}
|
265 |
+
|
266 |
+
foreach ($value as $_option_id => $_option_value) {
|
267 |
+
if (isset($options[$_option_id])) {
|
268 |
+
$value[$_option_id] = fw()->backend->option_type($options[$_option_id]['type'])->storage_save(
|
269 |
+
$_option_id,
|
270 |
+
$options[$_option_id],
|
271 |
+
$_option_value,
|
272 |
+
array( 'post-id' => $post_id, )
|
273 |
+
);
|
274 |
+
}
|
275 |
+
}
|
276 |
+
|
277 |
+
FW_WP_Meta::set( 'post', $post_id, 'fw_options', $value );
|
278 |
+
}
|
279 |
+
|
280 |
+
/**
|
281 |
+
* @deprecated
|
282 |
+
*/
|
283 |
fw()->backend->_sync_post_separate_meta($post_id);
|
284 |
|
285 |
/**
|
296 |
* if $option_id is 'hello/world/7'
|
297 |
* this will be 'hello'
|
298 |
*/
|
299 |
+
$option_id,
|
300 |
/**
|
301 |
* The remaining sub-keys
|
302 |
*
|
308 |
* if $option_id is 'hello'
|
309 |
* $option_id_keys will be array()
|
310 |
*/
|
311 |
+
explode('/', $sub_keys),
|
312 |
/**
|
313 |
* Old post option(s) value
|
314 |
* @since 2.3.3
|
638 |
);
|
639 |
}
|
640 |
}
|
641 |
+
|
642 |
+
{
|
643 |
+
/**
|
644 |
+
* @param string $id
|
645 |
+
* @param array $option
|
646 |
+
* @param mixed $value
|
647 |
+
* @param array $params
|
648 |
+
*
|
649 |
+
* @return mixed
|
650 |
+
*
|
651 |
+
* @since 2.5.0
|
652 |
+
*/
|
653 |
+
function fw_db_option_storage_save($id, array $option, $value, array $params = array()) {
|
654 |
+
if (
|
655 |
+
!empty($option['fw-storage'])
|
656 |
+
&&
|
657 |
+
($storage = is_array($option['fw-storage'])
|
658 |
+
? $option['fw-storage']
|
659 |
+
: array('type' => $option['fw-storage'])
|
660 |
+
)
|
661 |
+
&&
|
662 |
+
!empty($storage['type'])
|
663 |
+
&&
|
664 |
+
($storage_type = fw_db_option_storage_type($storage['type']))
|
665 |
+
) {
|
666 |
+
$option['fw-storage'] = $storage;
|
667 |
+
} else {
|
668 |
+
return $value;
|
669 |
+
}
|
670 |
+
|
671 |
+
/** @var FW_Option_Storage_Type $storage_type */
|
672 |
+
|
673 |
+
return $storage_type->save($id, $option, $value, $params);
|
674 |
+
}
|
675 |
+
|
676 |
+
/**
|
677 |
+
* @param string $id
|
678 |
+
* @param array $option
|
679 |
+
* @param mixed $value
|
680 |
+
* @param array $params
|
681 |
+
*
|
682 |
+
* @return mixed
|
683 |
+
*
|
684 |
+
* @since 2.5.0
|
685 |
+
*/
|
686 |
+
function fw_db_option_storage_load($id, array $option, $value, array $params = array()) {
|
687 |
+
if (
|
688 |
+
!empty($option['fw-storage'])
|
689 |
+
&&
|
690 |
+
($storage = is_array($option['fw-storage'])
|
691 |
+
? $option['fw-storage']
|
692 |
+
: array('type' => $option['fw-storage'])
|
693 |
+
)
|
694 |
+
&&
|
695 |
+
!empty($storage['type'])
|
696 |
+
&&
|
697 |
+
($storage_type = fw_db_option_storage_type($storage['type']))
|
698 |
+
) {
|
699 |
+
$option['fw-storage'] = $storage;
|
700 |
+
} else {
|
701 |
+
return $value;
|
702 |
+
}
|
703 |
+
|
704 |
+
/** @var FW_Option_Storage_Type $storage_type */
|
705 |
+
|
706 |
+
return $storage_type->load($id, $option, $value, $params);
|
707 |
+
}
|
708 |
+
|
709 |
+
/**
|
710 |
+
* @param null|string $type
|
711 |
+
* @return FW_Option_Storage_Type|FW_Option_Storage_Type[]|null
|
712 |
+
* @since 2.5.0
|
713 |
+
*/
|
714 |
+
function fw_db_option_storage_type($type = null) {
|
715 |
+
static $types = null;
|
716 |
+
|
717 |
+
if (is_null($types)) {
|
718 |
+
$dir = fw_get_framework_directory('/includes/option-storage');
|
719 |
+
|
720 |
+
if (!class_exists('FW_Option_Storage_Type')) {
|
721 |
+
require_once $dir .'/class-fw-option-storage-type.php';
|
722 |
+
}
|
723 |
+
if (!class_exists('_FW_Option_Storage_Type_Register')) {
|
724 |
+
require_once $dir .'/class--fw-option-storage-type-register.php';
|
725 |
+
}
|
726 |
+
|
727 |
+
$access_key = new FW_Access_Key('fw:option-storage-register');
|
728 |
+
$register = new _FW_Option_Storage_Type_Register($access_key->get_key());
|
729 |
+
|
730 |
+
{
|
731 |
+
require_once $dir .'/type/class-fw-option-storage-type-post-meta.php';
|
732 |
+
$register->register(new FW_Option_Storage_Type_Post_Meta());
|
733 |
+
|
734 |
+
require_once $dir .'/type/class-fw-option-storage-type-wp-option.php';
|
735 |
+
$register->register(new FW_Option_Storage_Type_WP_Option());
|
736 |
+
}
|
737 |
+
|
738 |
+
do_action('fw:option-storage-types:register', $register);
|
739 |
+
|
740 |
+
$types = $register->_get_types($access_key);
|
741 |
+
}
|
742 |
+
|
743 |
+
if (empty($type)) {
|
744 |
+
return $types;
|
745 |
+
} elseif (isset($types[$type])) {
|
746 |
+
return $types[$type];
|
747 |
+
} else {
|
748 |
+
return null;
|
749 |
+
}
|
750 |
+
}
|
751 |
+
}
|
framework/helpers/general.php
CHANGED
@@ -1010,9 +1010,21 @@ function fw_get_google_fonts() {
|
|
1010 |
try {
|
1011 |
return FW_Cache::get($cache_key);
|
1012 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
1013 |
-
$
|
1014 |
-
|
1015 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1016 |
|
1017 |
FW_Cache::set($cache_key, $fonts);
|
1018 |
|
@@ -1021,15 +1033,16 @@ function fw_get_google_fonts() {
|
|
1021 |
}
|
1022 |
|
1023 |
/**
|
1024 |
-
* @return
|
1025 |
*/
|
1026 |
function fw_get_google_fonts_v2() {
|
1027 |
$saved_data = get_option( 'fw_google_fonts', false );
|
|
|
1028 |
|
1029 |
if (
|
1030 |
false === $saved_data
|
1031 |
||
|
1032 |
-
(
|
1033 |
) {
|
1034 |
$response = wp_remote_get( apply_filters( 'fw_googleapis_webfonts_url', 'http://google-webfonts-cache.unyson.io/v1/webfonts' ) );
|
1035 |
$body = wp_remote_retrieve_body( $response );
|
@@ -1046,10 +1059,14 @@ function fw_get_google_fonts_v2() {
|
|
1046 |
|
1047 |
return $body;
|
1048 |
} else {
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
|
|
|
|
|
|
|
|
1053 |
}
|
1054 |
}
|
1055 |
|
1010 |
try {
|
1011 |
return FW_Cache::get($cache_key);
|
1012 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
1013 |
+
$g_fonts = json_decode(fw_get_google_fonts_v2(), true);
|
1014 |
+
$old_fonts = include(dirname(__FILE__) .'/fw-google-fonts.json.php');
|
1015 |
+
$fonts = array();
|
1016 |
+
|
1017 |
+
foreach ( $g_fonts['items'] as $font ) {
|
1018 |
+
$fonts[ $font['family'] ] = array(
|
1019 |
+
'family' => $font['family'],
|
1020 |
+
'variants' => $font['variants'],
|
1021 |
+
'position' => isset($old_fonts[$font['family']])
|
1022 |
+
? $old_fonts[$font['family']]['position']
|
1023 |
+
: 99999
|
1024 |
+
);
|
1025 |
+
}
|
1026 |
+
|
1027 |
+
$fonts = apply_filters('fw_google_fonts', $fonts);
|
1028 |
|
1029 |
FW_Cache::set($cache_key, $fonts);
|
1030 |
|
1033 |
}
|
1034 |
|
1035 |
/**
|
1036 |
+
* @return string JSON encoded array with Google fonts
|
1037 |
*/
|
1038 |
function fw_get_google_fonts_v2() {
|
1039 |
$saved_data = get_option( 'fw_google_fonts', false );
|
1040 |
+
$ttl = 7 * DAY_IN_SECONDS;
|
1041 |
|
1042 |
if (
|
1043 |
false === $saved_data
|
1044 |
||
|
1045 |
+
( $saved_data['last_update'] + $ttl < time() )
|
1046 |
) {
|
1047 |
$response = wp_remote_get( apply_filters( 'fw_googleapis_webfonts_url', 'http://google-webfonts-cache.unyson.io/v1/webfonts' ) );
|
1048 |
$body = wp_remote_retrieve_body( $response );
|
1059 |
|
1060 |
return $body;
|
1061 |
} else {
|
1062 |
+
if ( empty( $saved_data['fonts'] ) ) {
|
1063 |
+
$saved_data['fonts'] = json_encode( array( 'items' => array() ) );
|
1064 |
+
}
|
1065 |
+
|
1066 |
+
update_option( 'fw_google_fonts', array(
|
1067 |
+
'last_update' => time() - $ttl + MINUTE_IN_SECONDS,
|
1068 |
+
'fonts' => $saved_data['fonts']
|
1069 |
+
), false );
|
1070 |
}
|
1071 |
}
|
1072 |
|
framework/helpers/meta.php
CHANGED
@@ -95,9 +95,8 @@ function fw_add_metadata( $meta_type, $object_id, $meta_key, $meta_value, $uniqu
|
|
95 |
$result = $wpdb->insert( $table, array(
|
96 |
$column => $object_id,
|
97 |
'meta_key' => $meta_key,
|
98 |
-
'meta_value' => $meta_value
|
99 |
) );
|
100 |
-
|
101 |
if ( ! $result ) {
|
102 |
return false;
|
103 |
}
|
@@ -221,14 +220,15 @@ function fw_update_metadata( $meta_type, $object_id, $meta_key, $meta_value, $pr
|
|
221 |
*/
|
222 |
do_action( "update_{$meta_type}_meta", $meta_id, $object_id, $meta_key, $_meta_value );
|
223 |
|
224 |
-
if ( 'post' == $meta_type )
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
|
|
232 |
do_action( 'update_postmeta', $meta_id, $object_id, $meta_key, $meta_value );
|
233 |
}
|
234 |
|
@@ -484,10 +484,10 @@ function fw_delete_user_meta( $user_id, $meta_key, $meta_value = '' ) {
|
|
484 |
* @return int|bool Meta ID on success, false on failure.
|
485 |
*/
|
486 |
function fw_add_post_meta( $post_id, $meta_key, $meta_value, $unique = false ) {
|
487 |
-
// Make sure meta is added to the post, not a revision.
|
488 |
-
if ( $the_post = wp_is_post_revision( $post_id ) ) {
|
489 |
$post_id = $the_post;
|
490 |
-
}
|
491 |
|
492 |
return fw_add_metadata( 'post', $post_id, $meta_key, $meta_value, $unique );
|
493 |
}
|
@@ -510,10 +510,10 @@ function fw_add_post_meta( $post_id, $meta_key, $meta_value, $unique = false ) {
|
|
510 |
* false on failure.
|
511 |
*/
|
512 |
function fw_update_post_meta( $post_id, $meta_key, $meta_value, $prev_value = '' ) {
|
513 |
-
// Make sure meta is added to the post, not a revision.
|
514 |
-
if ( $the_post = wp_is_post_revision( $post_id ) ) {
|
515 |
$post_id = $the_post;
|
516 |
-
}
|
517 |
|
518 |
return fw_update_metadata( 'post', $post_id, $meta_key, $meta_value, $prev_value );
|
519 |
}
|
@@ -533,10 +533,10 @@ function fw_update_post_meta( $post_id, $meta_key, $meta_value, $prev_value = ''
|
|
533 |
* @return bool True on success, false on failure.
|
534 |
*/
|
535 |
function fw_delete_post_meta( $post_id, $meta_key, $meta_value = '' ) {
|
536 |
-
// Make sure meta is added to the post, not a revision.
|
537 |
-
if ( $the_post = wp_is_post_revision( $post_id ) ) {
|
538 |
$post_id = $the_post;
|
539 |
-
}
|
540 |
|
541 |
return delete_metadata( 'post', $post_id, $meta_key, $meta_value );
|
542 |
}
|
95 |
$result = $wpdb->insert( $table, array(
|
96 |
$column => $object_id,
|
97 |
'meta_key' => $meta_key,
|
98 |
+
'meta_value' => $meta_value,
|
99 |
) );
|
|
|
100 |
if ( ! $result ) {
|
101 |
return false;
|
102 |
}
|
220 |
*/
|
221 |
do_action( "update_{$meta_type}_meta", $meta_id, $object_id, $meta_key, $_meta_value );
|
222 |
|
223 |
+
if ( 'post' == $meta_type ) {
|
224 |
+
/**
|
225 |
+
* Fires immediately before updating a post's metadata.
|
226 |
+
*
|
227 |
+
* @param int $meta_id ID of metadata entry to update.
|
228 |
+
* @param int $object_id Object ID.
|
229 |
+
* @param string $meta_key Meta key.
|
230 |
+
* @param mixed $meta_value Meta value.
|
231 |
+
*/
|
232 |
do_action( 'update_postmeta', $meta_id, $object_id, $meta_key, $meta_value );
|
233 |
}
|
234 |
|
484 |
* @return int|bool Meta ID on success, false on failure.
|
485 |
*/
|
486 |
function fw_add_post_meta( $post_id, $meta_key, $meta_value, $unique = false ) {
|
487 |
+
// Make sure meta is added to the post, not a revision. // fixme: why this is needed?
|
488 |
+
/*if ( $the_post = wp_is_post_revision( $post_id ) ) {
|
489 |
$post_id = $the_post;
|
490 |
+
}*/
|
491 |
|
492 |
return fw_add_metadata( 'post', $post_id, $meta_key, $meta_value, $unique );
|
493 |
}
|
510 |
* false on failure.
|
511 |
*/
|
512 |
function fw_update_post_meta( $post_id, $meta_key, $meta_value, $prev_value = '' ) {
|
513 |
+
// Make sure meta is added to the post, not a revision. fixme: why this is needed?
|
514 |
+
/*if ( $the_post = wp_is_post_revision( $post_id ) ) {
|
515 |
$post_id = $the_post;
|
516 |
+
}*/
|
517 |
|
518 |
return fw_update_metadata( 'post', $post_id, $meta_key, $meta_value, $prev_value );
|
519 |
}
|
533 |
* @return bool True on success, false on failure.
|
534 |
*/
|
535 |
function fw_delete_post_meta( $post_id, $meta_key, $meta_value = '' ) {
|
536 |
+
// Make sure meta is added to the post, not a revision. // fixme: why this is needed?
|
537 |
+
/*if ( $the_post = wp_is_post_revision( $post_id ) ) {
|
538 |
$post_id = $the_post;
|
539 |
+
}*/
|
540 |
|
541 |
return delete_metadata( 'post', $post_id, $meta_key, $meta_value );
|
542 |
}
|
framework/includes/container-types/tab/view.php
CHANGED
@@ -4,6 +4,8 @@
|
|
4 |
* @var array $values
|
5 |
* @var array $options_data
|
6 |
*/
|
|
|
|
|
7 |
?>
|
8 |
<div class="fw-options-tabs-wrapper">
|
9 |
<div class="fw-options-tabs-list">
|
@@ -19,18 +21,26 @@
|
|
19 |
<?php
|
20 |
foreach ($tabs as $tab_id => &$tab):
|
21 |
// prepare attributes
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
31 |
}
|
32 |
-
|
33 |
-
|
|
|
34 |
unset($tabs[$tab_id]); // free memory after printed and not needed anymore
|
35 |
endforeach;
|
36 |
unset($tab);
|
4 |
* @var array $values
|
5 |
* @var array $options_data
|
6 |
*/
|
7 |
+
|
8 |
+
$lazy_tabs = fw()->theme->get_config('lazy_tabs');
|
9 |
?>
|
10 |
<div class="fw-options-tabs-wrapper">
|
11 |
<div class="fw-options-tabs-list">
|
21 |
<?php
|
22 |
foreach ($tabs as $tab_id => &$tab):
|
23 |
// prepare attributes
|
24 |
+
{
|
25 |
+
$attr = isset($tab['attr']) ? $tab['attr'] : array();
|
26 |
+
|
27 |
+
$attr['id'] = 'fw-options-tab-'. esc_attr($tab_id);
|
28 |
|
29 |
+
if (!isset($attr['class'])) {
|
30 |
+
$attr['class'] = 'fw-options-tab';
|
31 |
+
} else {
|
32 |
+
$attr['class'] = 'fw-options-tab '. $attr['class'];
|
33 |
+
}
|
34 |
|
35 |
+
if ($lazy_tabs) {
|
36 |
+
$attr['data-fw-tab-html'] = fw()->backend->render_options(
|
37 |
+
$tab['options'], $values, $options_data
|
38 |
+
);
|
39 |
+
}
|
40 |
}
|
41 |
+
?><div <?php echo fw_attr_to_html($attr) ?>><?php
|
42 |
+
echo $lazy_tabs ? '' : fw()->backend->render_options($tab['options'], $values, $options_data);
|
43 |
+
?></div><?php
|
44 |
unset($tabs[$tab_id]); // free memory after printed and not needed anymore
|
45 |
endforeach;
|
46 |
unset($tab);
|
framework/includes/hooks.php
CHANGED
@@ -103,4 +103,4 @@
|
|
103 |
function _fw_filter_github_api_url($url) {
|
104 |
return 'http://github-api-cache.unyson.io';
|
105 |
}
|
106 |
-
add_filter('fw_github_api_url', '_fw_filter_github_api_url');
|
103 |
function _fw_filter_github_api_url($url) {
|
104 |
return 'http://github-api-cache.unyson.io';
|
105 |
}
|
106 |
+
add_filter('fw_github_api_url', '_fw_filter_github_api_url');
|
framework/includes/option-storage/class--fw-option-storage-type-register.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if (!defined('FW')) die('Forbidden');
|
2 |
+
|
3 |
+
/**
|
4 |
+
* @internal
|
5 |
+
*/
|
6 |
+
class _FW_Option_Storage_Type_Register extends FW_Type_Register {
|
7 |
+
protected function validate_type(FW_Type $type) {
|
8 |
+
return $type instanceof FW_Option_Storage_Type;
|
9 |
+
}
|
10 |
+
}
|
framework/includes/option-storage/class-fw-option-storage-type.php
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if (!defined('FW')) die('Forbidden');
|
2 |
+
|
3 |
+
abstract class FW_Option_Storage_Type extends FW_Type {
|
4 |
+
/**
|
5 |
+
* Save the value in another place and return a value that will be save in regular place (same as before this feature)
|
6 |
+
*
|
7 |
+
* @param string $id
|
8 |
+
* @param array $option
|
9 |
+
* @param mixed $value Current option (regular) value
|
10 |
+
* @param array $params
|
11 |
+
*
|
12 |
+
* @return mixed
|
13 |
+
*
|
14 |
+
* - if the save is fail
|
15 |
+
*
|
16 |
+
* <?php
|
17 |
+
* return $value;
|
18 |
+
*
|
19 |
+
* - if the save is success, return a valid default/empty value from that option type,
|
20 |
+
* so if the separately saved value is lost, will be used empty but valid $value
|
21 |
+
* and there will be no notices/errors in scripts that are using it and expects a specific structure/format
|
22 |
+
*
|
23 |
+
* <?php
|
24 |
+
* return return fw()->backend->option_type($option['type'])->get_value_from_input(array('type' => $option['type']), null);
|
25 |
+
*/
|
26 |
+
abstract protected function _save($id, array $option, $value, array $params);
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Load the value saved in custom place
|
30 |
+
*
|
31 |
+
* @param string $id
|
32 |
+
* @param array $option
|
33 |
+
* @param mixed $value Current option (regular) value
|
34 |
+
* @param array $params
|
35 |
+
*
|
36 |
+
* @return mixed
|
37 |
+
*/
|
38 |
+
abstract protected function _load($id, array $option, $value, array $params);
|
39 |
+
|
40 |
+
/**
|
41 |
+
* @param string $id
|
42 |
+
* @param array $option
|
43 |
+
* @param mixed $value
|
44 |
+
* @param array $params
|
45 |
+
*
|
46 |
+
* @return mixed
|
47 |
+
*/
|
48 |
+
final public function save($id, array $option, $value, array $params = array()) {
|
49 |
+
if (
|
50 |
+
!empty($option['fw-storage'])
|
51 |
+
&&
|
52 |
+
($storage = is_array($option['fw-storage'])
|
53 |
+
? $option['fw-storage']
|
54 |
+
: array('type' => $option['fw-storage'])
|
55 |
+
)
|
56 |
+
&&
|
57 |
+
!empty($storage['type'])
|
58 |
+
&&
|
59 |
+
$storage['type'] === $this->get_type()
|
60 |
+
) {
|
61 |
+
$option['fw-storage'] = $storage;
|
62 |
+
} else {
|
63 |
+
return $value;
|
64 |
+
}
|
65 |
+
|
66 |
+
return $this->_save($id, $option, $value, $params);
|
67 |
+
}
|
68 |
+
|
69 |
+
/**
|
70 |
+
* @param string $id
|
71 |
+
* @param array $option
|
72 |
+
* @param mixed $value
|
73 |
+
* @param array $params
|
74 |
+
*
|
75 |
+
* @return mixed
|
76 |
+
*/
|
77 |
+
final public function load($id, array $option, $value, array $params = array()) {
|
78 |
+
if (
|
79 |
+
!empty($option['fw-storage'])
|
80 |
+
&&
|
81 |
+
($storage = is_array($option['fw-storage'])
|
82 |
+
? $option['fw-storage']
|
83 |
+
: array('type' => $option['fw-storage'])
|
84 |
+
)
|
85 |
+
&&
|
86 |
+
!empty($storage['type'])
|
87 |
+
&&
|
88 |
+
$storage['type'] === $this->get_type()
|
89 |
+
) {
|
90 |
+
$option['fw-storage'] = $storage;
|
91 |
+
} else {
|
92 |
+
return $value;
|
93 |
+
}
|
94 |
+
|
95 |
+
return $this->_load($id, $option, $value, $params);
|
96 |
+
}
|
97 |
+
}
|
framework/includes/option-storage/type/class-fw-option-storage-type-post-meta.php
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if (!defined('FW')) die('Forbidden');
|
2 |
+
|
3 |
+
/**
|
4 |
+
* array(
|
5 |
+
* 'post-id' => 3 // optional // hardcoded post id
|
6 |
+
* 'post-meta' => 'hello_world' // optional (default: 'fw:opt:{option_id}')
|
7 |
+
* )
|
8 |
+
*/
|
9 |
+
class FW_Option_Storage_Type_Post_Meta extends FW_Option_Storage_Type {
|
10 |
+
public function get_type() {
|
11 |
+
return 'post-meta';
|
12 |
+
}
|
13 |
+
|
14 |
+
/**
|
15 |
+
* {@inheritdoc}
|
16 |
+
*/
|
17 |
+
protected function _save( $id, array $option, $value, array $params ) {
|
18 |
+
if ($post_id = $this->get_post_id($option, $params)) {
|
19 |
+
$meta_id = $this->get_meta_id($id, $option, $params);
|
20 |
+
|
21 |
+
fw_update_post_meta($post_id, $meta_id, $value);
|
22 |
+
|
23 |
+
return fw()->backend->option_type($option['type'])->get_value_from_input(
|
24 |
+
array('type' => $option['type']), null
|
25 |
+
);
|
26 |
+
} else {
|
27 |
+
return $value;
|
28 |
+
}
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* {@inheritdoc}
|
33 |
+
*/
|
34 |
+
protected function _load( $id, array $option, $value, array $params ) {
|
35 |
+
if ($post_id = $this->get_post_id($option, $params)) {
|
36 |
+
$meta_id = $this->get_meta_id($id, $option, $params);
|
37 |
+
|
38 |
+
$meta_value = get_post_meta($post_id, $meta_id, true);
|
39 |
+
|
40 |
+
if ($meta_value === '' && is_array($value)) {
|
41 |
+
return $value;
|
42 |
+
} else {
|
43 |
+
return $meta_value;
|
44 |
+
}
|
45 |
+
} else {
|
46 |
+
return $value;
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
private function get_post_id($option, $params) {
|
51 |
+
$post_id = null;
|
52 |
+
|
53 |
+
if (!empty($option['fw-storage']['post-id'])) {
|
54 |
+
$post_id = $option['fw-storage']['post-id'];
|
55 |
+
} elseif (!empty($params['post-id'])) {
|
56 |
+
$post_id = $params['post-id'];
|
57 |
+
}
|
58 |
+
|
59 |
+
$post_id = intval($post_id);
|
60 |
+
|
61 |
+
if ($post_id > 0) {
|
62 |
+
return $post_id;
|
63 |
+
} else {
|
64 |
+
return false;
|
65 |
+
}
|
66 |
+
}
|
67 |
+
|
68 |
+
private function get_meta_id($id, $option, $params) {
|
69 |
+
return empty($option['fw-storage']['post-meta'])
|
70 |
+
? 'fw:opt:'. $id
|
71 |
+
: $option['fw-storage']['post-meta'];
|
72 |
+
}
|
73 |
+
}
|
framework/includes/option-storage/type/class-fw-option-storage-type-wp-option.php
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if (!defined('FW')) die('Forbidden');
|
2 |
+
|
3 |
+
/**
|
4 |
+
* array(
|
5 |
+
* 'wp-option' => 'custom_wp_option_name'
|
6 |
+
* )
|
7 |
+
*/
|
8 |
+
class FW_Option_Storage_Type_WP_Option extends FW_Option_Storage_Type {
|
9 |
+
public function get_type() {
|
10 |
+
return 'wp-option';
|
11 |
+
}
|
12 |
+
|
13 |
+
/**
|
14 |
+
* {@inheritdoc}
|
15 |
+
*/
|
16 |
+
protected function _save( $id, array $option, $value, array $params ) {
|
17 |
+
if ($wp_option = $this->get_wp_option($option, $params)) {
|
18 |
+
update_option($wp_option, $value, false);
|
19 |
+
|
20 |
+
return fw()->backend->option_type($option['type'])->get_value_from_input(
|
21 |
+
array('type' => $option['type']), null
|
22 |
+
);
|
23 |
+
} else {
|
24 |
+
return $value;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* {@inheritdoc}
|
30 |
+
*/
|
31 |
+
protected function _load( $id, array $option, $value, array $params ) {
|
32 |
+
if ($wp_option = $this->get_wp_option($option, $params)) {
|
33 |
+
return get_option( $wp_option, $value );
|
34 |
+
} else {
|
35 |
+
return $value;
|
36 |
+
}
|
37 |
+
}
|
38 |
+
|
39 |
+
private function get_wp_option($option, $params) {
|
40 |
+
$wp_option = null;
|
41 |
+
|
42 |
+
if (!empty($option['fw-storage']['wp-option'])) {
|
43 |
+
$wp_option = $option['fw-storage']['wp-option'];
|
44 |
+
} elseif (!empty($params['wp-option'])) {
|
45 |
+
$wp_option = $params['wp-option'];
|
46 |
+
}
|
47 |
+
|
48 |
+
if ($wp_option) {
|
49 |
+
return $wp_option;
|
50 |
+
} else {
|
51 |
+
return false;
|
52 |
+
}
|
53 |
+
}
|
54 |
+
}
|
framework/includes/option-types/addable-box/class-fw-option-type-addable-box.php
CHANGED
@@ -191,7 +191,21 @@ class FW_Option_Type_Addable_Box extends FW_Option_Type
|
|
191 |
* to not confuse the user that if changing the order will affect something.
|
192 |
*/
|
193 |
'sortable' => true,
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
);
|
195 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
}
|
197 |
FW_Option_Type::register('FW_Option_Type_Addable_Box');
|
191 |
* to not confuse the user that if changing the order will affect something.
|
192 |
*/
|
193 |
'sortable' => true,
|
194 |
+
/**
|
195 |
+
* Width type. Supported types:
|
196 |
+
* - fixed
|
197 |
+
* - full
|
198 |
+
*/
|
199 |
+
'width' => 'fixed',
|
200 |
);
|
201 |
}
|
202 |
+
|
203 |
+
/**
|
204 |
+
* {@inheritdoc}
|
205 |
+
*/
|
206 |
+
public function _get_backend_width_type()
|
207 |
+
{
|
208 |
+
return 'auto';
|
209 |
+
}
|
210 |
}
|
211 |
FW_Option_Type::register('FW_Option_Type_Addable_Box');
|
framework/includes/option-types/addable-box/static/css/styles.css
CHANGED
@@ -1,3 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.fw-option-type-addable-box > .fw-option-boxes.ui-sortable > .fw-option-box > .fw-postbox {
|
2 |
min-width: 100%;
|
3 |
}
|
1 |
+
.fw-option-type-addable-box {
|
2 |
+
max-width: 100%;
|
3 |
+
}
|
4 |
+
|
5 |
+
.fw-option-type-addable-box.has-boxes.width-type-full {
|
6 |
+
width: 9999px;
|
7 |
+
}
|
8 |
+
|
9 |
+
.fw-option-type-addable-box.has-boxes.width-type-fixed {
|
10 |
+
width: 428px; /* same as .fw-backend-option-fixed-width */
|
11 |
+
}
|
12 |
+
|
13 |
.fw-option-type-addable-box > .fw-option-boxes.ui-sortable > .fw-option-box > .fw-postbox {
|
14 |
min-width: 100%;
|
15 |
}
|
framework/includes/option-types/addable-box/static/js/scripts.js
CHANGED
@@ -77,6 +77,7 @@ jQuery(document).ready(function ($) {
|
|
77 |
$control.closest('.fw-option-box').remove();
|
78 |
|
79 |
methods.checkLimit($option);
|
|
|
80 |
break;
|
81 |
default:
|
82 |
// custom control. trigger event for others to handle this
|
@@ -101,6 +102,12 @@ jQuery(document).ready(function ($) {
|
|
101 |
} else {
|
102 |
$button.removeClass('fw-hidden');
|
103 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
105 |
};
|
106 |
|
@@ -258,6 +265,7 @@ jQuery(document).ready(function ($) {
|
|
258 |
$option.trigger(methods.makeEventName('box:init'), {box: box});
|
259 |
|
260 |
methods.checkLimit($option);
|
|
|
261 |
});
|
262 |
|
263 |
// close postboxes and attach event listener
|
77 |
$control.closest('.fw-option-box').remove();
|
78 |
|
79 |
methods.checkLimit($option);
|
80 |
+
methods.updateHasBoxesClass($option);
|
81 |
break;
|
82 |
default:
|
83 |
// custom control. trigger event for others to handle this
|
102 |
} else {
|
103 |
$button.removeClass('fw-hidden');
|
104 |
}
|
105 |
+
},
|
106 |
+
updateHasBoxesClass: function($option) {
|
107 |
+
$option[
|
108 |
+
$option.find('> .fw-option-boxes > .fw-option-box:first').length
|
109 |
+
? 'addClass' : 'removeClass'
|
110 |
+
]('has-boxes');
|
111 |
}
|
112 |
};
|
113 |
|
265 |
$option.trigger(methods.makeEventName('box:init'), {box: box});
|
266 |
|
267 |
methods.checkLimit($option);
|
268 |
+
methods.updateHasBoxesClass($option);
|
269 |
});
|
270 |
|
271 |
// close postboxes and attach event listener
|
framework/includes/option-types/addable-box/view.php
CHANGED
@@ -25,8 +25,14 @@ unset($attr['value']);
|
|
25 |
if ($option['sortable']) {
|
26 |
$attr['class'] .= ' is-sortable';
|
27 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
?>
|
29 |
-
<div <?php echo fw_attr_to_html($attr) ?>>
|
30 |
<?php $i = 0; ?>
|
31 |
<div class="fw-option-boxes metabox-holder">
|
32 |
<?php foreach ($data['value'] as $value_index => &$values): ?>
|
25 |
if ($option['sortable']) {
|
26 |
$attr['class'] .= ' is-sortable';
|
27 |
}
|
28 |
+
|
29 |
+
$attr['class'] .= ' width-type-'. $option['width'];
|
30 |
+
|
31 |
+
if (!empty($data['value'])) {
|
32 |
+
$attr['class'] .= ' has-boxes';
|
33 |
+
}
|
34 |
?>
|
35 |
+
<div <?php echo fw_attr_to_html($attr); ?>>
|
36 |
<?php $i = 0; ?>
|
37 |
<div class="fw-option-boxes metabox-holder">
|
38 |
<?php foreach ($data['value'] as $value_index => &$values): ?>
|
framework/includes/option-types/popup/static/js/popup.js
CHANGED
@@ -18,7 +18,15 @@
|
|
18 |
size : data.size
|
19 |
}),
|
20 |
editItem: function (item, values) {
|
21 |
-
item.find('input')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
};
|
24 |
|
@@ -39,13 +47,24 @@
|
|
39 |
utils.modal.open();
|
40 |
});
|
41 |
|
42 |
-
utils.modal.on(
|
43 |
-
|
|
|
44 |
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
});
|
50 |
};
|
51 |
|
18 |
size : data.size
|
19 |
}),
|
20 |
editItem: function (item, values) {
|
21 |
+
var $input = item.find('input'),
|
22 |
+
val = $input.val();
|
23 |
+
|
24 |
+
$input.val( values = JSON.stringify( values ) );
|
25 |
+
|
26 |
+
if (val != values) {
|
27 |
+
$this.trigger('fw:option-type:popup:change');
|
28 |
+
$input.trigger('change');
|
29 |
+
}
|
30 |
}
|
31 |
};
|
32 |
|
47 |
utils.modal.open();
|
48 |
});
|
49 |
|
50 |
+
utils.modal.on({
|
51 |
+
'change:values': function (modal, values) {
|
52 |
+
utils.editItem(utils.modal.get('itemRef'), values);
|
53 |
|
54 |
+
fwEvents.trigger('fw:option-type:popup:change', {
|
55 |
+
element: $this,
|
56 |
+
values: values
|
57 |
+
});
|
58 |
+
},
|
59 |
+
'open': function () {
|
60 |
+
$this.trigger('fw:option-type:popup:open');
|
61 |
+
},
|
62 |
+
'close': function () {
|
63 |
+
$this.trigger('fw:option-type:popup:close');
|
64 |
+
},
|
65 |
+
'render': function () {
|
66 |
+
$this.trigger('fw:option-type:popup:render');
|
67 |
+
}
|
68 |
});
|
69 |
};
|
70 |
|
framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php
CHANGED
@@ -89,7 +89,7 @@ class FW_Option_Type_Rgba_Color_Picker extends FW_Option_Type {
|
|
89 |
*/
|
90 |
protected function _get_defaults() {
|
91 |
return array(
|
92 |
-
'value' => '',
|
93 |
'palettes'=> true
|
94 |
);
|
95 |
}
|
89 |
*/
|
90 |
protected function _get_defaults() {
|
91 |
return array(
|
92 |
+
'value' => '#000000',
|
93 |
'palettes'=> true
|
94 |
);
|
95 |
}
|
framework/includes/option-types/rgba-color-picker/static/js/scripts.js
CHANGED
@@ -176,13 +176,14 @@ jQuery(function($){
|
|
176 |
slide: function (event, ui) {
|
177 |
$(this).find('.ui-slider-handle').text(ui.value);
|
178 |
|
|
|
|
|
179 |
var color = $input.iris('color', true),
|
180 |
cssColor = (
|
181 |
(ui.value < 100) ? color.toCSS('rgba', ui.value / 100) : color.toHex()
|
182 |
).replace(/\s/g, '');
|
183 |
|
184 |
$input.val(cssColor);
|
185 |
-
$input.data('a8cIris')._color._alpha = parseFloat(ui.value) / 100.0;
|
186 |
|
187 |
clearTimeout(changeTimeoutId);
|
188 |
changeTimeoutId = setTimeout(function(){
|
@@ -205,13 +206,14 @@ jQuery(function($){
|
|
205 |
change: function (event, ui) {
|
206 |
$(this).find('.ui-slider-handle').text(ui.value);
|
207 |
|
|
|
|
|
208 |
var color = $input.iris('color', true),
|
209 |
cssColor = (
|
210 |
(ui.value < 100) ? color.toCSS('rgba', ui.value / 100) : color.toHex()
|
211 |
).replace(/\s/g, '');
|
212 |
|
213 |
$input.val(cssColor);
|
214 |
-
$input.data('a8cIris')._color._alpha = parseFloat(ui.value) / 100.0;
|
215 |
|
216 |
clearTimeout(changeTimeoutId);
|
217 |
changeTimeoutId = setTimeout(function(){
|
176 |
slide: function (event, ui) {
|
177 |
$(this).find('.ui-slider-handle').text(ui.value);
|
178 |
|
179 |
+
$input.data('a8cIris')._color._alpha = parseFloat(ui.value) / 100.0;
|
180 |
+
|
181 |
var color = $input.iris('color', true),
|
182 |
cssColor = (
|
183 |
(ui.value < 100) ? color.toCSS('rgba', ui.value / 100) : color.toHex()
|
184 |
).replace(/\s/g, '');
|
185 |
|
186 |
$input.val(cssColor);
|
|
|
187 |
|
188 |
clearTimeout(changeTimeoutId);
|
189 |
changeTimeoutId = setTimeout(function(){
|
206 |
change: function (event, ui) {
|
207 |
$(this).find('.ui-slider-handle').text(ui.value);
|
208 |
|
209 |
+
$input.data('a8cIris')._color._alpha = parseFloat(ui.value) / 100.0;
|
210 |
+
|
211 |
var color = $input.iris('color', true),
|
212 |
cssColor = (
|
213 |
(ui.value < 100) ? color.toCSS('rgba', ui.value / 100) : color.toHex()
|
214 |
).replace(/\s/g, '');
|
215 |
|
216 |
$input.val(cssColor);
|
|
|
217 |
|
218 |
clearTimeout(changeTimeoutId);
|
219 |
changeTimeoutId = setTimeout(function(){
|
framework/includes/option-types/simple.php
CHANGED
@@ -498,20 +498,33 @@ class FW_Option_Type_Checkboxes extends FW_Option_Type {
|
|
498 |
$html .= '<input type="checkbox" name="' . esc_attr( $option['attr']['name'] ) . '[]" value="" checked="checked" style="display: none">' .
|
499 |
'<!-- used for "' . esc_attr( $id ) . '" to be present in _POST -->';
|
500 |
|
501 |
-
foreach ( $option['choices'] as $value => $
|
502 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
|
504 |
$html .=
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
'
|
509 |
-
|
510 |
-
|
511 |
-
( isset( $option['value'][ $value ] ) && $option['value'][ $value ] ? 'checked="checked" ' : '' ) .
|
512 |
-
'> ' . htmlspecialchars( $text, ENT_COMPAT, 'UTF-8' ) .
|
513 |
-
'</label>' .
|
514 |
-
'</div>';
|
515 |
}
|
516 |
|
517 |
$html .= '</div>';
|
@@ -614,18 +627,30 @@ class FW_Option_Type_Radio extends FW_Option_Type {
|
|
614 |
|
615 |
$html = '<div ' . fw_attr_to_html( $div_attr ) . '>';
|
616 |
|
617 |
-
foreach ( $option['choices'] as $value => $
|
618 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
|
620 |
$html .=
|
621 |
'<div>' .
|
622 |
-
'<label for="' . esc_attr( $
|
623 |
-
'<input
|
624 |
-
|
625 |
-
'value="' . esc_attr( $value ) . '" ' .
|
626 |
-
'id="' . esc_attr( $choice_id ) . '" ' .
|
627 |
-
( $option['value'] == $value ? 'checked="checked" ' : '' ) .
|
628 |
-
'> ' . htmlspecialchars( $text, ENT_COMPAT, 'UTF-8' ) .
|
629 |
'</label>' .
|
630 |
'</div>';
|
631 |
}
|
498 |
$html .= '<input type="checkbox" name="' . esc_attr( $option['attr']['name'] ) . '[]" value="" checked="checked" style="display: none">' .
|
499 |
'<!-- used for "' . esc_attr( $id ) . '" to be present in _POST -->';
|
500 |
|
501 |
+
foreach ( $option['choices'] as $value => $choice ) {
|
502 |
+
if (is_string($choice)) {
|
503 |
+
$choice = array(
|
504 |
+
'text' => $choice,
|
505 |
+
'attr' => array(),
|
506 |
+
);
|
507 |
+
}
|
508 |
+
|
509 |
+
$choice['attr'] = array_merge(
|
510 |
+
isset($choice['attr']) ? $choice['attr'] : array(),
|
511 |
+
array(
|
512 |
+
'type' => 'checkbox',
|
513 |
+
'name' => $option['attr']['name'] . '[' . $value . ']',
|
514 |
+
'value' => 'true',
|
515 |
+
'id' => $option['attr']['id'] . '-' . $value,
|
516 |
+
),
|
517 |
+
isset( $option['value'][ $value ] ) && $option['value'][ $value ]
|
518 |
+
? array('checked' => 'checked') : array()
|
519 |
+
);
|
520 |
|
521 |
$html .=
|
522 |
+
'<div>' .
|
523 |
+
'<label for="' . esc_attr( $choice['attr']['id'] ) . '">' .
|
524 |
+
'<input ' . fw_attr_to_html($choice['attr']) . '>' .
|
525 |
+
' ' . htmlspecialchars( $choice['text'], ENT_COMPAT, 'UTF-8' ) .
|
526 |
+
'</label>' .
|
527 |
+
'</div>';
|
|
|
|
|
|
|
|
|
528 |
}
|
529 |
|
530 |
$html .= '</div>';
|
627 |
|
628 |
$html = '<div ' . fw_attr_to_html( $div_attr ) . '>';
|
629 |
|
630 |
+
foreach ( $option['choices'] as $value => $choice ) {
|
631 |
+
if (is_string($choice)) {
|
632 |
+
$choice = array(
|
633 |
+
'text' => $choice,
|
634 |
+
'attr' => array(),
|
635 |
+
);
|
636 |
+
}
|
637 |
+
|
638 |
+
$choice['attr'] = array_merge(
|
639 |
+
isset($choice['attr']) ? $choice['attr'] : array(),
|
640 |
+
array(
|
641 |
+
'type' => 'radio',
|
642 |
+
'name' => $option['attr']['name'],
|
643 |
+
'value' => $value,
|
644 |
+
'id' => $option['attr']['id'] . '-' . $value,
|
645 |
+
),
|
646 |
+
$option['value'] == $value ? array('checked' => 'checked') : array()
|
647 |
+
);
|
648 |
|
649 |
$html .=
|
650 |
'<div>' .
|
651 |
+
'<label for="' . esc_attr( $choice['attr']['id'] ) . '">' .
|
652 |
+
'<input ' . fw_attr_to_html($choice['attr']) . '>' .
|
653 |
+
' ' . htmlspecialchars( $choice['text'], ENT_COMPAT, 'UTF-8' ) .
|
|
|
|
|
|
|
|
|
654 |
'</label>' .
|
655 |
'</div>';
|
656 |
}
|
framework/includes/option-types/typography-v2/class-fw-option-type-typography-v2.php
CHANGED
@@ -6,11 +6,6 @@
|
|
6 |
* Typography
|
7 |
*/
|
8 |
class FW_Option_Type_Typography_v2 extends FW_Option_Type {
|
9 |
-
/*
|
10 |
-
* Allowed fonts
|
11 |
-
*/
|
12 |
-
private $fonts;
|
13 |
-
|
14 |
public function _get_backend_width_type() {
|
15 |
return 'full';
|
16 |
}
|
@@ -36,8 +31,11 @@ class FW_Option_Type_Typography_v2 extends FW_Option_Type {
|
|
36 |
fw()->manifest->get_version()
|
37 |
);
|
38 |
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
41 |
}
|
42 |
|
43 |
public function get_type() {
|
@@ -49,8 +47,12 @@ class FW_Option_Type_Typography_v2 extends FW_Option_Type {
|
|
49 |
* @return array
|
50 |
*/
|
51 |
public function get_fonts() {
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
|
|
54 |
'standard' => apply_filters( 'fw_option_type_typography_v2_standard_fonts', array(
|
55 |
"Arial",
|
56 |
"Verdana",
|
@@ -69,23 +71,24 @@ class FW_Option_Type_Typography_v2 extends FW_Option_Type {
|
|
69 |
"Impact",
|
70 |
"Serif"
|
71 |
) ),
|
72 |
-
'google'
|
73 |
);
|
74 |
-
}
|
75 |
|
76 |
-
|
|
|
|
|
|
|
77 |
}
|
78 |
|
79 |
/**
|
80 |
* @internal
|
81 |
*/
|
82 |
protected function _render( $id, $option, $data ) {
|
83 |
-
return fw_render_view(
|
84 |
'typography_v2' => $this,
|
85 |
'id' => $id,
|
86 |
'option' => $option,
|
87 |
'data' => $data,
|
88 |
-
'fonts' => $this->get_fonts(),
|
89 |
'defaults' => $this->get_defaults()
|
90 |
) );
|
91 |
}
|
@@ -137,10 +140,10 @@ class FW_Option_Type_Typography_v2 extends FW_Option_Type {
|
|
137 |
}
|
138 |
|
139 |
public function get_google_font( $font ) {
|
140 |
-
$
|
141 |
-
|
142 |
-
foreach ( $
|
143 |
-
if ( $font === $g_font
|
144 |
return $g_font;
|
145 |
}
|
146 |
}
|
6 |
* Typography
|
7 |
*/
|
8 |
class FW_Option_Type_Typography_v2 extends FW_Option_Type {
|
|
|
|
|
|
|
|
|
|
|
9 |
public function _get_backend_width_type() {
|
10 |
return 'full';
|
11 |
}
|
31 |
fw()->manifest->get_version()
|
32 |
);
|
33 |
|
34 |
+
wp_localize_script(
|
35 |
+
'fw-option-' . $this->get_type(),
|
36 |
+
'fw_typography_v2_fonts',
|
37 |
+
$this->get_fonts()
|
38 |
+
);
|
39 |
}
|
40 |
|
41 |
public function get_type() {
|
47 |
* @return array
|
48 |
*/
|
49 |
public function get_fonts() {
|
50 |
+
$cache_key = 'fw_option_type/'. $this->get_type();
|
51 |
+
|
52 |
+
try {
|
53 |
+
return FW_Cache::get($cache_key);
|
54 |
+
} catch (FW_Cache_Not_Found_Exception $e) {
|
55 |
+
$fonts = array(
|
56 |
'standard' => apply_filters( 'fw_option_type_typography_v2_standard_fonts', array(
|
57 |
"Arial",
|
58 |
"Verdana",
|
71 |
"Impact",
|
72 |
"Serif"
|
73 |
) ),
|
74 |
+
'google' => json_decode(fw_get_google_fonts_v2(), true)
|
75 |
);
|
|
|
76 |
|
77 |
+
FW_Cache::set($cache_key, $fonts);
|
78 |
+
|
79 |
+
return $fonts;
|
80 |
+
}
|
81 |
}
|
82 |
|
83 |
/**
|
84 |
* @internal
|
85 |
*/
|
86 |
protected function _render( $id, $option, $data ) {
|
87 |
+
return fw_render_view( dirname(__FILE__) . '/view.php', array(
|
88 |
'typography_v2' => $this,
|
89 |
'id' => $id,
|
90 |
'option' => $option,
|
91 |
'data' => $data,
|
|
|
92 |
'defaults' => $this->get_defaults()
|
93 |
) );
|
94 |
}
|
140 |
}
|
141 |
|
142 |
public function get_google_font( $font ) {
|
143 |
+
$fonts = $this->get_fonts();
|
144 |
+
|
145 |
+
foreach ( $fonts['google']['items'] as $g_font ) {
|
146 |
+
if ( $font === $g_font['family'] ) {
|
147 |
return $g_font;
|
148 |
}
|
149 |
}
|
framework/includes/option-types/typography-v2/static/js/scripts.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
( function ($) {
|
3 |
$(document).ready(function () {
|
4 |
var optionTypeClass = '.fw-option-type-typography-v2',
|
5 |
-
googleFonts =
|
6 |
/**
|
7 |
* [ {'value': 'Font Family', 'text': 'Font Family'} ]
|
8 |
*/
|
2 |
( function ($) {
|
3 |
$(document).ready(function () {
|
4 |
var optionTypeClass = '.fw-option-type-typography-v2',
|
5 |
+
googleFonts = fw_typography_v2_fonts['google'],
|
6 |
/**
|
7 |
* [ {'value': 'Font Family', 'text': 'Font Family'} ]
|
8 |
*/
|
framework/includes/option-types/typography-v2/view.php
CHANGED
@@ -6,7 +6,6 @@
|
|
6 |
* @var string $id
|
7 |
* @var array $option
|
8 |
* @var array $data
|
9 |
-
* @var array $fonts
|
10 |
* @var array $defaults
|
11 |
*/
|
12 |
|
@@ -90,7 +89,7 @@ $components = (isset($option['components']) && is_array($option['components']))
|
|
90 |
<select data-type="subset" name="<?php echo esc_attr( $option['attr']['name'] ) ?>[subset]"
|
91 |
class="fw-option-typography-v2-option-subset">
|
92 |
<?php if ( $google_font ) {
|
93 |
-
foreach ( $google_font
|
94 |
<option value="<?php echo esc_attr( $subset ) ?>"
|
95 |
<?php if ($data['value']['subset'] === $subset): ?>selected="selected"<?php endif; ?>><?php echo fw_htmlspecialchars( $subset ); ?></option>
|
96 |
<?php }
|
@@ -107,7 +106,7 @@ $components = (isset($option['components']) && is_array($option['components']))
|
|
107 |
<select data-type="variation" name="<?php echo esc_attr( $option['attr']['name'] ) ?>[variation]"
|
108 |
class="fw-option-typography-v2-option-variation">
|
109 |
<?php if ( $google_font ) {
|
110 |
-
foreach ( $google_font
|
111 |
<option value="<?php echo esc_attr( $variant ) ?>"
|
112 |
<?php if ($data['value']['variation'] == $variant): ?>selected="selected"<?php endif; ?>><?php echo fw_htmlspecialchars( $variant ); ?></option>
|
113 |
<?php }
|
6 |
* @var string $id
|
7 |
* @var array $option
|
8 |
* @var array $data
|
|
|
9 |
* @var array $defaults
|
10 |
*/
|
11 |
|
89 |
<select data-type="subset" name="<?php echo esc_attr( $option['attr']['name'] ) ?>[subset]"
|
90 |
class="fw-option-typography-v2-option-subset">
|
91 |
<?php if ( $google_font ) {
|
92 |
+
foreach ( $google_font['subsets'] as $subset ) { ?>
|
93 |
<option value="<?php echo esc_attr( $subset ) ?>"
|
94 |
<?php if ($data['value']['subset'] === $subset): ?>selected="selected"<?php endif; ?>><?php echo fw_htmlspecialchars( $subset ); ?></option>
|
95 |
<?php }
|
106 |
<select data-type="variation" name="<?php echo esc_attr( $option['attr']['name'] ) ?>[variation]"
|
107 |
class="fw-option-typography-v2-option-variation">
|
108 |
<?php if ( $google_font ) {
|
109 |
+
foreach ( $google_font['variants'] as $variant ) { ?>
|
110 |
<option value="<?php echo esc_attr( $variant ) ?>"
|
111 |
<?php if ($data['value']['variation'] == $variant): ?>selected="selected"<?php endif; ?>><?php echo fw_htmlspecialchars( $variant ); ?></option>
|
112 |
<?php }
|
framework/includes/option-types/typography/static/css/styles.css
CHANGED
@@ -157,7 +157,7 @@ body.rtl .fw-option-type-typography .fw-option-typography-option-family .selecti
|
|
157 |
width: 125px;
|
158 |
float: right;
|
159 |
border: none;
|
160 |
-
background: transparent url(../images/google-fonts.png);
|
161 |
}
|
162 |
|
163 |
.fw-option-type-typography .selectize-dropdown .selectize-dropdown-content div.option span {
|
157 |
width: 125px;
|
158 |
float: right;
|
159 |
border: none;
|
160 |
+
background: transparent url(../images/google-fonts.png) no-repeat;
|
161 |
}
|
162 |
|
163 |
.fw-option-type-typography .selectize-dropdown .selectize-dropdown-content div.option span {
|
framework/languages/fw.pot
ADDED
@@ -0,0 +1,6233 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Unyson\n"
|
4 |
+
"POT-Creation-Date: 2016-02-02 15:48+0300\n"
|
5 |
+
"PO-Revision-Date: 2016-02-02 15:57+0300\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: ThemeFuse <hello@themefuse.com>\n"
|
8 |
+
"Language: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
14 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
15 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
16 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
17 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
18 |
+
"X-Poedit-Basepath: .\n"
|
19 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
|
20 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
+
"X-Poedit-SearchPath-0: ..\n"
|
22 |
+
|
23 |
+
#: ../manifest.php:5
|
24 |
+
msgid "Unyson"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: ../helpers/class-fw-wp-filesystem.php:43
|
28 |
+
msgid "Cannot connect to Filesystem directly"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../helpers/class-fw-wp-filesystem.php:271
|
32 |
+
#, php-format
|
33 |
+
msgid "Cannot create directory \"%s\". It must be inside \"%s\""
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: ../helpers/class-fw-wp-filesystem.php:273
|
37 |
+
msgid "\" or \""
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: ../helpers/class-fw-flash-messages.php:95
|
41 |
+
#, php-format
|
42 |
+
msgid "Invalid flash message type: %s"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../helpers/class-fw-wp-list-table.php:185
|
46 |
+
msgid "No items found."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: ../helpers/class-fw-wp-list-table.php:309
|
50 |
+
msgid "Bulk Actions"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: ../helpers/class-fw-wp-list-table.php:319
|
54 |
+
msgid "Apply"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: ../helpers/class-fw-wp-list-table.php:403
|
58 |
+
msgid "All dates"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: ../helpers/class-fw-wp-list-table.php:416
|
62 |
+
#, php-format
|
63 |
+
msgid "%1$s %2$d"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: ../helpers/class-fw-wp-list-table.php:432
|
67 |
+
msgid "List View"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: ../helpers/class-fw-wp-list-table.php:433
|
71 |
+
msgid "Excerpt View"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: ../helpers/class-fw-wp-list-table.php:459
|
75 |
+
#, php-format
|
76 |
+
msgid "%s pending"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../helpers/class-fw-wp-list-table.php:714
|
80 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:33
|
81 |
+
msgid "Select All"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: ../helpers/general.php:1150
|
85 |
+
msgid "year"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: ../helpers/general.php:1151
|
89 |
+
msgid "years"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: ../helpers/general.php:1153
|
93 |
+
msgid "month"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: ../helpers/general.php:1154
|
97 |
+
msgid "months"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../helpers/general.php:1156
|
101 |
+
msgid "week"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: ../helpers/general.php:1157
|
105 |
+
msgid "weeks"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: ../helpers/general.php:1159
|
109 |
+
msgid "day"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: ../helpers/general.php:1160
|
113 |
+
msgid "days"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: ../helpers/general.php:1162
|
117 |
+
msgid "hour"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: ../helpers/general.php:1163
|
121 |
+
msgid "hours"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: ../helpers/general.php:1165
|
125 |
+
msgid "minute"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: ../helpers/general.php:1166
|
129 |
+
msgid "minutes"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: ../helpers/general.php:1168
|
133 |
+
msgid "second"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: ../helpers/general.php:1169
|
137 |
+
msgid "seconds"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: ../helpers/general.php:1558
|
141 |
+
msgid "Maximum stack depth exceeded"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: ../helpers/general.php:1561
|
145 |
+
msgid "Underflow or the modes mismatch"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: ../helpers/general.php:1564
|
149 |
+
msgid "Unexpected control character found"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: ../helpers/general.php:1567
|
153 |
+
msgid "Syntax error, malformed JSON"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: ../helpers/general.php:1570
|
157 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: ../helpers/general.php:1573
|
161 |
+
#: ../extensions/backups/class-fw-extension-backups.php:550
|
162 |
+
msgid "Unknown error"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: ../helpers/class-fw-form.php:80
|
166 |
+
#, php-format
|
167 |
+
msgid "Form with id \"%s\" was already defined"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: ../helpers/class-fw-form.php:168
|
171 |
+
msgid "Nonce verification failed"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: ../helpers/class-fw-form.php:331
|
175 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/views/form.php:13
|
176 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:66
|
177 |
+
msgid "Submit"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: ../extensions/update/class-fw-extension-update.php:285
|
181 |
+
#: ../extensions/update/class-fw-extension-update.php:602
|
182 |
+
msgid "Cannot delete: "
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: ../extensions/update/class-fw-extension-update.php:292
|
186 |
+
msgid "Cannot create: "
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: ../extensions/update/class-fw-extension-update.php:370
|
190 |
+
msgid "Cannot remove old temporary directory: "
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: ../extensions/update/class-fw-extension-update.php:376
|
194 |
+
#: ../extensions/update/class-fw-extension-update.php:572
|
195 |
+
msgid "Cannot create directory: "
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: ../extensions/update/class-fw-extension-update.php:381
|
199 |
+
#, php-format
|
200 |
+
msgid "Downloading the %s..."
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: ../extensions/update/class-fw-extension-update.php:386
|
204 |
+
#, php-format
|
205 |
+
msgid "Cannot download the %s."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../extensions/update/class-fw-extension-update.php:396
|
209 |
+
#, php-format
|
210 |
+
msgid "Installing the %s..."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: ../extensions/update/class-fw-extension-update.php:402
|
214 |
+
#: ../extensions/update/class-fw-extension-update.php:431
|
215 |
+
#: ../extensions/update/class-fw-extension-update.php:531
|
216 |
+
#: ../extensions/update/class-fw-extension-update.php:552
|
217 |
+
#: ../extensions/update/class-fw-extension-update.php:582
|
218 |
+
msgid "Cannot access directory: "
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: ../extensions/update/class-fw-extension-update.php:421
|
222 |
+
msgid "Cannot remove: "
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: ../extensions/update/class-fw-extension-update.php:456
|
226 |
+
#: ../extensions/update/class-fw-extension-update.php:522
|
227 |
+
#: ../extensions/update/class-fw-extension-update.php:628
|
228 |
+
#: ../extensions/update/class-fw-extension-update.php:652
|
229 |
+
#, php-format
|
230 |
+
msgid "Cannot move \"%s\" to \"%s\""
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: ../extensions/update/class-fw-extension-update.php:472
|
234 |
+
#, php-format
|
235 |
+
msgid "Cannot merge \"%s\" with \"%s\""
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: ../extensions/update/class-fw-extension-update.php:485
|
239 |
+
#, php-format
|
240 |
+
msgid "The %s has been successfully updated."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: ../extensions/update/class-fw-extension-update.php:492
|
244 |
+
#, php-format
|
245 |
+
msgid "Cannot remove temporary directory \"%s\"."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: ../extensions/update/class-fw-extension-update.php:672
|
249 |
+
#: ../extensions/update/class-fw-extension-update.php:740
|
250 |
+
#: ../extensions/update/class-fw-extension-update.php:808
|
251 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:930
|
252 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1427
|
253 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1837
|
254 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2054
|
255 |
+
msgid "Invalid nonce."
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: ../extensions/update/class-fw-extension-update.php:683
|
259 |
+
msgid "Framework Update"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: ../extensions/update/class-fw-extension-update.php:699
|
263 |
+
msgid "Failed to get framework latest version."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: ../extensions/update/class-fw-extension-update.php:716
|
267 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:360
|
268 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:374
|
269 |
+
#: ../extensions/update/views/updates-list.php:10
|
270 |
+
#: ../core/class-fw-manifest.php:353
|
271 |
+
msgid "Framework"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: ../extensions/update/class-fw-extension-update.php:751
|
275 |
+
msgid "Theme Update"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: ../extensions/update/class-fw-extension-update.php:767
|
279 |
+
msgid "Failed to get theme latest version."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: ../extensions/update/class-fw-extension-update.php:784
|
283 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:393
|
284 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:407
|
285 |
+
msgid "Theme"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../extensions/update/class-fw-extension-update.php:817
|
289 |
+
msgid "Please check the extensions you want to update."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: ../extensions/update/class-fw-extension-update.php:841
|
293 |
+
msgid "Extensions Update"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: ../extensions/update/class-fw-extension-update.php:879
|
297 |
+
msgid "No extensions updates found."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: ../extensions/update/class-fw-extension-update.php:886
|
301 |
+
#, php-format
|
302 |
+
msgid "Extension \"%s\" does not exist or is disabled."
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: ../extensions/update/class-fw-extension-update.php:893
|
306 |
+
#, php-format
|
307 |
+
msgid "No update found for the \"%s\" extension."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: ../extensions/update/class-fw-extension-update.php:915
|
311 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:426
|
312 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:440
|
313 |
+
#, php-format
|
314 |
+
msgid "%s extension"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: ../extensions/update/manifest.php:5
|
318 |
+
#: ../extensions/builder/includes/option-types/builder/includes/fullscreen.php:82
|
319 |
+
msgid "Update"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: ../extensions/update/manifest.php:6
|
323 |
+
msgid "Keep you framework, extensions and theme up to date."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:91
|
327 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:232
|
328 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2439
|
329 |
+
msgid "Github error:"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:100
|
333 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:241
|
334 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2446
|
335 |
+
#, php-format
|
336 |
+
msgid "Failed to access Github repository \"%s\" releases. (Response code: %d)"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:108
|
340 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:249
|
341 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2462
|
342 |
+
#, php-format
|
343 |
+
msgid "Failed to access Github repository \"%s\" releases."
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:122
|
347 |
+
#, php-format
|
348 |
+
msgid "No releases found in repository \"%s\"."
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:143
|
352 |
+
#, php-format
|
353 |
+
msgid ""
|
354 |
+
"%s manifest has invalid \"github_update\" parameter. Please use \"user/repo"
|
355 |
+
"\" format."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:171
|
359 |
+
#, php-format
|
360 |
+
msgid "Failed to fetch %s latest version from github \"%s\"."
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:264
|
364 |
+
#, php-format
|
365 |
+
msgid "%s github repository \"%s\" does not have the \"%s\" release."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:284
|
369 |
+
#, php-format
|
370 |
+
msgid "Cannot download %s zip."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:297
|
374 |
+
#, php-format
|
375 |
+
msgid "Cannot save %s zip."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:316
|
379 |
+
#, php-format
|
380 |
+
msgid "Cannot remove %s zip."
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:325
|
384 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2566
|
385 |
+
msgid "Cannot access the unzipped directory files."
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: ../extensions/update/extensions/github-update/class-fw-extension-github-update.php:341
|
389 |
+
#, php-format
|
390 |
+
msgid "The unzipped %s directory not found."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: ../extensions/update/views/updates-list.php:12
|
394 |
+
#, php-format
|
395 |
+
msgid "You have the latest version of %s."
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: ../extensions/update/views/updates-list.php:25
|
399 |
+
msgid "Update Framework"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: ../extensions/update/views/updates-list.php:37
|
403 |
+
msgid "Your theme is up to date."
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: ../extensions/update/views/updates-list.php:50
|
407 |
+
msgid "Update Theme"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: ../extensions/update/views/updates-list.php:60
|
411 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:844
|
412 |
+
#, php-format
|
413 |
+
msgid "%s Extensions"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: ../extensions/update/views/updates-list.php:62
|
417 |
+
#, php-format
|
418 |
+
msgid "You have the latest version of %s Extensions."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: ../extensions/update/views/updates-list.php:80
|
422 |
+
#: ../extensions/update/views/updates-list.php:95
|
423 |
+
#: ../extensions/update/views/updates-list.php:100
|
424 |
+
msgid "Update Extensions"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: ../extensions/update/views/updates-list.php:99
|
428 |
+
msgid "New extensions updates available."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:16
|
432 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:14
|
433 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:16
|
434 |
+
msgid "Go to updates page"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:19
|
438 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:17
|
439 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:19
|
440 |
+
msgid "Return to Updates page"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:84
|
444 |
+
#, php-format
|
445 |
+
msgid "You have version %s installed. Update to %s."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:126
|
449 |
+
msgid "No Extensions for update."
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: ../extensions/portfolio/manifest.php:7
|
453 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:260
|
454 |
+
#: ../core/components/extensions/manager/available-extensions.php:72
|
455 |
+
msgid "Portfolio"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: ../extensions/portfolio/manifest.php:9
|
459 |
+
#: ../core/components/extensions/manager/available-extensions.php:73
|
460 |
+
msgid ""
|
461 |
+
"This extension will add a fully fledged portfolio module that will let you "
|
462 |
+
"display your projects using the built in portfolio pages."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:115
|
466 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:232
|
467 |
+
msgid "Project"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:116
|
471 |
+
msgid "Projects"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:123
|
475 |
+
#: ../extensions/learning/class-fw-extension-learning.php:63
|
476 |
+
#: ../extensions/learning/class-fw-extension-learning.php:127
|
477 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:57
|
478 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:58
|
479 |
+
#: ../extensions/events/class-fw-extension-events.php:76
|
480 |
+
#: ../extensions/media/extensions/slider/posts.php:8
|
481 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:32
|
482 |
+
msgid "Add New"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:124
|
486 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:198
|
487 |
+
#: ../extensions/learning/class-fw-extension-learning.php:64
|
488 |
+
#: ../extensions/learning/class-fw-extension-learning.php:128
|
489 |
+
#: ../extensions/events/class-fw-extension-events.php:77
|
490 |
+
#: ../extensions/events/class-fw-extension-events.php:131
|
491 |
+
#, php-format
|
492 |
+
msgid "Add New %s"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:125
|
496 |
+
#: ../extensions/learning/class-fw-extension-learning.php:129
|
497 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:89
|
498 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:76
|
499 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:88
|
500 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:86
|
501 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review.php:68
|
502 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:34
|
503 |
+
#: ../extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:50
|
504 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:110
|
505 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:45
|
506 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:37
|
507 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:73
|
508 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:81
|
509 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:55
|
510 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:57
|
511 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:50
|
512 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:54
|
513 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:52
|
514 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:53
|
515 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:53
|
516 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:52
|
517 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:52
|
518 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:50
|
519 |
+
#: ../extensions/events/class-fw-extension-events.php:78
|
520 |
+
#: ../includes/option-types/popup/class-fw-option-type-popup.php:158
|
521 |
+
#: ../includes/option-types/upload/class-fw-option-type-upload.php:151
|
522 |
+
#: ../includes/option-types/upload/class-fw-option-type-upload.php:177
|
523 |
+
#: ../includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:161
|
524 |
+
#: ../includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:187
|
525 |
+
msgid "Edit"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:126
|
529 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:196
|
530 |
+
#: ../extensions/learning/class-fw-extension-learning.php:65
|
531 |
+
#: ../extensions/learning/class-fw-extension-learning.php:66
|
532 |
+
#: ../extensions/learning/class-fw-extension-learning.php:130
|
533 |
+
#: ../extensions/learning/class-fw-extension-learning.php:192
|
534 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:59
|
535 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:60
|
536 |
+
#: ../extensions/events/class-fw-extension-events.php:79
|
537 |
+
#: ../extensions/events/class-fw-extension-events.php:129
|
538 |
+
#, php-format
|
539 |
+
msgid "Edit %s"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:127
|
543 |
+
#: ../extensions/learning/class-fw-extension-learning.php:67
|
544 |
+
#: ../extensions/learning/class-fw-extension-learning.php:131
|
545 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:61
|
546 |
+
#: ../extensions/events/class-fw-extension-events.php:80
|
547 |
+
#, php-format
|
548 |
+
msgid "New %s"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:128
|
552 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:193
|
553 |
+
#: ../extensions/learning/class-fw-extension-learning.php:68
|
554 |
+
#: ../extensions/learning/class-fw-extension-learning.php:132
|
555 |
+
#: ../extensions/learning/class-fw-extension-learning.php:189
|
556 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:62
|
557 |
+
#: ../extensions/events/class-fw-extension-events.php:81
|
558 |
+
#: ../extensions/events/class-fw-extension-events.php:126
|
559 |
+
#, php-format
|
560 |
+
msgid "All %s"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:129
|
564 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:130
|
565 |
+
#: ../extensions/learning/class-fw-extension-learning.php:69
|
566 |
+
#: ../extensions/learning/class-fw-extension-learning.php:70
|
567 |
+
#: ../extensions/learning/class-fw-extension-learning.php:133
|
568 |
+
#: ../extensions/learning/class-fw-extension-learning.php:134
|
569 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:63
|
570 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:64
|
571 |
+
#: ../extensions/events/class-fw-extension-events.php:82
|
572 |
+
#: ../extensions/events/class-fw-extension-events.php:83
|
573 |
+
#, php-format
|
574 |
+
msgid "View %s"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:131
|
578 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:192
|
579 |
+
#: ../extensions/learning/class-fw-extension-learning.php:71
|
580 |
+
#: ../extensions/learning/class-fw-extension-learning.php:135
|
581 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:65
|
582 |
+
#: ../extensions/events/class-fw-extension-events.php:84
|
583 |
+
#: ../extensions/events/class-fw-extension-events.php:125
|
584 |
+
#, php-format
|
585 |
+
msgid "Search %s"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:132
|
589 |
+
#: ../extensions/learning/class-fw-extension-learning.php:72
|
590 |
+
#: ../extensions/learning/class-fw-extension-learning.php:136
|
591 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:66
|
592 |
+
#: ../extensions/events/class-fw-extension-events.php:85
|
593 |
+
#, php-format
|
594 |
+
msgid "No %s Found"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:133
|
598 |
+
#: ../extensions/learning/class-fw-extension-learning.php:73
|
599 |
+
#: ../extensions/learning/class-fw-extension-learning.php:137
|
600 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:67
|
601 |
+
#: ../extensions/events/class-fw-extension-events.php:86
|
602 |
+
#, php-format
|
603 |
+
msgid "No %s Found In Trash"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:136
|
607 |
+
msgid "Create a portfolio item"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:183
|
611 |
+
#: ../extensions/events/class-fw-extension-events.php:116
|
612 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:268
|
613 |
+
msgid "Category"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:184
|
617 |
+
#: ../extensions/events/class-fw-extension-events.php:117
|
618 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:168
|
619 |
+
msgid "Categories"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:194
|
623 |
+
#: ../extensions/learning/class-fw-extension-learning.php:190
|
624 |
+
#: ../extensions/events/class-fw-extension-events.php:127
|
625 |
+
#, php-format
|
626 |
+
msgid "Parent %s"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:195
|
630 |
+
#: ../extensions/learning/class-fw-extension-learning.php:191
|
631 |
+
#: ../extensions/events/class-fw-extension-events.php:128
|
632 |
+
#, php-format
|
633 |
+
msgid "Parent %s:"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:197
|
637 |
+
#: ../extensions/learning/class-fw-extension-learning.php:193
|
638 |
+
#: ../extensions/events/class-fw-extension-events.php:130
|
639 |
+
#: ../core/components/extensions/manager/views/extension.php:234
|
640 |
+
#: ../core/components/extensions/manager/views/extension.php:272
|
641 |
+
#, php-format
|
642 |
+
msgid "Update %s"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:199
|
646 |
+
#: ../extensions/learning/class-fw-extension-learning.php:195
|
647 |
+
#: ../extensions/events/class-fw-extension-events.php:132
|
648 |
+
#, php-format
|
649 |
+
msgid "New %s Name"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:200
|
653 |
+
#: ../extensions/learning/class-fw-extension-learning.php:196
|
654 |
+
#: ../extensions/events/class-fw-extension-events.php:133
|
655 |
+
#, php-format
|
656 |
+
msgid "%s"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:232
|
660 |
+
msgid "Gallery"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:240
|
664 |
+
msgid "Set project gallery"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:241
|
668 |
+
msgid "Edit project gallery"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:271
|
672 |
+
msgid "Project Cover Image"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:287
|
676 |
+
msgid "Edit this item"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:348
|
680 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:361
|
681 |
+
#: ../extensions/learning/class-fw-extension-learning.php:320
|
682 |
+
#: ../extensions/learning/class-fw-extension-learning.php:333
|
683 |
+
msgid "View all categories"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: ../extensions/portfolio/class-fw-extension-portfolio.php:381
|
687 |
+
msgid "Cover Image"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: ../extensions/seo/settings-options.php:17
|
691 |
+
#: ../extensions/social/settings-options.php:11
|
692 |
+
msgid "General"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: ../extensions/seo/settings-options.php:21
|
696 |
+
#: ../extensions/social/settings-options.php:15
|
697 |
+
msgid "General Settings"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: ../extensions/seo/class-fw-extension-seo.php:89
|
701 |
+
msgid "Site name"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: ../extensions/seo/class-fw-extension-seo.php:95
|
705 |
+
msgid "Site description"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: ../extensions/seo/class-fw-extension-seo.php:101
|
709 |
+
msgid "Current time"
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: ../extensions/seo/class-fw-extension-seo.php:107
|
713 |
+
msgid "Current date"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: ../extensions/seo/class-fw-extension-seo.php:113
|
717 |
+
msgid "Current month"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: ../extensions/seo/class-fw-extension-seo.php:119
|
721 |
+
msgid "Current year"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: ../extensions/seo/class-fw-extension-seo.php:125
|
725 |
+
msgid "Date of the post/page"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: ../extensions/seo/class-fw-extension-seo.php:131
|
729 |
+
msgid "Title of the post/page/term"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: ../extensions/seo/class-fw-extension-seo.php:137
|
733 |
+
msgid "Excerpt of the current post, of auto-generate if it is not set"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: ../extensions/seo/class-fw-extension-seo.php:143
|
737 |
+
msgid "Excerpt of the current post, without auto-generation"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: ../extensions/seo/class-fw-extension-seo.php:149
|
741 |
+
msgid "Post tags, separated by coma"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: ../extensions/seo/class-fw-extension-seo.php:155
|
745 |
+
msgid "Post categories, separated by coma"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: ../extensions/seo/class-fw-extension-seo.php:161
|
749 |
+
msgid "Category/tag/term description"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: ../extensions/seo/class-fw-extension-seo.php:167
|
753 |
+
msgid "Term title"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: ../extensions/seo/class-fw-extension-seo.php:173
|
757 |
+
msgid "Post modified time"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: ../extensions/seo/class-fw-extension-seo.php:179
|
761 |
+
msgid "Post/page id"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: ../extensions/seo/class-fw-extension-seo.php:185
|
765 |
+
msgid "Post/page author \"nicename\""
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: ../extensions/seo/class-fw-extension-seo.php:191
|
769 |
+
msgid "Post/page author id"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: ../extensions/seo/class-fw-extension-seo.php:197
|
773 |
+
msgid "Search phrase in search page"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: ../extensions/seo/class-fw-extension-seo.php:203
|
777 |
+
#: ../extensions/seo/class-fw-extension-seo.php:209
|
778 |
+
msgid "Page number"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: ../extensions/seo/class-fw-extension-seo.php:215
|
782 |
+
msgid "Attachment caption"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: ../extensions/seo/class-fw-extension-seo.php:435
|
786 |
+
#: ../extensions/seo/manifest.php:7
|
787 |
+
#: ../core/components/extensions/manager/available-extensions.php:120
|
788 |
+
msgid "SEO"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: ../extensions/seo/manifest.php:9
|
792 |
+
#: ../core/components/extensions/manager/available-extensions.php:121
|
793 |
+
msgid ""
|
794 |
+
"This extension will enable you to have a fully optimized WordPress website "
|
795 |
+
"by adding optimized meta titles, keywords and descriptions."
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:22
|
799 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:310
|
800 |
+
msgid "Titles & Meta"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:26
|
804 |
+
#: ../extensions/breadcrumbs/settings-options.php:6
|
805 |
+
#: ../extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:9
|
806 |
+
msgid "Homepage"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:30
|
810 |
+
msgid "Homepage Title"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:31
|
814 |
+
msgid "Set homepage title format"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:36
|
818 |
+
msgid "Homepage Description"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:37
|
822 |
+
msgid "Set homepage description"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:44
|
826 |
+
msgid "Homepage Meta Keywords"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:45
|
830 |
+
msgid "Set homepage meta keywords"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:54
|
834 |
+
msgid "Custom Posts"
|
835 |
+
msgstr ""
|
836 |
+
|
837 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:59
|
838 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:111
|
839 |
+
#: ../extensions/learning/includes/class-fw-widget-learning.php:120
|
840 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:7
|
841 |
+
#: ../extensions/shortcodes/shortcodes/accordion/options.php:15
|
842 |
+
#: ../extensions/shortcodes/shortcodes/icon/options.php:12
|
843 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:8
|
844 |
+
#: ../extensions/shortcodes/shortcodes/tabs/options.php:15
|
845 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:56
|
846 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:480
|
847 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:62
|
848 |
+
msgid "Title"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:60
|
852 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:112
|
853 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:287
|
854 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:315
|
855 |
+
msgid "Set title format"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:63
|
859 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:74
|
860 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:87
|
861 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:115
|
862 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:126
|
863 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:139
|
864 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:247
|
865 |
+
msgid "Here are some tags examples:"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:70
|
869 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:122
|
870 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:320
|
871 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:66
|
872 |
+
msgid "Description"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:71
|
876 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:123
|
877 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:293
|
878 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:321
|
879 |
+
msgid "Set description format"
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:83
|
883 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:135
|
884 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:328
|
885 |
+
msgid "Meta Keywords"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:84
|
889 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:136
|
890 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:329
|
891 |
+
msgid "Set meta keywords"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:96
|
895 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:148
|
896 |
+
msgid "Meta Robots"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:97
|
900 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:149
|
901 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:188
|
902 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:227
|
903 |
+
msgid "noindex, follow"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:105
|
907 |
+
msgid "Taxonomies"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:158
|
911 |
+
msgid "Other"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:165
|
915 |
+
msgid "Author Page Title"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:166
|
919 |
+
msgid "Set author page title format"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:171
|
923 |
+
msgid "Author Page Description"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:172
|
927 |
+
msgid "Set author page description"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:179
|
931 |
+
msgid "Author Meta Keywords"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:180
|
935 |
+
msgid "Set author page meta keywords"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:187
|
939 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:226
|
940 |
+
msgid "Metarobots"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:193
|
944 |
+
msgid "Disable Author Archives"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:194
|
948 |
+
msgid "Disable Author archives SEO settings"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:204
|
952 |
+
msgid "Date Achieves Title"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:205
|
956 |
+
msgid "Set date achieves title format"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:210
|
960 |
+
msgid "Date Achieves Description"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:211
|
964 |
+
msgid "Set date achieves description"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:218
|
968 |
+
msgid "Date achieves Meta Keywords"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:219
|
972 |
+
msgid "Set date achieves meta keywords"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:232
|
976 |
+
msgid "Disable Date Archives"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:233
|
980 |
+
msgid "Disable date archives SEO settings"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:243
|
984 |
+
msgid "Search Page Title"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:244
|
988 |
+
msgid "Set search page title format"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:259
|
992 |
+
msgid "404 Page Title"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:260
|
996 |
+
msgid "Set 404 page title format"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:262
|
1000 |
+
#: ../extensions/breadcrumbs/settings-options.php:8
|
1001 |
+
msgid "404 Not Found"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:286
|
1005 |
+
msgid "SEO Title"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:292
|
1009 |
+
msgid "SEO Description"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:314
|
1013 |
+
msgid "Page Title"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:356
|
1017 |
+
msgid "Use Meta Keywords"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: ../extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:357
|
1021 |
+
msgid "Allow the use of meta keywords in posts and taxonomies"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: ../extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:33
|
1025 |
+
msgid "Google Webmasters"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: ../extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:34
|
1029 |
+
msgid "Insert Google Webmasters verification code"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: ../extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:41
|
1033 |
+
msgid "Bing Webmasters"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: ../extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:42
|
1037 |
+
msgid "Insert Bing Webmasters verification code"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: ../extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:80
|
1041 |
+
msgid "Webmasters"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: ../extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:89
|
1045 |
+
#, php-format
|
1046 |
+
msgid "Webmaster %s already exists"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: ../extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:634
|
1050 |
+
msgid "Google"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: ../extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:638
|
1054 |
+
msgid "Bing"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:19
|
1058 |
+
msgid "Check if you want to exclude this page"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:40
|
1062 |
+
msgid "Check if you want to exclude this category"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:57
|
1066 |
+
msgid "Sitemap"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:68
|
1070 |
+
msgid "View Sitemap"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:69
|
1074 |
+
msgid "Press button to view sitemap file"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:71
|
1078 |
+
msgid "XML Sitemap"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:81
|
1082 |
+
msgid "Search Engines"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:83
|
1086 |
+
msgid "After adding content the extension will automatically ping to:"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:93
|
1090 |
+
msgid "Exclude Pages"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:95
|
1094 |
+
msgid "Please check the pages you do not want to include in sitemap"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:106
|
1098 |
+
msgid "Exclude Categories"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: ../extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:108
|
1102 |
+
msgid "Please check the categories you do not want to include in sitemap"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: ../extensions/mailer/manifest.php:5
|
1106 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:187
|
1107 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:188
|
1108 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:103
|
1109 |
+
#: ../core/components/extensions/manager/available-extensions.php:240
|
1110 |
+
msgid "Mailer"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: ../extensions/mailer/manifest.php:6
|
1114 |
+
#: ../core/components/extensions/manager/available-extensions.php:241
|
1115 |
+
msgid ""
|
1116 |
+
"This extension will let you set some global email options and it is used by "
|
1117 |
+
"other extensions (like Forms) to send emails."
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: ../extensions/mailer/class-fw-extension-mailer.php:48
|
1121 |
+
msgid "Invalid send method"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: ../extensions/mailer/class-fw-extension-mailer.php:81
|
1125 |
+
msgid "The message has been successfully sent!"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: ../extensions/mailer/includes/class-mailer-sender.php:27
|
1129 |
+
msgid "Invalid email configuration"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: ../extensions/mailer/includes/class-mailer-sender.php:145
|
1133 |
+
#: ../extensions/mailer/includes/class-mailer-sender.php:161
|
1134 |
+
msgid "Email sent"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: ../extensions/mailer/includes/class-mailer-sender.php:146
|
1138 |
+
msgid "Could not send via smtp"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: ../extensions/mailer/includes/class-mailer-sender.php:162
|
1142 |
+
msgid "Could not send via wp_mail"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:25
|
1146 |
+
msgid "Server Address"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:26
|
1150 |
+
msgid "Enter your email server"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:31
|
1154 |
+
msgid "Username"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:32
|
1158 |
+
msgid "Enter your username"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:37
|
1162 |
+
msgid "Password"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:38
|
1166 |
+
msgid "Enter your password"
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:43
|
1170 |
+
msgid "Secure Connection"
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:54
|
1174 |
+
msgid "Custom Port"
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:55
|
1178 |
+
msgid "Optional - SMTP port number to use."
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:56
|
1182 |
+
msgid "Leave blank for default (SMTP - 25, SMTPS - 465)"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:82
|
1186 |
+
msgid "Username cannot be empty"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:89
|
1190 |
+
msgid "Password cannot be empty"
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:96
|
1194 |
+
msgid "Invalid host"
|
1195 |
+
msgstr ""
|
1196 |
+
|
1197 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:176
|
1198 |
+
#: ../extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-wpmail.php:56
|
1199 |
+
msgid "Could not send the email"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: ../extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:76
|
1203 |
+
msgid "Send Method"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: ../extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:77
|
1207 |
+
msgid "Select the send form method"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: ../extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:94
|
1211 |
+
msgid "From Name"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: ../extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:95
|
1215 |
+
msgid "The name you'll see in the From filed in your email client."
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: ../extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:102
|
1219 |
+
msgid "From Address"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: ../extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:103
|
1223 |
+
msgid "The form will look like was sent from this email address."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: ../extensions/learning/class-fw-extension-learning.php:56
|
1227 |
+
msgid "Lesson"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: ../extensions/learning/class-fw-extension-learning.php:57
|
1231 |
+
#: ../extensions/learning/views/content-course.php:14
|
1232 |
+
msgid "Lessons"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: ../extensions/learning/class-fw-extension-learning.php:78
|
1236 |
+
msgid "Create a lesson"
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: ../extensions/learning/class-fw-extension-learning.php:120
|
1240 |
+
#: ../extensions/learning/hooks.php:53
|
1241 |
+
msgid "Course"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: ../extensions/learning/class-fw-extension-learning.php:121
|
1245 |
+
#: ../extensions/learning/includes/class-fw-widget-learning.php:108
|
1246 |
+
msgid "Courses"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: ../extensions/learning/class-fw-extension-learning.php:142
|
1250 |
+
msgid "Create a course"
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: ../extensions/learning/class-fw-extension-learning.php:181
|
1254 |
+
#: ../extensions/learning/class-fw-extension-learning.php:222
|
1255 |
+
msgid "Course Category"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: ../extensions/learning/class-fw-extension-learning.php:182
|
1259 |
+
#: ../extensions/learning/class-fw-extension-learning.php:223
|
1260 |
+
msgid "Course Categories"
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: ../extensions/learning/class-fw-extension-learning.php:188
|
1264 |
+
msgid "Search categories"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: ../extensions/learning/class-fw-extension-learning.php:194
|
1268 |
+
msgid "Add New category"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: ../extensions/learning/class-fw-extension-learning.php:285
|
1272 |
+
msgid "View all courses"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: ../extensions/learning/class-fw-extension-learning.php:511
|
1276 |
+
msgid "No courses available"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: ../extensions/learning/class-fw-extension-learning.php:513
|
1280 |
+
msgid "Without Course"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: ../extensions/learning/class-fw-extension-learning.php:520
|
1284 |
+
msgid "Select Course"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: ../extensions/learning/manifest.php:7
|
1288 |
+
#: ../core/components/extensions/manager/available-extensions.php:216
|
1289 |
+
msgid "Learning"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: ../extensions/learning/manifest.php:9
|
1293 |
+
#: ../core/components/extensions/manager/available-extensions.php:217
|
1294 |
+
msgid ""
|
1295 |
+
"This extension adds a Learning module to your theme. Using this extension "
|
1296 |
+
"you can add courses, lessons and tests for your users to take."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:118
|
1300 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:145
|
1301 |
+
msgid "Quiz"
|
1302 |
+
msgstr ""
|
1303 |
+
|
1304 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:259
|
1305 |
+
msgid "Quiz Elements"
|
1306 |
+
msgstr ""
|
1307 |
+
|
1308 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:272
|
1309 |
+
msgid "Quiz settings"
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:276
|
1313 |
+
msgid "Quiz Passmark Points"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:278
|
1317 |
+
msgid "The points number at which the test will be passed."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:286
|
1321 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:296
|
1322 |
+
msgid "Lesson Quiz"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:535
|
1326 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:544
|
1327 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:552
|
1328 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:559
|
1329 |
+
#: ../extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:568
|
1330 |
+
msgid "Invalid Quiz"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: ../extensions/learning/extensions/learning-quiz/views/content.php:21
|
1334 |
+
#, php-format
|
1335 |
+
msgid "You require %d points in oder to pass the test"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: ../extensions/learning/extensions/learning-quiz/views/content.php:27
|
1339 |
+
msgid "Sorry, you did not pass the test"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: ../extensions/learning/extensions/learning-quiz/views/content.php:29
|
1343 |
+
msgid "Congratulation, you passed the test"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: ../extensions/learning/extensions/learning-quiz/views/content.php:43
|
1347 |
+
#, php-format
|
1348 |
+
msgid "You answered correctly %s questions from %s"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: ../extensions/learning/extensions/learning-quiz/views/content.php:69
|
1352 |
+
#: ../extensions/learning/views/content-lesson.php:18
|
1353 |
+
msgid "Back to"
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: ../extensions/learning/extensions/learning-quiz/views/start-quiz.php:11
|
1357 |
+
msgid "Start Quiz"
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:20
|
1361 |
+
msgid "Correct answers"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:21
|
1365 |
+
msgid "Add correct answer variants"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:24
|
1369 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:23
|
1370 |
+
msgid "Set Correct Answer"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:34
|
1374 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:31
|
1375 |
+
msgid "Wrong answers"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:35
|
1379 |
+
msgid "Add wrong answer variants"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:38
|
1383 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:35
|
1384 |
+
msgid "Set Wrong Answer"
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:56
|
1388 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:42
|
1389 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:55
|
1390 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:53
|
1391 |
+
msgid "Creates a"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1395 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:59
|
1396 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:91
|
1397 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:23
|
1398 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:50
|
1399 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:82
|
1400 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:180
|
1401 |
+
msgid "Multiple Choice"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1405 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1406 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1407 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1408 |
+
msgid "item"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:87
|
1412 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:73
|
1413 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:86
|
1414 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:84
|
1415 |
+
#: ../extensions/styling/extensions/switch-style-panel/options/settings.php:23
|
1416 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:55
|
1417 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:76
|
1418 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:49
|
1419 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:75
|
1420 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:51
|
1421 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:77
|
1422 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:50
|
1423 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:77
|
1424 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:51
|
1425 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:80
|
1426 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:51
|
1427 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:80
|
1428 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:50
|
1429 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:77
|
1430 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:50
|
1431 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:77
|
1432 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:48
|
1433 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:75
|
1434 |
+
msgid "Label"
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:88
|
1438 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:75
|
1439 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:87
|
1440 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:85
|
1441 |
+
msgid "Add/Edit Question"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:90
|
1445 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:77
|
1446 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:90
|
1447 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:87
|
1448 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:58
|
1449 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:51
|
1450 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:55
|
1451 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:53
|
1452 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:54
|
1453 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:54
|
1454 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:53
|
1455 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:53
|
1456 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:51
|
1457 |
+
msgid "Delete"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:92
|
1461 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:90
|
1462 |
+
msgid "More"
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:93
|
1466 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:91
|
1467 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:57
|
1468 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:57
|
1469 |
+
msgid "Close"
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:94
|
1473 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:78
|
1474 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:91
|
1475 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:89
|
1476 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:56
|
1477 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:52
|
1478 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:52
|
1479 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:54
|
1480 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:55
|
1481 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:55
|
1482 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:54
|
1483 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:54
|
1484 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:52
|
1485 |
+
msgid "Edit Label"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:96
|
1489 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:80
|
1490 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:93
|
1491 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:93
|
1492 |
+
msgid "The question label is empty"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:97
|
1496 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:81
|
1497 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:94
|
1498 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:94
|
1499 |
+
msgid "Invalid mark point number"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:98
|
1503 |
+
msgid "There needs to be at least one correct answer"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:18
|
1507 |
+
msgid "Correct answer"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:19
|
1511 |
+
msgid "The question answer will be true or false"
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:22
|
1515 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:20
|
1516 |
+
msgid "True"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:26
|
1520 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:24
|
1521 |
+
msgid "False"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1525 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:45
|
1526 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:74
|
1527 |
+
msgid "True/False"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:19
|
1531 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:21
|
1532 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:97
|
1533 |
+
msgid "Text before gap"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:28
|
1537 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:30
|
1538 |
+
msgid "Gap"
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:37
|
1542 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:39
|
1543 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:98
|
1544 |
+
msgid "Text after gap"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1548 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:58
|
1549 |
+
msgid "Gap Fill"
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:89
|
1553 |
+
msgid "Gap _____ Fill"
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:96
|
1557 |
+
#, php-format
|
1558 |
+
msgid "At least one of the fields ( %s or %s ) has to ve filled with text"
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:19
|
1562 |
+
msgid "Correct Answer"
|
1563 |
+
msgstr ""
|
1564 |
+
|
1565 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:20
|
1566 |
+
msgid "Write the correct answer text"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:32
|
1570 |
+
msgid "Add wrong answers variants"
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1574 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:56
|
1575 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:88
|
1576 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:23
|
1577 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:50
|
1578 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:82
|
1579 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:180
|
1580 |
+
msgid "Single Choice"
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:95
|
1584 |
+
msgid "Correct answer cannot be empty"
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:96
|
1588 |
+
msgid "There are not any wrong answers set"
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:51
|
1592 |
+
msgid "Question"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:53
|
1596 |
+
msgid "Type the question..."
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: ../extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:58
|
1600 |
+
msgid "Points"
|
1601 |
+
msgstr ""
|
1602 |
+
|
1603 |
+
#: ../extensions/learning/includes/class-fw-widget-learning.php:18
|
1604 |
+
msgid "Get list of courses"
|
1605 |
+
msgstr ""
|
1606 |
+
|
1607 |
+
#: ../extensions/learning/includes/class-fw-widget-learning.php:20
|
1608 |
+
msgid "Lesson Courses"
|
1609 |
+
msgstr ""
|
1610 |
+
|
1611 |
+
#: ../extensions/learning/includes/class-fw-widget-learning.php:126
|
1612 |
+
msgid "Number of courses"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: ../extensions/analytics/settings-options.php:11
|
1616 |
+
msgid "Google Analytics"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: ../extensions/analytics/settings-options.php:12
|
1620 |
+
msgid "Enter your Google Analytics code (Ex: UA-XXXXX-X)"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: ../extensions/analytics/manifest.php:7
|
1624 |
+
#: ../core/components/extensions/manager/available-extensions.php:192
|
1625 |
+
msgid "Analytics"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: ../extensions/analytics/manifest.php:8
|
1629 |
+
#: ../core/components/extensions/manager/available-extensions.php:193
|
1630 |
+
msgid ""
|
1631 |
+
"Enables the possibility to add the Google Analytics tracking code that will "
|
1632 |
+
"let you get all the analytics about visitors, page views and more."
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: ../extensions/blog/class-fw-extension-blog.php:36
|
1636 |
+
#: ../extensions/blog/class-fw-extension-blog.php:37
|
1637 |
+
#: ../extensions/breadcrumbs/settings-options.php:7
|
1638 |
+
#: ../extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:10
|
1639 |
+
msgid "Blog"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: ../extensions/blog/class-fw-extension-blog.php:38
|
1643 |
+
msgid "Add blog post"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: ../extensions/blog/class-fw-extension-blog.php:39
|
1647 |
+
msgid "Add new blog post"
|
1648 |
+
msgstr ""
|
1649 |
+
|
1650 |
+
#: ../extensions/blog/class-fw-extension-blog.php:40
|
1651 |
+
msgid "All blog posts"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: ../extensions/blog/class-fw-extension-blog.php:41
|
1655 |
+
msgid "Edit blog post"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: ../extensions/blog/class-fw-extension-blog.php:42
|
1659 |
+
#: ../extensions/blog/class-fw-extension-blog.php:43
|
1660 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:49
|
1661 |
+
msgid "Blog Post"
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: ../extensions/blog/class-fw-extension-blog.php:44
|
1665 |
+
msgid "New blog post"
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: ../extensions/blog/class-fw-extension-blog.php:45
|
1669 |
+
msgid "No blog posts found"
|
1670 |
+
msgstr ""
|
1671 |
+
|
1672 |
+
#: ../extensions/blog/class-fw-extension-blog.php:46
|
1673 |
+
msgid "No blog posts found in trash"
|
1674 |
+
msgstr ""
|
1675 |
+
|
1676 |
+
#: ../extensions/blog/class-fw-extension-blog.php:47
|
1677 |
+
msgid "Search blog posts"
|
1678 |
+
msgstr ""
|
1679 |
+
|
1680 |
+
#: ../extensions/blog/class-fw-extension-blog.php:48
|
1681 |
+
msgid "View blog post"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: ../extensions/blog/class-fw-extension-blog.php:67
|
1685 |
+
#: ../extensions/blog/class-fw-extension-blog.php:87
|
1686 |
+
#: ../extensions/blog/manifest.php:7
|
1687 |
+
#: ../extensions/blog/manifest.php:8
|
1688 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:50
|
1689 |
+
msgid "Blog Posts"
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: ../extensions/blog/class-fw-extension-blog.php:76
|
1693 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:74
|
1694 |
+
msgid "Blog Categories"
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
+
#: ../extensions/styling/class-fw-extension-styling.php:60
|
1698 |
+
#: ../extensions/styling/class-fw-extension-styling.php:61
|
1699 |
+
#: ../extensions/styling/class-fw-extension-styling.php:78
|
1700 |
+
#: ../extensions/styling/manifest.php:7
|
1701 |
+
#: ../core/components/extensions/manager/available-extensions.php:48
|
1702 |
+
msgid "Styling"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: ../extensions/styling/class-fw-extension-styling.php:104
|
1706 |
+
#: ../extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:278
|
1707 |
+
#: ../core/components/backend.php:357
|
1708 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2277
|
1709 |
+
msgid "Save"
|
1710 |
+
msgstr ""
|
1711 |
+
|
1712 |
+
#: ../extensions/styling/class-fw-extension-styling.php:118
|
1713 |
+
msgid "You have no permission to change Styling options"
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
#: ../extensions/styling/manifest.php:8
|
1717 |
+
#: ../core/components/extensions/manager/available-extensions.php:49
|
1718 |
+
msgid ""
|
1719 |
+
"This extension lets you control the website visual style. Starting from "
|
1720 |
+
"predefined styles to changing specific fonts and colors across the website."
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: ../extensions/styling/extensions/switch-style-panel/manifest.php:7
|
1724 |
+
msgid "Switch Style Panel"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: ../extensions/styling/extensions/switch-style-panel/manifest.php:8
|
1728 |
+
msgid ""
|
1729 |
+
"Show on the front-end a panel that allows the user to make the switch "
|
1730 |
+
"between predefined styles."
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: ../extensions/styling/extensions/switch-style-panel/options/settings.php:9
|
1734 |
+
msgid "Frontend Style Switcher"
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: ../extensions/styling/extensions/switch-style-panel/options/settings.php:10
|
1738 |
+
msgid "Enable frontend style switcher"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: ../extensions/styling/extensions/switch-style-panel/options/settings.php:13
|
1742 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:274
|
1743 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:45
|
1744 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:24
|
1745 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:42
|
1746 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:34
|
1747 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:48
|
1748 |
+
#: ../includes/option-types/simple.php:454
|
1749 |
+
#: ../includes/option-types/switch/class-fw-option-type-switch.php:151
|
1750 |
+
msgid "Yes"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: ../extensions/styling/extensions/switch-style-panel/options/settings.php:17
|
1754 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:278
|
1755 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:49
|
1756 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:28
|
1757 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:46
|
1758 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:38
|
1759 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:52
|
1760 |
+
#: ../includes/option-types/switch/class-fw-option-type-switch.php:147
|
1761 |
+
msgid "No"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: ../extensions/styling/extensions/switch-style-panel/options/settings.php:24
|
1765 |
+
msgid "The text that will be displayed at the top of the panel."
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: ../extensions/styling/includes/option-types/style/views/settings.php:119
|
1769 |
+
msgid "Background"
|
1770 |
+
msgstr ""
|
1771 |
+
|
1772 |
+
#: ../extensions/styling/includes/option-types/style/views/predefined.php:26
|
1773 |
+
msgid "Predefined Styles"
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: ../extensions/styling/includes/option-types/style/views/preview.php:41
|
1777 |
+
msgid "This is a simplified preview, not changes are reflected."
|
1778 |
+
msgstr ""
|
1779 |
+
|
1780 |
+
#: ../extensions/feedback/class-fw-extension-feedback.php:64
|
1781 |
+
#: ../core/components/extensions/manager/available-extensions.php:144
|
1782 |
+
msgid "Feedback"
|
1783 |
+
msgstr ""
|
1784 |
+
|
1785 |
+
#: ../extensions/feedback/class-fw-extension-feedback.php:111
|
1786 |
+
msgid "Reviews"
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: ../extensions/feedback/settings-options.php:10
|
1790 |
+
#: ../extensions/shortcodes/extensions/page-builder/settings-options.php:11
|
1791 |
+
msgid "Activate for"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: ../extensions/feedback/settings-options.php:16
|
1795 |
+
msgid "Select the options you want the Feedback extension to be activated for"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: ../extensions/feedback/manifest.php:7
|
1799 |
+
msgid "FeedBack"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: ../extensions/feedback/manifest.php:8
|
1803 |
+
#: ../core/components/extensions/manager/available-extensions.php:145
|
1804 |
+
msgid ""
|
1805 |
+
"Adds the possibility to leave feedback (comments, reviews and rating) about "
|
1806 |
+
"your products, articles, etc. This replaces the default comments system."
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#: ../extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:84
|
1810 |
+
msgid "Rating:"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: ../extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:195
|
1814 |
+
msgid "Feedback Stars"
|
1815 |
+
msgstr ""
|
1816 |
+
|
1817 |
+
#: ../extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:221
|
1818 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/rate.php:12
|
1819 |
+
msgid "Rating"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: ../extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1823 |
+
msgid "ERROR"
|
1824 |
+
msgstr ""
|
1825 |
+
|
1826 |
+
#: ../extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1827 |
+
msgid "please rate the post."
|
1828 |
+
msgstr ""
|
1829 |
+
|
1830 |
+
#: ../extensions/feedback/extensions/feedback-stars/manifest.php:7
|
1831 |
+
msgid "FeedBack Stars"
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: ../extensions/feedback/extensions/feedback-stars/manifest.php:8
|
1835 |
+
msgid "Allows visitors to appreciate a post using star rating"
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1839 |
+
msgid "Pingback:"
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1843 |
+
#: ../extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1844 |
+
msgid "(Edit)"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review.php:37
|
1848 |
+
msgid "Post author"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review.php:57
|
1852 |
+
#: ../extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1853 |
+
#, php-format
|
1854 |
+
msgid "%1$s at %2$s"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review.php:63
|
1858 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:53
|
1859 |
+
#: ../extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:56
|
1860 |
+
#: ../extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:122
|
1861 |
+
msgid "Your comment is awaiting moderation."
|
1862 |
+
msgstr ""
|
1863 |
+
|
1864 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:24
|
1865 |
+
#: ../extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:40
|
1866 |
+
#: ../extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:119
|
1867 |
+
msgid "says"
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: ../extensions/feedback/extensions/feedback-stars/views/view-rates.php:24
|
1871 |
+
#, php-format
|
1872 |
+
msgid "Based on %s Votes"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: ../extensions/feedback/extensions/feedback-stars/options/settings.php:6
|
1876 |
+
msgid "Rating System"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: ../extensions/feedback/extensions/feedback-stars/options/settings.php:9
|
1880 |
+
msgid "Enter the number of stars you want in the rating system"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: ../extensions/feedback/extensions/feedback-stars/options/settings.php:11
|
1884 |
+
msgid "5 stars"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: ../extensions/feedback/extensions/feedback-stars/options/settings.php:12
|
1888 |
+
msgid "7 stars"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: ../extensions/feedback/extensions/feedback-stars/options/settings.php:13
|
1892 |
+
msgid "10 stars"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: ../extensions/feedback/views/reviews.php:32
|
1896 |
+
#: ../extensions/feedback/views/reviews.php:53
|
1897 |
+
msgid "Comment navigation"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: ../extensions/feedback/views/reviews.php:35
|
1901 |
+
#: ../extensions/feedback/views/reviews.php:56
|
1902 |
+
msgid "← Older Comments"
|
1903 |
+
msgstr ""
|
1904 |
+
|
1905 |
+
#: ../extensions/feedback/views/reviews.php:36
|
1906 |
+
#: ../extensions/feedback/views/reviews.php:57
|
1907 |
+
msgid "Newer Comments →"
|
1908 |
+
msgstr ""
|
1909 |
+
|
1910 |
+
#: ../extensions/feedback/views/reviews.php:62
|
1911 |
+
msgid "Comments are closed."
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
+
#: ../extensions/shortcodes/extensions/page-builder/settings-options.php:18
|
1915 |
+
msgid ""
|
1916 |
+
"Select the posts you want the Page Builder extension to be activated for"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: ../extensions/shortcodes/extensions/page-builder/manifest.php:7
|
1920 |
+
#: ../core/components/extensions/manager/available-extensions.php:84
|
1921 |
+
msgid "Page Builder"
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: ../extensions/shortcodes/extensions/page-builder/manifest.php:9
|
1925 |
+
msgid ""
|
1926 |
+
"Lets you easily build countless pages with the help of the drag and drop "
|
1927 |
+
"visual page builder that comes with a lot of already created shortcodes."
|
1928 |
+
msgstr ""
|
1929 |
+
|
1930 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:51
|
1931 |
+
msgid ""
|
1932 |
+
"There must not be more than one page Editor integrated with the wp post "
|
1933 |
+
"editor per page"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:96
|
1937 |
+
msgid "Visual Page Builder"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:97
|
1941 |
+
msgid "Default Editor"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:126
|
1945 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:117
|
1946 |
+
#: ../extensions/shortcodes/shortcodes/section/config.php:5
|
1947 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:22
|
1948 |
+
msgid "Layout Elements"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:99
|
1952 |
+
#, php-format
|
1953 |
+
msgid "No Page Builder tab specified for shortcode: %s"
|
1954 |
+
msgstr ""
|
1955 |
+
|
1956 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:111
|
1957 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:75
|
1958 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:83
|
1959 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:57
|
1960 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:238
|
1961 |
+
#: ../core/components/extensions/manager/views/extension.php:141
|
1962 |
+
#: ../core/components/extensions/manager/views/extension.php:345
|
1963 |
+
msgid "Remove"
|
1964 |
+
msgstr ""
|
1965 |
+
|
1966 |
+
#: ../extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:112
|
1967 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:74
|
1968 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:82
|
1969 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:56
|
1970 |
+
msgid "Duplicate"
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/config.php:8
|
1974 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:12
|
1975 |
+
msgid "Testimonials"
|
1976 |
+
msgstr ""
|
1977 |
+
|
1978 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/config.php:9
|
1979 |
+
msgid "Add some Testimonials"
|
1980 |
+
msgstr ""
|
1981 |
+
|
1982 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/config.php:10
|
1983 |
+
#: ../extensions/shortcodes/shortcodes/accordion/config.php:10
|
1984 |
+
#: ../extensions/shortcodes/shortcodes/table/config.php:10
|
1985 |
+
#: ../extensions/shortcodes/shortcodes/map/config.php:10
|
1986 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/config.php:8
|
1987 |
+
#: ../extensions/shortcodes/shortcodes/team-member/config.php:10
|
1988 |
+
#: ../extensions/shortcodes/shortcodes/icon/config.php:8
|
1989 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/config.php:8
|
1990 |
+
#: ../extensions/shortcodes/shortcodes/button/config.php:10
|
1991 |
+
#: ../extensions/shortcodes/shortcodes/calendar/config.php:10
|
1992 |
+
#: ../extensions/shortcodes/shortcodes/notification/config.php:10
|
1993 |
+
#: ../extensions/shortcodes/shortcodes/widget-area/config.php:10
|
1994 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/config.php:10
|
1995 |
+
#: ../extensions/shortcodes/shortcodes/text-block/config.php:10
|
1996 |
+
#: ../extensions/shortcodes/shortcodes/divider/config.php:8
|
1997 |
+
#: ../extensions/shortcodes/shortcodes/tabs/config.php:10
|
1998 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:10
|
1999 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:106
|
2000 |
+
msgid "Content Elements"
|
2001 |
+
msgstr ""
|
2002 |
+
|
2003 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:8
|
2004 |
+
msgid "Option Testimonials Title"
|
2005 |
+
msgstr ""
|
2006 |
+
|
2007 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:13
|
2008 |
+
msgid "Add/Edit Testimonial"
|
2009 |
+
msgstr ""
|
2010 |
+
|
2011 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:14
|
2012 |
+
msgid "Here you can add, remove and edit your Testimonials."
|
2013 |
+
msgstr ""
|
2014 |
+
|
2015 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:19
|
2016 |
+
msgid "Quote"
|
2017 |
+
msgstr ""
|
2018 |
+
|
2019 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:20
|
2020 |
+
msgid "Enter the testimonial here"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:25
|
2024 |
+
#: ../extensions/shortcodes/shortcodes/media-image/config.php:6
|
2025 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:102
|
2026 |
+
msgid "Image"
|
2027 |
+
msgstr ""
|
2028 |
+
|
2029 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:26
|
2030 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:8
|
2031 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:9
|
2032 |
+
msgid ""
|
2033 |
+
"Either upload a new, or choose an existing image from your media library"
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:30
|
2037 |
+
msgid "Name"
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:31
|
2041 |
+
msgid "Enter the Name of the Person to quote"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:35
|
2045 |
+
msgid "Position"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:36
|
2049 |
+
msgid "Can be used for a job description"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:40
|
2053 |
+
msgid "Website Name"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:41
|
2057 |
+
msgid "Linktext for the above Link"
|
2058 |
+
msgstr ""
|
2059 |
+
|
2060 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:45
|
2061 |
+
msgid "Website Link"
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: ../extensions/shortcodes/shortcodes/testimonials/options.php:46
|
2065 |
+
msgid "Link to the Persons website"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: ../extensions/shortcodes/shortcodes/accordion/config.php:8
|
2069 |
+
msgid "Accordion"
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: ../extensions/shortcodes/shortcodes/accordion/config.php:9
|
2073 |
+
msgid "Add an Accordion"
|
2074 |
+
msgstr ""
|
2075 |
+
|
2076 |
+
#: ../extensions/shortcodes/shortcodes/accordion/options.php:8
|
2077 |
+
#: ../extensions/shortcodes/shortcodes/tabs/config.php:8
|
2078 |
+
#: ../extensions/shortcodes/shortcodes/tabs/options.php:8
|
2079 |
+
msgid "Tabs"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: ../extensions/shortcodes/shortcodes/accordion/options.php:9
|
2083 |
+
msgid "Add/Edit Tabs"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: ../extensions/shortcodes/shortcodes/accordion/options.php:10
|
2087 |
+
#: ../extensions/shortcodes/shortcodes/tabs/options.php:10
|
2088 |
+
msgid "Create your tabs"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: ../extensions/shortcodes/shortcodes/accordion/options.php:19
|
2092 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/options.php:24
|
2093 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:13
|
2094 |
+
#: ../extensions/shortcodes/shortcodes/text-block/options.php:10
|
2095 |
+
#: ../extensions/shortcodes/shortcodes/tabs/options.php:19
|
2096 |
+
msgid "Content"
|
2097 |
+
msgstr ""
|
2098 |
+
|
2099 |
+
#: ../extensions/shortcodes/shortcodes/table/config.php:8
|
2100 |
+
msgid "Table"
|
2101 |
+
msgstr ""
|
2102 |
+
|
2103 |
+
#: ../extensions/shortcodes/shortcodes/table/config.php:9
|
2104 |
+
msgid "Add a Table"
|
2105 |
+
msgstr ""
|
2106 |
+
|
2107 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:64
|
2108 |
+
msgid "table-builder option type must be inside the table shortcode"
|
2109 |
+
msgstr ""
|
2110 |
+
|
2111 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:171
|
2112 |
+
msgid "Table Styling"
|
2113 |
+
msgstr ""
|
2114 |
+
|
2115 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:172
|
2116 |
+
msgid "Choose the table styling options"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:174
|
2120 |
+
msgid "Use the table as a pricing table"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:175
|
2124 |
+
msgid "Use the table to display tabular data"
|
2125 |
+
msgstr ""
|
2126 |
+
|
2127 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:197
|
2128 |
+
msgid "Default row"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:198
|
2132 |
+
msgid "Heading row"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:199
|
2136 |
+
msgid "Pricing row"
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:200
|
2140 |
+
msgid "Button row"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:201
|
2144 |
+
msgid "Row switch"
|
2145 |
+
msgstr ""
|
2146 |
+
|
2147 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:211
|
2148 |
+
msgid "Default column"
|
2149 |
+
msgstr ""
|
2150 |
+
|
2151 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:212
|
2152 |
+
msgid "Description column"
|
2153 |
+
msgstr ""
|
2154 |
+
|
2155 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:213
|
2156 |
+
msgid "Highlight column"
|
2157 |
+
msgstr ""
|
2158 |
+
|
2159 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:214
|
2160 |
+
msgid "Center text column"
|
2161 |
+
msgstr ""
|
2162 |
+
|
2163 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:251
|
2164 |
+
msgid "per month"
|
2165 |
+
msgstr ""
|
2166 |
+
|
2167 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:262
|
2168 |
+
#: ../extensions/shortcodes/shortcodes/button/config.php:8
|
2169 |
+
msgid "Button"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:263
|
2173 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:39
|
2174 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:148
|
2175 |
+
#: ../includes/option-types/addable-option/class-fw-option-type-addable-option.php:20
|
2176 |
+
#: ../includes/option-types/addable-popup/class-fw-option-type-addable-popup.php:153
|
2177 |
+
#: ../includes/option-types/addable-box/class-fw-option-type-addable-box.php:186
|
2178 |
+
msgid "Add"
|
2179 |
+
msgstr ""
|
2180 |
+
|
2181 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-head-template.php:27
|
2182 |
+
msgid "Add Column"
|
2183 |
+
msgstr ""
|
2184 |
+
|
2185 |
+
#: ../extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/view.php:161
|
2186 |
+
msgid "Add Row"
|
2187 |
+
msgstr ""
|
2188 |
+
|
2189 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:24
|
2190 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:25
|
2191 |
+
msgid "Custom"
|
2192 |
+
msgstr ""
|
2193 |
+
|
2194 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:27
|
2195 |
+
msgid "Locations"
|
2196 |
+
msgstr ""
|
2197 |
+
|
2198 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:28
|
2199 |
+
msgid "Add/Edit Location"
|
2200 |
+
msgstr ""
|
2201 |
+
|
2202 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:31
|
2203 |
+
msgid "Note: Please set location"
|
2204 |
+
msgstr ""
|
2205 |
+
|
2206 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:35
|
2207 |
+
#: ../extensions/events/class-fw-extension-events.php:187
|
2208 |
+
msgid "Location"
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:39
|
2212 |
+
msgid "Location Title"
|
2213 |
+
msgstr ""
|
2214 |
+
|
2215 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:40
|
2216 |
+
msgid "Set location title"
|
2217 |
+
msgstr ""
|
2218 |
+
|
2219 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:44
|
2220 |
+
msgid "Location Description"
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:45
|
2224 |
+
msgid "Set location description"
|
2225 |
+
msgstr ""
|
2226 |
+
|
2227 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:49
|
2228 |
+
msgid "Location Url"
|
2229 |
+
msgstr ""
|
2230 |
+
|
2231 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:50
|
2232 |
+
msgid "Set page url (Ex: http://example.com)"
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:53
|
2236 |
+
msgid "Location Image"
|
2237 |
+
msgstr ""
|
2238 |
+
|
2239 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:54
|
2240 |
+
msgid "Add location image"
|
2241 |
+
msgstr ""
|
2242 |
+
|
2243 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:113
|
2244 |
+
msgid "No location provider specified for map shortcode"
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:115
|
2248 |
+
msgid "Map Placeholder"
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: ../extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:122
|
2252 |
+
#, php-format
|
2253 |
+
msgid "Unknown location provider \"%s\" specified for map shortcode"
|
2254 |
+
msgstr ""
|
2255 |
+
|
2256 |
+
#: ../extensions/shortcodes/shortcodes/map/config.php:8
|
2257 |
+
msgid "Map"
|
2258 |
+
msgstr ""
|
2259 |
+
|
2260 |
+
#: ../extensions/shortcodes/shortcodes/map/config.php:9
|
2261 |
+
msgid "Add a Map"
|
2262 |
+
msgstr ""
|
2263 |
+
|
2264 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:13
|
2265 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:13
|
2266 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:214
|
2267 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:473
|
2268 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-edit.php:11
|
2269 |
+
msgid "Population Method"
|
2270 |
+
msgstr ""
|
2271 |
+
|
2272 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:14
|
2273 |
+
msgid "Select map population method (Ex: events, custom)"
|
2274 |
+
msgstr ""
|
2275 |
+
|
2276 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:24
|
2277 |
+
msgid "Map Type"
|
2278 |
+
msgstr ""
|
2279 |
+
|
2280 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:25
|
2281 |
+
msgid "Select map type"
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:27
|
2285 |
+
msgid "Roadmap"
|
2286 |
+
msgstr ""
|
2287 |
+
|
2288 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:28
|
2289 |
+
msgid "Terrain"
|
2290 |
+
msgstr ""
|
2291 |
+
|
2292 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:29
|
2293 |
+
msgid "Satellite"
|
2294 |
+
msgstr ""
|
2295 |
+
|
2296 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:30
|
2297 |
+
msgid "Hybrid"
|
2298 |
+
msgstr ""
|
2299 |
+
|
2300 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:34
|
2301 |
+
msgid "Map Height"
|
2302 |
+
msgstr ""
|
2303 |
+
|
2304 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:35
|
2305 |
+
msgid "Set map height (Ex: 300)"
|
2306 |
+
msgstr ""
|
2307 |
+
|
2308 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:41
|
2309 |
+
msgid "Disable zoom on scroll"
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: ../extensions/shortcodes/shortcodes/map/options.php:42
|
2313 |
+
msgid "Prevent the map from zooming when scrolling until clicking on the map"
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:76
|
2317 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:65
|
2318 |
+
msgid "Column"
|
2319 |
+
msgstr ""
|
2320 |
+
|
2321 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:120
|
2322 |
+
#, php-format
|
2323 |
+
msgid "Add a %s column"
|
2324 |
+
msgstr ""
|
2325 |
+
|
2326 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:12
|
2327 |
+
msgid "Columns"
|
2328 |
+
msgstr ""
|
2329 |
+
|
2330 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:47
|
2331 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:47
|
2332 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:51
|
2333 |
+
msgid "No Templates Saved"
|
2334 |
+
msgstr ""
|
2335 |
+
|
2336 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:50
|
2337 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:50
|
2338 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:54
|
2339 |
+
msgid "Load Template"
|
2340 |
+
msgstr ""
|
2341 |
+
|
2342 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:91
|
2343 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:91
|
2344 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:94
|
2345 |
+
msgid "Template Name"
|
2346 |
+
msgstr ""
|
2347 |
+
|
2348 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:92
|
2349 |
+
msgid "Save Column"
|
2350 |
+
msgstr ""
|
2351 |
+
|
2352 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:93
|
2353 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:93
|
2354 |
+
msgid "Save as Template"
|
2355 |
+
msgstr ""
|
2356 |
+
|
2357 |
+
#: ../extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:174
|
2358 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:174
|
2359 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:206
|
2360 |
+
msgid "No Title"
|
2361 |
+
msgstr ""
|
2362 |
+
|
2363 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/config.php:6
|
2364 |
+
msgid "Special Heading"
|
2365 |
+
msgstr ""
|
2366 |
+
|
2367 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/config.php:7
|
2368 |
+
msgid "Add a Special Heading"
|
2369 |
+
msgstr ""
|
2370 |
+
|
2371 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/options.php:8
|
2372 |
+
msgid "Heading Title"
|
2373 |
+
msgstr ""
|
2374 |
+
|
2375 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/options.php:9
|
2376 |
+
msgid "Write the heading title content"
|
2377 |
+
msgstr ""
|
2378 |
+
|
2379 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/options.php:13
|
2380 |
+
msgid "Heading Subtitle"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/options.php:14
|
2384 |
+
msgid "Write the heading subtitle content"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/options.php:18
|
2388 |
+
msgid "Heading Size"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: ../extensions/shortcodes/shortcodes/special-heading/options.php:30
|
2392 |
+
msgid "Centered"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: ../extensions/shortcodes/shortcodes/team-member/config.php:8
|
2396 |
+
msgid "Team Member"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: ../extensions/shortcodes/shortcodes/team-member/config.php:9
|
2400 |
+
msgid "Add a Team Member"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:7
|
2404 |
+
msgid "Team Member Image"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:12
|
2408 |
+
msgid "Team Member Name"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:13
|
2412 |
+
msgid "Name of the person"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:18
|
2416 |
+
msgid "Team Member Job Title"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:19
|
2420 |
+
msgid "Job title of the person."
|
2421 |
+
msgstr ""
|
2422 |
+
|
2423 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:24
|
2424 |
+
msgid "Team Member Description"
|
2425 |
+
msgstr ""
|
2426 |
+
|
2427 |
+
#: ../extensions/shortcodes/shortcodes/team-member/options.php:25
|
2428 |
+
msgid "Enter a few words that describe the person"
|
2429 |
+
msgstr ""
|
2430 |
+
|
2431 |
+
#: ../extensions/shortcodes/shortcodes/icon/config.php:6
|
2432 |
+
#: ../extensions/shortcodes/shortcodes/icon/options.php:8
|
2433 |
+
#: ../extensions/megamenu/class-fw-extension-megamenu.php:115
|
2434 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:188
|
2435 |
+
msgid "Icon"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: ../extensions/shortcodes/shortcodes/icon/config.php:7
|
2439 |
+
msgid "Add an Icon"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: ../extensions/shortcodes/shortcodes/icon/options.php:13
|
2443 |
+
msgid "Icon title"
|
2444 |
+
msgstr ""
|
2445 |
+
|
2446 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/config.php:6
|
2447 |
+
msgid "Icon Box"
|
2448 |
+
msgstr ""
|
2449 |
+
|
2450 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/config.php:7
|
2451 |
+
msgid "Add an Icon Box"
|
2452 |
+
msgstr ""
|
2453 |
+
|
2454 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/options.php:8
|
2455 |
+
msgid "Box Style"
|
2456 |
+
msgstr ""
|
2457 |
+
|
2458 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/options.php:10
|
2459 |
+
msgid "Icon above title"
|
2460 |
+
msgstr ""
|
2461 |
+
|
2462 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/options.php:11
|
2463 |
+
msgid "Icon in line with title"
|
2464 |
+
msgstr ""
|
2465 |
+
|
2466 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/options.php:16
|
2467 |
+
msgid "Choose an Icon"
|
2468 |
+
msgstr ""
|
2469 |
+
|
2470 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/options.php:20
|
2471 |
+
msgid "Title of the Box"
|
2472 |
+
msgstr ""
|
2473 |
+
|
2474 |
+
#: ../extensions/shortcodes/shortcodes/icon-box/options.php:25
|
2475 |
+
msgid "Enter the desired content"
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: ../extensions/shortcodes/shortcodes/button/config.php:9
|
2479 |
+
msgid "Add a Button"
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:7
|
2483 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:17
|
2484 |
+
msgid "Button Label"
|
2485 |
+
msgstr ""
|
2486 |
+
|
2487 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:8
|
2488 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:18
|
2489 |
+
msgid "This is the text that appears on your button"
|
2490 |
+
msgstr ""
|
2491 |
+
|
2492 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:13
|
2493 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:23
|
2494 |
+
msgid "Button Link"
|
2495 |
+
msgstr ""
|
2496 |
+
|
2497 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:14
|
2498 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:24
|
2499 |
+
msgid "Where should your button link to"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:20
|
2503 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:38
|
2504 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:30
|
2505 |
+
msgid "Open Link in New Window"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:21
|
2509 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:39
|
2510 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:31
|
2511 |
+
msgid "Select here if you want to open the linked page in a new window"
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:32
|
2515 |
+
msgid "Button Color"
|
2516 |
+
msgstr ""
|
2517 |
+
|
2518 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:33
|
2519 |
+
msgid "Choose a color for your button"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:36
|
2523 |
+
msgid "Default"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:37
|
2527 |
+
msgid "Black"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:38
|
2531 |
+
msgid "Blue"
|
2532 |
+
msgstr ""
|
2533 |
+
|
2534 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:39
|
2535 |
+
msgid "Green"
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: ../extensions/shortcodes/shortcodes/button/options.php:40
|
2539 |
+
msgid "Red"
|
2540 |
+
msgstr ""
|
2541 |
+
|
2542 |
+
#: ../extensions/shortcodes/shortcodes/media-video/config.php:6
|
2543 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:108
|
2544 |
+
msgid "Video"
|
2545 |
+
msgstr ""
|
2546 |
+
|
2547 |
+
#: ../extensions/shortcodes/shortcodes/media-video/config.php:7
|
2548 |
+
msgid "Add a Video"
|
2549 |
+
msgstr ""
|
2550 |
+
|
2551 |
+
#: ../extensions/shortcodes/shortcodes/media-video/config.php:8
|
2552 |
+
#: ../extensions/shortcodes/shortcodes/media-image/config.php:8
|
2553 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/config.php:10
|
2554 |
+
msgid "Media Elements"
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: ../extensions/shortcodes/shortcodes/media-video/options.php:8
|
2558 |
+
msgid "Insert Video URL"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: ../extensions/shortcodes/shortcodes/media-video/options.php:9
|
2562 |
+
#: ../extensions/shortcodes/shortcodes/section/options.php:24
|
2563 |
+
msgid "Insert Video URL to embed this video"
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: ../extensions/shortcodes/shortcodes/media-video/options.php:13
|
2567 |
+
msgid "Video Width"
|
2568 |
+
msgstr ""
|
2569 |
+
|
2570 |
+
#: ../extensions/shortcodes/shortcodes/media-video/options.php:14
|
2571 |
+
msgid "Enter a value for the width"
|
2572 |
+
msgstr ""
|
2573 |
+
|
2574 |
+
#: ../extensions/shortcodes/shortcodes/media-video/options.php:19
|
2575 |
+
msgid "Video Height"
|
2576 |
+
msgstr ""
|
2577 |
+
|
2578 |
+
#: ../extensions/shortcodes/shortcodes/media-video/options.php:20
|
2579 |
+
msgid "Enter a value for the height"
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
#: ../extensions/shortcodes/shortcodes/calendar/config.php:8
|
2583 |
+
#: ../extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:16
|
2584 |
+
msgid "Calendar"
|
2585 |
+
msgstr ""
|
2586 |
+
|
2587 |
+
#: ../extensions/shortcodes/shortcodes/calendar/config.php:9
|
2588 |
+
msgid "Add a Calendar"
|
2589 |
+
msgstr ""
|
2590 |
+
|
2591 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:14
|
2592 |
+
msgid "Select calendar population method (Ex: events, custom)"
|
2593 |
+
msgstr ""
|
2594 |
+
|
2595 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:23
|
2596 |
+
msgid "Calendar Type"
|
2597 |
+
msgstr ""
|
2598 |
+
|
2599 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:24
|
2600 |
+
msgid "Select calendar type"
|
2601 |
+
msgstr ""
|
2602 |
+
|
2603 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:27
|
2604 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:23
|
2605 |
+
msgid "Daily"
|
2606 |
+
msgstr ""
|
2607 |
+
|
2608 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:28
|
2609 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:22
|
2610 |
+
msgid "Weekly"
|
2611 |
+
msgstr ""
|
2612 |
+
|
2613 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:29
|
2614 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:21
|
2615 |
+
msgid "Monthly"
|
2616 |
+
msgstr ""
|
2617 |
+
|
2618 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:33
|
2619 |
+
msgid "Start Week On"
|
2620 |
+
msgstr ""
|
2621 |
+
|
2622 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:34
|
2623 |
+
msgid "Select first day of week"
|
2624 |
+
msgstr ""
|
2625 |
+
|
2626 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:37
|
2627 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:110
|
2628 |
+
msgid "Monday"
|
2629 |
+
msgstr ""
|
2630 |
+
|
2631 |
+
#: ../extensions/shortcodes/shortcodes/calendar/options.php:38
|
2632 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:109
|
2633 |
+
msgid "Sunday"
|
2634 |
+
msgstr ""
|
2635 |
+
|
2636 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:29
|
2637 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:56
|
2638 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:82
|
2639 |
+
#: ../extensions/events/class-fw-extension-events.php:69
|
2640 |
+
#: ../extensions/events/class-fw-extension-events.php:74
|
2641 |
+
#: ../extensions/events/manifest.php:7
|
2642 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:77
|
2643 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:185
|
2644 |
+
#: ../core/components/extensions/manager/available-extensions.php:180
|
2645 |
+
msgid "Events"
|
2646 |
+
msgstr ""
|
2647 |
+
|
2648 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:30
|
2649 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:59
|
2650 |
+
msgid "Add/Edit Date & Time"
|
2651 |
+
msgstr ""
|
2652 |
+
|
2653 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:33
|
2654 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:63
|
2655 |
+
msgid "Note: Please set start & end event datetime"
|
2656 |
+
msgstr ""
|
2657 |
+
|
2658 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:37
|
2659 |
+
msgid "Event Title"
|
2660 |
+
msgstr ""
|
2661 |
+
|
2662 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:38
|
2663 |
+
msgid "Enter the event title"
|
2664 |
+
msgstr ""
|
2665 |
+
|
2666 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:42
|
2667 |
+
msgid "Event URL"
|
2668 |
+
msgstr ""
|
2669 |
+
|
2670 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:43
|
2671 |
+
msgid "Enter the event URL (Ex: http://your-domain.com/event)"
|
2672 |
+
msgstr ""
|
2673 |
+
|
2674 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:47
|
2675 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:58
|
2676 |
+
msgid "Date & Time"
|
2677 |
+
msgstr ""
|
2678 |
+
|
2679 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:48
|
2680 |
+
msgid "Enter the event date & time"
|
2681 |
+
msgstr ""
|
2682 |
+
|
2683 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:129
|
2684 |
+
msgid "No events provider specified for calendar shortcode"
|
2685 |
+
msgstr ""
|
2686 |
+
|
2687 |
+
#: ../extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:138
|
2688 |
+
#, php-format
|
2689 |
+
msgid "Unknown events provider \"%s\" specified for calendar shortcode"
|
2690 |
+
msgstr ""
|
2691 |
+
|
2692 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:55
|
2693 |
+
#: ../extensions/events/class-fw-extension-events.php:68
|
2694 |
+
#: ../extensions/events/class-fw-extension-events.php:75
|
2695 |
+
msgid "Event"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:57
|
2699 |
+
#: ../extensions/shortcodes/shortcodes/calendar/views/view.php:23
|
2700 |
+
msgid "Today"
|
2701 |
+
msgstr ""
|
2702 |
+
|
2703 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:66
|
2704 |
+
#, php-format
|
2705 |
+
msgid "Calendar: View %s not found"
|
2706 |
+
msgstr ""
|
2707 |
+
|
2708 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:67
|
2709 |
+
#, php-format
|
2710 |
+
msgid ""
|
2711 |
+
"Calendar: Wrong date format %s. Should be either \"now\" or \"yyyy-mm-dd\""
|
2712 |
+
msgstr ""
|
2713 |
+
|
2714 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:69
|
2715 |
+
msgid "Calendar: Event URL is not set"
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:70
|
2719 |
+
#, php-format
|
2720 |
+
msgid ""
|
2721 |
+
"Calendar: Wrong navigation direction %s. Can be only \"next\" or \"prev\" or "
|
2722 |
+
"\"today\""
|
2723 |
+
msgstr ""
|
2724 |
+
|
2725 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:72
|
2726 |
+
msgid ""
|
2727 |
+
"Calendar: Time split parameter should divide 60 without decimals. Something "
|
2728 |
+
"like 10, 15, 30"
|
2729 |
+
msgstr ""
|
2730 |
+
|
2731 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:74
|
2732 |
+
msgid "No events in this day."
|
2733 |
+
msgstr ""
|
2734 |
+
|
2735 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:77
|
2736 |
+
#, php-format
|
2737 |
+
msgid "week %s of %s"
|
2738 |
+
msgstr ""
|
2739 |
+
|
2740 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:79
|
2741 |
+
msgid "Week "
|
2742 |
+
msgstr ""
|
2743 |
+
|
2744 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:80
|
2745 |
+
msgid "All day"
|
2746 |
+
msgstr ""
|
2747 |
+
|
2748 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:81
|
2749 |
+
msgid "Time"
|
2750 |
+
msgstr ""
|
2751 |
+
|
2752 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:83
|
2753 |
+
msgid "Ends before timeline"
|
2754 |
+
msgstr ""
|
2755 |
+
|
2756 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:84
|
2757 |
+
msgid "Starts after timeline"
|
2758 |
+
msgstr ""
|
2759 |
+
|
2760 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:85
|
2761 |
+
msgid "January"
|
2762 |
+
msgstr ""
|
2763 |
+
|
2764 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:86
|
2765 |
+
msgid "February"
|
2766 |
+
msgstr ""
|
2767 |
+
|
2768 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:87
|
2769 |
+
msgid "March"
|
2770 |
+
msgstr ""
|
2771 |
+
|
2772 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:88
|
2773 |
+
msgid "April"
|
2774 |
+
msgstr ""
|
2775 |
+
|
2776 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:89
|
2777 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:101
|
2778 |
+
msgid "May"
|
2779 |
+
msgstr ""
|
2780 |
+
|
2781 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:90
|
2782 |
+
msgid "June"
|
2783 |
+
msgstr ""
|
2784 |
+
|
2785 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:91
|
2786 |
+
msgid "July"
|
2787 |
+
msgstr ""
|
2788 |
+
|
2789 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:92
|
2790 |
+
msgid "August"
|
2791 |
+
msgstr ""
|
2792 |
+
|
2793 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:93
|
2794 |
+
msgid "September"
|
2795 |
+
msgstr ""
|
2796 |
+
|
2797 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:94
|
2798 |
+
msgid "October"
|
2799 |
+
msgstr ""
|
2800 |
+
|
2801 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:95
|
2802 |
+
msgid "November"
|
2803 |
+
msgstr ""
|
2804 |
+
|
2805 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:96
|
2806 |
+
msgid "December"
|
2807 |
+
msgstr ""
|
2808 |
+
|
2809 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:97
|
2810 |
+
msgid "Jan"
|
2811 |
+
msgstr ""
|
2812 |
+
|
2813 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:98
|
2814 |
+
msgid "Feb"
|
2815 |
+
msgstr ""
|
2816 |
+
|
2817 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:99
|
2818 |
+
msgid "Mar"
|
2819 |
+
msgstr ""
|
2820 |
+
|
2821 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:100
|
2822 |
+
msgid "Apr"
|
2823 |
+
msgstr ""
|
2824 |
+
|
2825 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:102
|
2826 |
+
msgid "Jun"
|
2827 |
+
msgstr ""
|
2828 |
+
|
2829 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:103
|
2830 |
+
msgid "Jul"
|
2831 |
+
msgstr ""
|
2832 |
+
|
2833 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:104
|
2834 |
+
msgid "Aug"
|
2835 |
+
msgstr ""
|
2836 |
+
|
2837 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:105
|
2838 |
+
msgid "Sep"
|
2839 |
+
msgstr ""
|
2840 |
+
|
2841 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:106
|
2842 |
+
msgid "Oct"
|
2843 |
+
msgstr ""
|
2844 |
+
|
2845 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:107
|
2846 |
+
msgid "Nov"
|
2847 |
+
msgstr ""
|
2848 |
+
|
2849 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:108
|
2850 |
+
msgid "Dec"
|
2851 |
+
msgstr ""
|
2852 |
+
|
2853 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:111
|
2854 |
+
msgid "Tuesday"
|
2855 |
+
msgstr ""
|
2856 |
+
|
2857 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:112
|
2858 |
+
msgid "Wednesday"
|
2859 |
+
msgstr ""
|
2860 |
+
|
2861 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:113
|
2862 |
+
msgid "Thursday"
|
2863 |
+
msgstr ""
|
2864 |
+
|
2865 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:114
|
2866 |
+
msgid "Friday"
|
2867 |
+
msgstr ""
|
2868 |
+
|
2869 |
+
#: ../extensions/shortcodes/shortcodes/calendar/static.php:115
|
2870 |
+
msgid "Saturday"
|
2871 |
+
msgstr ""
|
2872 |
+
|
2873 |
+
#: ../extensions/shortcodes/shortcodes/media-image/config.php:7
|
2874 |
+
msgid "Add an Image"
|
2875 |
+
msgstr ""
|
2876 |
+
|
2877 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:8
|
2878 |
+
msgid "Choose Image"
|
2879 |
+
msgstr ""
|
2880 |
+
|
2881 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:16
|
2882 |
+
msgid "Width"
|
2883 |
+
msgstr ""
|
2884 |
+
|
2885 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:17
|
2886 |
+
msgid "Set image width"
|
2887 |
+
msgstr ""
|
2888 |
+
|
2889 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:22
|
2890 |
+
#: ../extensions/shortcodes/shortcodes/divider/options.php:24
|
2891 |
+
msgid "Height"
|
2892 |
+
msgstr ""
|
2893 |
+
|
2894 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:23
|
2895 |
+
msgid "Set image height"
|
2896 |
+
msgstr ""
|
2897 |
+
|
2898 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:33
|
2899 |
+
msgid "Image Link"
|
2900 |
+
msgstr ""
|
2901 |
+
|
2902 |
+
#: ../extensions/shortcodes/shortcodes/media-image/options.php:34
|
2903 |
+
msgid "Where should your image link to?"
|
2904 |
+
msgstr ""
|
2905 |
+
|
2906 |
+
#: ../extensions/shortcodes/shortcodes/notification/config.php:8
|
2907 |
+
msgid "Notification"
|
2908 |
+
msgstr ""
|
2909 |
+
|
2910 |
+
#: ../extensions/shortcodes/shortcodes/notification/config.php:9
|
2911 |
+
msgid "Add a Notification Box"
|
2912 |
+
msgstr ""
|
2913 |
+
|
2914 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:7
|
2915 |
+
msgid "Message"
|
2916 |
+
msgstr ""
|
2917 |
+
|
2918 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:8
|
2919 |
+
msgid "Notification message"
|
2920 |
+
msgstr ""
|
2921 |
+
|
2922 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:10
|
2923 |
+
msgid "Message!"
|
2924 |
+
msgstr ""
|
2925 |
+
|
2926 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:13
|
2927 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:444
|
2928 |
+
msgid "Type"
|
2929 |
+
msgstr ""
|
2930 |
+
|
2931 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:14
|
2932 |
+
msgid "Notification type"
|
2933 |
+
msgstr ""
|
2934 |
+
|
2935 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:17
|
2936 |
+
msgid "Congratulations"
|
2937 |
+
msgstr ""
|
2938 |
+
|
2939 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:18
|
2940 |
+
msgid "Information"
|
2941 |
+
msgstr ""
|
2942 |
+
|
2943 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:19
|
2944 |
+
msgid "Alert"
|
2945 |
+
msgstr ""
|
2946 |
+
|
2947 |
+
#: ../extensions/shortcodes/shortcodes/notification/options.php:20
|
2948 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:456
|
2949 |
+
msgid "Error"
|
2950 |
+
msgstr ""
|
2951 |
+
|
2952 |
+
#: ../extensions/shortcodes/shortcodes/notification/views/view.php:9
|
2953 |
+
msgid "Congratulations!"
|
2954 |
+
msgstr ""
|
2955 |
+
|
2956 |
+
#: ../extensions/shortcodes/shortcodes/notification/views/view.php:13
|
2957 |
+
msgid "Information!"
|
2958 |
+
msgstr ""
|
2959 |
+
|
2960 |
+
#: ../extensions/shortcodes/shortcodes/notification/views/view.php:17
|
2961 |
+
msgid "Alert!"
|
2962 |
+
msgstr ""
|
2963 |
+
|
2964 |
+
#: ../extensions/shortcodes/shortcodes/notification/views/view.php:21
|
2965 |
+
msgid "Error!"
|
2966 |
+
msgstr ""
|
2967 |
+
|
2968 |
+
#: ../extensions/shortcodes/shortcodes/widget-area/config.php:8
|
2969 |
+
msgid "Widget Area"
|
2970 |
+
msgstr ""
|
2971 |
+
|
2972 |
+
#: ../extensions/shortcodes/shortcodes/widget-area/config.php:9
|
2973 |
+
msgid "Add a Widget Area"
|
2974 |
+
msgstr ""
|
2975 |
+
|
2976 |
+
#: ../extensions/shortcodes/shortcodes/widget-area/options.php:5
|
2977 |
+
#: ../extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:5
|
2978 |
+
#: ../extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:7
|
2979 |
+
#: ../extensions/sidebars/includes/option-type/sidebar-picker/view.php:40
|
2980 |
+
#: ../extensions/sidebars/includes/option-type/sidebar-picker/view.php:91
|
2981 |
+
msgid "Sidebar"
|
2982 |
+
msgstr ""
|
2983 |
+
|
2984 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/config.php:8
|
2985 |
+
msgid "Call To Action"
|
2986 |
+
msgstr ""
|
2987 |
+
|
2988 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/config.php:9
|
2989 |
+
msgid "Add a Call to Action"
|
2990 |
+
msgstr ""
|
2991 |
+
|
2992 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:9
|
2993 |
+
msgid "This can be left blank"
|
2994 |
+
msgstr ""
|
2995 |
+
|
2996 |
+
#: ../extensions/shortcodes/shortcodes/call-to-action/options.php:14
|
2997 |
+
msgid "Enter some content for this Info Box"
|
2998 |
+
msgstr ""
|
2999 |
+
|
3000 |
+
#: ../extensions/shortcodes/shortcodes/text-block/config.php:8
|
3001 |
+
msgid "Text Block"
|
3002 |
+
msgstr ""
|
3003 |
+
|
3004 |
+
#: ../extensions/shortcodes/shortcodes/text-block/config.php:9
|
3005 |
+
msgid "Add a Text Block"
|
3006 |
+
msgstr ""
|
3007 |
+
|
3008 |
+
#: ../extensions/shortcodes/shortcodes/text-block/options.php:11
|
3009 |
+
msgid "Enter some content for this texblock"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: ../extensions/shortcodes/shortcodes/divider/config.php:6
|
3013 |
+
msgid "Divider"
|
3014 |
+
msgstr ""
|
3015 |
+
|
3016 |
+
#: ../extensions/shortcodes/shortcodes/divider/config.php:7
|
3017 |
+
msgid "Add a Divider"
|
3018 |
+
msgstr ""
|
3019 |
+
|
3020 |
+
#: ../extensions/shortcodes/shortcodes/divider/options.php:13
|
3021 |
+
msgid "Ruler Type"
|
3022 |
+
msgstr ""
|
3023 |
+
|
3024 |
+
#: ../extensions/shortcodes/shortcodes/divider/options.php:14
|
3025 |
+
msgid "Here you can set the styling and size of the HR element"
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: ../extensions/shortcodes/shortcodes/divider/options.php:16
|
3029 |
+
msgid "Line"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: ../extensions/shortcodes/shortcodes/divider/options.php:17
|
3033 |
+
msgid "Whitespace"
|
3034 |
+
msgstr ""
|
3035 |
+
|
3036 |
+
#: ../extensions/shortcodes/shortcodes/divider/options.php:25
|
3037 |
+
msgid ""
|
3038 |
+
"How much whitespace do you need? Enter a pixel value. Positive value will "
|
3039 |
+
"increase the whitespace, negative value will reduce it. eg: '50', '-25', "
|
3040 |
+
"'200'"
|
3041 |
+
msgstr ""
|
3042 |
+
|
3043 |
+
#: ../extensions/shortcodes/shortcodes/section/config.php:6
|
3044 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:23
|
3045 |
+
msgid "Section"
|
3046 |
+
msgstr ""
|
3047 |
+
|
3048 |
+
#: ../extensions/shortcodes/shortcodes/section/config.php:7
|
3049 |
+
msgid "Add a Section"
|
3050 |
+
msgstr ""
|
3051 |
+
|
3052 |
+
#: ../extensions/shortcodes/shortcodes/section/options.php:7
|
3053 |
+
msgid "Full Width"
|
3054 |
+
msgstr ""
|
3055 |
+
|
3056 |
+
#: ../extensions/shortcodes/shortcodes/section/options.php:11
|
3057 |
+
msgid "Background Color"
|
3058 |
+
msgstr ""
|
3059 |
+
|
3060 |
+
#: ../extensions/shortcodes/shortcodes/section/options.php:12
|
3061 |
+
msgid "Please select the background color"
|
3062 |
+
msgstr ""
|
3063 |
+
|
3064 |
+
#: ../extensions/shortcodes/shortcodes/section/options.php:16
|
3065 |
+
msgid "Background Image"
|
3066 |
+
msgstr ""
|
3067 |
+
|
3068 |
+
#: ../extensions/shortcodes/shortcodes/section/options.php:17
|
3069 |
+
msgid "Please select the background image"
|
3070 |
+
msgstr ""
|
3071 |
+
|
3072 |
+
#: ../extensions/shortcodes/shortcodes/section/options.php:23
|
3073 |
+
msgid "Background Video"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:12
|
3077 |
+
msgid "Sections"
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:92
|
3081 |
+
msgid "Save Section"
|
3082 |
+
msgstr ""
|
3083 |
+
|
3084 |
+
#: ../extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:24
|
3085 |
+
msgid "Creates a section"
|
3086 |
+
msgstr ""
|
3087 |
+
|
3088 |
+
#: ../extensions/shortcodes/shortcodes/tabs/config.php:9
|
3089 |
+
msgid "Add some Tabs"
|
3090 |
+
msgstr ""
|
3091 |
+
|
3092 |
+
#: ../extensions/shortcodes/shortcodes/tabs/options.php:9
|
3093 |
+
msgid "Add/Edit Tab"
|
3094 |
+
msgstr ""
|
3095 |
+
|
3096 |
+
#: ../extensions/shortcodes/includes/class-fw-shortcode.php:194
|
3097 |
+
#, php-format
|
3098 |
+
msgid "No default view (views/view.php) found for shortcode: %s"
|
3099 |
+
msgstr ""
|
3100 |
+
|
3101 |
+
#: ../extensions/shortcodes/includes/class-fw-shortcodes-loader.php:203
|
3102 |
+
#, php-format
|
3103 |
+
msgid "Shortcode \"%s\" from %s was already defined at %s"
|
3104 |
+
msgstr ""
|
3105 |
+
|
3106 |
+
#: ../extensions/shortcodes/includes/class-fw-shortcodes-loader.php:264
|
3107 |
+
#, php-format
|
3108 |
+
msgid "Class file found for shortcode %s but no class %s found"
|
3109 |
+
msgstr ""
|
3110 |
+
|
3111 |
+
#: ../extensions/shortcodes/includes/class-fw-shortcodes-loader.php:269
|
3112 |
+
#, php-format
|
3113 |
+
msgid "The class %s must extend from FW_Shortcode"
|
3114 |
+
msgstr ""
|
3115 |
+
|
3116 |
+
#: ../extensions/builder/manifest.php:5
|
3117 |
+
#: ../core/components/extensions/manager/available-extensions.php:204
|
3118 |
+
msgid "Builder"
|
3119 |
+
msgstr ""
|
3120 |
+
|
3121 |
+
#: ../extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:306
|
3122 |
+
msgid "Full Screen"
|
3123 |
+
msgstr ""
|
3124 |
+
|
3125 |
+
#: ../extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:307
|
3126 |
+
msgid "Exit Full Screen"
|
3127 |
+
msgstr ""
|
3128 |
+
|
3129 |
+
#: ../extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:334
|
3130 |
+
msgid "Undo"
|
3131 |
+
msgstr ""
|
3132 |
+
|
3133 |
+
#: ../extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:335
|
3134 |
+
msgid "Redo"
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: ../extensions/builder/includes/option-types/builder/includes/fullscreen.php:81
|
3138 |
+
msgid "Preview Changes"
|
3139 |
+
msgstr ""
|
3140 |
+
|
3141 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/class-fw-ext-builder-templates.php:119
|
3142 |
+
msgid "Templates"
|
3143 |
+
msgstr ""
|
3144 |
+
|
3145 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:12
|
3146 |
+
msgid "Full Templates"
|
3147 |
+
msgstr ""
|
3148 |
+
|
3149 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:61
|
3150 |
+
msgid "Save Full Template"
|
3151 |
+
msgstr ""
|
3152 |
+
|
3153 |
+
#: ../extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:95
|
3154 |
+
msgid "Save Builder Template"
|
3155 |
+
msgstr ""
|
3156 |
+
|
3157 |
+
#: ../extensions/social/manifest.php:7
|
3158 |
+
#: ../core/components/extensions/manager/available-extensions.php:252
|
3159 |
+
msgid "Social"
|
3160 |
+
msgstr ""
|
3161 |
+
|
3162 |
+
#: ../extensions/social/manifest.php:8
|
3163 |
+
#: ../core/components/extensions/manager/available-extensions.php:253
|
3164 |
+
msgid ""
|
3165 |
+
"Use this extension to configure all your social related APIs. Other "
|
3166 |
+
"extensions will use the Social extension to connect to your social accounts."
|
3167 |
+
msgstr ""
|
3168 |
+
|
3169 |
+
#: ../extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:62
|
3170 |
+
#: ../core/components/backend.php:584
|
3171 |
+
msgid "Facebook"
|
3172 |
+
msgstr ""
|
3173 |
+
|
3174 |
+
#: ../extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:66
|
3175 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:33
|
3176 |
+
msgid "API Settings"
|
3177 |
+
msgstr ""
|
3178 |
+
|
3179 |
+
#: ../extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:72
|
3180 |
+
msgid "App ID/API Key:"
|
3181 |
+
msgstr ""
|
3182 |
+
|
3183 |
+
#: ../extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:73
|
3184 |
+
msgid "Enter Facebook App ID / API Key."
|
3185 |
+
msgstr ""
|
3186 |
+
|
3187 |
+
#: ../extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:78
|
3188 |
+
msgid "App Secret:"
|
3189 |
+
msgstr ""
|
3190 |
+
|
3191 |
+
#: ../extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:79
|
3192 |
+
msgid "Enter Facebook App Secret."
|
3193 |
+
msgstr ""
|
3194 |
+
|
3195 |
+
#: ../extensions/social/extensions/social-facebook/manifest.php:7
|
3196 |
+
#: ../extensions/social/extensions/social-facebook/manifest.php:8
|
3197 |
+
msgid "Social Facebook"
|
3198 |
+
msgstr ""
|
3199 |
+
|
3200 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:29
|
3201 |
+
#: ../core/components/backend.php:592
|
3202 |
+
msgid "Twitter"
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:39
|
3206 |
+
msgid "Consumer Key"
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:40
|
3210 |
+
msgid "Enter Twitter Consumer Key."
|
3211 |
+
msgstr ""
|
3212 |
+
|
3213 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:45
|
3214 |
+
msgid "Consumer Secret"
|
3215 |
+
msgstr ""
|
3216 |
+
|
3217 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:46
|
3218 |
+
msgid "Enter Twitter App Secret."
|
3219 |
+
msgstr ""
|
3220 |
+
|
3221 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:51
|
3222 |
+
msgid "Access Token"
|
3223 |
+
msgstr ""
|
3224 |
+
|
3225 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:52
|
3226 |
+
msgid "Enter Twitter Access Token."
|
3227 |
+
msgstr ""
|
3228 |
+
|
3229 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:57
|
3230 |
+
msgid "Access Token Secret"
|
3231 |
+
msgstr ""
|
3232 |
+
|
3233 |
+
#: ../extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:58
|
3234 |
+
msgid "Enter Twitter Access Token Secret."
|
3235 |
+
msgstr ""
|
3236 |
+
|
3237 |
+
#: ../extensions/social/extensions/social-twitter/manifest.php:7
|
3238 |
+
#: ../extensions/social/extensions/social-twitter/manifest.php:8
|
3239 |
+
msgid "Social Twitter"
|
3240 |
+
msgstr ""
|
3241 |
+
|
3242 |
+
#: ../extensions/forms/class-fw-extension-forms.php:112
|
3243 |
+
#: ../extensions/forms/class-fw-extension-forms.php:123
|
3244 |
+
#: ../extensions/forms/class-fw-extension-forms.php:131
|
3245 |
+
#: ../extensions/forms/class-fw-extension-forms.php:142
|
3246 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:102
|
3247 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:114
|
3248 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:124
|
3249 |
+
msgid "Unable to process the form"
|
3250 |
+
msgstr ""
|
3251 |
+
|
3252 |
+
#: ../extensions/forms/manifest.php:5
|
3253 |
+
#: ../core/components/extensions/manager/available-extensions.php:228
|
3254 |
+
msgid "Forms"
|
3255 |
+
msgstr ""
|
3256 |
+
|
3257 |
+
#: ../extensions/forms/manifest.php:7
|
3258 |
+
#: ../core/components/extensions/manager/available-extensions.php:229
|
3259 |
+
msgid ""
|
3260 |
+
"This extension adds the possibility to create a contact form. Use the drag & "
|
3261 |
+
"drop form builder to create any contact form you'll ever want or need."
|
3262 |
+
msgstr ""
|
3263 |
+
|
3264 |
+
#: ../extensions/forms/extensions/contact-forms/manifest.php:5
|
3265 |
+
msgid "Contact Forms"
|
3266 |
+
msgstr ""
|
3267 |
+
|
3268 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:134
|
3269 |
+
msgid "Invalid destination email (please contact the site administrator)"
|
3270 |
+
msgstr ""
|
3271 |
+
|
3272 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:158
|
3273 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:77
|
3274 |
+
msgid "Message sent!"
|
3275 |
+
msgstr ""
|
3276 |
+
|
3277 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:164
|
3278 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:85
|
3279 |
+
msgid "Oops something went wrong."
|
3280 |
+
msgstr ""
|
3281 |
+
|
3282 |
+
#: ../extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:190
|
3283 |
+
msgid "Please configure the {mailer_link} extension."
|
3284 |
+
msgstr ""
|
3285 |
+
|
3286 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:8
|
3287 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:107
|
3288 |
+
msgid "Contact form"
|
3289 |
+
msgstr ""
|
3290 |
+
|
3291 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:9
|
3292 |
+
msgid "Build contact forms"
|
3293 |
+
msgstr ""
|
3294 |
+
|
3295 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:15
|
3296 |
+
msgid "Form Fields"
|
3297 |
+
msgstr ""
|
3298 |
+
|
3299 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:39
|
3300 |
+
#: ../core/components/extensions/manager/views/extension.php:82
|
3301 |
+
#: ../core/components/extensions/manager/views/extension-page-header.php:31
|
3302 |
+
msgid "Settings"
|
3303 |
+
msgstr ""
|
3304 |
+
|
3305 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:42
|
3306 |
+
msgid "Options"
|
3307 |
+
msgstr ""
|
3308 |
+
|
3309 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:53
|
3310 |
+
msgid "Subject Message"
|
3311 |
+
msgstr ""
|
3312 |
+
|
3313 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:54
|
3314 |
+
msgid "This text will be used as subject message for the email"
|
3315 |
+
msgstr ""
|
3316 |
+
|
3317 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:55
|
3318 |
+
msgid "New message"
|
3319 |
+
msgstr ""
|
3320 |
+
|
3321 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:64
|
3322 |
+
msgid "Submit Button"
|
3323 |
+
msgstr ""
|
3324 |
+
|
3325 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:65
|
3326 |
+
msgid "This text will appear in submit button"
|
3327 |
+
msgstr ""
|
3328 |
+
|
3329 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:66
|
3330 |
+
msgid "Send"
|
3331 |
+
msgstr ""
|
3332 |
+
|
3333 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:75
|
3334 |
+
msgid "Success Message"
|
3335 |
+
msgstr ""
|
3336 |
+
|
3337 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:76
|
3338 |
+
msgid "This text will be displayed when the form will successfully send"
|
3339 |
+
msgstr ""
|
3340 |
+
|
3341 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:83
|
3342 |
+
msgid "Failure Message"
|
3343 |
+
msgstr ""
|
3344 |
+
|
3345 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:84
|
3346 |
+
msgid "This text will be displayed when the form will fail to be sent"
|
3347 |
+
msgstr ""
|
3348 |
+
|
3349 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:94
|
3350 |
+
msgid "Email To"
|
3351 |
+
msgstr ""
|
3352 |
+
|
3353 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:95
|
3354 |
+
msgid "We recommend you to use an email that you verify often"
|
3355 |
+
msgstr ""
|
3356 |
+
|
3357 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:96
|
3358 |
+
msgid "The form will be sent to this email address."
|
3359 |
+
msgstr ""
|
3360 |
+
|
3361 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:52
|
3362 |
+
msgid "Contact Form"
|
3363 |
+
msgstr ""
|
3364 |
+
|
3365 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:54
|
3366 |
+
msgid "Configure Mailer"
|
3367 |
+
msgstr ""
|
3368 |
+
|
3369 |
+
#: ../extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:108
|
3370 |
+
msgid "Add a Contact Form"
|
3371 |
+
msgstr ""
|
3372 |
+
|
3373 |
+
#: ../extensions/forms/views/backend/submit-box-add.php:9
|
3374 |
+
msgid "Note that the type can't be changed later."
|
3375 |
+
msgstr ""
|
3376 |
+
|
3377 |
+
#: ../extensions/forms/views/backend/submit-box-add.php:11
|
3378 |
+
msgid ""
|
3379 |
+
"You will need to create a new form in order to have a different form type."
|
3380 |
+
msgstr ""
|
3381 |
+
|
3382 |
+
#: ../extensions/forms/views/backend/submit-box-add.php:20
|
3383 |
+
#: ../extensions/forms/views/backend/submit-box-edit.php:16
|
3384 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-raw.php:14
|
3385 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-edit.php:31
|
3386 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-error.php:8
|
3387 |
+
msgid "Delete Permanently"
|
3388 |
+
msgstr ""
|
3389 |
+
|
3390 |
+
#: ../extensions/forms/views/backend/submit-box-add.php:22
|
3391 |
+
#: ../extensions/forms/views/backend/submit-box-edit.php:18
|
3392 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-raw.php:16
|
3393 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-edit.php:33
|
3394 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-error.php:10
|
3395 |
+
msgid "Move to Trash"
|
3396 |
+
msgstr ""
|
3397 |
+
|
3398 |
+
#: ../extensions/forms/views/backend/submit-box-add.php:33
|
3399 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-raw.php:35
|
3400 |
+
msgid "Create"
|
3401 |
+
msgstr ""
|
3402 |
+
|
3403 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:24
|
3404 |
+
msgid "Add a Recaptcha field"
|
3405 |
+
msgstr ""
|
3406 |
+
|
3407 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:26
|
3408 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:54
|
3409 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:78
|
3410 |
+
msgid "Recaptcha"
|
3411 |
+
msgstr ""
|
3412 |
+
|
3413 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:59
|
3414 |
+
msgid "Set site key"
|
3415 |
+
msgstr ""
|
3416 |
+
|
3417 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:60
|
3418 |
+
msgid "Set secret key"
|
3419 |
+
msgstr ""
|
3420 |
+
|
3421 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:77
|
3422 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:76
|
3423 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:78
|
3424 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:78
|
3425 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:81
|
3426 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:81
|
3427 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:78
|
3428 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:78
|
3429 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:76
|
3430 |
+
msgid "Enter field label (it will be displayed on the web site)"
|
3431 |
+
msgstr ""
|
3432 |
+
|
3433 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:133
|
3434 |
+
msgid "Security Code"
|
3435 |
+
msgstr ""
|
3436 |
+
|
3437 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:147
|
3438 |
+
msgid "Could not validate the form"
|
3439 |
+
msgstr ""
|
3440 |
+
|
3441 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:148
|
3442 |
+
msgid "Please fill the recaptcha"
|
3443 |
+
msgstr ""
|
3444 |
+
|
3445 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:37
|
3446 |
+
msgid "Site key"
|
3447 |
+
msgstr ""
|
3448 |
+
|
3449 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:38
|
3450 |
+
msgid "Your website key. More on how to configure ReCaptcha"
|
3451 |
+
msgstr ""
|
3452 |
+
|
3453 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:42
|
3454 |
+
msgid "Secret key"
|
3455 |
+
msgstr ""
|
3456 |
+
|
3457 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:43
|
3458 |
+
msgid "Your secret key. More on how to configure ReCaptcha"
|
3459 |
+
msgstr ""
|
3460 |
+
|
3461 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:18
|
3462 |
+
msgid "Add a Paragraph Text"
|
3463 |
+
msgstr ""
|
3464 |
+
|
3465 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:20
|
3466 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:48
|
3467 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:77
|
3468 |
+
msgid "Paragraph Text"
|
3469 |
+
msgstr ""
|
3470 |
+
|
3471 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:53
|
3472 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:53
|
3473 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:51
|
3474 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:52
|
3475 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:52
|
3476 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:51
|
3477 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:51
|
3478 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:49
|
3479 |
+
msgid "Toggle mandatory field"
|
3480 |
+
msgstr ""
|
3481 |
+
|
3482 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:83
|
3483 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:85
|
3484 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:85
|
3485 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:88
|
3486 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:88
|
3487 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:85
|
3488 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:85
|
3489 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:83
|
3490 |
+
msgid "Mandatory Field"
|
3491 |
+
msgstr ""
|
3492 |
+
|
3493 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:84
|
3494 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:86
|
3495 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:86
|
3496 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:89
|
3497 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:89
|
3498 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:86
|
3499 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:86
|
3500 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:84
|
3501 |
+
msgid "Make this field mandatory?"
|
3502 |
+
msgstr ""
|
3503 |
+
|
3504 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:98
|
3505 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:100
|
3506 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:100
|
3507 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:100
|
3508 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:98
|
3509 |
+
msgid "Placeholder"
|
3510 |
+
msgstr ""
|
3511 |
+
|
3512 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:99
|
3513 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:101
|
3514 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:101
|
3515 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:101
|
3516 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:99
|
3517 |
+
msgid "This text will be used as field placeholder"
|
3518 |
+
msgstr ""
|
3519 |
+
|
3520 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:105
|
3521 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:107
|
3522 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:107
|
3523 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:105
|
3524 |
+
msgid "Default Value"
|
3525 |
+
msgstr ""
|
3526 |
+
|
3527 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:106
|
3528 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:108
|
3529 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:108
|
3530 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:106
|
3531 |
+
msgid "This text will be used as field default value"
|
3532 |
+
msgstr ""
|
3533 |
+
|
3534 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:126
|
3535 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:128
|
3536 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:126
|
3537 |
+
msgid "Restrictions"
|
3538 |
+
msgstr ""
|
3539 |
+
|
3540 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:127
|
3541 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:127
|
3542 |
+
msgid "Set characters or words restrictions for this field"
|
3543 |
+
msgstr ""
|
3544 |
+
|
3545 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:131
|
3546 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:131
|
3547 |
+
msgid "Characters"
|
3548 |
+
msgstr ""
|
3549 |
+
|
3550 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:132
|
3551 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:132
|
3552 |
+
msgid "Words"
|
3553 |
+
msgstr ""
|
3554 |
+
|
3555 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:140
|
3556 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:154
|
3557 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:142
|
3558 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:156
|
3559 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:140
|
3560 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:154
|
3561 |
+
msgid "Min"
|
3562 |
+
msgstr ""
|
3563 |
+
|
3564 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:141
|
3565 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:155
|
3566 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:143
|
3567 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:157
|
3568 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:141
|
3569 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:155
|
3570 |
+
msgid "Minim value"
|
3571 |
+
msgstr ""
|
3572 |
+
|
3573 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:146
|
3574 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:160
|
3575 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:148
|
3576 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:162
|
3577 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:146
|
3578 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:160
|
3579 |
+
msgid "Max"
|
3580 |
+
msgstr ""
|
3581 |
+
|
3582 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:147
|
3583 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:161
|
3584 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:149
|
3585 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:163
|
3586 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:147
|
3587 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:161
|
3588 |
+
msgid "Maxim value"
|
3589 |
+
msgstr ""
|
3590 |
+
|
3591 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:178
|
3592 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:180
|
3593 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:121
|
3594 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:137
|
3595 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:137
|
3596 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:114
|
3597 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:121
|
3598 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:178
|
3599 |
+
msgid "Instructions for Users"
|
3600 |
+
msgstr ""
|
3601 |
+
|
3602 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:179
|
3603 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:181
|
3604 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:122
|
3605 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:138
|
3606 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:138
|
3607 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:115
|
3608 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:122
|
3609 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:179
|
3610 |
+
msgid "The users will see these instructions in the tooltip near the field"
|
3611 |
+
msgstr ""
|
3612 |
+
|
3613 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:331
|
3614 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:368
|
3615 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:230
|
3616 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:244
|
3617 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:244
|
3618 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:210
|
3619 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:217
|
3620 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:332
|
3621 |
+
msgid "The {label} field is required"
|
3622 |
+
msgstr ""
|
3623 |
+
|
3624 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:336
|
3625 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:337
|
3626 |
+
#, php-format
|
3627 |
+
msgid "The {label} field must contain minimum %d character"
|
3628 |
+
msgstr ""
|
3629 |
+
|
3630 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:341
|
3631 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:342
|
3632 |
+
#, php-format
|
3633 |
+
msgid "The {label} field must contain minimum %d characters"
|
3634 |
+
msgstr ""
|
3635 |
+
|
3636 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:346
|
3637 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:347
|
3638 |
+
#, php-format
|
3639 |
+
msgid "The {label} field must contain maximum %d character"
|
3640 |
+
msgstr ""
|
3641 |
+
|
3642 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:351
|
3643 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:352
|
3644 |
+
#, php-format
|
3645 |
+
msgid "The {label} field must contain maximum %d characters"
|
3646 |
+
msgstr ""
|
3647 |
+
|
3648 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:356
|
3649 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:357
|
3650 |
+
#, php-format
|
3651 |
+
msgid "The {label} field must contain minimum %d word"
|
3652 |
+
msgstr ""
|
3653 |
+
|
3654 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:361
|
3655 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:362
|
3656 |
+
#, php-format
|
3657 |
+
msgid "The {label} field must contain minimum %d words"
|
3658 |
+
msgstr ""
|
3659 |
+
|
3660 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:366
|
3661 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:367
|
3662 |
+
#, php-format
|
3663 |
+
msgid "The {label} field must contain maximum %d word"
|
3664 |
+
msgstr ""
|
3665 |
+
|
3666 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:371
|
3667 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:372
|
3668 |
+
#, php-format
|
3669 |
+
msgid "The {label} field must contain maximum %d words"
|
3670 |
+
msgstr ""
|
3671 |
+
|
3672 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:20
|
3673 |
+
msgid "Add a Number field"
|
3674 |
+
msgstr ""
|
3675 |
+
|
3676 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:22
|
3677 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:50
|
3678 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:79
|
3679 |
+
msgid "Number"
|
3680 |
+
msgstr ""
|
3681 |
+
|
3682 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:129
|
3683 |
+
msgid "Set digits or values restrictions of this field"
|
3684 |
+
msgstr ""
|
3685 |
+
|
3686 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:133
|
3687 |
+
msgid "Digits"
|
3688 |
+
msgstr ""
|
3689 |
+
|
3690 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:134
|
3691 |
+
msgid "Value"
|
3692 |
+
msgstr ""
|
3693 |
+
|
3694 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:363
|
3695 |
+
msgid "The {label} field must be a valid number"
|
3696 |
+
msgstr ""
|
3697 |
+
|
3698 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:373
|
3699 |
+
#, php-format
|
3700 |
+
msgid "The {label} field must have minimum %d digit"
|
3701 |
+
msgstr ""
|
3702 |
+
|
3703 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:378
|
3704 |
+
#, php-format
|
3705 |
+
msgid "The {label} field must have minimum %d digits"
|
3706 |
+
msgstr ""
|
3707 |
+
|
3708 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:383
|
3709 |
+
#, php-format
|
3710 |
+
msgid "The {label} field must have maximum %d digit"
|
3711 |
+
msgstr ""
|
3712 |
+
|
3713 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:388
|
3714 |
+
#, php-format
|
3715 |
+
msgid "The {label} field must have maximum %d digits"
|
3716 |
+
msgstr ""
|
3717 |
+
|
3718 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:393
|
3719 |
+
#, php-format
|
3720 |
+
msgid "The {label} field minimum value must be %s"
|
3721 |
+
msgstr ""
|
3722 |
+
|
3723 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:398
|
3724 |
+
#, php-format
|
3725 |
+
msgid "The {label} field maximum value must be %s"
|
3726 |
+
msgstr ""
|
3727 |
+
|
3728 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:18
|
3729 |
+
msgid "Add a Dropdown"
|
3730 |
+
msgstr ""
|
3731 |
+
|
3732 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:22
|
3733 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:49
|
3734 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:79
|
3735 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:164
|
3736 |
+
msgid "Dropdown"
|
3737 |
+
msgstr ""
|
3738 |
+
|
3739 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:100
|
3740 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:103
|
3741 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:103
|
3742 |
+
msgid "Choices"
|
3743 |
+
msgstr ""
|
3744 |
+
|
3745 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:101
|
3746 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:104
|
3747 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:104
|
3748 |
+
msgid "Add choice"
|
3749 |
+
msgstr ""
|
3750 |
+
|
3751 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:110
|
3752 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:113
|
3753 |
+
msgid "Randomize"
|
3754 |
+
msgstr ""
|
3755 |
+
|
3756 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:111
|
3757 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:114
|
3758 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:114
|
3759 |
+
msgid "Do you want choices to be displayed in random order?"
|
3760 |
+
msgstr ""
|
3761 |
+
|
3762 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:235
|
3763 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:249
|
3764 |
+
msgid "{label}: Submitted data contains not existing choice"
|
3765 |
+
msgstr ""
|
3766 |
+
|
3767 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:38
|
3768 |
+
msgid "Edit Title"
|
3769 |
+
msgstr ""
|
3770 |
+
|
3771 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:39
|
3772 |
+
msgid "Edit Subtitle"
|
3773 |
+
msgstr ""
|
3774 |
+
|
3775 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:57
|
3776 |
+
msgid "The title will be displayed on contact form header"
|
3777 |
+
msgstr ""
|
3778 |
+
|
3779 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:62
|
3780 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:7
|
3781 |
+
msgid "Subtitle"
|
3782 |
+
msgstr ""
|
3783 |
+
|
3784 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:63
|
3785 |
+
msgid "The form header subtitle text"
|
3786 |
+
msgstr ""
|
3787 |
+
|
3788 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:18
|
3789 |
+
msgid "Add a Single Choice field"
|
3790 |
+
msgstr ""
|
3791 |
+
|
3792 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:56
|
3793 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:56
|
3794 |
+
msgid "{x} More"
|
3795 |
+
msgstr ""
|
3796 |
+
|
3797 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:113
|
3798 |
+
msgid "Randomize?"
|
3799 |
+
msgstr ""
|
3800 |
+
|
3801 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:124
|
3802 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:124
|
3803 |
+
msgid "Field Layout"
|
3804 |
+
msgstr ""
|
3805 |
+
|
3806 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:125
|
3807 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:125
|
3808 |
+
msgid "Select choice display layout"
|
3809 |
+
msgstr ""
|
3810 |
+
|
3811 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:127
|
3812 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:127
|
3813 |
+
msgid "One column"
|
3814 |
+
msgstr ""
|
3815 |
+
|
3816 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:128
|
3817 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:128
|
3818 |
+
msgid "Two columns"
|
3819 |
+
msgstr ""
|
3820 |
+
|
3821 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:129
|
3822 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:129
|
3823 |
+
msgid "Three columns"
|
3824 |
+
msgstr ""
|
3825 |
+
|
3826 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:130
|
3827 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:130
|
3828 |
+
msgid "Side by side"
|
3829 |
+
msgstr ""
|
3830 |
+
|
3831 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:18
|
3832 |
+
msgid "Add a Multiple Choices field"
|
3833 |
+
msgstr ""
|
3834 |
+
|
3835 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:249
|
3836 |
+
msgid "{label}: Submitted data contains not existing choices"
|
3837 |
+
msgstr ""
|
3838 |
+
|
3839 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:18
|
3840 |
+
msgid "Add an Email field"
|
3841 |
+
msgstr ""
|
3842 |
+
|
3843 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:22
|
3844 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:49
|
3845 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:79
|
3846 |
+
msgid "Email"
|
3847 |
+
msgstr ""
|
3848 |
+
|
3849 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:215
|
3850 |
+
msgid "The {label} field must contain a valid email"
|
3851 |
+
msgstr ""
|
3852 |
+
|
3853 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:18
|
3854 |
+
msgid "Add a Website field"
|
3855 |
+
msgstr ""
|
3856 |
+
|
3857 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:22
|
3858 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:49
|
3859 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:79
|
3860 |
+
msgid "Website"
|
3861 |
+
msgstr ""
|
3862 |
+
|
3863 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:222
|
3864 |
+
msgid "The {label} field must be a valid website name"
|
3865 |
+
msgstr ""
|
3866 |
+
|
3867 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:18
|
3868 |
+
msgid "Add a Single Line Text"
|
3869 |
+
msgstr ""
|
3870 |
+
|
3871 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:20
|
3872 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:47
|
3873 |
+
#: ../extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:77
|
3874 |
+
msgid "Single Line Text"
|
3875 |
+
msgstr ""
|
3876 |
+
|
3877 |
+
#: ../extensions/breadcrumbs/settings-options.php:17
|
3878 |
+
msgid "Text for Homepage"
|
3879 |
+
msgstr ""
|
3880 |
+
|
3881 |
+
#: ../extensions/breadcrumbs/settings-options.php:18
|
3882 |
+
msgid "The homepage anchor will have this text"
|
3883 |
+
msgstr ""
|
3884 |
+
|
3885 |
+
#: ../extensions/breadcrumbs/settings-options.php:23
|
3886 |
+
msgid "Text for Blog Page"
|
3887 |
+
msgstr ""
|
3888 |
+
|
3889 |
+
#: ../extensions/breadcrumbs/settings-options.php:24
|
3890 |
+
msgid ""
|
3891 |
+
"The blog page anchor will have this text. In case homepage will be set as "
|
3892 |
+
"blog page, will be taken the homepage text"
|
3893 |
+
msgstr ""
|
3894 |
+
|
3895 |
+
#: ../extensions/breadcrumbs/settings-options.php:29
|
3896 |
+
msgid "Text for 404 Page"
|
3897 |
+
msgstr ""
|
3898 |
+
|
3899 |
+
#: ../extensions/breadcrumbs/settings-options.php:30
|
3900 |
+
msgid "The 404 anchor will have this text"
|
3901 |
+
msgstr ""
|
3902 |
+
|
3903 |
+
#: ../extensions/breadcrumbs/manifest.php:7
|
3904 |
+
#: ../core/components/extensions/manager/available-extensions.php:108
|
3905 |
+
msgid "Breadcrumbs"
|
3906 |
+
msgstr ""
|
3907 |
+
|
3908 |
+
#: ../extensions/breadcrumbs/manifest.php:9
|
3909 |
+
#: ../core/components/extensions/manager/available-extensions.php:109
|
3910 |
+
msgid ""
|
3911 |
+
"Creates a simplified navigation menu for the pages that can be placed "
|
3912 |
+
"anywhere in the theme. This will make navigating the website much easier."
|
3913 |
+
msgstr ""
|
3914 |
+
|
3915 |
+
#: ../extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:11
|
3916 |
+
msgid "404 Not found"
|
3917 |
+
msgstr ""
|
3918 |
+
|
3919 |
+
#: ../extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:124
|
3920 |
+
msgid "Searching for:"
|
3921 |
+
msgstr ""
|
3922 |
+
|
3923 |
+
#: ../extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:248
|
3924 |
+
#: ../includes/option-types/multi-select/class-fw-option-type-multi-select.php:472
|
3925 |
+
msgid "No title"
|
3926 |
+
msgstr ""
|
3927 |
+
|
3928 |
+
#: ../extensions/events/class-fw-extension-events.php:89
|
3929 |
+
msgid "Create a event item"
|
3930 |
+
msgstr ""
|
3931 |
+
|
3932 |
+
#: ../extensions/events/class-fw-extension-events.php:186
|
3933 |
+
msgid "Date"
|
3934 |
+
msgstr ""
|
3935 |
+
|
3936 |
+
#: ../extensions/events/class-fw-extension-events.php:204
|
3937 |
+
msgid "Event Options"
|
3938 |
+
msgstr ""
|
3939 |
+
|
3940 |
+
#: ../extensions/events/class-fw-extension-events.php:310
|
3941 |
+
msgid "Multi Interval Event"
|
3942 |
+
msgstr ""
|
3943 |
+
|
3944 |
+
#: ../extensions/events/manifest.php:8
|
3945 |
+
#: ../core/components/extensions/manager/available-extensions.php:181
|
3946 |
+
msgid ""
|
3947 |
+
"This extension adds a fully fledged Events module to your theme. It comes "
|
3948 |
+
"with built in pages that contain a calendar where events can be added."
|
3949 |
+
msgstr ""
|
3950 |
+
|
3951 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:81
|
3952 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:189
|
3953 |
+
msgid "Event Categories"
|
3954 |
+
msgstr ""
|
3955 |
+
|
3956 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:82
|
3957 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:190
|
3958 |
+
msgid "Select an event category"
|
3959 |
+
msgstr ""
|
3960 |
+
|
3961 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:84
|
3962 |
+
#: ../extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:192
|
3963 |
+
msgid "All Events"
|
3964 |
+
msgstr ""
|
3965 |
+
|
3966 |
+
#: ../extensions/events/extensions/events-tags/manifest.php:7
|
3967 |
+
msgid "Event-search-tags"
|
3968 |
+
msgstr ""
|
3969 |
+
|
3970 |
+
#: ../extensions/events/extensions/events-tags/manifest.php:8
|
3971 |
+
msgid "Connect extension event with shortcodes map & calendar"
|
3972 |
+
msgstr ""
|
3973 |
+
|
3974 |
+
#: ../extensions/events/views/content.php:16
|
3975 |
+
msgid "Google Calendar"
|
3976 |
+
msgstr ""
|
3977 |
+
|
3978 |
+
#: ../extensions/events/views/content.php:17
|
3979 |
+
msgid "Ical Export"
|
3980 |
+
msgstr ""
|
3981 |
+
|
3982 |
+
#: ../extensions/events/views/content.php:20
|
3983 |
+
msgid "Start"
|
3984 |
+
msgstr ""
|
3985 |
+
|
3986 |
+
#: ../extensions/events/views/content.php:21
|
3987 |
+
msgid "End"
|
3988 |
+
msgstr ""
|
3989 |
+
|
3990 |
+
#: ../extensions/events/views/content.php:25
|
3991 |
+
msgid "Speakers"
|
3992 |
+
msgstr ""
|
3993 |
+
|
3994 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:37
|
3995 |
+
msgid "Event Location"
|
3996 |
+
msgstr ""
|
3997 |
+
|
3998 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:39
|
3999 |
+
msgid "Where does the event take place?"
|
4000 |
+
msgstr ""
|
4001 |
+
|
4002 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:43
|
4003 |
+
msgid "All Day Event?"
|
4004 |
+
msgstr ""
|
4005 |
+
|
4006 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:44
|
4007 |
+
msgid "Is your event an all day event?"
|
4008 |
+
msgstr ""
|
4009 |
+
|
4010 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:67
|
4011 |
+
msgid "Start & End of Event"
|
4012 |
+
msgstr ""
|
4013 |
+
|
4014 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:68
|
4015 |
+
msgid "Set start and end events datetime"
|
4016 |
+
msgstr ""
|
4017 |
+
|
4018 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:97
|
4019 |
+
msgid "Associated User"
|
4020 |
+
msgstr ""
|
4021 |
+
|
4022 |
+
#: ../extensions/events/includes/option-types/event/class-fw-option-type-event.php:99
|
4023 |
+
msgid "Link this event to a specific user"
|
4024 |
+
msgstr ""
|
4025 |
+
|
4026 |
+
#: ../extensions/sidebars/manifest.php:7
|
4027 |
+
#: ../core/components/extensions/manager/available-extensions.php:132
|
4028 |
+
msgid "Sidebars"
|
4029 |
+
msgstr ""
|
4030 |
+
|
4031 |
+
#: ../extensions/sidebars/manifest.php:9
|
4032 |
+
#: ../core/components/extensions/manager/available-extensions.php:133
|
4033 |
+
msgid ""
|
4034 |
+
"Brings a new layer of customization freedom to your website by letting you "
|
4035 |
+
"add more than one sidebar to a page, or different sidebars on different "
|
4036 |
+
"pages."
|
4037 |
+
msgstr ""
|
4038 |
+
|
4039 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:131
|
4040 |
+
msgid "No matches found"
|
4041 |
+
msgstr ""
|
4042 |
+
|
4043 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:139
|
4044 |
+
msgid "Do you realy want to change without saving?"
|
4045 |
+
msgstr ""
|
4046 |
+
|
4047 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:141
|
4048 |
+
msgid "Missing ID. Check that you provided all mandatory data."
|
4049 |
+
msgstr ""
|
4050 |
+
|
4051 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:142
|
4052 |
+
#: ../extensions/sidebars/views/backend-main-view.php:27
|
4053 |
+
msgid "Created"
|
4054 |
+
msgstr ""
|
4055 |
+
|
4056 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:143
|
4057 |
+
msgid "(For Grouped Pages)"
|
4058 |
+
msgstr ""
|
4059 |
+
|
4060 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:144
|
4061 |
+
msgid "(For Specific Pages)"
|
4062 |
+
msgstr ""
|
4063 |
+
|
4064 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:145
|
4065 |
+
msgid "No sidebar name specified"
|
4066 |
+
msgstr ""
|
4067 |
+
|
4068 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:146
|
4069 |
+
msgid "Sidebar Name"
|
4070 |
+
msgstr ""
|
4071 |
+
|
4072 |
+
#: ../extensions/sidebars/class-fw-extension-sidebars.php:147
|
4073 |
+
msgid "New Sidebar"
|
4074 |
+
msgstr ""
|
4075 |
+
|
4076 |
+
#: ../extensions/sidebars/views/frontend-no-widgets.php:5
|
4077 |
+
msgid "Widgets Page"
|
4078 |
+
msgstr ""
|
4079 |
+
|
4080 |
+
#: ../extensions/sidebars/views/backend-tab-specific.php:5
|
4081 |
+
msgid "For specific"
|
4082 |
+
msgstr ""
|
4083 |
+
|
4084 |
+
#: ../extensions/sidebars/views/backend-tab-specific.php:23
|
4085 |
+
msgid "Type to search ..."
|
4086 |
+
msgstr ""
|
4087 |
+
|
4088 |
+
#: ../extensions/sidebars/views/backend-tab-specific.php:30
|
4089 |
+
msgid "Search for a specific page you want to set a sidebar for"
|
4090 |
+
msgstr ""
|
4091 |
+
|
4092 |
+
#: ../extensions/sidebars/views/backend-tab-grouped.php:6
|
4093 |
+
msgid "For group"
|
4094 |
+
msgstr ""
|
4095 |
+
|
4096 |
+
#: ../extensions/sidebars/views/backend-tab-grouped.php:25
|
4097 |
+
msgid "Select group of pages you want to set a sidebar for."
|
4098 |
+
msgstr ""
|
4099 |
+
|
4100 |
+
#: ../extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:18
|
4101 |
+
#: ../extensions/sidebars/includes/option-type/sidebar-picker/view.php:60
|
4102 |
+
msgid "Choose the position for your sidebar(s)"
|
4103 |
+
msgstr ""
|
4104 |
+
|
4105 |
+
#: ../extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:43
|
4106 |
+
#: ../extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:40
|
4107 |
+
msgid "Add Sidebar"
|
4108 |
+
msgstr ""
|
4109 |
+
|
4110 |
+
#: ../extensions/sidebars/views/backend-tab-created-sidebars.php:4
|
4111 |
+
msgid "Sidebars for"
|
4112 |
+
msgstr ""
|
4113 |
+
|
4114 |
+
#: ../extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4115 |
+
msgid "For Specific Page"
|
4116 |
+
msgstr ""
|
4117 |
+
|
4118 |
+
#: ../extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4119 |
+
msgid "For Grouped Page"
|
4120 |
+
msgstr ""
|
4121 |
+
|
4122 |
+
#: ../extensions/sidebars/views/backend-main-view.php:11
|
4123 |
+
#: ../extensions/sidebars/views/backend-main-view.php:15
|
4124 |
+
msgid "Manage Sidebars"
|
4125 |
+
msgstr ""
|
4126 |
+
|
4127 |
+
#: ../extensions/sidebars/views/backend-main-view.php:18
|
4128 |
+
msgid ""
|
4129 |
+
"Use this section to create and/or set different sidebar(s) for different "
|
4130 |
+
"page(s)"
|
4131 |
+
msgstr ""
|
4132 |
+
|
4133 |
+
#: ../extensions/sidebars/views/backend-main-view.php:24
|
4134 |
+
msgid "For Grouped Pages"
|
4135 |
+
msgstr ""
|
4136 |
+
|
4137 |
+
#: ../extensions/sidebars/views/backend-main-view.php:25
|
4138 |
+
msgid "For Specific Pages"
|
4139 |
+
msgstr ""
|
4140 |
+
|
4141 |
+
#: ../extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:32
|
4142 |
+
#: ../extensions/sidebars/includes/option-type/sidebar-picker/view.php:121
|
4143 |
+
msgid "Select sidebar you wish to replace."
|
4144 |
+
msgstr ""
|
4145 |
+
|
4146 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:241
|
4147 |
+
msgid "No sidebar name specified."
|
4148 |
+
msgstr ""
|
4149 |
+
|
4150 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:270
|
4151 |
+
msgid "Dynamic sidebar doesn't exixt"
|
4152 |
+
msgstr ""
|
4153 |
+
|
4154 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:277
|
4155 |
+
msgid ""
|
4156 |
+
"The placeholder can't be deleted because it is used in one of sidebars below."
|
4157 |
+
msgstr ""
|
4158 |
+
|
4159 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:280
|
4160 |
+
msgid ""
|
4161 |
+
"Please replace it first so that you will not have visual gaps in your layout."
|
4162 |
+
msgstr ""
|
4163 |
+
|
4164 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:293
|
4165 |
+
msgid "Successfully removed"
|
4166 |
+
msgstr ""
|
4167 |
+
|
4168 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:543
|
4169 |
+
msgid "Default for all pages"
|
4170 |
+
msgstr ""
|
4171 |
+
|
4172 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:613
|
4173 |
+
msgid " (no title)"
|
4174 |
+
msgstr ""
|
4175 |
+
|
4176 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:780
|
4177 |
+
msgid "Error: Type or sub_type error"
|
4178 |
+
msgstr ""
|
4179 |
+
|
4180 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:838
|
4181 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:869
|
4182 |
+
msgid "Error: Sidebars not set"
|
4183 |
+
msgstr ""
|
4184 |
+
|
4185 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:865
|
4186 |
+
msgid "Error: Position doesn't exists. Please check config file."
|
4187 |
+
msgstr ""
|
4188 |
+
|
4189 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:55
|
4190 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:253
|
4191 |
+
msgid "Page"
|
4192 |
+
msgstr ""
|
4193 |
+
|
4194 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:56
|
4195 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:153
|
4196 |
+
msgid "Pages"
|
4197 |
+
msgstr ""
|
4198 |
+
|
4199 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:61
|
4200 |
+
msgid "Portfolio Project"
|
4201 |
+
msgstr ""
|
4202 |
+
|
4203 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:62
|
4204 |
+
msgid "Portfolio Projects"
|
4205 |
+
msgstr ""
|
4206 |
+
|
4207 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:73
|
4208 |
+
msgid "Blog Category"
|
4209 |
+
msgstr ""
|
4210 |
+
|
4211 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:79
|
4212 |
+
msgid "Portfolio Category"
|
4213 |
+
msgstr ""
|
4214 |
+
|
4215 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:85
|
4216 |
+
msgid "Home Page"
|
4217 |
+
msgstr ""
|
4218 |
+
|
4219 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:90
|
4220 |
+
msgid "Search Page"
|
4221 |
+
msgstr ""
|
4222 |
+
|
4223 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:95
|
4224 |
+
msgid "404 Page"
|
4225 |
+
msgstr ""
|
4226 |
+
|
4227 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:100
|
4228 |
+
msgid "Author Page"
|
4229 |
+
msgstr ""
|
4230 |
+
|
4231 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:105
|
4232 |
+
msgid "Archive Page"
|
4233 |
+
msgstr ""
|
4234 |
+
|
4235 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:149
|
4236 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:308
|
4237 |
+
msgid "All Pages"
|
4238 |
+
msgstr ""
|
4239 |
+
|
4240 |
+
#: ../extensions/sidebars/includes/class-fw-extension-sidebars-config.php:184
|
4241 |
+
msgid "Others"
|
4242 |
+
msgstr ""
|
4243 |
+
|
4244 |
+
#: ../extensions/megamenu/manifest.php:7
|
4245 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:64
|
4246 |
+
#: ../core/components/extensions/manager/available-extensions.php:60
|
4247 |
+
msgid "Mega Menu"
|
4248 |
+
msgstr ""
|
4249 |
+
|
4250 |
+
#: ../extensions/megamenu/manifest.php:8
|
4251 |
+
#: ../core/components/extensions/manager/available-extensions.php:61
|
4252 |
+
msgid ""
|
4253 |
+
"The Mega Menu extension adds a user-friendly drop down menu that will let "
|
4254 |
+
"you easily create highly customized menu configurations."
|
4255 |
+
msgstr ""
|
4256 |
+
|
4257 |
+
#: ../extensions/megamenu/class-fw-extension-megamenu.php:58
|
4258 |
+
msgid "Select Icon"
|
4259 |
+
msgstr ""
|
4260 |
+
|
4261 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:44
|
4262 |
+
#, php-format
|
4263 |
+
msgid "%s (Invalid)"
|
4264 |
+
msgstr ""
|
4265 |
+
|
4266 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:48
|
4267 |
+
#, php-format
|
4268 |
+
msgid "%s (Pending)"
|
4269 |
+
msgstr ""
|
4270 |
+
|
4271 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:61
|
4272 |
+
msgid "sub item"
|
4273 |
+
msgstr ""
|
4274 |
+
|
4275 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:97
|
4276 |
+
msgid "Edit Menu Item"
|
4277 |
+
msgstr ""
|
4278 |
+
|
4279 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:108
|
4280 |
+
msgid "URL"
|
4281 |
+
msgstr ""
|
4282 |
+
|
4283 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:117
|
4284 |
+
msgid "Navigation Label"
|
4285 |
+
msgstr ""
|
4286 |
+
|
4287 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:125
|
4288 |
+
msgid "Title Attribute"
|
4289 |
+
msgstr ""
|
4290 |
+
|
4291 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:134
|
4292 |
+
msgid "Open link in a new window/tab"
|
4293 |
+
msgstr ""
|
4294 |
+
|
4295 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:141
|
4296 |
+
msgid "CSS Classes (optional)"
|
4297 |
+
msgstr ""
|
4298 |
+
|
4299 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:149
|
4300 |
+
msgid "Link Relationship (XFN)"
|
4301 |
+
msgstr ""
|
4302 |
+
|
4303 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:157
|
4304 |
+
msgid "Mega Menu Column Title"
|
4305 |
+
msgstr ""
|
4306 |
+
|
4307 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:158
|
4308 |
+
msgid "Item Title"
|
4309 |
+
msgstr ""
|
4310 |
+
|
4311 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:166
|
4312 |
+
msgid "Hide"
|
4313 |
+
msgstr ""
|
4314 |
+
|
4315 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:172
|
4316 |
+
msgid "This column should start a new row"
|
4317 |
+
msgstr ""
|
4318 |
+
|
4319 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:178
|
4320 |
+
msgid "Description (HTML)"
|
4321 |
+
msgstr ""
|
4322 |
+
|
4323 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:181
|
4324 |
+
msgid ""
|
4325 |
+
"The description will be displayed in the menu if the current theme supports "
|
4326 |
+
"it."
|
4327 |
+
msgstr ""
|
4328 |
+
|
4329 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:190
|
4330 |
+
msgid "Add Icon"
|
4331 |
+
msgstr ""
|
4332 |
+
|
4333 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:191
|
4334 |
+
msgid "Edit Icon"
|
4335 |
+
msgstr ""
|
4336 |
+
|
4337 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:205
|
4338 |
+
msgid "Use as Mega Menu"
|
4339 |
+
msgstr ""
|
4340 |
+
|
4341 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:211
|
4342 |
+
msgid "Move"
|
4343 |
+
msgstr ""
|
4344 |
+
|
4345 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:212
|
4346 |
+
msgid "Up one"
|
4347 |
+
msgstr ""
|
4348 |
+
|
4349 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:213
|
4350 |
+
msgid "Down one"
|
4351 |
+
msgstr ""
|
4352 |
+
|
4353 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:216
|
4354 |
+
msgid "To the top"
|
4355 |
+
msgstr ""
|
4356 |
+
|
4357 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:225
|
4358 |
+
#, php-format
|
4359 |
+
msgid "Original: %s"
|
4360 |
+
msgstr ""
|
4361 |
+
|
4362 |
+
#: ../extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:239
|
4363 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:60
|
4364 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2282
|
4365 |
+
msgid "Cancel"
|
4366 |
+
msgstr ""
|
4367 |
+
|
4368 |
+
#: ../extensions/backups/class-fw-extension-backups.php:299
|
4369 |
+
#: ../extensions/backups/class-fw-extension-backups.php:366
|
4370 |
+
msgid "File not specified"
|
4371 |
+
msgstr ""
|
4372 |
+
|
4373 |
+
#: ../extensions/backups/class-fw-extension-backups.php:399
|
4374 |
+
#: ../extensions/backups/class-fw-extension-backups.php:400
|
4375 |
+
#: ../core/components/extensions/manager/available-extensions.php:156
|
4376 |
+
msgid "Backup"
|
4377 |
+
msgstr ""
|
4378 |
+
|
4379 |
+
#: ../extensions/backups/class-fw-extension-backups.php:554
|
4380 |
+
#: ../extensions/backups/class-fw-extension-backups.php:568
|
4381 |
+
msgid "Access Denied"
|
4382 |
+
msgstr ""
|
4383 |
+
|
4384 |
+
#: ../extensions/backups/class-fw-extension-backups.php:561
|
4385 |
+
msgid "Archive not found"
|
4386 |
+
msgstr ""
|
4387 |
+
|
4388 |
+
#: ../extensions/backups/class-fw-extension-backups.php:575
|
4389 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:202
|
4390 |
+
msgid "Failed to open file"
|
4391 |
+
msgstr ""
|
4392 |
+
|
4393 |
+
#: ../extensions/backups/helpers.php:37
|
4394 |
+
msgid "Invalid JSON response"
|
4395 |
+
msgstr ""
|
4396 |
+
|
4397 |
+
#: ../extensions/backups/helpers.php:44
|
4398 |
+
msgid ""
|
4399 |
+
"HTTP Loopback Connections are not enabled on this server. If you need to "
|
4400 |
+
"contact your web host, tell them that when PHP tries to connect back to the "
|
4401 |
+
"site at the URL `{url}` and it gets the error `{error}`. There may be a "
|
4402 |
+
"problem with the server configuration (eg local DNS problems, mod_security, "
|
4403 |
+
"etc) preventing connections from working properly."
|
4404 |
+
msgstr ""
|
4405 |
+
|
4406 |
+
#: ../extensions/backups/helpers.php:123
|
4407 |
+
#: ../extensions/backups/helpers.php:145
|
4408 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:363
|
4409 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:431
|
4410 |
+
#, php-format
|
4411 |
+
msgid "Failed to create dir: %s"
|
4412 |
+
msgstr ""
|
4413 |
+
|
4414 |
+
#: ../extensions/backups/helpers.php:152
|
4415 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:137
|
4416 |
+
#, php-format
|
4417 |
+
msgid "Failed to copy: %s"
|
4418 |
+
msgstr ""
|
4419 |
+
|
4420 |
+
#: ../extensions/backups/manifest.php:7
|
4421 |
+
#: ../core/components/extensions/manager/available-extensions.php:168
|
4422 |
+
msgid "Backup & Demo Content"
|
4423 |
+
msgstr ""
|
4424 |
+
|
4425 |
+
#: ../extensions/backups/manifest.php:9
|
4426 |
+
#: ../core/components/extensions/manager/available-extensions.php:169
|
4427 |
+
msgid ""
|
4428 |
+
"This extension lets you create an automated backup schedule, import demo "
|
4429 |
+
"content or even create a demo content archive for migration purposes."
|
4430 |
+
msgstr ""
|
4431 |
+
|
4432 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:97
|
4433 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:98
|
4434 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:385
|
4435 |
+
msgid "Demo Content Install"
|
4436 |
+
msgstr ""
|
4437 |
+
|
4438 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:282
|
4439 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:329
|
4440 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:362
|
4441 |
+
msgid "Forbidden"
|
4442 |
+
msgstr ""
|
4443 |
+
|
4444 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:342
|
4445 |
+
msgid "Invalid demo"
|
4446 |
+
msgstr ""
|
4447 |
+
|
4448 |
+
#: ../extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:349
|
4449 |
+
msgid "A content install is currently running"
|
4450 |
+
msgstr ""
|
4451 |
+
|
4452 |
+
#: ../extensions/backups/extensions/backups-demo/views/page.php:28
|
4453 |
+
#: ../extensions/backups/extensions/backups-demo/views/page.php:39
|
4454 |
+
#: ../extensions/backups/views/page.php:17
|
4455 |
+
#: ../extensions/backups/views/page.php:28
|
4456 |
+
msgid "Important"
|
4457 |
+
msgstr ""
|
4458 |
+
|
4459 |
+
#: ../extensions/backups/extensions/backups-demo/views/page.php:30
|
4460 |
+
#: ../extensions/backups/views/page.php:19
|
4461 |
+
#, php-format
|
4462 |
+
msgid "You need to activate %s."
|
4463 |
+
msgstr ""
|
4464 |
+
|
4465 |
+
#: ../extensions/backups/extensions/backups-demo/views/page.php:31
|
4466 |
+
#: ../extensions/backups/views/page.php:20
|
4467 |
+
msgid "zip extension"
|
4468 |
+
msgstr ""
|
4469 |
+
|
4470 |
+
#: ../extensions/backups/views/page.php:70
|
4471 |
+
msgid "Archives"
|
4472 |
+
msgstr ""
|
4473 |
+
|
4474 |
+
#: ../extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4475 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:76
|
4476 |
+
msgid "Full Backup"
|
4477 |
+
msgstr ""
|
4478 |
+
|
4479 |
+
#: ../extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4480 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:85
|
4481 |
+
msgid "Content Backup"
|
4482 |
+
msgstr ""
|
4483 |
+
|
4484 |
+
#: ../extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:88
|
4485 |
+
msgid ""
|
4486 |
+
"Warning! \n"
|
4487 |
+
"You are about to delete a backup, it will be lost forever. \n"
|
4488 |
+
"Are you sure?"
|
4489 |
+
msgstr ""
|
4490 |
+
|
4491 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:16
|
4492 |
+
msgid "Interval"
|
4493 |
+
msgstr ""
|
4494 |
+
|
4495 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:20
|
4496 |
+
#: ../core/components/extensions/manager/views/extension.php:180
|
4497 |
+
msgid "Disabled"
|
4498 |
+
msgstr ""
|
4499 |
+
|
4500 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:25
|
4501 |
+
msgid "Select how often do you want to backup your website."
|
4502 |
+
msgstr ""
|
4503 |
+
|
4504 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:32
|
4505 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:45
|
4506 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:58
|
4507 |
+
msgid "Age Limit"
|
4508 |
+
msgstr ""
|
4509 |
+
|
4510 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:33
|
4511 |
+
msgid "Age limit of backups in months"
|
4512 |
+
msgstr ""
|
4513 |
+
|
4514 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:46
|
4515 |
+
msgid "Age limit of backups in weeks"
|
4516 |
+
msgstr ""
|
4517 |
+
|
4518 |
+
#: ../extensions/backups/includes/module/schedule/settings-options.php:59
|
4519 |
+
msgid "Age limit of backups in days"
|
4520 |
+
msgstr ""
|
4521 |
+
|
4522 |
+
#: ../extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:186
|
4523 |
+
msgid "Backup Schedule"
|
4524 |
+
msgstr ""
|
4525 |
+
|
4526 |
+
#: ../extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:288
|
4527 |
+
msgid "Once Weekly"
|
4528 |
+
msgstr ""
|
4529 |
+
|
4530 |
+
#: ../extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:292
|
4531 |
+
msgid "Once a month"
|
4532 |
+
msgstr ""
|
4533 |
+
|
4534 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:139
|
4535 |
+
msgid "undefined"
|
4536 |
+
msgstr ""
|
4537 |
+
|
4538 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:279
|
4539 |
+
msgid "Task type not registered"
|
4540 |
+
msgstr ""
|
4541 |
+
|
4542 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:286
|
4543 |
+
msgid "Execution stopped (next step did not started)"
|
4544 |
+
msgstr ""
|
4545 |
+
|
4546 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:306
|
4547 |
+
msgid "Timed out"
|
4548 |
+
msgstr ""
|
4549 |
+
|
4550 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:366
|
4551 |
+
msgid "Invalid execution end time"
|
4552 |
+
msgstr ""
|
4553 |
+
|
4554 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:537
|
4555 |
+
msgid "Invalid execution result"
|
4556 |
+
msgstr ""
|
4557 |
+
|
4558 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:639
|
4559 |
+
msgid "Invalid token"
|
4560 |
+
msgstr ""
|
4561 |
+
|
4562 |
+
#: ../extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:658
|
4563 |
+
msgid "Invalid tasks hash"
|
4564 |
+
msgstr ""
|
4565 |
+
|
4566 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-restore.php:9
|
4567 |
+
msgid "Image Sizes Restore"
|
4568 |
+
msgstr ""
|
4569 |
+
|
4570 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:12
|
4571 |
+
msgid "Archive Unzip"
|
4572 |
+
msgstr ""
|
4573 |
+
|
4574 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:39
|
4575 |
+
msgid "Zip file not specified"
|
4576 |
+
msgstr ""
|
4577 |
+
|
4578 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:47
|
4579 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:50
|
4580 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:49
|
4581 |
+
#: ../extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:114
|
4582 |
+
msgid "Destination dir not specified"
|
4583 |
+
msgstr ""
|
4584 |
+
|
4585 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:56
|
4586 |
+
msgid "Destination dir is not empty"
|
4587 |
+
msgstr ""
|
4588 |
+
|
4589 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:63
|
4590 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:59
|
4591 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:50
|
4592 |
+
msgid "Zip extension missing"
|
4593 |
+
msgstr ""
|
4594 |
+
|
4595 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:71
|
4596 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:70
|
4597 |
+
#, php-format
|
4598 |
+
msgid "Cannot open zip (Error code: %s)"
|
4599 |
+
msgstr ""
|
4600 |
+
|
4601 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:38
|
4602 |
+
msgid "Database export"
|
4603 |
+
msgstr ""
|
4604 |
+
|
4605 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:71
|
4606 |
+
msgid "Database table disappeared"
|
4607 |
+
msgstr ""
|
4608 |
+
|
4609 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:91
|
4610 |
+
msgid "Cannot create file"
|
4611 |
+
msgstr ""
|
4612 |
+
|
4613 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:97
|
4614 |
+
msgid "Cannot reopen file"
|
4615 |
+
msgstr ""
|
4616 |
+
|
4617 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:141
|
4618 |
+
msgid "Cannot export CREATE TABLE sql"
|
4619 |
+
msgstr ""
|
4620 |
+
|
4621 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:211
|
4622 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:267
|
4623 |
+
msgid "Cannot get next database table"
|
4624 |
+
msgstr ""
|
4625 |
+
|
4626 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:9
|
4627 |
+
msgid "Files Restore"
|
4628 |
+
msgstr ""
|
4629 |
+
|
4630 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:32
|
4631 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:41
|
4632 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:45
|
4633 |
+
msgid "Source dir not specified"
|
4634 |
+
msgstr ""
|
4635 |
+
|
4636 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:39
|
4637 |
+
msgid "Invalid source dir"
|
4638 |
+
msgstr ""
|
4639 |
+
|
4640 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:46
|
4641 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:25
|
4642 |
+
msgid "Source dirs not specified"
|
4643 |
+
msgstr ""
|
4644 |
+
|
4645 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:116
|
4646 |
+
msgid "No filesystem access, credentials required"
|
4647 |
+
msgstr ""
|
4648 |
+
|
4649 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:120
|
4650 |
+
msgid "No filesystem access, invalid credentials"
|
4651 |
+
msgstr ""
|
4652 |
+
|
4653 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:126
|
4654 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:135
|
4655 |
+
msgid "Filesystem init failed"
|
4656 |
+
msgstr ""
|
4657 |
+
|
4658 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:192
|
4659 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:317
|
4660 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:341
|
4661 |
+
#, php-format
|
4662 |
+
msgid "Cannot convert Filesystem path: %s"
|
4663 |
+
msgstr ""
|
4664 |
+
|
4665 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:197
|
4666 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:322
|
4667 |
+
#, php-format
|
4668 |
+
msgid "Failed to list dir: %s"
|
4669 |
+
msgstr ""
|
4670 |
+
|
4671 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:227
|
4672 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:281
|
4673 |
+
#, php-format
|
4674 |
+
msgid "Failed to remove dir: %s"
|
4675 |
+
msgstr ""
|
4676 |
+
|
4677 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:234
|
4678 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:288
|
4679 |
+
#, php-format
|
4680 |
+
msgid "Failed to remove file: %s"
|
4681 |
+
msgstr ""
|
4682 |
+
|
4683 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:376
|
4684 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:444
|
4685 |
+
#, php-format
|
4686 |
+
msgid "Failed to copy file: %s"
|
4687 |
+
msgstr ""
|
4688 |
+
|
4689 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:12
|
4690 |
+
msgid "Archive Zip"
|
4691 |
+
msgstr ""
|
4692 |
+
|
4693 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:97
|
4694 |
+
msgid "Cannot close the zip file"
|
4695 |
+
msgstr ""
|
4696 |
+
|
4697 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:103
|
4698 |
+
msgid "Cannot move zip in destination dir"
|
4699 |
+
msgstr ""
|
4700 |
+
|
4701 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:9
|
4702 |
+
msgid "Files Export"
|
4703 |
+
msgstr ""
|
4704 |
+
|
4705 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:33
|
4706 |
+
msgid "Destination not specified"
|
4707 |
+
msgstr ""
|
4708 |
+
|
4709 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:74
|
4710 |
+
#, php-format
|
4711 |
+
msgid "Source dir %s is empty"
|
4712 |
+
msgstr ""
|
4713 |
+
|
4714 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:116
|
4715 |
+
msgid "Failed to get dir chmod"
|
4716 |
+
msgstr ""
|
4717 |
+
|
4718 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:123
|
4719 |
+
msgid "Failed to create destination dir"
|
4720 |
+
msgstr ""
|
4721 |
+
|
4722 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:214
|
4723 |
+
#, php-format
|
4724 |
+
msgid "Failed to restore dir listing from: %s"
|
4725 |
+
msgstr ""
|
4726 |
+
|
4727 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:12
|
4728 |
+
msgid "Database restore"
|
4729 |
+
msgstr ""
|
4730 |
+
|
4731 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:63
|
4732 |
+
msgid "Database file not found"
|
4733 |
+
msgstr ""
|
4734 |
+
|
4735 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:111
|
4736 |
+
#, php-format
|
4737 |
+
msgid "Cannot drop temporary table: %s"
|
4738 |
+
msgstr ""
|
4739 |
+
|
4740 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:129
|
4741 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:285
|
4742 |
+
msgid "Cannot open db file"
|
4743 |
+
msgstr ""
|
4744 |
+
|
4745 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:138
|
4746 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:294
|
4747 |
+
msgid "Cannot move cursor in db file"
|
4748 |
+
msgstr ""
|
4749 |
+
|
4750 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:154
|
4751 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:377
|
4752 |
+
#, php-format
|
4753 |
+
msgid "Failed to decode line %d from db file."
|
4754 |
+
msgstr ""
|
4755 |
+
|
4756 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:186
|
4757 |
+
#, php-format
|
4758 |
+
msgid "Cannot read line %d from db file"
|
4759 |
+
msgstr ""
|
4760 |
+
|
4761 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:195
|
4762 |
+
msgid "Required params not found"
|
4763 |
+
msgstr ""
|
4764 |
+
|
4765 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:232
|
4766 |
+
msgid "Cannot do full db restore because backup is missing some tables"
|
4767 |
+
msgstr ""
|
4768 |
+
|
4769 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:396
|
4770 |
+
#, php-format
|
4771 |
+
msgid "Failed to drop tmp table %s"
|
4772 |
+
msgstr ""
|
4773 |
+
|
4774 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:435
|
4775 |
+
#, php-format
|
4776 |
+
msgid "Failed to create tmp table %s"
|
4777 |
+
msgstr ""
|
4778 |
+
|
4779 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:447
|
4780 |
+
#, php-format
|
4781 |
+
msgid "Tried to insert data in table that was not imported %s"
|
4782 |
+
msgstr ""
|
4783 |
+
|
4784 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:606
|
4785 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:628
|
4786 |
+
#, php-format
|
4787 |
+
msgid "Failed insert row from line %d"
|
4788 |
+
msgstr ""
|
4789 |
+
|
4790 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:642
|
4791 |
+
#, php-format
|
4792 |
+
msgid "Invalid json type %s in db file"
|
4793 |
+
msgstr ""
|
4794 |
+
|
4795 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:649
|
4796 |
+
msgid "Cannot read line from db file"
|
4797 |
+
msgstr ""
|
4798 |
+
|
4799 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:688
|
4800 |
+
msgid "Failed to restore options keeping step"
|
4801 |
+
msgstr ""
|
4802 |
+
|
4803 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:723
|
4804 |
+
#, php-format
|
4805 |
+
msgid "Failed to keep option: %s"
|
4806 |
+
msgstr ""
|
4807 |
+
|
4808 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:774
|
4809 |
+
msgid "Tables drop failed"
|
4810 |
+
msgstr ""
|
4811 |
+
|
4812 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:787
|
4813 |
+
msgid "Tables rename failed."
|
4814 |
+
msgstr ""
|
4815 |
+
|
4816 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:799
|
4817 |
+
#, php-format
|
4818 |
+
msgid "Invalid sub task %s"
|
4819 |
+
msgstr ""
|
4820 |
+
|
4821 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:12
|
4822 |
+
msgid "Directory Cleanup"
|
4823 |
+
msgstr ""
|
4824 |
+
|
4825 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:21
|
4826 |
+
msgid "Dir not specified"
|
4827 |
+
msgstr ""
|
4828 |
+
|
4829 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:30
|
4830 |
+
msgid "Cannot remove directory"
|
4831 |
+
msgstr ""
|
4832 |
+
|
4833 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:37
|
4834 |
+
msgid "Cannot create directory"
|
4835 |
+
msgstr ""
|
4836 |
+
|
4837 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:55
|
4838 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:70
|
4839 |
+
#, php-format
|
4840 |
+
msgid "Cannot create file: %s"
|
4841 |
+
msgstr ""
|
4842 |
+
|
4843 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:9
|
4844 |
+
msgid "Image Sizes Remove"
|
4845 |
+
msgstr ""
|
4846 |
+
|
4847 |
+
#: ../extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:23
|
4848 |
+
msgid "Uploads dir not specified"
|
4849 |
+
msgstr ""
|
4850 |
+
|
4851 |
+
#: ../extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:18
|
4852 |
+
msgid "Download"
|
4853 |
+
msgstr ""
|
4854 |
+
|
4855 |
+
#: ../extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:119
|
4856 |
+
msgid "Invalid destination dir"
|
4857 |
+
msgstr ""
|
4858 |
+
|
4859 |
+
#: ../extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:132
|
4860 |
+
#, php-format
|
4861 |
+
msgid "Invalid type: %s"
|
4862 |
+
msgstr ""
|
4863 |
+
|
4864 |
+
#: ../extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:141
|
4865 |
+
#, php-format
|
4866 |
+
msgid "Args not specified for type: %s"
|
4867 |
+
msgstr ""
|
4868 |
+
|
4869 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:9
|
4870 |
+
msgid "Local Download"
|
4871 |
+
msgstr ""
|
4872 |
+
|
4873 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:24
|
4874 |
+
msgid "Source not specified"
|
4875 |
+
msgstr ""
|
4876 |
+
|
4877 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:29
|
4878 |
+
msgid "Invalid source"
|
4879 |
+
msgstr ""
|
4880 |
+
|
4881 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:38
|
4882 |
+
msgid "Invalid source type"
|
4883 |
+
msgstr ""
|
4884 |
+
|
4885 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:59
|
4886 |
+
#, php-format
|
4887 |
+
msgid "Cannot open zip: %s"
|
4888 |
+
msgstr ""
|
4889 |
+
|
4890 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:70
|
4891 |
+
msgid "Unhandled type"
|
4892 |
+
msgstr ""
|
4893 |
+
|
4894 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:13
|
4895 |
+
msgid "Downloading..."
|
4896 |
+
msgstr ""
|
4897 |
+
|
4898 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:16
|
4899 |
+
msgid "Download finished. Doing unzip..."
|
4900 |
+
msgstr ""
|
4901 |
+
|
4902 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:19
|
4903 |
+
#, php-format
|
4904 |
+
msgid "Downloading... %s of %s"
|
4905 |
+
msgstr ""
|
4906 |
+
|
4907 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:24
|
4908 |
+
#, php-format
|
4909 |
+
msgid "Downloading... %s"
|
4910 |
+
msgstr ""
|
4911 |
+
|
4912 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:67
|
4913 |
+
msgid "Url not specified"
|
4914 |
+
msgstr ""
|
4915 |
+
|
4916 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:72
|
4917 |
+
msgid "Invalid url"
|
4918 |
+
msgstr ""
|
4919 |
+
|
4920 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:79
|
4921 |
+
msgid "File id not specified"
|
4922 |
+
msgstr ""
|
4923 |
+
|
4924 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:84
|
4925 |
+
msgid "Invalid file id"
|
4926 |
+
msgstr ""
|
4927 |
+
|
4928 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:105
|
4929 |
+
#, php-format
|
4930 |
+
msgid "Zip open failed (code %d). Please try again"
|
4931 |
+
msgstr ""
|
4932 |
+
|
4933 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:112
|
4934 |
+
msgid "Zip extract failed"
|
4935 |
+
msgstr ""
|
4936 |
+
|
4937 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:119
|
4938 |
+
msgid "Failed to close the zip after extract"
|
4939 |
+
msgstr ""
|
4940 |
+
|
4941 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:152
|
4942 |
+
#, php-format
|
4943 |
+
msgid "Request failed. Error code: %d"
|
4944 |
+
msgstr ""
|
4945 |
+
|
4946 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:163
|
4947 |
+
msgid "Invalid byte position"
|
4948 |
+
msgstr ""
|
4949 |
+
|
4950 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:168
|
4951 |
+
msgid "Empty response body"
|
4952 |
+
msgstr ""
|
4953 |
+
|
4954 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:188
|
4955 |
+
msgid "File ended without content"
|
4956 |
+
msgstr ""
|
4957 |
+
|
4958 |
+
#: ../extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:213
|
4959 |
+
msgid "Failed to write data to file"
|
4960 |
+
msgstr ""
|
4961 |
+
|
4962 |
+
#: ../extensions/translation/settings-options.php:11
|
4963 |
+
msgid "Default Language"
|
4964 |
+
msgstr ""
|
4965 |
+
|
4966 |
+
#: ../extensions/translation/settings-options.php:12
|
4967 |
+
msgid "This is the default language of your website."
|
4968 |
+
msgstr ""
|
4969 |
+
|
4970 |
+
#: ../extensions/translation/settings-options.php:19
|
4971 |
+
msgid "Translate to"
|
4972 |
+
msgstr ""
|
4973 |
+
|
4974 |
+
#: ../extensions/translation/settings-options.php:20
|
4975 |
+
msgid "Choose the languages you want your website translated to."
|
4976 |
+
msgstr ""
|
4977 |
+
|
4978 |
+
#: ../extensions/translation/settings-options.php:27
|
4979 |
+
msgid "Convert data"
|
4980 |
+
msgstr ""
|
4981 |
+
|
4982 |
+
#: ../extensions/translation/settings-options.php:28
|
4983 |
+
msgid ""
|
4984 |
+
"Set to default language the posts, pages categories or tags that don't have "
|
4985 |
+
"a language set ?"
|
4986 |
+
msgstr ""
|
4987 |
+
|
4988 |
+
#: ../extensions/translation/manifest.php:7
|
4989 |
+
#: ../extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:336
|
4990 |
+
#: ../core/components/extensions/manager/available-extensions.php:264
|
4991 |
+
msgid "Translations"
|
4992 |
+
msgstr ""
|
4993 |
+
|
4994 |
+
#: ../extensions/translation/manifest.php:8
|
4995 |
+
#: ../core/components/extensions/manager/available-extensions.php:265
|
4996 |
+
msgid ""
|
4997 |
+
"This extension lets you translate your website in any language or even add "
|
4998 |
+
"multiple languages for your users to change at their will from the front-end."
|
4999 |
+
msgstr ""
|
5000 |
+
|
5001 |
+
#: ../extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:114
|
5002 |
+
msgid "All Languages"
|
5003 |
+
msgstr ""
|
5004 |
+
|
5005 |
+
#: ../extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:332
|
5006 |
+
msgid "The term translation does already exists.ACTION +++ "
|
5007 |
+
msgstr ""
|
5008 |
+
|
5009 |
+
#: ../extensions/translation/extensions/translate-terms/manifest.php:7
|
5010 |
+
msgid "Translate Terms"
|
5011 |
+
msgstr ""
|
5012 |
+
|
5013 |
+
#: ../extensions/translation/extensions/translate-terms/manifest.php:8
|
5014 |
+
msgid "This extension translate terms"
|
5015 |
+
msgstr ""
|
5016 |
+
|
5017 |
+
#: ../extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:341
|
5018 |
+
msgid "Language of this post"
|
5019 |
+
msgstr ""
|
5020 |
+
|
5021 |
+
#: ../extensions/translation/extensions/translate-posts/manifest.php:7
|
5022 |
+
msgid "Translate Posts"
|
5023 |
+
msgstr ""
|
5024 |
+
|
5025 |
+
#: ../extensions/translation/extensions/translate-posts/manifest.php:8
|
5026 |
+
msgid "This extension translate posts"
|
5027 |
+
msgstr ""
|
5028 |
+
|
5029 |
+
#: ../extensions/translation/extensions/translate-widgets/manifest.php:7
|
5030 |
+
msgid "Translate Widgets"
|
5031 |
+
msgstr ""
|
5032 |
+
|
5033 |
+
#: ../extensions/translation/extensions/translate-widgets/manifest.php:8
|
5034 |
+
msgid "This extension translate Widgets"
|
5035 |
+
msgstr ""
|
5036 |
+
|
5037 |
+
#: ../extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:10
|
5038 |
+
msgid "Language Switcher"
|
5039 |
+
msgstr ""
|
5040 |
+
|
5041 |
+
#: ../extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:11
|
5042 |
+
msgid "A Language Switcher Widget"
|
5043 |
+
msgstr ""
|
5044 |
+
|
5045 |
+
#: ../extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:42
|
5046 |
+
msgid "New title"
|
5047 |
+
msgstr ""
|
5048 |
+
|
5049 |
+
#: ../extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:45
|
5050 |
+
#: ../extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:49
|
5051 |
+
msgid "Title:"
|
5052 |
+
msgstr ""
|
5053 |
+
|
5054 |
+
#: ../extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:14
|
5055 |
+
msgid "A calendar of your site’s Posts."
|
5056 |
+
msgstr ""
|
5057 |
+
|
5058 |
+
#: ../extensions/translation/extensions/translate-menus/manifest.php:7
|
5059 |
+
msgid "Translate Menus"
|
5060 |
+
msgstr ""
|
5061 |
+
|
5062 |
+
#: ../extensions/translation/extensions/translate-menus/manifest.php:8
|
5063 |
+
msgid "This extension translate menus"
|
5064 |
+
msgstr ""
|
5065 |
+
|
5066 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:211
|
5067 |
+
msgid "Slider Design"
|
5068 |
+
msgstr ""
|
5069 |
+
|
5070 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:213
|
5071 |
+
msgid "Number of Images"
|
5072 |
+
msgstr ""
|
5073 |
+
|
5074 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:231
|
5075 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:234
|
5076 |
+
#, php-format
|
5077 |
+
msgid "%s updated."
|
5078 |
+
msgstr ""
|
5079 |
+
|
5080 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:232
|
5081 |
+
msgid "Custom field updated."
|
5082 |
+
msgstr ""
|
5083 |
+
|
5084 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:233
|
5085 |
+
msgid "Custom field deleted."
|
5086 |
+
msgstr ""
|
5087 |
+
|
5088 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:235
|
5089 |
+
#, php-format
|
5090 |
+
msgid "%s restored to revision from %s"
|
5091 |
+
msgstr ""
|
5092 |
+
|
5093 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:237
|
5094 |
+
#, php-format
|
5095 |
+
msgid "%s published."
|
5096 |
+
msgstr ""
|
5097 |
+
|
5098 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:238
|
5099 |
+
msgid "Page saved."
|
5100 |
+
msgstr ""
|
5101 |
+
|
5102 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:239
|
5103 |
+
#, php-format
|
5104 |
+
msgid "%s submitted."
|
5105 |
+
msgstr ""
|
5106 |
+
|
5107 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:240
|
5108 |
+
#, php-format
|
5109 |
+
msgid "%s scheduled for: %s."
|
5110 |
+
msgstr ""
|
5111 |
+
|
5112 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:242
|
5113 |
+
#, php-format
|
5114 |
+
msgid "%s draft updated."
|
5115 |
+
msgstr ""
|
5116 |
+
|
5117 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:272
|
5118 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-edit.php:52
|
5119 |
+
msgid "Publish"
|
5120 |
+
msgstr ""
|
5121 |
+
|
5122 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:342
|
5123 |
+
msgid ""
|
5124 |
+
"This slider was created correctly, but the code implementation was delete "
|
5125 |
+
"from source code or blocked from filter.Delete this post or recovery slider "
|
5126 |
+
"implementation"
|
5127 |
+
msgstr ""
|
5128 |
+
|
5129 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:351
|
5130 |
+
msgid ""
|
5131 |
+
"This slider was created correctly, but the multimedia_types from config.php "
|
5132 |
+
"file was deleted, please set multimedia_types for this slider type."
|
5133 |
+
msgstr ""
|
5134 |
+
|
5135 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:361
|
5136 |
+
msgid "Slider Configuration"
|
5137 |
+
msgstr ""
|
5138 |
+
|
5139 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:375
|
5140 |
+
msgid "Slider Title"
|
5141 |
+
msgstr ""
|
5142 |
+
|
5143 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:377
|
5144 |
+
msgid "Choose a title for your slider only for internal use: Ex: \"Homepage\"."
|
5145 |
+
msgstr ""
|
5146 |
+
|
5147 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:433
|
5148 |
+
msgid "Slider Settings"
|
5149 |
+
msgstr ""
|
5150 |
+
|
5151 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:461
|
5152 |
+
msgid ""
|
5153 |
+
"You don't have slider extensions, please create at least one extension for "
|
5154 |
+
"properly work"
|
5155 |
+
msgstr ""
|
5156 |
+
|
5157 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:474
|
5158 |
+
msgid "Choose the population method for your slider"
|
5159 |
+
msgstr ""
|
5160 |
+
|
5161 |
+
#: ../extensions/media/extensions/slider/class-fw-extension-slider.php:542
|
5162 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:94
|
5163 |
+
msgid "(no title)"
|
5164 |
+
msgstr ""
|
5165 |
+
|
5166 |
+
#: ../extensions/media/extensions/slider/posts.php:6
|
5167 |
+
#: ../extensions/media/extensions/slider/posts.php:12
|
5168 |
+
#: ../extensions/media/extensions/slider/posts.php:18
|
5169 |
+
#: ../extensions/media/extensions/slider/manifest.php:5
|
5170 |
+
#: ../core/components/extensions/manager/available-extensions.php:12
|
5171 |
+
msgid "Sliders"
|
5172 |
+
msgstr ""
|
5173 |
+
|
5174 |
+
#: ../extensions/media/extensions/slider/posts.php:7
|
5175 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/config.php:8
|
5176 |
+
msgid "Slider"
|
5177 |
+
msgstr ""
|
5178 |
+
|
5179 |
+
#: ../extensions/media/extensions/slider/posts.php:9
|
5180 |
+
msgid "Add New Slider"
|
5181 |
+
msgstr ""
|
5182 |
+
|
5183 |
+
#: ../extensions/media/extensions/slider/posts.php:10
|
5184 |
+
msgid "Edit Slider"
|
5185 |
+
msgstr ""
|
5186 |
+
|
5187 |
+
#: ../extensions/media/extensions/slider/posts.php:11
|
5188 |
+
msgid "New Slider"
|
5189 |
+
msgstr ""
|
5190 |
+
|
5191 |
+
#: ../extensions/media/extensions/slider/posts.php:13
|
5192 |
+
msgid "View Slider"
|
5193 |
+
msgstr ""
|
5194 |
+
|
5195 |
+
#: ../extensions/media/extensions/slider/posts.php:14
|
5196 |
+
msgid "Search Sliders"
|
5197 |
+
msgstr ""
|
5198 |
+
|
5199 |
+
#: ../extensions/media/extensions/slider/posts.php:15
|
5200 |
+
msgid "No Sliders found"
|
5201 |
+
msgstr ""
|
5202 |
+
|
5203 |
+
#: ../extensions/media/extensions/slider/posts.php:16
|
5204 |
+
msgid "No Sliders found in Trash"
|
5205 |
+
msgstr ""
|
5206 |
+
|
5207 |
+
#: ../extensions/media/extensions/slider/manifest.php:6
|
5208 |
+
msgid ""
|
5209 |
+
"Adds the Sliders extension to your website. You'll be able to create "
|
5210 |
+
"different built in jQuery sliders for your homepage and all the other "
|
5211 |
+
"website pages."
|
5212 |
+
msgstr ""
|
5213 |
+
|
5214 |
+
#: ../extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:5
|
5215 |
+
#: ../extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:6
|
5216 |
+
msgid "Nivo Slider"
|
5217 |
+
msgstr ""
|
5218 |
+
|
5219 |
+
#: ../extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:5
|
5220 |
+
#: ../extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:6
|
5221 |
+
msgid "Owl Slider"
|
5222 |
+
msgstr ""
|
5223 |
+
|
5224 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/manifest.php:5
|
5225 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/manifest.php:6
|
5226 |
+
msgid "Bx-Slider"
|
5227 |
+
msgstr ""
|
5228 |
+
|
5229 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:4
|
5230 |
+
msgid "Population Method Categories opt 1"
|
5231 |
+
msgstr ""
|
5232 |
+
|
5233 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:5
|
5234 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:11
|
5235 |
+
msgid "Option description"
|
5236 |
+
msgstr ""
|
5237 |
+
|
5238 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:10
|
5239 |
+
msgid "Population Method Categories opt 2"
|
5240 |
+
msgstr ""
|
5241 |
+
|
5242 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/options.php:5
|
5243 |
+
msgid "Type of Transition"
|
5244 |
+
msgstr ""
|
5245 |
+
|
5246 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/options.php:6
|
5247 |
+
msgid "Type of transition between slides"
|
5248 |
+
msgstr ""
|
5249 |
+
|
5250 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/options.php:9
|
5251 |
+
msgid "Horizontal"
|
5252 |
+
msgstr ""
|
5253 |
+
|
5254 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/options.php:10
|
5255 |
+
msgid "Vertical"
|
5256 |
+
msgstr ""
|
5257 |
+
|
5258 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/options.php:11
|
5259 |
+
msgid "Fade"
|
5260 |
+
msgstr ""
|
5261 |
+
|
5262 |
+
#: ../extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:9
|
5263 |
+
msgid "Choose a subtitle for your slide."
|
5264 |
+
msgstr ""
|
5265 |
+
|
5266 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/config.php:9
|
5267 |
+
msgid "Add a Slider"
|
5268 |
+
msgstr ""
|
5269 |
+
|
5270 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/options.php:9
|
5271 |
+
msgid "Select Slider"
|
5272 |
+
msgstr ""
|
5273 |
+
|
5274 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/options.php:14
|
5275 |
+
msgid "Set width"
|
5276 |
+
msgstr ""
|
5277 |
+
|
5278 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/options.php:19
|
5279 |
+
msgid "Set height"
|
5280 |
+
msgstr ""
|
5281 |
+
|
5282 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/options.php:34
|
5283 |
+
msgid "No Sliders Available"
|
5284 |
+
msgstr ""
|
5285 |
+
|
5286 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/options.php:47
|
5287 |
+
msgid "create a new Slider"
|
5288 |
+
msgstr ""
|
5289 |
+
|
5290 |
+
#: ../extensions/media/extensions/slider/shortcodes/slider/options.php:49
|
5291 |
+
msgid ""
|
5292 |
+
"No Sliders created yet. Please go to the {br}Sliders page and "
|
5293 |
+
"{add_slider_link}."
|
5294 |
+
msgstr ""
|
5295 |
+
|
5296 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-raw.php:5
|
5297 |
+
msgid ""
|
5298 |
+
"Note that the type and population can't be changed later. You'll need to "
|
5299 |
+
"create a new slider to have a different slider type or population method."
|
5300 |
+
msgstr ""
|
5301 |
+
|
5302 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-raw.php:31
|
5303 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-edit.php:48
|
5304 |
+
msgid "Schedule"
|
5305 |
+
msgstr ""
|
5306 |
+
|
5307 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-raw.php:40
|
5308 |
+
#: ../extensions/media/extensions/slider/views/backend/submit-box-edit.php:57
|
5309 |
+
msgid "Submit for Review"
|
5310 |
+
msgstr ""
|
5311 |
+
|
5312 |
+
#: ../extensions/media/extensions/population-method/class-fw-extension-population-method.php:36
|
5313 |
+
#, php-format
|
5314 |
+
msgid "Specified population method does not exists: %s"
|
5315 |
+
msgstr ""
|
5316 |
+
|
5317 |
+
#: ../extensions/media/extensions/population-method/class-fw-extension-population-method.php:55
|
5318 |
+
#, php-format
|
5319 |
+
msgid "Population method %s does not exist"
|
5320 |
+
msgstr ""
|
5321 |
+
|
5322 |
+
#: ../extensions/media/extensions/population-method/manifest.php:3
|
5323 |
+
msgid "Population Methods"
|
5324 |
+
msgstr ""
|
5325 |
+
|
5326 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:21
|
5327 |
+
msgid "Automatically, fetch images from categories"
|
5328 |
+
msgstr ""
|
5329 |
+
|
5330 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:29
|
5331 |
+
#, php-format
|
5332 |
+
msgid "%s extension needs configured categories in post types"
|
5333 |
+
msgstr ""
|
5334 |
+
|
5335 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:34
|
5336 |
+
msgid "Categories Population Method"
|
5337 |
+
msgstr ""
|
5338 |
+
|
5339 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:44
|
5340 |
+
msgid "Choose Category"
|
5341 |
+
msgstr ""
|
5342 |
+
|
5343 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:53
|
5344 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:53
|
5345 |
+
msgid "Number of Images in the slider"
|
5346 |
+
msgstr ""
|
5347 |
+
|
5348 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:107
|
5349 |
+
msgid "Select Specific Categories"
|
5350 |
+
msgstr ""
|
5351 |
+
|
5352 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:3
|
5353 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:4
|
5354 |
+
msgid "Population Method - Categories"
|
5355 |
+
msgstr ""
|
5356 |
+
|
5357 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:21
|
5358 |
+
msgid "Automatically, fetch images from tags"
|
5359 |
+
msgstr ""
|
5360 |
+
|
5361 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:29
|
5362 |
+
#, php-format
|
5363 |
+
msgid "%s extension needs configured tags in post types"
|
5364 |
+
msgstr ""
|
5365 |
+
|
5366 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:34
|
5367 |
+
msgid "Tags Population Method"
|
5368 |
+
msgstr ""
|
5369 |
+
|
5370 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:44
|
5371 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:44
|
5372 |
+
msgid "Choose Tag"
|
5373 |
+
msgstr ""
|
5374 |
+
|
5375 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:107
|
5376 |
+
msgid "Select Specific tags"
|
5377 |
+
msgstr ""
|
5378 |
+
|
5379 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:3
|
5380 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:4
|
5381 |
+
msgid "Population Method - Tags"
|
5382 |
+
msgstr ""
|
5383 |
+
|
5384 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:21
|
5385 |
+
msgid "Automatically, fetch images from posts"
|
5386 |
+
msgstr ""
|
5387 |
+
|
5388 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:29
|
5389 |
+
#, php-format
|
5390 |
+
msgid "%s extension needs configured post categories in post types"
|
5391 |
+
msgstr ""
|
5392 |
+
|
5393 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:34
|
5394 |
+
msgid "Posts Population Method"
|
5395 |
+
msgstr ""
|
5396 |
+
|
5397 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:101
|
5398 |
+
msgid "Select Specific posts"
|
5399 |
+
msgstr ""
|
5400 |
+
|
5401 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:3
|
5402 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:4
|
5403 |
+
msgid "Population Method - Posts"
|
5404 |
+
msgstr ""
|
5405 |
+
|
5406 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:22
|
5407 |
+
msgid "Manually, I'll upload the images myself"
|
5408 |
+
msgstr ""
|
5409 |
+
|
5410 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:33
|
5411 |
+
msgid "Click to edit / Drag to reorder"
|
5412 |
+
msgstr ""
|
5413 |
+
|
5414 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:54
|
5415 |
+
msgid "Choose"
|
5416 |
+
msgstr ""
|
5417 |
+
|
5418 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:3
|
5419 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:4
|
5420 |
+
msgid "Population Method - Custom"
|
5421 |
+
msgstr ""
|
5422 |
+
|
5423 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:57
|
5424 |
+
msgid "Add Slide"
|
5425 |
+
msgstr ""
|
5426 |
+
|
5427 |
+
#: ../extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:59
|
5428 |
+
#: ../views/backend-settings-form.php:47
|
5429 |
+
msgid "Save Changes"
|
5430 |
+
msgstr ""
|
5431 |
+
|
5432 |
+
#: ../core/Fw.php:73
|
5433 |
+
msgid "Framework requirements not met:"
|
5434 |
+
msgstr ""
|
5435 |
+
|
5436 |
+
#: ../core/class-fw-manifest.php:293
|
5437 |
+
msgid "minimum required version is"
|
5438 |
+
msgstr ""
|
5439 |
+
|
5440 |
+
#: ../core/class-fw-manifest.php:296
|
5441 |
+
msgid "maximum required version is"
|
5442 |
+
msgstr ""
|
5443 |
+
|
5444 |
+
#: ../core/class-fw-manifest.php:301
|
5445 |
+
msgid "and"
|
5446 |
+
msgstr ""
|
5447 |
+
|
5448 |
+
#: ../core/class-fw-manifest.php:308
|
5449 |
+
#, php-format
|
5450 |
+
msgid "Current WordPress version is %s, %s"
|
5451 |
+
msgstr ""
|
5452 |
+
|
5453 |
+
#: ../core/class-fw-manifest.php:314
|
5454 |
+
#, php-format
|
5455 |
+
msgid "Current Framework version is %s, %s"
|
5456 |
+
msgstr ""
|
5457 |
+
|
5458 |
+
#: ../core/class-fw-manifest.php:323
|
5459 |
+
#, php-format
|
5460 |
+
msgid "Current version of the %s extension is %s, %s"
|
5461 |
+
msgstr ""
|
5462 |
+
|
5463 |
+
#: ../core/class-fw-manifest.php:329
|
5464 |
+
#, php-format
|
5465 |
+
msgid "%s extension is required"
|
5466 |
+
msgstr ""
|
5467 |
+
|
5468 |
+
#: ../core/class-fw-manifest.php:334
|
5469 |
+
#, php-format
|
5470 |
+
msgid "%s extension is required (%s)"
|
5471 |
+
msgstr ""
|
5472 |
+
|
5473 |
+
#: ../core/extends/class-fw-option-type.php:283
|
5474 |
+
#, php-format
|
5475 |
+
msgid "Option type %s has no default value"
|
5476 |
+
msgstr ""
|
5477 |
+
|
5478 |
+
#: ../core/components/backend.php:355
|
5479 |
+
msgid "Done"
|
5480 |
+
msgstr ""
|
5481 |
+
|
5482 |
+
#: ../core/components/backend.php:356
|
5483 |
+
msgid "Ah, Sorry"
|
5484 |
+
msgstr ""
|
5485 |
+
|
5486 |
+
#: ../core/components/backend.php:358
|
5487 |
+
#: ../includes/option-types/color-picker/class-fw-option-type-color-picker.php:39
|
5488 |
+
#: ../includes/option-types/color-picker/class-fw-option-type-color-picker.php:40
|
5489 |
+
#: ../includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:41
|
5490 |
+
#: ../includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:42
|
5491 |
+
msgid "Reset"
|
5492 |
+
msgstr ""
|
5493 |
+
|
5494 |
+
#: ../core/components/backend.php:541
|
5495 |
+
#: ../core/components/backend.php:542
|
5496 |
+
#: ../core/components/backend.php:650
|
5497 |
+
msgid "Theme Settings"
|
5498 |
+
msgstr ""
|
5499 |
+
|
5500 |
+
#: ../core/components/backend.php:577
|
5501 |
+
msgid "leave a review"
|
5502 |
+
msgstr ""
|
5503 |
+
|
5504 |
+
#: ../core/components/backend.php:588
|
5505 |
+
msgid ""
|
5506 |
+
"Unyson WordPress Framework is the fastest and easiest way to develop a "
|
5507 |
+
"premium theme. I highly recommend it"
|
5508 |
+
msgstr ""
|
5509 |
+
|
5510 |
+
#: ../core/components/backend.php:594
|
5511 |
+
msgid ""
|
5512 |
+
"If you like Unyson, {wp_review_link}, share on {facebook_share_link} or "
|
5513 |
+
"{twitter_share_link}."
|
5514 |
+
msgstr ""
|
5515 |
+
|
5516 |
+
#: ../core/components/backend.php:1303
|
5517 |
+
msgid "You have no permissions to change settings options"
|
5518 |
+
msgstr ""
|
5519 |
+
|
5520 |
+
#: ../core/components/backend.php:1316
|
5521 |
+
msgid "The options were successfully reset"
|
5522 |
+
msgstr ""
|
5523 |
+
|
5524 |
+
#: ../core/components/backend.php:1327
|
5525 |
+
msgid "The options were successfully saved"
|
5526 |
+
msgstr ""
|
5527 |
+
|
5528 |
+
#: ../core/components/backend.php:1440
|
5529 |
+
msgid "Unknown collected group"
|
5530 |
+
msgstr ""
|
5531 |
+
|
5532 |
+
#: ../core/components/backend.php:1779
|
5533 |
+
#, php-format
|
5534 |
+
msgid "Undefined option type: %s"
|
5535 |
+
msgstr ""
|
5536 |
+
|
5537 |
+
#: ../core/components/backend.php:1826
|
5538 |
+
#, php-format
|
5539 |
+
msgid "Undefined container type: %s"
|
5540 |
+
msgstr ""
|
5541 |
+
|
5542 |
+
#: ../core/components/extensions.php:447
|
5543 |
+
#: ../core/components/extensions.php:525
|
5544 |
+
#, php-format
|
5545 |
+
msgid "Extension %s is invalid."
|
5546 |
+
msgstr ""
|
5547 |
+
|
5548 |
+
#: ../core/components/theme.php:206
|
5549 |
+
msgid "Theme requirements not met:"
|
5550 |
+
msgstr ""
|
5551 |
+
|
5552 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:351
|
5553 |
+
msgid "Cannot remove the old extensions backup dir"
|
5554 |
+
msgstr ""
|
5555 |
+
|
5556 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:357
|
5557 |
+
msgid "Cannot create the extensions backup dir"
|
5558 |
+
msgstr ""
|
5559 |
+
|
5560 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:362
|
5561 |
+
msgid "Cannot backup the extensions"
|
5562 |
+
msgstr ""
|
5563 |
+
|
5564 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:408
|
5565 |
+
msgid "Cannot clear the extensions directory"
|
5566 |
+
msgstr ""
|
5567 |
+
|
5568 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:413
|
5569 |
+
msgid "Cannot recreate the extensions directory"
|
5570 |
+
msgstr ""
|
5571 |
+
|
5572 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:419
|
5573 |
+
msgid "Cannot recover the extensions"
|
5574 |
+
msgstr ""
|
5575 |
+
|
5576 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:645
|
5577 |
+
#, php-format
|
5578 |
+
msgid "Cannot activate hidden standalone extension %s"
|
5579 |
+
msgstr ""
|
5580 |
+
|
5581 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:874
|
5582 |
+
msgid "You are not allowed to install extensions."
|
5583 |
+
msgstr ""
|
5584 |
+
|
5585 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:891
|
5586 |
+
msgid "All supported extensions are already installed."
|
5587 |
+
msgstr ""
|
5588 |
+
|
5589 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:967
|
5590 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2384
|
5591 |
+
#, php-format
|
5592 |
+
msgid "Cannot remove temporary directory: %s"
|
5593 |
+
msgstr ""
|
5594 |
+
|
5595 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1037
|
5596 |
+
msgid "You have no permissions to install extensions"
|
5597 |
+
msgstr ""
|
5598 |
+
|
5599 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1044
|
5600 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1517
|
5601 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1901
|
5602 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2116
|
5603 |
+
msgid "No extensions provided"
|
5604 |
+
msgstr ""
|
5605 |
+
|
5606 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1053
|
5607 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1527
|
5608 |
+
msgid "WP Filesystem is not initialized"
|
5609 |
+
msgstr ""
|
5610 |
+
|
5611 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1079
|
5612 |
+
#, php-format
|
5613 |
+
msgid "Extension \"%s\" is already installed."
|
5614 |
+
msgstr ""
|
5615 |
+
|
5616 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1094
|
5617 |
+
#, php-format
|
5618 |
+
msgid "Extension \"%s\" is not available for install."
|
5619 |
+
msgstr ""
|
5620 |
+
|
5621 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1122
|
5622 |
+
#, php-format
|
5623 |
+
msgid "Parent extension \"%s\" not available."
|
5624 |
+
msgstr ""
|
5625 |
+
|
5626 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1156
|
5627 |
+
#, php-format
|
5628 |
+
msgid "Downloading the \"%s\" extension..."
|
5629 |
+
msgstr ""
|
5630 |
+
|
5631 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1200
|
5632 |
+
#, php-format
|
5633 |
+
msgid "Installing the \"%s\" extension..."
|
5634 |
+
msgstr ""
|
5635 |
+
|
5636 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1238
|
5637 |
+
#, php-format
|
5638 |
+
msgid "The %s extension has been successfully installed."
|
5639 |
+
msgstr ""
|
5640 |
+
|
5641 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1399
|
5642 |
+
msgid "You are not allowed to delete extensions."
|
5643 |
+
msgstr ""
|
5644 |
+
|
5645 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1510
|
5646 |
+
msgid "You have no permissions to uninstall extensions"
|
5647 |
+
msgstr ""
|
5648 |
+
|
5649 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1578
|
5650 |
+
#, php-format
|
5651 |
+
msgid "Deleting the \"%s\" extension..."
|
5652 |
+
msgstr ""
|
5653 |
+
|
5654 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1590
|
5655 |
+
#, php-format
|
5656 |
+
msgid "Cannot delete the \"%s\" extension."
|
5657 |
+
msgstr ""
|
5658 |
+
|
5659 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1602
|
5660 |
+
#, php-format
|
5661 |
+
msgid "The %s extension has been successfully deleted."
|
5662 |
+
msgstr ""
|
5663 |
+
|
5664 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1703
|
5665 |
+
msgid "Extension not specified."
|
5666 |
+
msgstr ""
|
5667 |
+
|
5668 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1708
|
5669 |
+
#, php-format
|
5670 |
+
msgid "Extension \"%s\" is not installed."
|
5671 |
+
msgstr ""
|
5672 |
+
|
5673 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1776
|
5674 |
+
#, php-format
|
5675 |
+
msgid "Extension \"%s\" does not exist or is not active."
|
5676 |
+
msgstr ""
|
5677 |
+
|
5678 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1785
|
5679 |
+
#, php-format
|
5680 |
+
msgid "%s extension does not have settings."
|
5681 |
+
msgstr ""
|
5682 |
+
|
5683 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1806
|
5684 |
+
msgid "Extension has no Install Instructions"
|
5685 |
+
msgstr ""
|
5686 |
+
|
5687 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1830
|
5688 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2047
|
5689 |
+
msgid "Invalid request method."
|
5690 |
+
msgstr ""
|
5691 |
+
|
5692 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1842
|
5693 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2059
|
5694 |
+
msgid "No extension specified."
|
5695 |
+
msgstr ""
|
5696 |
+
|
5697 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1894
|
5698 |
+
msgid "You have no permissions to activate extensions"
|
5699 |
+
msgstr ""
|
5700 |
+
|
5701 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:1914
|
5702 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2132
|
5703 |
+
#, php-format
|
5704 |
+
msgid "Extension \"%s\" does not exist."
|
5705 |
+
msgstr ""
|
5706 |
+
|
5707 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2109
|
5708 |
+
msgid "You have no permissions to deactivate extensions"
|
5709 |
+
msgstr ""
|
5710 |
+
|
5711 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2297
|
5712 |
+
msgid "You are not allowed to save extensions settings."
|
5713 |
+
msgstr ""
|
5714 |
+
|
5715 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2304
|
5716 |
+
msgid "Invalid extension."
|
5717 |
+
msgstr ""
|
5718 |
+
|
5719 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2309
|
5720 |
+
msgid "Extension does not have settings options."
|
5721 |
+
msgstr ""
|
5722 |
+
|
5723 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2341
|
5724 |
+
msgid "Extensions settings successfully saved."
|
5725 |
+
msgstr ""
|
5726 |
+
|
5727 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2368
|
5728 |
+
#, php-format
|
5729 |
+
msgid "Extension \"%s\" has no download sources."
|
5730 |
+
msgstr ""
|
5731 |
+
|
5732 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2392
|
5733 |
+
#, php-format
|
5734 |
+
msgid "Cannot create temporary directory: %s"
|
5735 |
+
msgstr ""
|
5736 |
+
|
5737 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2403
|
5738 |
+
#, php-format
|
5739 |
+
msgid "\"%s\" extension github source \"user_repo\" parameter is required"
|
5740 |
+
msgstr ""
|
5741 |
+
|
5742 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2454
|
5743 |
+
#, php-format
|
5744 |
+
msgid "Failed to access Github repository \"%s\" releases. (%s)"
|
5745 |
+
msgstr ""
|
5746 |
+
|
5747 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2477
|
5748 |
+
#, php-format
|
5749 |
+
msgid "\"%s\" extension github repository \"%s\" has no releases."
|
5750 |
+
msgstr ""
|
5751 |
+
|
5752 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2510
|
5753 |
+
#, php-format
|
5754 |
+
msgid "Cannot download the \"%s\" extension zip. (Response code: %d)"
|
5755 |
+
msgstr ""
|
5756 |
+
|
5757 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2517
|
5758 |
+
#, php-format
|
5759 |
+
msgid "Cannot download the \"%s\" extension zip. %s"
|
5760 |
+
msgstr ""
|
5761 |
+
|
5762 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2525
|
5763 |
+
#, php-format
|
5764 |
+
msgid "Cannot download the \"%s\" extension zip."
|
5765 |
+
msgstr ""
|
5766 |
+
|
5767 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2538
|
5768 |
+
#, php-format
|
5769 |
+
msgid "Cannot save the \"%s\" extension zip."
|
5770 |
+
msgstr ""
|
5771 |
+
|
5772 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2557
|
5773 |
+
#, php-format
|
5774 |
+
msgid "Cannot remove the \"%s\" extension downloaded zip."
|
5775 |
+
msgstr ""
|
5776 |
+
|
5777 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2582
|
5778 |
+
#, php-format
|
5779 |
+
msgid "The unzipped \"%s\" extension directory not found."
|
5780 |
+
msgstr ""
|
5781 |
+
|
5782 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2589
|
5783 |
+
#, php-format
|
5784 |
+
msgid "Unknown \"%s\" extension download source \"%s\""
|
5785 |
+
msgstr ""
|
5786 |
+
|
5787 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2615
|
5788 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2634
|
5789 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2697
|
5790 |
+
#, php-format
|
5791 |
+
msgid "Cannot read directory \"%s\"."
|
5792 |
+
msgstr ""
|
5793 |
+
|
5794 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2649
|
5795 |
+
#, php-format
|
5796 |
+
msgid "Cannot delete \"%s\"."
|
5797 |
+
msgstr ""
|
5798 |
+
|
5799 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2660
|
5800 |
+
#, php-format
|
5801 |
+
msgid "Cannot create the \"%s\" directory."
|
5802 |
+
msgstr ""
|
5803 |
+
|
5804 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:2678
|
5805 |
+
#, php-format
|
5806 |
+
msgid "Cannot move \"%s\" to \"%s\"."
|
5807 |
+
msgstr ""
|
5808 |
+
|
5809 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:3103
|
5810 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:3150
|
5811 |
+
#, php-format
|
5812 |
+
msgid "Cannot activate the %s extension because it is not installed. %s"
|
5813 |
+
msgstr ""
|
5814 |
+
|
5815 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:3107
|
5816 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:3154
|
5817 |
+
msgid "Install"
|
5818 |
+
msgstr ""
|
5819 |
+
|
5820 |
+
#: ../core/components/extensions/manager/class--fw-extensions-manager.php:3197
|
5821 |
+
msgid "Install theme compatible extensions"
|
5822 |
+
msgstr ""
|
5823 |
+
|
5824 |
+
#: ../core/components/extensions/manager/available-extensions.php:13
|
5825 |
+
msgid ""
|
5826 |
+
"Adds a sliders module to your website from where you'll be able to create "
|
5827 |
+
"different built in jQuery sliders for your homepage and rest of the pages."
|
5828 |
+
msgstr ""
|
5829 |
+
|
5830 |
+
#: ../core/components/extensions/manager/available-extensions.php:24
|
5831 |
+
msgid "Media"
|
5832 |
+
msgstr ""
|
5833 |
+
|
5834 |
+
#: ../core/components/extensions/manager/available-extensions.php:36
|
5835 |
+
msgid "Population method"
|
5836 |
+
msgstr ""
|
5837 |
+
|
5838 |
+
#: ../core/components/extensions/manager/available-extensions.php:85
|
5839 |
+
msgid ""
|
5840 |
+
"Let's you easily build countless pages with the help of the drag and drop "
|
5841 |
+
"visual page builder that comes with a lot of already created shortcodes."
|
5842 |
+
msgstr ""
|
5843 |
+
|
5844 |
+
#: ../core/components/extensions/manager/available-extensions.php:96
|
5845 |
+
msgid "Shortcodes"
|
5846 |
+
msgstr ""
|
5847 |
+
|
5848 |
+
#: ../core/components/extensions/manager/available-extensions.php:157
|
5849 |
+
msgid ""
|
5850 |
+
"This extension lets you set up daily, weekly or monthly backup schedule. You "
|
5851 |
+
"can choose between a full backup or a data base only backup."
|
5852 |
+
msgstr ""
|
5853 |
+
|
5854 |
+
#: ../core/components/extensions/manager/views/extension.php:89
|
5855 |
+
#: ../core/components/extensions/manager/views/extension-page-header.php:25
|
5856 |
+
msgid "Install Instructions"
|
5857 |
+
msgstr ""
|
5858 |
+
|
5859 |
+
#: ../core/components/extensions/manager/views/extension.php:102
|
5860 |
+
msgid "Compatible"
|
5861 |
+
msgstr ""
|
5862 |
+
|
5863 |
+
#: ../core/components/extensions/manager/views/extension.php:102
|
5864 |
+
msgid "with your current theme"
|
5865 |
+
msgstr ""
|
5866 |
+
|
5867 |
+
#: ../core/components/extensions/manager/views/extension.php:174
|
5868 |
+
#, php-format
|
5869 |
+
msgid "Parent extension \"%s\" is disabled"
|
5870 |
+
msgstr ""
|
5871 |
+
|
5872 |
+
#: ../core/components/extensions/manager/views/extension.php:199
|
5873 |
+
#, php-format
|
5874 |
+
msgid "You need to update WordPress to %s: %s"
|
5875 |
+
msgstr ""
|
5876 |
+
|
5877 |
+
#: ../core/components/extensions/manager/views/extension.php:201
|
5878 |
+
msgid "Update WordPress"
|
5879 |
+
msgstr ""
|
5880 |
+
|
5881 |
+
#: ../core/components/extensions/manager/views/extension.php:205
|
5882 |
+
#, php-format
|
5883 |
+
msgid "WordPress needs to be updated to %s"
|
5884 |
+
msgstr ""
|
5885 |
+
|
5886 |
+
#: ../core/components/extensions/manager/views/extension.php:215
|
5887 |
+
#, php-format
|
5888 |
+
msgid "Maximum supported WordPress version is %s"
|
5889 |
+
msgstr ""
|
5890 |
+
|
5891 |
+
#: ../core/components/extensions/manager/views/extension.php:230
|
5892 |
+
#, php-format
|
5893 |
+
msgid "You need to update %s to %s: %s"
|
5894 |
+
msgstr ""
|
5895 |
+
|
5896 |
+
#: ../core/components/extensions/manager/views/extension.php:239
|
5897 |
+
#, php-format
|
5898 |
+
msgid "%s needs to be updated to %s"
|
5899 |
+
msgstr ""
|
5900 |
+
|
5901 |
+
#: ../core/components/extensions/manager/views/extension.php:250
|
5902 |
+
#, php-format
|
5903 |
+
msgid "Maximum supported %s version is %s"
|
5904 |
+
msgstr ""
|
5905 |
+
|
5906 |
+
#: ../core/components/extensions/manager/views/extension.php:268
|
5907 |
+
#, php-format
|
5908 |
+
msgid "You need to update the %s extension to %s: %s"
|
5909 |
+
msgstr ""
|
5910 |
+
|
5911 |
+
#: ../core/components/extensions/manager/views/extension.php:277
|
5912 |
+
#, php-format
|
5913 |
+
msgid "The %s extension needs to be updated to %s"
|
5914 |
+
msgstr ""
|
5915 |
+
|
5916 |
+
#: ../core/components/extensions/manager/views/extension.php:288
|
5917 |
+
#, php-format
|
5918 |
+
msgid "Maximum supported %s extension version is %s"
|
5919 |
+
msgstr ""
|
5920 |
+
|
5921 |
+
#: ../core/components/extensions/manager/views/extension.php:303
|
5922 |
+
#, php-format
|
5923 |
+
msgid "The %s extension is disabled"
|
5924 |
+
msgstr ""
|
5925 |
+
|
5926 |
+
#: ../core/components/extensions/manager/views/extension.php:304
|
5927 |
+
#, php-format
|
5928 |
+
msgid "Activate %s"
|
5929 |
+
msgstr ""
|
5930 |
+
|
5931 |
+
#: ../core/components/extensions/manager/views/extension.php:313
|
5932 |
+
#, php-format
|
5933 |
+
msgid "The %s extension is not installed: %s"
|
5934 |
+
msgstr ""
|
5935 |
+
|
5936 |
+
#: ../core/components/extensions/manager/views/extension.php:316
|
5937 |
+
#, php-format
|
5938 |
+
msgid "Install %s"
|
5939 |
+
msgstr ""
|
5940 |
+
|
5941 |
+
#: ../core/components/extensions/manager/views/extension.php:321
|
5942 |
+
#, php-format
|
5943 |
+
msgid "The %s extension is not installed"
|
5944 |
+
msgstr ""
|
5945 |
+
|
5946 |
+
#: ../core/components/extensions/manager/views/extension.php:342
|
5947 |
+
msgid "View Requirements"
|
5948 |
+
msgstr ""
|
5949 |
+
|
5950 |
+
#: ../core/components/extensions/manager/views/extension-page-header.php:40
|
5951 |
+
#, php-format
|
5952 |
+
msgid "%s Settings"
|
5953 |
+
msgstr ""
|
5954 |
+
|
5955 |
+
#: ../core/components/extensions/manager/views/extension-page-header.php:43
|
5956 |
+
#, php-format
|
5957 |
+
msgid "%s Install Instructions"
|
5958 |
+
msgstr ""
|
5959 |
+
|
5960 |
+
#: ../core/components/extensions/manager/views/extension-page-header.php:46
|
5961 |
+
msgid "Unknown tab:"
|
5962 |
+
msgstr ""
|
5963 |
+
|
5964 |
+
#: ../core/components/extensions/manager/views/delete-form.php:42
|
5965 |
+
#: ../core/components/extensions/manager/views/install-form.php:51
|
5966 |
+
msgid "No, Return me to the extension list"
|
5967 |
+
msgstr ""
|
5968 |
+
|
5969 |
+
#: ../core/components/extensions/manager/views/delete-form.php:45
|
5970 |
+
msgid "Click to view entire list of directories which will be deleted"
|
5971 |
+
msgstr ""
|
5972 |
+
|
5973 |
+
#: ../core/components/extensions/manager/views/extensions-page.php:17
|
5974 |
+
msgid "Active Extensions"
|
5975 |
+
msgstr ""
|
5976 |
+
|
5977 |
+
#: ../core/components/extensions/manager/views/extensions-page.php:33
|
5978 |
+
msgid "No extensions activated yet"
|
5979 |
+
msgstr ""
|
5980 |
+
|
5981 |
+
#: ../core/components/extensions/manager/views/extensions-page.php:33
|
5982 |
+
msgid "Check the available extensions below"
|
5983 |
+
msgstr ""
|
5984 |
+
|
5985 |
+
#: ../core/components/extensions/manager/views/extensions-page.php:59
|
5986 |
+
msgid "Available Extensions"
|
5987 |
+
msgstr ""
|
5988 |
+
|
5989 |
+
#: ../core/components/extensions/manager/views/extensions-page.php:184
|
5990 |
+
msgid "Show other extensions"
|
5991 |
+
msgstr ""
|
5992 |
+
|
5993 |
+
#: ../core/components/extensions/manager/views/extensions-page.php:185
|
5994 |
+
msgid "Hide other extensions"
|
5995 |
+
msgstr ""
|
5996 |
+
|
5997 |
+
#: ../core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:14
|
5998 |
+
#: ../core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:14
|
5999 |
+
msgid "Go to extensions page"
|
6000 |
+
msgstr ""
|
6001 |
+
|
6002 |
+
#: ../core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:17
|
6003 |
+
#: ../core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:17
|
6004 |
+
msgid "Return to Extensions page"
|
6005 |
+
msgstr ""
|
6006 |
+
|
6007 |
+
#: ../views/backend-settings-form.php:48
|
6008 |
+
msgid "Reset Options"
|
6009 |
+
msgstr ""
|
6010 |
+
|
6011 |
+
#: ../views/backend-settings-form.php:62
|
6012 |
+
msgid "by"
|
6013 |
+
msgstr ""
|
6014 |
+
|
6015 |
+
#: ../views/backend-settings-form.php:155
|
6016 |
+
msgid ""
|
6017 |
+
"Click OK to reset.\n"
|
6018 |
+
"All settings will be lost and replaced with default settings!"
|
6019 |
+
msgstr ""
|
6020 |
+
|
6021 |
+
#: ../views/backend-settings-form.php:202
|
6022 |
+
msgid "Resetting"
|
6023 |
+
msgstr ""
|
6024 |
+
|
6025 |
+
#: ../views/backend-settings-form.php:204
|
6026 |
+
msgid "We are currently resetting your settings."
|
6027 |
+
msgstr ""
|
6028 |
+
|
6029 |
+
#: ../views/backend-settings-form.php:206
|
6030 |
+
#: ../views/backend-settings-form.php:212
|
6031 |
+
msgid "This may take a few moments."
|
6032 |
+
msgstr ""
|
6033 |
+
|
6034 |
+
#: ../views/backend-settings-form.php:208
|
6035 |
+
msgid "Saving"
|
6036 |
+
msgstr ""
|
6037 |
+
|
6038 |
+
#: ../views/backend-settings-form.php:210
|
6039 |
+
msgid "We are currently saving your settings."
|
6040 |
+
msgstr ""
|
6041 |
+
|
6042 |
+
#: ../includes/option-types/class-fw-option-type-undefined.php:25
|
6043 |
+
msgid "UNDEFINED OPTION TYPE"
|
6044 |
+
msgstr ""
|
6045 |
+
|
6046 |
+
#: ../includes/option-types/radio-text/class-fw-option-type-radio-text.php:22
|
6047 |
+
msgid "25%"
|
6048 |
+
msgstr ""
|
6049 |
+
|
6050 |
+
#: ../includes/option-types/radio-text/class-fw-option-type-radio-text.php:23
|
6051 |
+
msgid "50%"
|
6052 |
+
msgstr ""
|
6053 |
+
|
6054 |
+
#: ../includes/option-types/radio-text/class-fw-option-type-radio-text.php:24
|
6055 |
+
msgid "100%"
|
6056 |
+
msgstr ""
|
6057 |
+
|
6058 |
+
#: ../includes/option-types/map/views/view.php:12
|
6059 |
+
msgid "Specify location"
|
6060 |
+
msgstr ""
|
6061 |
+
|
6062 |
+
#: ../includes/option-types/map/views/view.php:27
|
6063 |
+
msgid "Location Venue"
|
6064 |
+
msgstr ""
|
6065 |
+
|
6066 |
+
#: ../includes/option-types/map/views/view.php:42
|
6067 |
+
msgid "Address"
|
6068 |
+
msgstr ""
|
6069 |
+
|
6070 |
+
#: ../includes/option-types/map/views/view.php:57
|
6071 |
+
msgid "City"
|
6072 |
+
msgstr ""
|
6073 |
+
|
6074 |
+
#: ../includes/option-types/map/views/view.php:72
|
6075 |
+
msgid "Country"
|
6076 |
+
msgstr ""
|
6077 |
+
|
6078 |
+
#: ../includes/option-types/map/views/view.php:87
|
6079 |
+
msgid "State"
|
6080 |
+
msgstr ""
|
6081 |
+
|
6082 |
+
#: ../includes/option-types/map/views/view.php:103
|
6083 |
+
msgid "Zip Code"
|
6084 |
+
msgstr ""
|
6085 |
+
|
6086 |
+
#: ../includes/option-types/map/views/view.php:138
|
6087 |
+
msgid "Cannot find the location?"
|
6088 |
+
msgstr ""
|
6089 |
+
|
6090 |
+
#: ../includes/option-types/map/views/view.php:150
|
6091 |
+
msgid "Reset location"
|
6092 |
+
msgstr ""
|
6093 |
+
|
6094 |
+
#: ../includes/option-types/upload/class-fw-option-type-upload.php:150
|
6095 |
+
msgid "Add Image"
|
6096 |
+
msgstr ""
|
6097 |
+
|
6098 |
+
#: ../includes/option-types/upload/class-fw-option-type-upload.php:176
|
6099 |
+
#: ../includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:186
|
6100 |
+
msgid "Upload"
|
6101 |
+
msgstr ""
|
6102 |
+
|
6103 |
+
#: ../includes/option-types/typography-v2/view.php:39
|
6104 |
+
msgid "Font face"
|
6105 |
+
msgstr ""
|
6106 |
+
|
6107 |
+
#: ../includes/option-types/typography-v2/view.php:48
|
6108 |
+
msgid "Normal"
|
6109 |
+
msgstr ""
|
6110 |
+
|
6111 |
+
#: ../includes/option-types/typography-v2/view.php:49
|
6112 |
+
msgid "Italic"
|
6113 |
+
msgstr ""
|
6114 |
+
|
6115 |
+
#: ../includes/option-types/typography-v2/view.php:50
|
6116 |
+
msgid "Oblique"
|
6117 |
+
msgstr ""
|
6118 |
+
|
6119 |
+
#: ../includes/option-types/typography-v2/view.php:59
|
6120 |
+
#: ../includes/option-types/typography-v2/view.php:118
|
6121 |
+
msgid "Style"
|
6122 |
+
msgstr ""
|
6123 |
+
|
6124 |
+
#: ../includes/option-types/typography-v2/view.php:85
|
6125 |
+
msgid "Weight"
|
6126 |
+
msgstr ""
|
6127 |
+
|
6128 |
+
#: ../includes/option-types/typography-v2/view.php:101
|
6129 |
+
msgid "Script"
|
6130 |
+
msgstr ""
|
6131 |
+
|
6132 |
+
#: ../includes/option-types/typography-v2/view.php:128
|
6133 |
+
msgid "Size"
|
6134 |
+
msgstr ""
|
6135 |
+
|
6136 |
+
#: ../includes/option-types/typography-v2/view.php:139
|
6137 |
+
msgid "Line height"
|
6138 |
+
msgstr ""
|
6139 |
+
|
6140 |
+
#: ../includes/option-types/typography-v2/view.php:150
|
6141 |
+
msgid "Letter spacing"
|
6142 |
+
msgstr ""
|
6143 |
+
|
6144 |
+
#: ../includes/option-types/typography-v2/view.php:173
|
6145 |
+
msgid "Color"
|
6146 |
+
msgstr ""
|
6147 |
+
|
6148 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:156
|
6149 |
+
msgid "Unknown Set"
|
6150 |
+
msgstr ""
|
6151 |
+
|
6152 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:186
|
6153 |
+
msgid "Web Application Icons"
|
6154 |
+
msgstr ""
|
6155 |
+
|
6156 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:187
|
6157 |
+
msgid "Hand Icons"
|
6158 |
+
msgstr ""
|
6159 |
+
|
6160 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:188
|
6161 |
+
msgid "Transportation Icons"
|
6162 |
+
msgstr ""
|
6163 |
+
|
6164 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:189
|
6165 |
+
msgid "Gender Icons"
|
6166 |
+
msgstr ""
|
6167 |
+
|
6168 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:190
|
6169 |
+
msgid "File Type Icons"
|
6170 |
+
msgstr ""
|
6171 |
+
|
6172 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:193
|
6173 |
+
msgid "Payment Icons"
|
6174 |
+
msgstr ""
|
6175 |
+
|
6176 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:195
|
6177 |
+
msgid "Currency Icons"
|
6178 |
+
msgstr ""
|
6179 |
+
|
6180 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:196
|
6181 |
+
msgid "Text Editor Icons"
|
6182 |
+
msgstr ""
|
6183 |
+
|
6184 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:197
|
6185 |
+
msgid "Directional Icons"
|
6186 |
+
msgstr ""
|
6187 |
+
|
6188 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:198
|
6189 |
+
msgid "Video Player Icons"
|
6190 |
+
msgstr ""
|
6191 |
+
|
6192 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:199
|
6193 |
+
msgid "Brand Icons"
|
6194 |
+
msgstr ""
|
6195 |
+
|
6196 |
+
#: ../includes/option-types/icon/class-fw-option-type-icon.php:200
|
6197 |
+
msgid "Medical Icons"
|
6198 |
+
msgstr ""
|
6199 |
+
|
6200 |
+
#: ../includes/option-types/icon/view.php:39
|
6201 |
+
msgid "All Categories"
|
6202 |
+
msgstr ""
|
6203 |
+
|
6204 |
+
#: ../includes/option-types/datetime-range/view.php:41
|
6205 |
+
#: ../includes/option-types/gradient/view.php:46
|
6206 |
+
msgid "to"
|
6207 |
+
msgstr ""
|
6208 |
+
|
6209 |
+
#: ../includes/option-types/multi-picker/class-fw-option-type-multi-picker.php:179
|
6210 |
+
#, php-format
|
6211 |
+
msgid "No 'picker' key set for multi-picker option: %s"
|
6212 |
+
msgstr ""
|
6213 |
+
|
6214 |
+
#: ../includes/option-types/background-image/view.php:37
|
6215 |
+
msgid "Predefined images"
|
6216 |
+
msgstr ""
|
6217 |
+
|
6218 |
+
#: ../includes/option-types/background-image/view.php:38
|
6219 |
+
msgid "Custom image"
|
6220 |
+
msgstr ""
|
6221 |
+
|
6222 |
+
#: ../includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:160
|
6223 |
+
msgid "Add Images"
|
6224 |
+
msgstr ""
|
6225 |
+
|
6226 |
+
#: ../includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:188
|
6227 |
+
msgid "1 File"
|
6228 |
+
msgstr ""
|
6229 |
+
|
6230 |
+
#: ../includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:189
|
6231 |
+
#, php-format
|
6232 |
+
msgid "%u Files"
|
6233 |
+
msgstr ""
|
{languages → framework/languages}/index.html
RENAMED
File without changes
|
framework/manifest.php
CHANGED
@@ -4,4 +4,4 @@ $manifest = array();
|
|
4 |
|
5 |
$manifest['name'] = __('Unyson', 'fw');
|
6 |
|
7 |
-
$manifest['version'] = '2.
|
4 |
|
5 |
$manifest['name'] = __('Unyson', 'fw');
|
6 |
|
7 |
+
$manifest['version'] = '2.5.0';
|
framework/static/css/backend-options.css
CHANGED
@@ -730,6 +730,12 @@ body.rtl .fw-backend-side-tabs .fw-settings-form-header .form-header-buttons {
|
|
730 |
min-height: 70px;
|
731 |
border-top: 1px solid #e5e5e5;
|
732 |
background: #f7f7f7;
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
}
|
734 |
|
735 |
.fw-backend-side-tabs .fw-options-tabs-wrapper + .form-footer-buttons {
|
@@ -834,12 +840,12 @@ form#post .fw-options-tabs-wrapper > .fw-options-tabs-contents .fw-backend-postb
|
|
834 |
/* begin copy from: .js .meta-box-sortables .postbox .handlediv */
|
835 |
|
836 |
.fw-postbox .handlediv:before {
|
837 |
-
|
|
|
|
|
838 |
font: 400 20px/1 dashicons;
|
839 |
speak: none;
|
840 |
display: inline-block;
|
841 |
-
padding: 8px 10px;
|
842 |
-
top: 0;
|
843 |
position: relative;
|
844 |
-webkit-font-smoothing: antialiased;
|
845 |
-moz-osx-font-smoothing: grayscale;
|
@@ -858,6 +864,10 @@ body.rtl .fw-postbox .handlediv:before {
|
|
858 |
content: '\f140';
|
859 |
}
|
860 |
|
|
|
|
|
|
|
|
|
861 |
/* end copy from: .js .meta-box-sortables .postbox .handlediv */
|
862 |
|
863 |
/* end: Boxes */
|
730 |
min-height: 70px;
|
731 |
border-top: 1px solid #e5e5e5;
|
732 |
background: #f7f7f7;
|
733 |
+
|
734 |
+
-webkit-animation: fwFadeIn 3s ease-in;
|
735 |
+
-moz-animation: fwFadeIn 3s ease-in;
|
736 |
+
-ms-animation: fwFadeIn 3s ease-in;
|
737 |
+
-o-animation: fwFadeIn 3s ease-in;
|
738 |
+
animation: fwFadeIn 3s ease-in;
|
739 |
}
|
740 |
|
741 |
.fw-backend-side-tabs .fw-options-tabs-wrapper + .form-footer-buttons {
|
840 |
/* begin copy from: .js .meta-box-sortables .postbox .handlediv */
|
841 |
|
842 |
.fw-postbox .handlediv:before {
|
843 |
+
top: 0;
|
844 |
+
right: 0;
|
845 |
+
padding: 8px 9px 8px 7px;
|
846 |
font: 400 20px/1 dashicons;
|
847 |
speak: none;
|
848 |
display: inline-block;
|
|
|
|
|
849 |
position: relative;
|
850 |
-webkit-font-smoothing: antialiased;
|
851 |
-moz-osx-font-smoothing: grayscale;
|
864 |
content: '\f140';
|
865 |
}
|
866 |
|
867 |
+
.fw-postbox .toggle-indicator {
|
868 |
+
display: none; /* fixes https://github.com/ThemeFuse/Unyson/issues/1261 */
|
869 |
+
}
|
870 |
+
|
871 |
/* end copy from: .js .meta-box-sortables .postbox .handlediv */
|
872 |
|
873 |
/* end: Boxes */
|
framework/static/js/backend-options.js
CHANGED
@@ -4,28 +4,14 @@
|
|
4 |
|
5 |
var fwBackendOptions = {
|
6 |
/**
|
7 |
-
*
|
8 |
*/
|
9 |
-
openTab: function(tabId) {
|
10 |
-
if (!tabId) {
|
11 |
-
return;
|
12 |
-
}
|
13 |
-
|
14 |
-
var $tabLink = jQuery(".fw-options-tabs-wrapper > .fw-options-tabs-list > ul > li > a[href=\'#"+ tabId +"\']");
|
15 |
-
|
16 |
-
while ($tabLink.length) {
|
17 |
-
$tabLink.trigger("click");
|
18 |
-
$tabLink = $tabLink
|
19 |
-
.closest(".fw-options-tabs-wrapper").parent().closest(".fw-options-tabs-wrapper")
|
20 |
-
.find("> .fw-options-tabs-list > ul > li > a[href=\'#"+ $tabLink.closest(".fw-options-tab").attr("id") +"\']");
|
21 |
-
}
|
22 |
-
|
23 |
-
// click again on focus tab to update the input value
|
24 |
-
jQuery(".fw-options-tabs-wrapper > .fw-options-tabs-list > ul > li > a[href=\'#"+ tabId +"\']").trigger("click");;
|
25 |
-
}
|
26 |
};
|
27 |
|
28 |
jQuery(document).ready(function($){
|
|
|
|
|
29 |
/**
|
30 |
* Functions
|
31 |
*/
|
@@ -69,13 +55,55 @@ jQuery(document).ready(function($){
|
|
69 |
}
|
70 |
|
71 |
/** Init tabs */
|
72 |
-
|
73 |
-
var
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
-
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
var $this = $(this);
|
80 |
|
81 |
if (!$this.parent().closest('.fw-options-tabs-wrapper').length) {
|
@@ -84,9 +112,9 @@ jQuery(document).ready(function($){
|
|
84 |
}
|
85 |
});
|
86 |
|
87 |
-
$
|
88 |
-
}
|
89 |
-
});
|
90 |
|
91 |
/** Init boxes */
|
92 |
fwEvents.on('fw:options:init', function (data) {
|
4 |
|
5 |
var fwBackendOptions = {
|
6 |
/**
|
7 |
+
* @deprecated Tabs are lazy loaded https://github.com/ThemeFuse/Unyson/issues/1174
|
8 |
*/
|
9 |
+
openTab: function(tabId) { console.warn('deprecated'); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
};
|
11 |
|
12 |
jQuery(document).ready(function($){
|
13 |
+
var localized = _fw_backend_options_localized;
|
14 |
+
|
15 |
/**
|
16 |
* Functions
|
17 |
*/
|
55 |
}
|
56 |
|
57 |
/** Init tabs */
|
58 |
+
(function(){
|
59 |
+
var htmlAttrName = 'data-fw-tab-html',
|
60 |
+
initTab = function($tab) {
|
61 |
+
var html;
|
62 |
+
|
63 |
+
if (html = $tab.attr(htmlAttrName)) {
|
64 |
+
fwEvents.trigger('fw:options:init', {
|
65 |
+
$elements: $tab.removeAttr(htmlAttrName).html(html)
|
66 |
+
});
|
67 |
+
}
|
68 |
+
},
|
69 |
+
initAllTabs = function ($el) {
|
70 |
+
var selector = '.fw-options-tab[' + htmlAttrName + ']', $tabs;
|
71 |
|
72 |
+
// initialized tabs can contain tabs, so init recursive until nothing is found
|
73 |
+
while (($tabs = $el.find(selector)).length) {
|
74 |
+
$tabs.each(function () { initTab($(this)); });
|
75 |
+
}
|
76 |
+
};
|
77 |
+
|
78 |
+
fwEvents.on('fw:options:init:tabs', function (data) {
|
79 |
+
initAllTabs(data.$elements);
|
80 |
+
});
|
81 |
+
|
82 |
+
fwEvents.on('fw:options:init', function (data) {
|
83 |
+
var $tabs = data.$elements.find('.fw-options-tabs-wrapper:not(.initialized)');
|
84 |
+
|
85 |
+
if (localized.lazy_tabs) {
|
86 |
+
$tabs.tabs({
|
87 |
+
create: function (event, ui) {
|
88 |
+
initTab(ui.panel);
|
89 |
+
},
|
90 |
+
activate: function (event, ui) {
|
91 |
+
initTab(ui.newPanel);
|
92 |
+
}
|
93 |
+
});
|
94 |
|
95 |
+
$tabs
|
96 |
+
.closest('form')
|
97 |
+
.off('submit.fw-tabs')
|
98 |
+
.on('submit.fw-tabs', function () {
|
99 |
+
// All options needs to be present in html to be sent in POST on submit
|
100 |
+
initAllTabs($(this));
|
101 |
+
});
|
102 |
+
} else {
|
103 |
+
$tabs.tabs();
|
104 |
+
}
|
105 |
+
|
106 |
+
$tabs.each(function () {
|
107 |
var $this = $(this);
|
108 |
|
109 |
if (!$this.parent().closest('.fw-options-tabs-wrapper').length) {
|
112 |
}
|
113 |
});
|
114 |
|
115 |
+
$tabs.addClass('initialized');
|
116 |
+
});
|
117 |
+
})();
|
118 |
|
119 |
/** Init boxes */
|
120 |
fwEvents.on('fw:options:init', function (data) {
|
framework/static/js/fw.js
CHANGED
@@ -967,6 +967,13 @@ fw.getQueryString = function(name) {
|
|
967 |
|
968 |
fw.loading.show(loadingId);
|
969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 |
jQuery.ajax({
|
971 |
url: ajaxurl,
|
972 |
type: 'POST',
|
967 |
|
968 |
fw.loading.show(loadingId);
|
969 |
|
970 |
+
/**
|
971 |
+
* Init all Lazy Tabs to render all form inputs.
|
972 |
+
* Lazy Tabs script is listening the form 'submit' event
|
973 |
+
* but it's executed after this event.
|
974 |
+
*/
|
975 |
+
fwEvents.trigger('fw:options:init:tabs', {$elements: this.$el});
|
976 |
+
|
977 |
jQuery.ajax({
|
978 |
url: ajaxurl,
|
979 |
type: 'POST',
|
framework/views/backend-settings-form.php
CHANGED
@@ -2,7 +2,6 @@
|
|
2 |
/**
|
3 |
* @var array $options
|
4 |
* @var array $values
|
5 |
-
* @var string $focus_tab_input_name
|
6 |
* @var string $reset_input_name
|
7 |
* @var bool $ajax_submit
|
8 |
* @var bool $side_tabs
|
@@ -138,35 +137,6 @@ $texts = apply_filters('fw_settings_form_texts', array(
|
|
138 |
); ?>
|
139 |
</div>
|
140 |
|
141 |
-
<!-- focus tab -->
|
142 |
-
<?php
|
143 |
-
$focus_tab_id = trim( FW_Request::POST($focus_tab_input_name, FW_Request::GET($focus_tab_input_name, '')) );
|
144 |
-
echo fw_html_tag('input', array(
|
145 |
-
'type' => 'hidden',
|
146 |
-
'name' => $focus_tab_input_name,
|
147 |
-
'value' => $focus_tab_id,
|
148 |
-
));
|
149 |
-
?>
|
150 |
-
<script type="text/javascript">
|
151 |
-
jQuery(function($){
|
152 |
-
fwEvents.one("fw:options:init", function(){
|
153 |
-
var $form = $('form[data-fw-form-id="fw_settings"]:first');
|
154 |
-
|
155 |
-
$form.on("click", ".fw-options-tabs-wrapper > .fw-options-tabs-list > ul > li > a", function(){
|
156 |
-
$form.find("input[name='<?php echo esc_js($focus_tab_input_name); ?>']").val(
|
157 |
-
$(this).attr("href").replace(/^#/, "") // tab id
|
158 |
-
);
|
159 |
-
});
|
160 |
-
|
161 |
-
/* "wait" after tabs initialized */
|
162 |
-
setTimeout(function(){
|
163 |
-
fwBackendOptions.openTab($.trim("<?php echo esc_js($focus_tab_id) ?>"));
|
164 |
-
}, 200);
|
165 |
-
});
|
166 |
-
});
|
167 |
-
</script>
|
168 |
-
<!-- end: focus tab -->
|
169 |
-
|
170 |
<!-- reset warning -->
|
171 |
<script type="text/javascript">
|
172 |
jQuery(function($){
|
@@ -340,7 +310,6 @@ jQuery(function($){
|
|
340 |
elements.$form.trigger('fw:settings-form:before-html-reset');
|
341 |
|
342 |
setTimeout(function() {
|
343 |
-
var focusTabId = elements.$form.find("input[name='<?php echo esc_js($focus_tab_input_name); ?>']").val();
|
344 |
var scrollTop = jQuery(window).scrollTop();
|
345 |
|
346 |
// replace form html
|
@@ -359,8 +328,6 @@ jQuery(function($){
|
|
359 |
|
360 |
fwEvents.trigger('fw:options:init', {$elements: elements.$form});
|
361 |
|
362 |
-
fwBackendOptions.openTab(focusTabId);
|
363 |
-
|
364 |
jQuery(window).scrollTop(scrollTop);
|
365 |
|
366 |
// fadeIn
|
2 |
/**
|
3 |
* @var array $options
|
4 |
* @var array $values
|
|
|
5 |
* @var string $reset_input_name
|
6 |
* @var bool $ajax_submit
|
7 |
* @var bool $side_tabs
|
137 |
); ?>
|
138 |
</div>
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
<!-- reset warning -->
|
141 |
<script type="text/javascript">
|
142 |
jQuery(function($){
|
310 |
elements.$form.trigger('fw:settings-form:before-html-reset');
|
311 |
|
312 |
setTimeout(function() {
|
|
|
313 |
var scrollTop = jQuery(window).scrollTop();
|
314 |
|
315 |
// replace form html
|
328 |
|
329 |
fwEvents.trigger('fw:options:init', {$elements: elements.$form});
|
330 |
|
|
|
|
|
331 |
jQuery(window).scrollTop(scrollTop);
|
332 |
|
333 |
// fadeIn
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: unyson
|
|
3 |
Tags: page builder, cms, grid, layout, responsive, back up, backup, db backup, dump, migrate, schedule, search engine optimization, seo, media, slideshow, shortcode, slide, slideshare, slideshow, google sitemaps, sitemaps, analytics, google analytics, calendar, event, events, google maps, learning, lessons, sidebars, breadcrumbs, review, portfolio, framework
|
4 |
Requires at least: 4.0.0
|
5 |
Tested up to: 4.4
|
6 |
-
Stable tag: 2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -29,8 +29,6 @@ A simple and easy way to build a powerful website.
|
|
29 |
* **Events.** It's pretty simple to use and it has Calendar and Map shortcodes.
|
30 |
* **Backup & Demo Content.** Create an automated backup schedule, import demo content or even create a demo content archive for migration purposes.
|
31 |
|
32 |
-
To get started, check out the [Scratch Theme](https://github.com/ThemeFuse/Scratch-Theme).
|
33 |
-
|
34 |
**Get involved**
|
35 |
|
36 |
Developers can contribute to the source code on the [Unyson GitHub Repository](https://github.com/ThemeFuse/Unyson/blob/master/CONTRIBUTING.md).
|
@@ -83,6 +81,21 @@ Yes; Unyson will work with any theme.
|
|
83 |
|
84 |
== Changelog ==
|
85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
= 2.4.17 =
|
87 |
* Fixed [#1197](https://github.com/ThemeFuse/Unyson/issues/1197)
|
88 |
* Added `'oembed'` option type ([docs](http://manual.unyson.io/en/latest/options/built-in-option-types.html#oembed))
|
@@ -307,141 +320,3 @@ Yes; Unyson will work with any theme.
|
|
307 |
* Added the possibility to use custom `framework-customizations` directory name [#276](https://github.com/ThemeFuse/Unyson/issues/276)
|
308 |
* Minor fixes
|
309 |
|
310 |
-
= 2.1.25 =
|
311 |
-
* Fixed qTranslate function name
|
312 |
-
* Improved default flash messages display position in frontend
|
313 |
-
* Option-type icon: Minor css changes
|
314 |
-
* Minor fix on extensions install: The success state was set too early
|
315 |
-
|
316 |
-
= 2.1.24 =
|
317 |
-
* Fixed access denied on Theme Settings and Unyson pages when qTranslate is active
|
318 |
-
* Made all boxes open when Theme Settings Side Tabs is active (with default tabs only first box is open)
|
319 |
-
* Minor fixes
|
320 |
-
|
321 |
-
= 2.1.23 =
|
322 |
-
* Improved modal sizes *(Set max-width,max-height pixels instead of top,right,bottom,left percents)*
|
323 |
-
* Added side tabs styles for Theme Settings page.
|
324 |
-
|
325 |
-
To enable, add in `{theme}/framework-customizations/theme/config.php`
|
326 |
-
|
327 |
-
```
|
328 |
-
$cfg['settings_form_side_tabs'] = true;
|
329 |
-
```
|
330 |
-
|
331 |
-
= 2.1.22 =
|
332 |
-
* Added javascript helper `fw.soleModal()`
|
333 |
-
* Added `framework/static/js/fw-form-helpers.js`
|
334 |
-
* Minor fixes
|
335 |
-
* Theme Settings form ajax submit [#198](https://github.com/ThemeFuse/Unyson/issues/198)
|
336 |
-
|
337 |
-
To disable, add in `{theme}/framework-customizations/theme/config.php`
|
338 |
-
|
339 |
-
```
|
340 |
-
$cfg['settings_form_ajax_submit'] = false;
|
341 |
-
```
|
342 |
-
|
343 |
-
= 2.1.21 =
|
344 |
-
* Made the `forms` and `mailer` extensions hidden.
|
345 |
-
|
346 |
-
= 2.1.20 =
|
347 |
-
* Added warning on Theme Settings reset [^](http://static.md/0fcf01628eddab75fdbedb3a24784db3.png)
|
348 |
-
* `FW_Form`: Form attributes can be changed in the render method
|
349 |
-
* Option type `slider` and `range-slider` fixes [#210](https://github.com/ThemeFuse/Unyson/issues/210)
|
350 |
-
* Option type `typography`: Added filter on standard fonts [#212](https://github.com/ThemeFuse/Unyson/issues/212)
|
351 |
-
* Option type `radio` and `checkboxes`: Added `inline` parameter [#216](https://github.com/ThemeFuse/Unyson/issues/216)
|
352 |
-
* Minor fixes
|
353 |
-
|
354 |
-
= 2.1.19 =
|
355 |
-
* Option type `icon`: Updated Font Awesome to 4.3.0
|
356 |
-
* Option type `typography` fixes [#195](https://github.com/ThemeFuse/Unyson/issues/195)
|
357 |
-
* Improved hidden standalone extensions auto activation [#203](https://github.com/ThemeFuse/Unyson/issues/203)
|
358 |
-
* Fixed nested array detection in options array [#204](https://github.com/ThemeFuse/Unyson/issues/204)
|
359 |
-
* Do not save the options when the "Reset" button was pressed on the Theme Settings page [#197](https://github.com/ThemeFuse/Unyson/issues/197)
|
360 |
-
|
361 |
-
= 2.1.18 =
|
362 |
-
* Added the `FW_WP_List_Table` class
|
363 |
-
* Option type `multi-picker`: added support for `short-select`
|
364 |
-
* Option type `slider` and `range-slider` design fixes
|
365 |
-
* Extension activation fix: Some required extensions were not added for activation
|
366 |
-
* Fixed wrong `$data['value']` in `FW_Option_Type::_render()` when form validation fails [#188](https://github.com/ThemeFuse/Unyson/issues/188)
|
367 |
-
* Increase timeout on extensions install [#183](https://github.com/ThemeFuse/Unyson/issues/183)
|
368 |
-
|
369 |
-
= 2.1.17 =
|
370 |
-
* Added the possibility to create a link to an extension settings page `fw()->extensions->manager->get_extension_link('{extension-name}')`
|
371 |
-
|
372 |
-
= 2.1.16 =
|
373 |
-
* Added the "Reset" button on the Theme Settings page
|
374 |
-
* Minor fixes
|
375 |
-
|
376 |
-
= 2.1.15 =
|
377 |
-
* Minor fix for extension download link
|
378 |
-
|
379 |
-
= 2.1.14 =
|
380 |
-
* Fixed extension download link to not make a request to Github API
|
381 |
-
|
382 |
-
= 2.1.13 =
|
383 |
-
* Make requests to custom Github API Cache service to prevent `Github API rate limit exceeded` error [#138](https://github.com/ThemeFuse/Unyson/issues/138)
|
384 |
-
|
385 |
-
= 2.1.12 =
|
386 |
-
* New extensions: Forms (Contact Forms), Mailer, Social
|
387 |
-
* Added option type `rgba-color-picker`
|
388 |
-
* Split the `slider` option-type into `slider` and `range-slider`
|
389 |
-
* Internal fixes and improvements
|
390 |
-
|
391 |
-
= 2.1.11 =
|
392 |
-
* Added option-type `slider`
|
393 |
-
|
394 |
-
= 2.1.10 =
|
395 |
-
* Activate theme extensions automatically on theme switch and Unyson plugin activation.
|
396 |
-
* Cache Github API responses for one hour on extensions download to prevent the `API rate limit exceeded` error.
|
397 |
-
|
398 |
-
= 2.1.9 =
|
399 |
-
* Fixed: Extension is not installing if directory already exists but is empty.
|
400 |
-
|
401 |
-
= 2.1.8 =
|
402 |
-
* Minor fixes [#117](https://github.com/ThemeFuse/Unyson/issues/117)
|
403 |
-
|
404 |
-
= 2.1.7 =
|
405 |
-
* Fixed real_path<->wp_filesystem_path conversion on installations with custom plugins directory (Bedrock WordPress Stack).
|
406 |
-
|
407 |
-
= 2.1.6 =
|
408 |
-
* Fixed the "Cannot create temporary directory" error that happened on some servers where the user have no permissions to access files outside the abspath or home directory.
|
409 |
-
|
410 |
-
= 2.1.5 =
|
411 |
-
* Added `intval()` to all `wp_remote_retrieve_response_code()`. On some servers this function returns a string instead of int and the `$code === 200` verification fails.
|
412 |
-
|
413 |
-
= 2.1.4 =
|
414 |
-
* Improvements for the `fw_google_fonts` filter used to expand the list of available Google fonts. [#100](https://github.com/ThemeFuse/Unyson/issues/100)
|
415 |
-
|
416 |
-
= 2.1.3 =
|
417 |
-
* Multi-site: Only network administrator can install/remove/update extensions
|
418 |
-
|
419 |
-
= 2.1.2 =
|
420 |
-
* Minor fixes and improvements in the extensions installation process
|
421 |
-
|
422 |
-
= 2.1.1 =
|
423 |
-
* Added the `FW_Extension::(get|set)_db_(settings_option|data)()` methods
|
424 |
-
* Added README.md for Github
|
425 |
-
|
426 |
-
= 2.1.0 =
|
427 |
-
* Moved major theme functionality from `framework-customizations/theme/` to https://github.com/ThemeFuse/Theme-Includes , because the theme must work when the plugin is not installed.
|
428 |
-
* Removed deprecated usage of the `FW_Option_Type::_render()` for enqueue scripts and style, use `FW_Option_Type::_enqueue_static()` for that
|
429 |
-
|
430 |
-
= 2.0.2 =
|
431 |
-
* Removed the `base64` functions from the `addable-option`, `addable-box` and `addable-popup` option types
|
432 |
-
* Replaced `file_get_contents()` with `include()` in `helpers/general.php`
|
433 |
-
* Minor css and js fixes
|
434 |
-
* Added the `plugin-check-info.md` file
|
435 |
-
|
436 |
-
= 2.0.1 =
|
437 |
-
* Bug Fix: On some servers the path contains a trailing slash http://bit.ly/123amVu . Make sure to remove it.
|
438 |
-
* Bug Fix: On extension install, required extensions that are already installed were not added for activation.
|
439 |
-
|
440 |
-
= 2.0.0 =
|
441 |
-
* First release.
|
442 |
-
|
443 |
-
|
444 |
-
== Upgrade Notice ==
|
445 |
-
|
446 |
-
= 2.0.0 =
|
447 |
-
* 2.0 is a major update. Unyson Framework as a plugin is working in a different way than build in theme version.
|
3 |
Tags: page builder, cms, grid, layout, responsive, back up, backup, db backup, dump, migrate, schedule, search engine optimization, seo, media, slideshow, shortcode, slide, slideshare, slideshow, google sitemaps, sitemaps, analytics, google analytics, calendar, event, events, google maps, learning, lessons, sidebars, breadcrumbs, review, portfolio, framework
|
4 |
Requires at least: 4.0.0
|
5 |
Tested up to: 4.4
|
6 |
+
Stable tag: 2.5.0
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
29 |
* **Events.** It's pretty simple to use and it has Calendar and Map shortcodes.
|
30 |
* **Backup & Demo Content.** Create an automated backup schedule, import demo content or even create a demo content archive for migration purposes.
|
31 |
|
|
|
|
|
32 |
**Get involved**
|
33 |
|
34 |
Developers can contribute to the source code on the [Unyson GitHub Repository](https://github.com/ThemeFuse/Unyson/blob/master/CONTRIBUTING.md).
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
+
= 2.5.0 =
|
85 |
+
* Added the possibility to save options in separate database location [#838](https://github.com/ThemeFuse/Unyson/issues/838)
|
86 |
+
|
87 |
+
Will be used in next release of the PageBuilder extension, the builder value will be moved to a separate post meta.
|
88 |
+
|
89 |
+
* Lazy Tabs: Render only the visible tabs [#1174](https://github.com/ThemeFuse/Unyson/issues/1174)
|
90 |
+
|
91 |
+
This feature can be disabled by adding in `{theme}/framework-customizations/theme/config.php`:
|
92 |
+
|
93 |
+
$cfg['lazy_tabs'] = false;
|
94 |
+
|
95 |
+
* Added the [`.pot` file](https://github.com/ThemeFuse/Unyson/tree/master/framework/languages) [#1256](https://github.com/ThemeFuse/Unyson/issues/1256)
|
96 |
+
|
97 |
+
* Fixed [#1072](https://github.com/ThemeFuse/Unyson/issues/1072), [#1052](https://github.com/ThemeFuse/Unyson/issues/1052), [#1235](https://github.com/ThemeFuse/Unyson/issues/1235), [#1236](https://github.com/ThemeFuse/Unyson/issues/1236), [#1251](https://github.com/ThemeFuse/Unyson/issues/1251), [#1246](https://github.com/ThemeFuse/Unyson/issues/1246), [#1242](https://github.com/ThemeFuse/Unyson/issues/1242), [#941](https://github.com/ThemeFuse/Unyson/issues/941), [#1250](https://github.com/ThemeFuse/Unyson/issues/1250), [#1243](https://github.com/ThemeFuse/Unyson/issues/1243), [#1261](https://github.com/ThemeFuse/Unyson/issues/1261)
|
98 |
+
|
99 |
= 2.4.17 =
|
100 |
* Fixed [#1197](https://github.com/ThemeFuse/Unyson/issues/1197)
|
101 |
* Added `'oembed'` option type ([docs](http://manual.unyson.io/en/latest/options/built-in-option-types.html#oembed))
|
320 |
* Added the possibility to use custom `framework-customizations` directory name [#276](https://github.com/ThemeFuse/Unyson/issues/276)
|
321 |
* Minor fixes
|
322 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unyson.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Unyson
|
4 |
* Plugin URI: http://unyson.io/
|
5 |
* Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
|
6 |
-
* Version: 2.
|
7 |
* Author: ThemeFuse
|
8 |
* Author URI: http://themefuse.com
|
9 |
* License: GPL2+
|
@@ -109,7 +109,7 @@ if (defined('FW')) {
|
|
109 |
|
110 |
/** @internal */
|
111 |
function _action_fw_textdomain() {
|
112 |
-
load_plugin_textdomain( 'fw', false,
|
113 |
}
|
114 |
add_action( 'plugins_loaded', '_action_fw_textdomain' );
|
115 |
|
3 |
* Plugin Name: Unyson
|
4 |
* Plugin URI: http://unyson.io/
|
5 |
* Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
|
6 |
+
* Version: 2.5.0
|
7 |
* Author: ThemeFuse
|
8 |
* Author URI: http://themefuse.com
|
9 |
* License: GPL2+
|
109 |
|
110 |
/** @internal */
|
111 |
function _action_fw_textdomain() {
|
112 |
+
load_plugin_textdomain( 'fw', false, plugin_basename( dirname( __FILE__ ) ) . '/framework/languages' );
|
113 |
}
|
114 |
add_action( 'plugins_loaded', '_action_fw_textdomain' );
|
115 |
|