Version Description
- Fixed option-type
wp-editor
issues: #1472, #1475, #1478 - Improvements in
fw_get_db_post_option()
- Updated FontAwesome to v4.6.1
Download this release
Release Info
Developer | Unyson |
Plugin | Unyson |
Version | 2.5.3 |
Comparing to | |
See all releases |
Code changes from version 2.5.2 to 2.5.3
- framework/core/components/backend.php +4 -3
- framework/core/extends/class-fw-option-type.php +2 -2
- framework/helpers/database.php +86 -50
- framework/includes/option-storage/type/class-fw-option-storage-type-post-meta.php +16 -2
- framework/includes/option-storage/type/class-fw-option-storage-type-wp-option.php +2 -2
- framework/includes/option-types/icon/README.md +0 -2
- framework/includes/option-types/icon/class-fw-option-type-icon.php +738 -690
- framework/includes/option-types/wp-editor/class-fw-option-type-wp-editor.php +22 -4
- framework/languages/fw-es_ES.po +6234 -6234
- framework/languages/fw-nl_NL.po +666 -6237
framework/core/components/backend.php
CHANGED
@@ -349,9 +349,10 @@ final class _FW_Component_Backend {
|
|
349 |
);
|
350 |
|
351 |
wp_localize_script( 'fw', '_fw_localized', array(
|
352 |
-
'FW_URI'
|
353 |
-
'SITE_URI'
|
354 |
-
'
|
|
|
355 |
'done' => __( 'Done', 'fw' ),
|
356 |
'ah_sorry' => __( 'Ah, Sorry', 'fw' ),
|
357 |
'save' => __( 'Save', 'fw' ),
|
349 |
);
|
350 |
|
351 |
wp_localize_script( 'fw', '_fw_localized', array(
|
352 |
+
'FW_URI' => fw_get_framework_directory_uri(),
|
353 |
+
'SITE_URI' => site_url(),
|
354 |
+
'LOADER_URI' => apply_filters( 'fw_loader_image', fw_get_framework_directory_uri() . '/static/img/logo.svg' ),
|
355 |
+
'l10n' => array(
|
356 |
'done' => __( 'Done', 'fw' ),
|
357 |
'ah_sorry' => __( 'Ah, Sorry', 'fw' ),
|
358 |
'save' => __( 'Save', 'fw' ),
|
framework/core/extends/class-fw-option-type.php
CHANGED
@@ -330,7 +330,7 @@ abstract class FW_Option_Type
|
|
330 |
* @since 2.5.0
|
331 |
*/
|
332 |
final public function storage_load($id, array $option, $value, array $params = array()) {
|
333 |
-
if (
|
334 |
$this->get_type() === $option['type']
|
335 |
&&
|
336 |
($option = array_merge($this->get_defaults(), $option))
|
@@ -371,7 +371,7 @@ abstract class FW_Option_Type
|
|
371 |
* @since 2.5.0
|
372 |
*/
|
373 |
final public function storage_save($id, array $option, $value, array $params = array()) {
|
374 |
-
if (
|
375 |
$this->get_type() === $option['type']
|
376 |
&&
|
377 |
($option = array_merge($this->get_defaults(), $option))
|
330 |
* @since 2.5.0
|
331 |
*/
|
332 |
final public function storage_load($id, array $option, $value, array $params = array()) {
|
333 |
+
if ( // do not check !empty($option['fw-storage']) because this param can be set in option defaults
|
334 |
$this->get_type() === $option['type']
|
335 |
&&
|
336 |
($option = array_merge($this->get_defaults(), $option))
|
371 |
* @since 2.5.0
|
372 |
*/
|
373 |
final public function storage_save($id, array $option, $value, array $params = array()) {
|
374 |
+
if ( // do not check !empty($option['fw-storage']) because this param can be set in option defaults
|
375 |
$this->get_type() === $option['type']
|
376 |
&&
|
377 |
($option = array_merge($this->get_defaults(), $option))
|
framework/helpers/database.php
CHANGED
@@ -27,6 +27,9 @@
|
|
27 |
}
|
28 |
|
29 |
try {
|
|
|
|
|
|
|
30 |
$values = FW_Cache::get($cache_key = 'fw_settings_options/values');
|
31 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
32 |
FW_Cache::set(
|
@@ -65,7 +68,7 @@
|
|
65 |
try {
|
66 |
$options = FW_Cache::get( $cache_key = 'fw_only_options/settings' );
|
67 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
68 |
-
FW_Cache::set($cache_key, array()); // prevent
|
69 |
FW_Cache::set(
|
70 |
$cache_key,
|
71 |
$options = fw_extract_only_options(fw()->theme->get_settings_options())
|
@@ -201,39 +204,31 @@
|
|
201 |
($post_revision_id = wp_is_post_revision($post_id)) ? $post_revision_id : $post_id
|
202 |
);
|
203 |
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
|
|
225 |
);
|
226 |
}
|
227 |
-
|
228 |
-
$options = array();
|
229 |
-
} else {
|
230 |
-
$recursion[$post_type] = true;
|
231 |
-
|
232 |
-
$options = fw_extract_only_options( // todo: cache this (by post type)
|
233 |
-
fw()->theme->get_post_options( $post_type )
|
234 |
-
);
|
235 |
-
|
236 |
-
$recursion[$post_type] = false;
|
237 |
}
|
238 |
|
239 |
if ($option_id) {
|
@@ -252,12 +247,20 @@
|
|
252 |
);
|
253 |
|
254 |
if (isset($options[$option_id])) {
|
255 |
-
|
256 |
-
$option_id
|
257 |
-
|
258 |
-
$
|
259 |
-
|
260 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
}
|
262 |
|
263 |
if ($sub_keys) {
|
@@ -279,12 +282,20 @@
|
|
279 |
}
|
280 |
|
281 |
foreach ($options as $_option_id => $_option) {
|
282 |
-
|
283 |
-
$_option_id
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
}
|
289 |
|
290 |
return $value;
|
@@ -299,6 +310,8 @@
|
|
299 |
* @param $value
|
300 |
*/
|
301 |
function fw_set_db_post_option( $post_id = null, $option_id = null, $value ) {
|
|
|
|
|
302 |
$meta_key = 'fw_options';
|
303 |
$post_id = intval($post_id);
|
304 |
|
@@ -313,14 +326,37 @@
|
|
313 |
}
|
314 |
}
|
315 |
|
316 |
-
$
|
317 |
-
|
318 |
-
get_post_type(
|
319 |
-
($post_revision_id = wp_is_post_revision($post_id)) ? $post_revision_id : $post_id
|
320 |
-
)
|
321 |
-
)
|
322 |
);
|
323 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
$sub_keys = null;
|
325 |
|
326 |
if ($option_id) {
|
27 |
}
|
28 |
|
29 |
try {
|
30 |
+
/**
|
31 |
+
* Cached because values are merged with extracted default values
|
32 |
+
*/
|
33 |
$values = FW_Cache::get($cache_key = 'fw_settings_options/values');
|
34 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
35 |
FW_Cache::set(
|
68 |
try {
|
69 |
$options = FW_Cache::get( $cache_key = 'fw_only_options/settings' );
|
70 |
} catch (FW_Cache_Not_Found_Exception $e) {
|
71 |
+
FW_Cache::set($cache_key, array()); // prevent recursion
|
72 |
FW_Cache::set(
|
73 |
$cache_key,
|
74 |
$options = fw_extract_only_options(fw()->theme->get_settings_options())
|
204 |
($post_revision_id = wp_is_post_revision($post_id)) ? $post_revision_id : $post_id
|
205 |
);
|
206 |
|
207 |
+
try {
|
208 |
+
$options = FW_Cache::get(
|
209 |
+
$cache_key = 'fw_post_options/only/'. $post_type
|
210 |
+
);
|
211 |
+
} catch (FW_Cache_Not_Found_Exception $e) {
|
212 |
+
FW_Cache::set($cache_key, $options = array()); // prevent recursion
|
213 |
+
|
214 |
+
if (apply_filters('fw_get_db_post_option:fw-storage-enabled',
|
215 |
+
/**
|
216 |
+
* Slider extension has too many fw_get_db_post_option()
|
217 |
+
* inside post options altering filter and it creates recursive mess.
|
218 |
+
* add_filter() was added in Slider extension
|
219 |
+
* but this hardcode can be replaced with `true`
|
220 |
+
* only after all users will install new version 1.1.15.
|
221 |
+
*/
|
222 |
+
$post_type !== 'fw-slider',
|
223 |
+
$post_type
|
224 |
+
)) {
|
225 |
+
FW_Cache::set(
|
226 |
+
$cache_key,
|
227 |
+
$options = fw_extract_only_options(
|
228 |
+
fw()->theme->get_post_options( $post_type )
|
229 |
+
)
|
230 |
);
|
231 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
}
|
233 |
|
234 |
if ($option_id) {
|
247 |
);
|
248 |
|
249 |
if (isset($options[$option_id])) {
|
250 |
+
try {
|
251 |
+
$value = FW_Cache::get( $cache_key = 'fw_post_options/values/'. $post_id .'/'. $option_id );
|
252 |
+
} catch (FW_Cache_Not_Found_Exception $e) {
|
253 |
+
FW_Cache::set($cache_key, array()); // prevent recursion
|
254 |
+
FW_Cache::set(
|
255 |
+
$cache_key,
|
256 |
+
$value = fw()->backend->option_type($options[$option_id]['type'])->storage_load(
|
257 |
+
$option_id,
|
258 |
+
$options[$option_id],
|
259 |
+
$value,
|
260 |
+
array( 'post-id' => $post_id, )
|
261 |
+
)
|
262 |
+
);
|
263 |
+
}
|
264 |
}
|
265 |
|
266 |
if ($sub_keys) {
|
282 |
}
|
283 |
|
284 |
foreach ($options as $_option_id => $_option) {
|
285 |
+
try {
|
286 |
+
$value[$_option_id] = FW_Cache::get( $cache_key = 'fw_post_options/values/'. $post_id .'/'. $_option_id );
|
287 |
+
} catch (FW_Cache_Not_Found_Exception $e) {
|
288 |
+
FW_Cache::set($cache_key, array()); // prevent recursion
|
289 |
+
FW_Cache::set(
|
290 |
+
$cache_key,
|
291 |
+
$value[$_option_id] = fw()->backend->option_type($_option['type'])->storage_load(
|
292 |
+
$_option_id,
|
293 |
+
$_option,
|
294 |
+
isset($value[$_option_id]) ? $value[$_option_id] : null,
|
295 |
+
array( 'post-id' => $post_id, )
|
296 |
+
)
|
297 |
+
);
|
298 |
+
}
|
299 |
}
|
300 |
|
301 |
return $value;
|
310 |
* @param $value
|
311 |
*/
|
312 |
function fw_set_db_post_option( $post_id = null, $option_id = null, $value ) {
|
313 |
+
FW_Cache::del('fw_post_options/values');
|
314 |
+
|
315 |
$meta_key = 'fw_options';
|
316 |
$post_id = intval($post_id);
|
317 |
|
326 |
}
|
327 |
}
|
328 |
|
329 |
+
$post_type = get_post_type(
|
330 |
+
($post_revision_id = wp_is_post_revision($post_id)) ? $post_revision_id : $post_id
|
|
|
|
|
|
|
|
|
331 |
);
|
332 |
|
333 |
+
try {
|
334 |
+
$options = FW_Cache::get(
|
335 |
+
$cache_key = 'fw_post_options/only/'. $post_type
|
336 |
+
);
|
337 |
+
} catch (FW_Cache_Not_Found_Exception $e) {
|
338 |
+
FW_Cache::set($cache_key, $options = array()); // prevent recursion
|
339 |
+
|
340 |
+
if (apply_filters('fw_get_db_post_option:fw-storage-enabled',
|
341 |
+
/**
|
342 |
+
* Slider extension has too many fw_get_db_post_option()
|
343 |
+
* inside post options altering filter and it creates recursive mess.
|
344 |
+
* add_filter() was added in Slider extension
|
345 |
+
* but this hardcode can be replaced with `true`
|
346 |
+
* only after all users will install new version 1.1.15.
|
347 |
+
*/
|
348 |
+
$post_type !== 'fw-slider',
|
349 |
+
$post_type
|
350 |
+
)) {
|
351 |
+
FW_Cache::set(
|
352 |
+
$cache_key,
|
353 |
+
$options = fw_extract_only_options(
|
354 |
+
fw()->theme->get_post_options( $post_type )
|
355 |
+
)
|
356 |
+
);
|
357 |
+
}
|
358 |
+
}
|
359 |
+
|
360 |
$sub_keys = null;
|
361 |
|
362 |
if ($option_id) {
|
framework/includes/option-storage/type/class-fw-option-storage-type-post-meta.php
CHANGED
@@ -4,6 +4,7 @@
|
|
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 {
|
@@ -18,7 +19,17 @@ class FW_Option_Storage_Type_Post_Meta extends FW_Option_Storage_Type {
|
|
18 |
if ($post_id = $this->get_post_id($option, $params)) {
|
19 |
$meta_id = $this->get_meta_id($id, $option, $params);
|
20 |
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
return fw()->backend->option_type($option['type'])->get_value_from_input(
|
24 |
array('type' => $option['type']), null
|
@@ -34,11 +45,14 @@ class FW_Option_Storage_Type_Post_Meta extends FW_Option_Storage_Type {
|
|
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 |
}
|
4 |
* array(
|
5 |
* 'post-id' => 3 // optional // hardcoded post id
|
6 |
* 'post-meta' => 'hello_world' // optional (default: 'fw:opt:{option_id}')
|
7 |
+
* 'key' => 'option_id/sub_key' // optional @since 2.5.3
|
8 |
* )
|
9 |
*/
|
10 |
class FW_Option_Storage_Type_Post_Meta extends FW_Option_Storage_Type {
|
19 |
if ($post_id = $this->get_post_id($option, $params)) {
|
20 |
$meta_id = $this->get_meta_id($id, $option, $params);
|
21 |
|
22 |
+
if (isset($option['fw-storage']['key'])) {
|
23 |
+
$meta_value = get_post_meta($post_id, $meta_id, true);
|
24 |
+
|
25 |
+
fw_aks($option['fw-storage']['key'], $value, $meta_value);
|
26 |
+
|
27 |
+
fw_update_post_meta($post_id, $meta_id, $meta_value);
|
28 |
+
|
29 |
+
unset($meta_value);
|
30 |
+
} else {
|
31 |
+
fw_update_post_meta($post_id, $meta_id, $value);
|
32 |
+
}
|
33 |
|
34 |
return fw()->backend->option_type($option['type'])->get_value_from_input(
|
35 |
array('type' => $option['type']), null
|
45 |
protected function _load( $id, array $option, $value, array $params ) {
|
46 |
if ($post_id = $this->get_post_id($option, $params)) {
|
47 |
$meta_id = $this->get_meta_id($id, $option, $params);
|
|
|
48 |
$meta_value = get_post_meta($post_id, $meta_id, true);
|
49 |
|
50 |
if ($meta_value === '' && is_array($value)) {
|
51 |
return $value;
|
52 |
+
}
|
53 |
+
|
54 |
+
if (isset($option['fw-storage']['key'])) {
|
55 |
+
return fw_akg($option['fw-storage']['key'], $meta_value, $value);
|
56 |
} else {
|
57 |
return $meta_value;
|
58 |
}
|
framework/includes/option-storage/type/class-fw-option-storage-type-wp-option.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
|
3 |
/**
|
4 |
* array(
|
5 |
-
* 'wp-option' => 'custom_wp_option_name'
|
6 |
-
* 'key' => 'option_id/sub_key'
|
7 |
* )
|
8 |
*/
|
9 |
class FW_Option_Storage_Type_WP_Option extends FW_Option_Storage_Type {
|
2 |
|
3 |
/**
|
4 |
* array(
|
5 |
+
* 'wp-option' => 'custom_wp_option_name'
|
6 |
+
* 'key' => 'option_id/sub_key' // optional @since 2.5.1
|
7 |
* )
|
8 |
*/
|
9 |
class FW_Option_Storage_Type_WP_Option extends FW_Option_Storage_Type {
|
framework/includes/option-types/icon/README.md
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
### Update Icons
|
2 |
|
3 |
-
todo: Get data from https://raw.githubusercontent.com/FortAwesome/Font-Awesome/v4.5.0/src/icons.yml
|
4 |
-
|
5 |
```javascript
|
6 |
// 1. Open http://fontawesome.io/icons/
|
7 |
// 2. Run this script
|
1 |
### Update Icons
|
2 |
|
|
|
|
|
3 |
```javascript
|
4 |
// 1. Open http://fontawesome.io/icons/
|
5 |
// 2. Run this script
|
framework/includes/option-types/icon/class-fw-option-type-icon.php
CHANGED
@@ -182,698 +182,746 @@ class FW_Option_Type_Icon extends FW_Option_Type
|
|
182 |
'font-awesome' => array( // http://fortawesome.github.io/Font-Awesome/icons
|
183 |
'font-style-src' => fw_get_framework_directory_uri('/static/libs/font-awesome/css/font-awesome.min.css'),
|
184 |
'container-class' => 'fa-lg', // some fonts need special wrapper class to display properly
|
185 |
-
'groups' => array(
|
186 |
'web-application' => __('Web Application Icons', 'fw'),
|
187 |
-
'
|
188 |
-
'
|
189 |
-
'
|
190 |
-
'
|
191 |
-
|
192 |
-
//'
|
193 |
-
'
|
194 |
-
|
195 |
-
'
|
196 |
-
'
|
197 |
-
'
|
198 |
-
'
|
199 |
-
'
|
200 |
-
'
|
|
|
201 |
),
|
202 |
-
'icons'
|
203 |
-
'fa fa-adjust'
|
204 |
-
'fa fa-
|
205 |
-
'fa fa-
|
206 |
-
'fa fa-
|
207 |
-
'fa fa-
|
208 |
-
'fa fa-arrows
|
209 |
-
'fa fa-arrows-
|
210 |
-
'fa fa-
|
211 |
-
'fa fa-
|
212 |
-
'fa fa-
|
213 |
-
'fa fa-
|
214 |
-
'fa fa-
|
215 |
-
'fa fa-
|
216 |
-
'fa fa-
|
217 |
-
'fa fa-
|
218 |
-
'fa fa-
|
219 |
-
'fa fa-
|
220 |
-
'fa fa-
|
221 |
-
'fa fa-
|
222 |
-
'fa fa-
|
223 |
-
'fa fa-
|
224 |
-
'fa fa-battery-
|
225 |
-
'fa fa-battery-
|
226 |
-
'fa fa-battery-
|
227 |
-
'fa fa-battery-
|
228 |
-
'fa fa-battery-
|
229 |
-
'fa fa-battery-
|
230 |
-
'fa fa-
|
231 |
-
'fa fa-
|
232 |
-
'fa fa-
|
233 |
-
'fa fa-
|
234 |
-
'fa fa-
|
235 |
-
'fa fa-
|
236 |
-
'fa fa-
|
237 |
-
'fa fa-
|
238 |
-
'fa fa-
|
239 |
-
'fa fa-
|
240 |
-
'fa fa-
|
241 |
-
'fa fa-
|
242 |
-
'fa fa-
|
243 |
-
'fa fa-
|
244 |
-
'fa fa-
|
245 |
-
'fa fa-
|
246 |
-
'fa fa-
|
247 |
-
'fa fa-
|
248 |
-
'fa fa-
|
249 |
-
'fa fa-
|
250 |
-
'fa fa-
|
251 |
-
'fa fa-
|
252 |
-
'fa fa-
|
253 |
-
'fa fa-
|
254 |
-
'fa fa-
|
255 |
-
'fa fa-
|
256 |
-
'fa fa-
|
257 |
-
'fa fa-
|
258 |
-
'fa fa-
|
259 |
-
'fa fa-
|
260 |
-
'fa fa-
|
261 |
-
'fa fa-
|
262 |
-
'fa fa-
|
263 |
-
'fa fa-
|
264 |
-
'fa fa-
|
265 |
-
'fa fa-
|
266 |
-
'fa fa-
|
267 |
-
'fa fa-
|
268 |
-
'fa fa-
|
269 |
-
'fa fa-
|
270 |
-
'fa fa-
|
271 |
-
'fa fa-
|
272 |
-
'fa fa-
|
273 |
-
'fa fa-
|
274 |
-
'fa fa-
|
275 |
-
'fa fa-
|
276 |
-
'fa fa-
|
277 |
-
'fa fa-
|
278 |
-
'fa fa-
|
279 |
-
'fa fa-circle
|
280 |
-
'fa fa-
|
281 |
-
'fa fa-
|
282 |
-
'fa fa-
|
283 |
-
'fa fa-
|
284 |
-
'fa fa-
|
285 |
-
'fa fa-
|
286 |
-
'fa fa-
|
287 |
-
'fa fa-
|
288 |
-
'fa fa-
|
289 |
-
'fa fa-
|
290 |
-
'fa fa-
|
291 |
-
'fa fa-
|
292 |
-
'fa fa-
|
293 |
-
'fa fa-
|
294 |
-
'fa fa-
|
295 |
-
'fa fa-
|
296 |
-
'fa fa-
|
297 |
-
'fa fa-
|
298 |
-
'fa fa-
|
299 |
-
'fa fa-
|
300 |
-
'fa fa-
|
301 |
-
'fa fa-
|
302 |
-
'fa fa-
|
303 |
-
'fa fa-
|
304 |
-
'fa fa-
|
305 |
-
'fa fa-
|
306 |
-
'fa fa-
|
307 |
-
'fa fa-
|
308 |
-
'fa fa-
|
309 |
-
'fa fa-
|
310 |
-
'fa fa-
|
311 |
-
'fa fa-
|
312 |
-
'fa fa-
|
313 |
-
'fa fa-
|
314 |
-
'fa fa-
|
315 |
-
'fa fa-
|
316 |
-
'fa fa-
|
317 |
-
'fa fa-
|
318 |
-
'fa fa-
|
319 |
-
'fa fa-
|
320 |
-
'fa fa-
|
321 |
-
'fa fa-
|
322 |
-
'fa fa-
|
323 |
-
'fa fa-
|
324 |
-
'fa fa-
|
325 |
-
'fa fa-
|
326 |
-
'fa fa-
|
327 |
-
'fa fa-
|
328 |
-
'fa fa-
|
329 |
-
'fa fa-
|
330 |
-
'fa fa-
|
331 |
-
'fa fa-
|
332 |
-
'fa fa-
|
333 |
-
'fa fa-
|
334 |
-
'fa fa-
|
335 |
-
'fa fa-
|
336 |
-
'fa fa-
|
337 |
-
'fa fa-
|
338 |
-
'fa fa-
|
339 |
-
'fa fa-
|
340 |
-
'fa fa-
|
341 |
-
'fa fa-
|
342 |
-
'fa fa-
|
343 |
-
'fa fa-file-
|
344 |
-
'fa fa-file-
|
345 |
-
'fa fa-file-
|
346 |
-
'fa fa-
|
347 |
-
'fa fa-
|
348 |
-
'fa fa-
|
349 |
-
'fa fa-
|
350 |
-
'fa fa-
|
351 |
-
'fa fa-
|
352 |
-
'fa fa-
|
353 |
-
'fa fa-
|
354 |
-
'fa fa-
|
355 |
-
'fa fa-
|
356 |
-
'fa fa-
|
357 |
-
'fa fa-
|
358 |
-
'fa fa-
|
359 |
-
'fa fa-
|
360 |
-
'fa fa-
|
361 |
-
'fa fa-
|
362 |
-
'fa fa-
|
363 |
-
'fa fa-
|
364 |
-
'fa fa-
|
365 |
-
'fa fa-
|
366 |
-
'fa fa-
|
367 |
-
'fa fa-
|
368 |
-
'fa fa-
|
369 |
-
'fa fa-
|
370 |
-
'fa fa-
|
371 |
-
'fa fa-
|
372 |
-
'fa fa-
|
373 |
-
'fa fa-
|
374 |
-
'fa fa-
|
375 |
-
'fa fa-
|
376 |
-
'fa fa-
|
377 |
-
'fa fa-
|
378 |
-
'fa fa-
|
379 |
-
'fa fa-
|
380 |
-
'fa fa-
|
381 |
-
'fa fa-
|
382 |
-
'fa fa-
|
383 |
-
'fa fa-
|
384 |
-
'fa fa-
|
385 |
-
'fa fa-
|
386 |
-
'fa fa-
|
387 |
-
'fa fa-
|
388 |
-
'fa fa-
|
389 |
-
'fa fa-
|
390 |
-
'fa fa-
|
391 |
-
'fa fa-
|
392 |
-
'fa fa-
|
393 |
-
'fa fa-
|
394 |
-
'fa fa-
|
395 |
-
'fa fa-
|
396 |
-
'fa fa-
|
397 |
-
'fa fa-
|
398 |
-
'fa fa-
|
399 |
-
'fa fa-
|
400 |
-
'fa fa-
|
401 |
-
'fa fa-
|
402 |
-
'fa fa-
|
403 |
-
'fa fa-
|
404 |
-
'fa fa-
|
405 |
-
'fa fa-
|
406 |
-
'fa fa-
|
407 |
-
'fa fa-
|
408 |
-
'fa fa-
|
409 |
-
'fa fa-
|
410 |
-
'fa fa-
|
411 |
-
'fa fa-
|
412 |
-
'fa fa-
|
413 |
-
'fa fa-
|
414 |
-
'fa fa-
|
415 |
-
'fa fa-
|
416 |
-
'fa fa-
|
417 |
-
'fa fa-
|
418 |
-
'fa fa-
|
419 |
-
'fa fa-
|
420 |
-
'fa fa-
|
421 |
-
'fa fa-
|
422 |
-
'fa fa-
|
423 |
-
'fa fa-
|
424 |
-
'fa fa-
|
425 |
-
'fa fa-
|
426 |
-
'fa fa-
|
427 |
-
'fa fa-
|
428 |
-
'fa fa-
|
429 |
-
'fa fa-
|
430 |
-
'fa fa-
|
431 |
-
'fa fa-
|
432 |
-
'fa fa-
|
433 |
-
'fa fa-
|
434 |
-
'fa fa-
|
435 |
-
'fa fa-
|
436 |
-
'fa fa-
|
437 |
-
'fa fa-
|
438 |
-
'fa fa-
|
439 |
-
'fa fa-
|
440 |
-
'fa fa-
|
441 |
-
'fa fa-
|
442 |
-
'fa fa-
|
443 |
-
'fa fa-
|
444 |
-
'fa fa-
|
445 |
-
'fa fa-
|
446 |
-
'fa fa-
|
447 |
-
'fa fa-
|
448 |
-
'fa fa-
|
449 |
-
'fa fa-
|
450 |
-
'fa fa-
|
451 |
-
'fa fa-
|
452 |
-
'fa fa-
|
453 |
-
'fa fa-
|
454 |
-
'fa fa-
|
455 |
-
'fa fa-
|
456 |
-
'fa fa-
|
457 |
-
'fa fa-
|
458 |
-
'fa fa-
|
459 |
-
'fa fa-
|
460 |
-
'fa fa-
|
461 |
-
'fa fa-
|
462 |
-
'fa fa-
|
463 |
-
'fa fa-
|
464 |
-
'fa fa-
|
465 |
-
'fa fa-
|
466 |
-
'fa fa-
|
467 |
-
'fa fa-
|
468 |
-
'fa fa-
|
469 |
-
'fa fa-
|
470 |
-
'fa fa-
|
471 |
-
'fa fa-
|
472 |
-
'fa fa-
|
473 |
-
'fa fa-
|
474 |
-
'fa fa-
|
475 |
-
'fa fa-
|
476 |
-
'fa fa-
|
477 |
-
'fa fa-
|
478 |
-
'fa fa-
|
479 |
-
'fa fa-
|
480 |
-
'fa fa-
|
481 |
-
'fa fa-
|
482 |
-
'fa fa-
|
483 |
-
'fa fa-
|
484 |
-
'fa fa-
|
485 |
-
'fa fa-
|
486 |
-
'fa fa-
|
487 |
-
'fa fa-
|
488 |
-
'fa fa-
|
489 |
-
'fa fa-
|
490 |
-
'fa fa-
|
491 |
-
'fa fa-
|
492 |
-
'fa fa-
|
493 |
-
'fa fa-
|
494 |
-
'fa fa-
|
495 |
-
'fa fa-
|
496 |
-
'fa fa-
|
497 |
-
'fa fa-
|
498 |
-
'fa fa-
|
499 |
-
'fa fa-
|
500 |
-
'fa fa-
|
501 |
-
'fa fa-
|
502 |
-
'fa fa-
|
503 |
-
'fa fa-
|
504 |
-
'fa fa-
|
505 |
-
'fa fa-
|
506 |
-
'fa fa-
|
507 |
-
'fa fa-
|
508 |
-
'fa fa-
|
509 |
-
'fa fa-
|
510 |
-
'fa fa-
|
511 |
-
'fa fa-
|
512 |
-
'fa fa-
|
513 |
-
'fa fa-
|
514 |
-
'fa fa-
|
515 |
-
'fa fa-
|
516 |
-
'fa fa-
|
517 |
-
'fa fa-
|
518 |
-
'fa fa-
|
519 |
-
'fa fa-
|
520 |
-
'fa fa-
|
521 |
-
|
522 |
-
'fa fa-
|
523 |
-
'fa fa-
|
524 |
-
'fa fa-
|
525 |
-
'fa fa-
|
526 |
-
'fa fa-
|
527 |
-
'fa fa-
|
528 |
-
'fa fa-
|
529 |
-
'fa fa-
|
530 |
-
'fa fa-
|
531 |
-
'fa fa-
|
532 |
-
'fa fa-
|
533 |
-
'fa fa-
|
534 |
-
'fa fa-
|
535 |
-
'fa fa-
|
536 |
-
'fa fa-
|
537 |
-
'fa fa-
|
538 |
-
'fa fa-
|
539 |
-
'fa fa-
|
540 |
-
'fa fa-
|
541 |
-
'fa fa-
|
542 |
-
'fa fa-
|
543 |
-
'fa fa-
|
544 |
-
'fa fa-
|
545 |
-
'fa fa-
|
546 |
-
'fa fa-
|
547 |
-
'fa fa-
|
548 |
-
'fa fa-
|
549 |
-
'fa fa-
|
550 |
-
'fa fa-
|
551 |
-
'fa fa-
|
552 |
-
'fa fa-
|
553 |
-
'fa fa-
|
554 |
-
'fa fa-
|
555 |
-
'fa fa-
|
556 |
-
'fa fa-
|
557 |
-
'fa fa-
|
558 |
-
'fa fa-
|
559 |
-
'fa fa-
|
560 |
-
'fa fa-
|
561 |
-
'fa fa-
|
562 |
-
'fa fa-
|
563 |
-
'fa fa-
|
564 |
-
'fa fa-
|
565 |
-
'fa fa-
|
566 |
-
'fa fa-
|
567 |
-
'fa fa-
|
568 |
-
'fa fa-
|
569 |
-
'fa fa-
|
570 |
-
'fa fa-
|
571 |
-
'fa fa-
|
572 |
-
'fa fa-
|
573 |
-
'fa fa-
|
574 |
-
'fa fa-
|
575 |
-
'fa fa-
|
576 |
-
'fa fa-
|
577 |
-
'fa fa-
|
578 |
-
'fa fa-
|
579 |
-
'fa fa-
|
580 |
-
'fa fa-
|
581 |
-
'fa fa-
|
582 |
-
'fa fa-
|
583 |
-
'fa fa-
|
584 |
-
'fa fa-
|
585 |
-
'fa fa-
|
586 |
-
'fa fa-
|
587 |
-
'fa fa-
|
588 |
-
'fa fa-
|
589 |
-
'fa fa-
|
590 |
-
'fa fa-
|
591 |
-
'fa fa-
|
592 |
-
'fa fa-
|
593 |
-
'fa fa-
|
594 |
-
'fa fa-
|
595 |
-
'fa fa-
|
596 |
-
'fa fa-
|
597 |
-
'fa fa-
|
598 |
-
'fa fa-
|
599 |
-
'fa fa-
|
600 |
-
'fa fa-
|
601 |
-
'fa fa-
|
602 |
-
'fa fa-
|
603 |
-
'fa fa-
|
604 |
-
'fa fa-
|
605 |
-
'fa fa-
|
606 |
-
'fa fa-
|
607 |
-
'fa fa-
|
608 |
-
'fa fa-
|
609 |
-
'fa fa-
|
610 |
-
'fa fa-
|
611 |
-
'fa fa-
|
612 |
-
'fa fa-
|
613 |
-
'fa fa-
|
614 |
-
'fa fa-
|
615 |
-
'fa fa-
|
616 |
-
'fa fa-
|
617 |
-
'fa fa-
|
618 |
-
'fa fa-
|
619 |
-
'fa fa-
|
620 |
-
'fa fa-
|
621 |
-
'fa fa-
|
622 |
-
'fa fa-
|
623 |
-
'fa fa-
|
624 |
-
'fa fa-
|
625 |
-
'fa fa-
|
626 |
-
'fa fa-
|
627 |
-
'fa fa-
|
628 |
-
'fa fa-
|
629 |
-
'fa fa-
|
630 |
-
'fa fa-
|
631 |
-
'fa fa-
|
632 |
-
'fa fa-
|
633 |
-
'fa fa-
|
634 |
-
'fa fa-
|
635 |
-
'fa fa-
|
636 |
-
'fa fa-
|
637 |
-
'fa fa-
|
638 |
-
'fa fa-
|
639 |
-
'fa fa-
|
640 |
-
'fa fa-
|
641 |
-
'fa fa-
|
642 |
-
'fa fa-
|
643 |
-
'fa fa-
|
644 |
-
'fa fa-
|
645 |
-
'fa fa-
|
646 |
-
'fa fa-
|
647 |
-
'fa fa-
|
648 |
-
'fa fa-
|
649 |
-
'fa fa-
|
650 |
-
'fa fa-
|
651 |
-
'fa fa-
|
652 |
-
'fa fa-
|
653 |
-
'fa fa-
|
654 |
-
'fa fa-
|
655 |
-
'fa fa-
|
656 |
-
'fa fa-
|
657 |
-
'fa fa-
|
658 |
-
'fa fa-
|
659 |
-
'fa fa-
|
660 |
-
'fa fa-
|
661 |
-
'fa fa-
|
662 |
-
'fa fa-
|
663 |
-
'fa fa-
|
664 |
-
'fa fa-
|
665 |
-
'fa fa-
|
666 |
-
'fa fa-
|
667 |
-
'fa fa-
|
668 |
-
'fa fa-
|
669 |
-
'fa fa-
|
670 |
-
'fa fa-
|
671 |
-
'fa fa-
|
672 |
-
'fa fa-
|
673 |
-
'fa fa-
|
674 |
-
'fa fa-
|
675 |
-
'fa fa-
|
676 |
-
'fa fa-
|
677 |
-
'fa fa-
|
678 |
-
'fa fa-
|
679 |
-
'fa fa-
|
680 |
-
'fa fa-
|
681 |
-
'fa fa-
|
682 |
-
'fa fa-
|
683 |
-
'fa fa-
|
684 |
-
'fa fa-
|
685 |
-
'fa fa-
|
686 |
-
'fa fa-
|
687 |
-
'fa fa-
|
688 |
-
'fa fa-
|
689 |
-
'fa fa-
|
690 |
-
'fa fa-
|
691 |
-
'fa fa-
|
692 |
-
'fa fa-
|
693 |
-
'fa fa-
|
694 |
-
'fa fa-
|
695 |
-
'fa fa-
|
696 |
-
'fa fa-
|
697 |
-
'fa fa-
|
698 |
-
'fa fa-
|
699 |
-
'fa fa-
|
700 |
-
'fa fa-
|
701 |
-
'fa fa-
|
702 |
-
'fa fa-
|
703 |
-
'fa fa-
|
704 |
-
'fa fa-
|
705 |
-
'fa fa-
|
706 |
-
'fa fa-
|
707 |
-
'fa fa-
|
708 |
-
'fa fa-
|
709 |
-
'fa fa-
|
710 |
-
'fa fa-
|
711 |
-
'fa fa-
|
712 |
-
'fa fa-
|
713 |
-
'fa fa-
|
714 |
-
'fa fa-
|
715 |
-
'fa fa-
|
716 |
-
'fa fa-
|
717 |
-
'fa fa-
|
718 |
-
'fa fa-
|
719 |
-
'fa fa-
|
720 |
-
'fa fa-
|
721 |
-
'fa fa-
|
722 |
-
'fa fa-
|
723 |
-
'fa fa-
|
724 |
-
'fa fa-
|
725 |
-
'fa fa-
|
726 |
-
'fa fa-
|
727 |
-
'fa fa-
|
728 |
-
'fa fa-
|
729 |
-
'fa fa-
|
730 |
-
'fa fa-
|
731 |
-
'fa fa-
|
732 |
-
'fa fa-
|
733 |
-
'fa fa-
|
734 |
-
'fa fa-
|
735 |
-
'fa fa-
|
736 |
-
'fa fa-
|
737 |
-
'fa fa-
|
738 |
-
'fa fa-
|
739 |
-
'fa fa-
|
740 |
-
'fa fa-
|
741 |
-
'fa fa-
|
742 |
-
'fa fa-
|
743 |
-
'fa fa-
|
744 |
-
'fa fa-
|
745 |
-
'fa fa-
|
746 |
-
'fa fa-
|
747 |
-
'fa fa-
|
748 |
-
'fa fa-
|
749 |
-
'fa fa-
|
750 |
-
'fa fa-
|
751 |
-
'fa fa-
|
752 |
-
'fa fa-
|
753 |
-
'fa fa-
|
754 |
-
'fa fa-
|
755 |
-
'fa fa-
|
756 |
-
'fa fa-
|
757 |
-
'fa fa-
|
758 |
-
'fa fa-
|
759 |
-
'fa fa-
|
760 |
-
'fa fa-
|
761 |
-
'fa fa-
|
762 |
-
'fa fa-
|
763 |
-
'fa fa-
|
764 |
-
'fa fa-
|
765 |
-
'fa fa-
|
766 |
-
'fa fa-
|
767 |
-
'fa fa-
|
768 |
-
'fa fa-
|
769 |
-
'fa fa-
|
770 |
-
'fa fa-
|
771 |
-
'fa fa-
|
772 |
-
'fa fa-
|
773 |
-
'fa fa-
|
774 |
-
'fa fa-
|
775 |
-
'fa fa-
|
776 |
-
'fa fa-
|
777 |
-
'fa fa-
|
778 |
-
'fa fa-
|
779 |
-
'fa fa-
|
780 |
-
'fa fa-
|
781 |
-
'fa fa-
|
782 |
-
'fa fa-
|
783 |
-
'fa fa-
|
784 |
-
'fa fa-
|
785 |
-
'fa fa-
|
786 |
-
'fa fa-
|
787 |
-
'fa fa-
|
788 |
-
'fa fa-
|
789 |
-
'fa fa-
|
790 |
-
'fa fa-
|
791 |
-
'fa fa-
|
792 |
-
'fa fa-
|
793 |
-
'fa fa-
|
794 |
-
'fa fa-
|
795 |
-
'fa fa-
|
796 |
-
'fa fa-
|
797 |
-
'fa fa-
|
798 |
-
'fa fa-
|
799 |
-
'fa fa-
|
800 |
-
'fa fa-
|
801 |
-
'fa fa-
|
802 |
-
'fa fa-
|
803 |
-
'fa fa-
|
804 |
-
'fa fa-
|
805 |
-
'fa fa-
|
806 |
-
'fa fa-
|
807 |
-
'fa fa-
|
808 |
-
'fa fa-
|
809 |
-
'fa fa-
|
810 |
-
'fa fa-
|
811 |
-
'fa fa-
|
812 |
-
'fa fa-
|
813 |
-
'fa fa-
|
814 |
-
'fa fa-
|
815 |
-
'fa fa-
|
816 |
-
'fa fa-
|
817 |
-
'fa fa-
|
818 |
-
'fa fa-
|
819 |
-
'fa fa-
|
820 |
-
'fa fa-
|
821 |
-
'fa fa-
|
822 |
-
'fa fa-
|
823 |
-
'fa fa-
|
824 |
-
'fa fa-
|
825 |
-
'fa fa-
|
826 |
-
'fa fa-
|
827 |
-
'fa fa-
|
828 |
-
'fa fa-
|
829 |
-
'fa fa-
|
830 |
-
'fa fa-
|
831 |
-
'fa fa-
|
832 |
-
'fa fa-
|
833 |
-
'fa fa-
|
834 |
-
'fa fa-
|
835 |
-
'fa fa-
|
836 |
-
'fa fa-
|
837 |
-
'fa fa-
|
838 |
-
'fa fa-
|
839 |
-
'fa fa-
|
840 |
-
'fa fa-
|
841 |
-
'fa fa-
|
842 |
-
'fa fa-
|
843 |
-
'fa fa-
|
844 |
-
'fa fa-
|
845 |
-
'fa fa-
|
846 |
-
'fa fa-
|
847 |
-
'fa fa-
|
848 |
-
'fa fa-
|
849 |
-
'fa fa-
|
850 |
-
'fa fa-
|
851 |
-
'fa fa-
|
852 |
-
'fa fa-
|
853 |
-
'fa fa-
|
854 |
-
'fa fa-
|
855 |
-
'fa fa-
|
856 |
-
'fa fa-
|
857 |
-
'fa fa-
|
858 |
-
'fa fa-
|
859 |
-
'fa fa-
|
860 |
-
'fa fa-
|
861 |
-
'fa fa-
|
862 |
-
'fa fa-
|
863 |
-
'fa fa-
|
864 |
-
'fa fa-
|
865 |
-
'fa fa-
|
866 |
-
'fa fa-
|
867 |
-
'fa fa-
|
868 |
-
'fa fa-
|
869 |
-
'fa fa-
|
870 |
-
'fa fa-
|
871 |
-
'fa fa-
|
872 |
-
'fa fa-
|
873 |
-
'fa fa-
|
874 |
-
'fa fa-
|
875 |
-
'fa fa-
|
876 |
-
'fa fa-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
877 |
),
|
878 |
),
|
879 |
);
|
182 |
'font-awesome' => array( // http://fortawesome.github.io/Font-Awesome/icons
|
183 |
'font-style-src' => fw_get_framework_directory_uri('/static/libs/font-awesome/css/font-awesome.min.css'),
|
184 |
'container-class' => 'fa-lg', // some fonts need special wrapper class to display properly
|
185 |
+
'groups' => array (
|
186 |
'web-application' => __('Web Application Icons', 'fw'),
|
187 |
+
//'accessibility' => __('Accessibility Icons', 'fw'),
|
188 |
+
'hand' => __('Hand Icons', 'fw'),
|
189 |
+
'transportation' => __('Transportation Icons', 'fw'),
|
190 |
+
'gender' => __('Gender Icons', 'fw'),
|
191 |
+
'file-type' => __('File Type Icons', 'fw'),
|
192 |
+
//'spinner' => __('Spinner Icons', 'fw'),
|
193 |
+
//'form-control' => __('Form Control Icons', 'fw'),
|
194 |
+
'payment' => __('Payment Icons', 'fw'),
|
195 |
+
//'chart' => __('Chart Icons', 'fw'),
|
196 |
+
'currency' => __('Currency Icons', 'fw'),
|
197 |
+
'text-editor' => __('Text Editor Icons', 'fw'),
|
198 |
+
'directional' => __('Directional Icons', 'fw'),
|
199 |
+
'video-player' => __('Video Player Icons', 'fw'),
|
200 |
+
'brand' => __('Brand Icons', 'fw'),
|
201 |
+
'medical' => __('Medical Icons', 'fw'),
|
202 |
),
|
203 |
+
'icons' => array(
|
204 |
+
'fa fa-adjust' => array('group' => 'web-application'),
|
205 |
+
'fa fa-american-sign-language-interpreting' => array('group' => 'web-application'),
|
206 |
+
'fa fa-anchor' => array('group' => 'web-application'),
|
207 |
+
'fa fa-archive' => array('group' => 'web-application'),
|
208 |
+
'fa fa-area-chart' => array('group' => 'web-application'),
|
209 |
+
'fa fa-arrows' => array('group' => 'web-application'),
|
210 |
+
'fa fa-arrows-h' => array('group' => 'web-application'),
|
211 |
+
'fa fa-arrows-v' => array('group' => 'web-application'),
|
212 |
+
'fa fa-asl-interpreting' => array('group' => 'web-application'),
|
213 |
+
'fa fa-assistive-listening-systems' => array('group' => 'web-application'),
|
214 |
+
'fa fa-asterisk' => array('group' => 'web-application'),
|
215 |
+
'fa fa-at' => array('group' => 'web-application'),
|
216 |
+
'fa fa-audio-description' => array('group' => 'web-application'),
|
217 |
+
'fa fa-automobile' => array('group' => 'web-application'),
|
218 |
+
'fa fa-balance-scale' => array('group' => 'web-application'),
|
219 |
+
'fa fa-ban' => array('group' => 'web-application'),
|
220 |
+
'fa fa-bank' => array('group' => 'web-application'),
|
221 |
+
'fa fa-bar-chart' => array('group' => 'web-application'),
|
222 |
+
'fa fa-bar-chart-o' => array('group' => 'web-application'),
|
223 |
+
'fa fa-barcode' => array('group' => 'web-application'),
|
224 |
+
'fa fa-bars' => array('group' => 'web-application'),
|
225 |
+
'fa fa-battery-0' => array('group' => 'web-application'),
|
226 |
+
'fa fa-battery-1' => array('group' => 'web-application'),
|
227 |
+
'fa fa-battery-2' => array('group' => 'web-application'),
|
228 |
+
'fa fa-battery-3' => array('group' => 'web-application'),
|
229 |
+
'fa fa-battery-4' => array('group' => 'web-application'),
|
230 |
+
'fa fa-battery-empty' => array('group' => 'web-application'),
|
231 |
+
'fa fa-battery-full' => array('group' => 'web-application'),
|
232 |
+
'fa fa-battery-half' => array('group' => 'web-application'),
|
233 |
+
'fa fa-battery-quarter' => array('group' => 'web-application'),
|
234 |
+
'fa fa-battery-three-quarters' => array('group' => 'web-application'),
|
235 |
+
'fa fa-bed' => array('group' => 'web-application'),
|
236 |
+
'fa fa-beer' => array('group' => 'web-application'),
|
237 |
+
'fa fa-bell' => array('group' => 'web-application'),
|
238 |
+
'fa fa-bell-o' => array('group' => 'web-application'),
|
239 |
+
'fa fa-bell-slash' => array('group' => 'web-application'),
|
240 |
+
'fa fa-bell-slash-o' => array('group' => 'web-application'),
|
241 |
+
'fa fa-bicycle' => array('group' => 'web-application'),
|
242 |
+
'fa fa-binoculars' => array('group' => 'web-application'),
|
243 |
+
'fa fa-birthday-cake' => array('group' => 'web-application'),
|
244 |
+
'fa fa-blind' => array('group' => 'web-application'),
|
245 |
+
'fa fa-bluetooth' => array('group' => 'web-application'),
|
246 |
+
'fa fa-bluetooth-b' => array('group' => 'web-application'),
|
247 |
+
'fa fa-bolt' => array('group' => 'web-application'),
|
248 |
+
'fa fa-bomb' => array('group' => 'web-application'),
|
249 |
+
'fa fa-book' => array('group' => 'web-application'),
|
250 |
+
'fa fa-bookmark' => array('group' => 'web-application'),
|
251 |
+
'fa fa-bookmark-o' => array('group' => 'web-application'),
|
252 |
+
'fa fa-braille' => array('group' => 'web-application'),
|
253 |
+
'fa fa-briefcase' => array('group' => 'web-application'),
|
254 |
+
'fa fa-bug' => array('group' => 'web-application'),
|
255 |
+
'fa fa-building' => array('group' => 'web-application'),
|
256 |
+
'fa fa-building-o' => array('group' => 'web-application'),
|
257 |
+
'fa fa-bullhorn' => array('group' => 'web-application'),
|
258 |
+
'fa fa-bullseye' => array('group' => 'web-application'),
|
259 |
+
'fa fa-bus' => array('group' => 'web-application'),
|
260 |
+
'fa fa-cab' => array('group' => 'web-application'),
|
261 |
+
'fa fa-calculator' => array('group' => 'web-application'),
|
262 |
+
'fa fa-calendar' => array('group' => 'web-application'),
|
263 |
+
'fa fa-calendar-check-o' => array('group' => 'web-application'),
|
264 |
+
'fa fa-calendar-minus-o' => array('group' => 'web-application'),
|
265 |
+
'fa fa-calendar-o' => array('group' => 'web-application'),
|
266 |
+
'fa fa-calendar-plus-o' => array('group' => 'web-application'),
|
267 |
+
'fa fa-calendar-times-o' => array('group' => 'web-application'),
|
268 |
+
'fa fa-camera' => array('group' => 'web-application'),
|
269 |
+
'fa fa-camera-retro' => array('group' => 'web-application'),
|
270 |
+
'fa fa-car' => array('group' => 'web-application'),
|
271 |
+
'fa fa-caret-square-o-down' => array('group' => 'web-application'),
|
272 |
+
'fa fa-caret-square-o-left' => array('group' => 'web-application'),
|
273 |
+
'fa fa-caret-square-o-right' => array('group' => 'web-application'),
|
274 |
+
'fa fa-caret-square-o-up' => array('group' => 'web-application'),
|
275 |
+
'fa fa-cart-arrow-down' => array('group' => 'web-application'),
|
276 |
+
'fa fa-cart-plus' => array('group' => 'web-application'),
|
277 |
+
'fa fa-cc' => array('group' => 'web-application'),
|
278 |
+
'fa fa-certificate' => array('group' => 'web-application'),
|
279 |
+
'fa fa-check' => array('group' => 'web-application'),
|
280 |
+
'fa fa-check-circle' => array('group' => 'web-application'),
|
281 |
+
'fa fa-check-circle-o' => array('group' => 'web-application'),
|
282 |
+
'fa fa-check-square' => array('group' => 'web-application'),
|
283 |
+
'fa fa-check-square-o' => array('group' => 'web-application'),
|
284 |
+
'fa fa-child' => array('group' => 'web-application'),
|
285 |
+
'fa fa-circle' => array('group' => 'web-application'),
|
286 |
+
'fa fa-circle-o' => array('group' => 'web-application'),
|
287 |
+
'fa fa-circle-o-notch' => array('group' => 'web-application'),
|
288 |
+
'fa fa-circle-thin' => array('group' => 'web-application'),
|
289 |
+
'fa fa-clock-o' => array('group' => 'web-application'),
|
290 |
+
'fa fa-clone' => array('group' => 'web-application'),
|
291 |
+
'fa fa-close' => array('group' => 'web-application'),
|
292 |
+
'fa fa-cloud' => array('group' => 'web-application'),
|
293 |
+
'fa fa-cloud-download' => array('group' => 'web-application'),
|
294 |
+
'fa fa-cloud-upload' => array('group' => 'web-application'),
|
295 |
+
'fa fa-code' => array('group' => 'web-application'),
|
296 |
+
'fa fa-code-fork' => array('group' => 'web-application'),
|
297 |
+
'fa fa-coffee' => array('group' => 'web-application'),
|
298 |
+
'fa fa-cog' => array('group' => 'web-application'),
|
299 |
+
'fa fa-cogs' => array('group' => 'web-application'),
|
300 |
+
'fa fa-comment' => array('group' => 'web-application'),
|
301 |
+
'fa fa-comment-o' => array('group' => 'web-application'),
|
302 |
+
'fa fa-commenting' => array('group' => 'web-application'),
|
303 |
+
'fa fa-commenting-o' => array('group' => 'web-application'),
|
304 |
+
'fa fa-comments' => array('group' => 'web-application'),
|
305 |
+
'fa fa-comments-o' => array('group' => 'web-application'),
|
306 |
+
'fa fa-compass' => array('group' => 'web-application'),
|
307 |
+
'fa fa-copyright' => array('group' => 'web-application'),
|
308 |
+
'fa fa-creative-commons' => array('group' => 'web-application'),
|
309 |
+
'fa fa-credit-card' => array('group' => 'web-application'),
|
310 |
+
'fa fa-credit-card-alt' => array('group' => 'web-application'),
|
311 |
+
'fa fa-crop' => array('group' => 'web-application'),
|
312 |
+
'fa fa-crosshairs' => array('group' => 'web-application'),
|
313 |
+
'fa fa-cube' => array('group' => 'web-application'),
|
314 |
+
'fa fa-cubes' => array('group' => 'web-application'),
|
315 |
+
'fa fa-cutlery' => array('group' => 'web-application'),
|
316 |
+
'fa fa-dashboard' => array('group' => 'web-application'),
|
317 |
+
'fa fa-database' => array('group' => 'web-application'),
|
318 |
+
'fa fa-deaf' => array('group' => 'web-application'),
|
319 |
+
'fa fa-deafness' => array('group' => 'web-application'),
|
320 |
+
'fa fa-desktop' => array('group' => 'web-application'),
|
321 |
+
'fa fa-diamond' => array('group' => 'web-application'),
|
322 |
+
'fa fa-dot-circle-o' => array('group' => 'web-application'),
|
323 |
+
'fa fa-download' => array('group' => 'web-application'),
|
324 |
+
'fa fa-edit' => array('group' => 'web-application'),
|
325 |
+
'fa fa-ellipsis-h' => array('group' => 'web-application'),
|
326 |
+
'fa fa-ellipsis-v' => array('group' => 'web-application'),
|
327 |
+
'fa fa-envelope' => array('group' => 'web-application'),
|
328 |
+
'fa fa-envelope-o' => array('group' => 'web-application'),
|
329 |
+
'fa fa-envelope-square' => array('group' => 'web-application'),
|
330 |
+
'fa fa-eraser' => array('group' => 'web-application'),
|
331 |
+
'fa fa-exchange' => array('group' => 'web-application'),
|
332 |
+
'fa fa-exclamation' => array('group' => 'web-application'),
|
333 |
+
'fa fa-exclamation-circle' => array('group' => 'web-application'),
|
334 |
+
'fa fa-exclamation-triangle' => array('group' => 'web-application'),
|
335 |
+
'fa fa-external-link' => array('group' => 'web-application'),
|
336 |
+
'fa fa-external-link-square' => array('group' => 'web-application'),
|
337 |
+
'fa fa-eye' => array('group' => 'web-application'),
|
338 |
+
'fa fa-eye-slash' => array('group' => 'web-application'),
|
339 |
+
'fa fa-eyedropper' => array('group' => 'web-application'),
|
340 |
+
'fa fa-fax' => array('group' => 'web-application'),
|
341 |
+
'fa fa-feed' => array('group' => 'web-application'),
|
342 |
+
'fa fa-female' => array('group' => 'web-application'),
|
343 |
+
'fa fa-fighter-jet' => array('group' => 'web-application'),
|
344 |
+
'fa fa-file-archive-o' => array('group' => 'web-application'),
|
345 |
+
'fa fa-file-audio-o' => array('group' => 'web-application'),
|
346 |
+
'fa fa-file-code-o' => array('group' => 'web-application'),
|
347 |
+
'fa fa-file-excel-o' => array('group' => 'web-application'),
|
348 |
+
'fa fa-file-image-o' => array('group' => 'web-application'),
|
349 |
+
'fa fa-file-movie-o' => array('group' => 'web-application'),
|
350 |
+
'fa fa-file-pdf-o' => array('group' => 'web-application'),
|
351 |
+
'fa fa-file-photo-o' => array('group' => 'web-application'),
|
352 |
+
'fa fa-file-picture-o' => array('group' => 'web-application'),
|
353 |
+
'fa fa-file-powerpoint-o' => array('group' => 'web-application'),
|
354 |
+
'fa fa-file-sound-o' => array('group' => 'web-application'),
|
355 |
+
'fa fa-file-video-o' => array('group' => 'web-application'),
|
356 |
+
'fa fa-file-word-o' => array('group' => 'web-application'),
|
357 |
+
'fa fa-file-zip-o' => array('group' => 'web-application'),
|
358 |
+
'fa fa-film' => array('group' => 'web-application'),
|
359 |
+
'fa fa-filter' => array('group' => 'web-application'),
|
360 |
+
'fa fa-fire' => array('group' => 'web-application'),
|
361 |
+
'fa fa-fire-extinguisher' => array('group' => 'web-application'),
|
362 |
+
'fa fa-flag' => array('group' => 'web-application'),
|
363 |
+
'fa fa-flag-checkered' => array('group' => 'web-application'),
|
364 |
+
'fa fa-flag-o' => array('group' => 'web-application'),
|
365 |
+
'fa fa-flash' => array('group' => 'web-application'),
|
366 |
+
'fa fa-flask' => array('group' => 'web-application'),
|
367 |
+
'fa fa-folder' => array('group' => 'web-application'),
|
368 |
+
'fa fa-folder-o' => array('group' => 'web-application'),
|
369 |
+
'fa fa-folder-open' => array('group' => 'web-application'),
|
370 |
+
'fa fa-folder-open-o' => array('group' => 'web-application'),
|
371 |
+
'fa fa-frown-o' => array('group' => 'web-application'),
|
372 |
+
'fa fa-futbol-o' => array('group' => 'web-application'),
|
373 |
+
'fa fa-gamepad' => array('group' => 'web-application'),
|
374 |
+
'fa fa-gavel' => array('group' => 'web-application'),
|
375 |
+
'fa fa-gear' => array('group' => 'web-application'),
|
376 |
+
'fa fa-gears' => array('group' => 'web-application'),
|
377 |
+
'fa fa-gift' => array('group' => 'web-application'),
|
378 |
+
'fa fa-glass' => array('group' => 'web-application'),
|
379 |
+
'fa fa-globe' => array('group' => 'web-application'),
|
380 |
+
'fa fa-graduation-cap' => array('group' => 'web-application'),
|
381 |
+
'fa fa-group' => array('group' => 'web-application'),
|
382 |
+
'fa fa-hand-grab-o' => array('group' => 'web-application'),
|
383 |
+
'fa fa-hand-lizard-o' => array('group' => 'web-application'),
|
384 |
+
'fa fa-hand-paper-o' => array('group' => 'web-application'),
|
385 |
+
'fa fa-hand-peace-o' => array('group' => 'web-application'),
|
386 |
+
'fa fa-hand-pointer-o' => array('group' => 'web-application'),
|
387 |
+
'fa fa-hand-rock-o' => array('group' => 'web-application'),
|
388 |
+
'fa fa-hand-scissors-o' => array('group' => 'web-application'),
|
389 |
+
'fa fa-hand-spock-o' => array('group' => 'web-application'),
|
390 |
+
'fa fa-hand-stop-o' => array('group' => 'web-application'),
|
391 |
+
'fa fa-hard-of-hearing' => array('group' => 'web-application'),
|
392 |
+
'fa fa-hashtag' => array('group' => 'web-application'),
|
393 |
+
'fa fa-hdd-o' => array('group' => 'web-application'),
|
394 |
+
'fa fa-headphones' => array('group' => 'web-application'),
|
395 |
+
'fa fa-heart' => array('group' => 'web-application'),
|
396 |
+
'fa fa-heart-o' => array('group' => 'web-application'),
|
397 |
+
'fa fa-heartbeat' => array('group' => 'web-application'),
|
398 |
+
'fa fa-history' => array('group' => 'web-application'),
|
399 |
+
'fa fa-home' => array('group' => 'web-application'),
|
400 |
+
'fa fa-hotel' => array('group' => 'web-application'),
|
401 |
+
'fa fa-hourglass' => array('group' => 'web-application'),
|
402 |
+
'fa fa-hourglass-1' => array('group' => 'web-application'),
|
403 |
+
'fa fa-hourglass-2' => array('group' => 'web-application'),
|
404 |
+
'fa fa-hourglass-3' => array('group' => 'web-application'),
|
405 |
+
'fa fa-hourglass-end' => array('group' => 'web-application'),
|
406 |
+
'fa fa-hourglass-half' => array('group' => 'web-application'),
|
407 |
+
'fa fa-hourglass-o' => array('group' => 'web-application'),
|
408 |
+
'fa fa-hourglass-start' => array('group' => 'web-application'),
|
409 |
+
'fa fa-i-cursor' => array('group' => 'web-application'),
|
410 |
+
'fa fa-image' => array('group' => 'web-application'),
|
411 |
+
'fa fa-inbox' => array('group' => 'web-application'),
|
412 |
+
'fa fa-industry' => array('group' => 'web-application'),
|
413 |
+
'fa fa-info' => array('group' => 'web-application'),
|
414 |
+
'fa fa-info-circle' => array('group' => 'web-application'),
|
415 |
+
'fa fa-institution' => array('group' => 'web-application'),
|
416 |
+
'fa fa-key' => array('group' => 'web-application'),
|
417 |
+
'fa fa-keyboard-o' => array('group' => 'web-application'),
|
418 |
+
'fa fa-language' => array('group' => 'web-application'),
|
419 |
+
'fa fa-laptop' => array('group' => 'web-application'),
|
420 |
+
'fa fa-leaf' => array('group' => 'web-application'),
|
421 |
+
'fa fa-legal' => array('group' => 'web-application'),
|
422 |
+
'fa fa-lemon-o' => array('group' => 'web-application'),
|
423 |
+
'fa fa-level-down' => array('group' => 'web-application'),
|
424 |
+
'fa fa-level-up' => array('group' => 'web-application'),
|
425 |
+
'fa fa-life-bouy' => array('group' => 'web-application'),
|
426 |
+
'fa fa-life-buoy' => array('group' => 'web-application'),
|
427 |
+
'fa fa-life-ring' => array('group' => 'web-application'),
|
428 |
+
'fa fa-life-saver' => array('group' => 'web-application'),
|
429 |
+
'fa fa-lightbulb-o' => array('group' => 'web-application'),
|
430 |
+
'fa fa-line-chart' => array('group' => 'web-application'),
|
431 |
+
'fa fa-location-arrow' => array('group' => 'web-application'),
|
432 |
+
'fa fa-lock' => array('group' => 'web-application'),
|
433 |
+
'fa fa-low-vision' => array('group' => 'web-application'),
|
434 |
+
'fa fa-magic' => array('group' => 'web-application'),
|
435 |
+
'fa fa-magnet' => array('group' => 'web-application'),
|
436 |
+
'fa fa-mail-forward' => array('group' => 'web-application'),
|
437 |
+
'fa fa-mail-reply' => array('group' => 'web-application'),
|
438 |
+
'fa fa-mail-reply-all' => array('group' => 'web-application'),
|
439 |
+
'fa fa-male' => array('group' => 'web-application'),
|
440 |
+
'fa fa-map' => array('group' => 'web-application'),
|
441 |
+
'fa fa-map-marker' => array('group' => 'web-application'),
|
442 |
+
'fa fa-map-o' => array('group' => 'web-application'),
|
443 |
+
'fa fa-map-pin' => array('group' => 'web-application'),
|
444 |
+
'fa fa-map-signs' => array('group' => 'web-application'),
|
445 |
+
'fa fa-meh-o' => array('group' => 'web-application'),
|
446 |
+
'fa fa-microphone' => array('group' => 'web-application'),
|
447 |
+
'fa fa-microphone-slash' => array('group' => 'web-application'),
|
448 |
+
'fa fa-minus' => array('group' => 'web-application'),
|
449 |
+
'fa fa-minus-circle' => array('group' => 'web-application'),
|
450 |
+
'fa fa-minus-square' => array('group' => 'web-application'),
|
451 |
+
'fa fa-minus-square-o' => array('group' => 'web-application'),
|
452 |
+
'fa fa-mobile' => array('group' => 'web-application'),
|
453 |
+
'fa fa-mobile-phone' => array('group' => 'web-application'),
|
454 |
+
'fa fa-money' => array('group' => 'web-application'),
|
455 |
+
'fa fa-moon-o' => array('group' => 'web-application'),
|
456 |
+
'fa fa-mortar-board' => array('group' => 'web-application'),
|
457 |
+
'fa fa-motorcycle' => array('group' => 'web-application'),
|
458 |
+
'fa fa-mouse-pointer' => array('group' => 'web-application'),
|
459 |
+
'fa fa-music' => array('group' => 'web-application'),
|
460 |
+
'fa fa-navicon' => array('group' => 'web-application'),
|
461 |
+
'fa fa-newspaper-o' => array('group' => 'web-application'),
|
462 |
+
'fa fa-object-group' => array('group' => 'web-application'),
|
463 |
+
'fa fa-object-ungroup' => array('group' => 'web-application'),
|
464 |
+
'fa fa-paint-brush' => array('group' => 'web-application'),
|
465 |
+
'fa fa-paper-plane' => array('group' => 'web-application'),
|
466 |
+
'fa fa-paper-plane-o' => array('group' => 'web-application'),
|
467 |
+
'fa fa-paw' => array('group' => 'web-application'),
|
468 |
+
'fa fa-pencil' => array('group' => 'web-application'),
|
469 |
+
'fa fa-pencil-square' => array('group' => 'web-application'),
|
470 |
+
'fa fa-pencil-square-o' => array('group' => 'web-application'),
|
471 |
+
'fa fa-percent' => array('group' => 'web-application'),
|
472 |
+
'fa fa-phone' => array('group' => 'web-application'),
|
473 |
+
'fa fa-phone-square' => array('group' => 'web-application'),
|
474 |
+
'fa fa-photo' => array('group' => 'web-application'),
|
475 |
+
'fa fa-picture-o' => array('group' => 'web-application'),
|
476 |
+
'fa fa-pie-chart' => array('group' => 'web-application'),
|
477 |
+
'fa fa-plane' => array('group' => 'web-application'),
|
478 |
+
'fa fa-plug' => array('group' => 'web-application'),
|
479 |
+
'fa fa-plus' => array('group' => 'web-application'),
|
480 |
+
'fa fa-plus-circle' => array('group' => 'web-application'),
|
481 |
+
'fa fa-plus-square' => array('group' => 'web-application'),
|
482 |
+
'fa fa-plus-square-o' => array('group' => 'web-application'),
|
483 |
+
'fa fa-power-off' => array('group' => 'web-application'),
|
484 |
+
'fa fa-print' => array('group' => 'web-application'),
|
485 |
+
'fa fa-puzzle-piece' => array('group' => 'web-application'),
|
486 |
+
'fa fa-qrcode' => array('group' => 'web-application'),
|
487 |
+
'fa fa-question' => array('group' => 'web-application'),
|
488 |
+
'fa fa-question-circle' => array('group' => 'web-application'),
|
489 |
+
'fa fa-question-circle-o' => array('group' => 'web-application'),
|
490 |
+
'fa fa-quote-left' => array('group' => 'web-application'),
|
491 |
+
'fa fa-quote-right' => array('group' => 'web-application'),
|
492 |
+
'fa fa-random' => array('group' => 'web-application'),
|
493 |
+
'fa fa-recycle' => array('group' => 'web-application'),
|
494 |
+
'fa fa-refresh' => array('group' => 'web-application'),
|
495 |
+
'fa fa-registered' => array('group' => 'web-application'),
|
496 |
+
'fa fa-remove' => array('group' => 'web-application'),
|
497 |
+
'fa fa-reorder' => array('group' => 'web-application'),
|
498 |
+
'fa fa-reply' => array('group' => 'web-application'),
|
499 |
+
'fa fa-reply-all' => array('group' => 'web-application'),
|
500 |
+
'fa fa-retweet' => array('group' => 'web-application'),
|
501 |
+
'fa fa-road' => array('group' => 'web-application'),
|
502 |
+
'fa fa-rocket' => array('group' => 'web-application'),
|
503 |
+
'fa fa-rss' => array('group' => 'web-application'),
|
504 |
+
'fa fa-rss-square' => array('group' => 'web-application'),
|
505 |
+
'fa fa-search' => array('group' => 'web-application'),
|
506 |
+
'fa fa-search-minus' => array('group' => 'web-application'),
|
507 |
+
'fa fa-search-plus' => array('group' => 'web-application'),
|
508 |
+
'fa fa-send' => array('group' => 'web-application'),
|
509 |
+
'fa fa-send-o' => array('group' => 'web-application'),
|
510 |
+
'fa fa-server' => array('group' => 'web-application'),
|
511 |
+
'fa fa-share' => array('group' => 'web-application'),
|
512 |
+
'fa fa-share-alt' => array('group' => 'web-application'),
|
513 |
+
'fa fa-share-alt-square' => array('group' => 'web-application'),
|
514 |
+
'fa fa-share-square' => array('group' => 'web-application'),
|
515 |
+
'fa fa-share-square-o' => array('group' => 'web-application'),
|
516 |
+
'fa fa-shield' => array('group' => 'web-application'),
|
517 |
+
'fa fa-ship' => array('group' => 'web-application'),
|
518 |
+
'fa fa-shopping-bag' => array('group' => 'web-application'),
|
519 |
+
'fa fa-shopping-basket' => array('group' => 'web-application'),
|
520 |
+
'fa fa-shopping-cart' => array('group' => 'web-application'),
|
521 |
+
'fa fa-sign-in' => array('group' => 'web-application'),
|
522 |
+
'fa fa-sign-language' => array('group' => 'web-application'),
|
523 |
+
'fa fa-sign-out' => array('group' => 'web-application'),
|
524 |
+
'fa fa-signal' => array('group' => 'web-application'),
|
525 |
+
'fa fa-signing' => array('group' => 'web-application'),
|
526 |
+
'fa fa-sitemap' => array('group' => 'web-application'),
|
527 |
+
'fa fa-sliders' => array('group' => 'web-application'),
|
528 |
+
'fa fa-smile-o' => array('group' => 'web-application'),
|
529 |
+
'fa fa-soccer-ball-o' => array('group' => 'web-application'),
|
530 |
+
'fa fa-sort' => array('group' => 'web-application'),
|
531 |
+
'fa fa-sort-alpha-asc' => array('group' => 'web-application'),
|
532 |
+
'fa fa-sort-alpha-desc' => array('group' => 'web-application'),
|
533 |
+
'fa fa-sort-amount-asc' => array('group' => 'web-application'),
|
534 |
+
'fa fa-sort-amount-desc' => array('group' => 'web-application'),
|
535 |
+
'fa fa-sort-asc' => array('group' => 'web-application'),
|
536 |
+
'fa fa-sort-desc' => array('group' => 'web-application'),
|
537 |
+
'fa fa-sort-down' => array('group' => 'web-application'),
|
538 |
+
'fa fa-sort-numeric-asc' => array('group' => 'web-application'),
|
539 |
+
'fa fa-sort-numeric-desc' => array('group' => 'web-application'),
|
540 |
+
'fa fa-sort-up' => array('group' => 'web-application'),
|
541 |
+
'fa fa-space-shuttle' => array('group' => 'web-application'),
|
542 |
+
//'fa fa-spinner' => array('group' => 'web-application'),
|
543 |
+
'fa fa-spoon' => array('group' => 'web-application'),
|
544 |
+
'fa fa-square' => array('group' => 'web-application'),
|
545 |
+
'fa fa-square-o' => array('group' => 'web-application'),
|
546 |
+
'fa fa-star' => array('group' => 'web-application'),
|
547 |
+
'fa fa-star-half' => array('group' => 'web-application'),
|
548 |
+
'fa fa-star-half-empty' => array('group' => 'web-application'),
|
549 |
+
'fa fa-star-half-full' => array('group' => 'web-application'),
|
550 |
+
'fa fa-star-half-o' => array('group' => 'web-application'),
|
551 |
+
'fa fa-star-o' => array('group' => 'web-application'),
|
552 |
+
'fa fa-sticky-note' => array('group' => 'web-application'),
|
553 |
+
'fa fa-sticky-note-o' => array('group' => 'web-application'),
|
554 |
+
'fa fa-street-view' => array('group' => 'web-application'),
|
555 |
+
'fa fa-suitcase' => array('group' => 'web-application'),
|
556 |
+
'fa fa-sun-o' => array('group' => 'web-application'),
|
557 |
+
'fa fa-support' => array('group' => 'web-application'),
|
558 |
+
'fa fa-tablet' => array('group' => 'web-application'),
|
559 |
+
'fa fa-tachometer' => array('group' => 'web-application'),
|
560 |
+
'fa fa-tag' => array('group' => 'web-application'),
|
561 |
+
'fa fa-tags' => array('group' => 'web-application'),
|
562 |
+
'fa fa-tasks' => array('group' => 'web-application'),
|
563 |
+
'fa fa-taxi' => array('group' => 'web-application'),
|
564 |
+
'fa fa-television' => array('group' => 'web-application'),
|
565 |
+
'fa fa-terminal' => array('group' => 'web-application'),
|
566 |
+
'fa fa-thumb-tack' => array('group' => 'web-application'),
|
567 |
+
'fa fa-thumbs-down' => array('group' => 'web-application'),
|
568 |
+
'fa fa-thumbs-o-down' => array('group' => 'web-application'),
|
569 |
+
'fa fa-thumbs-o-up' => array('group' => 'web-application'),
|
570 |
+
'fa fa-thumbs-up' => array('group' => 'web-application'),
|
571 |
+
'fa fa-ticket' => array('group' => 'web-application'),
|
572 |
+
'fa fa-times' => array('group' => 'web-application'),
|
573 |
+
'fa fa-times-circle' => array('group' => 'web-application'),
|
574 |
+
'fa fa-times-circle-o' => array('group' => 'web-application'),
|
575 |
+
'fa fa-tint' => array('group' => 'web-application'),
|
576 |
+
'fa fa-toggle-down' => array('group' => 'web-application'),
|
577 |
+
'fa fa-toggle-left' => array('group' => 'web-application'),
|
578 |
+
'fa fa-toggle-off' => array('group' => 'web-application'),
|
579 |
+
'fa fa-toggle-on' => array('group' => 'web-application'),
|
580 |
+
'fa fa-toggle-right' => array('group' => 'web-application'),
|
581 |
+
'fa fa-toggle-up' => array('group' => 'web-application'),
|
582 |
+
'fa fa-trademark' => array('group' => 'web-application'),
|
583 |
+
'fa fa-trash' => array('group' => 'web-application'),
|
584 |
+
'fa fa-trash-o' => array('group' => 'web-application'),
|
585 |
+
'fa fa-tree' => array('group' => 'web-application'),
|
586 |
+
'fa fa-trophy' => array('group' => 'web-application'),
|
587 |
+
'fa fa-truck' => array('group' => 'web-application'),
|
588 |
+
'fa fa-tty' => array('group' => 'web-application'),
|
589 |
+
'fa fa-tv' => array('group' => 'web-application'),
|
590 |
+
'fa fa-umbrella' => array('group' => 'web-application'),
|
591 |
+
'fa fa-universal-access' => array('group' => 'web-application'),
|
592 |
+
'fa fa-university' => array('group' => 'web-application'),
|
593 |
+
'fa fa-unlock' => array('group' => 'web-application'),
|
594 |
+
'fa fa-unlock-alt' => array('group' => 'web-application'),
|
595 |
+
'fa fa-unsorted' => array('group' => 'web-application'),
|
596 |
+
'fa fa-upload' => array('group' => 'web-application'),
|
597 |
+
'fa fa-user' => array('group' => 'web-application'),
|
598 |
+
'fa fa-user-plus' => array('group' => 'web-application'),
|
599 |
+
'fa fa-user-secret' => array('group' => 'web-application'),
|
600 |
+
'fa fa-user-times' => array('group' => 'web-application'),
|
601 |
+
'fa fa-users' => array('group' => 'web-application'),
|
602 |
+
'fa fa-video-camera' => array('group' => 'web-application'),
|
603 |
+
'fa fa-volume-control-phone' => array('group' => 'web-application'),
|
604 |
+
'fa fa-volume-down' => array('group' => 'web-application'),
|
605 |
+
'fa fa-volume-off' => array('group' => 'web-application'),
|
606 |
+
'fa fa-volume-up' => array('group' => 'web-application'),
|
607 |
+
'fa fa-warning' => array('group' => 'web-application'),
|
608 |
+
'fa fa-wheelchair' => array('group' => 'web-application'),
|
609 |
+
'fa fa-wheelchair-alt' => array('group' => 'web-application'),
|
610 |
+
'fa fa-wifi' => array('group' => 'web-application'),
|
611 |
+
'fa fa-wrench' => array('group' => 'web-application'),
|
612 |
+
'fa fa-hand-o-down' => array('group' => 'hand'),
|
613 |
+
'fa fa-hand-o-left' => array('group' => 'hand'),
|
614 |
+
'fa fa-hand-o-right' => array('group' => 'hand'),
|
615 |
+
'fa fa-hand-o-up' => array('group' => 'hand'),
|
616 |
+
'fa fa-ambulance' => array('group' => 'transportation'),
|
617 |
+
'fa fa-subway' => array('group' => 'transportation'),
|
618 |
+
'fa fa-train' => array('group' => 'transportation'),
|
619 |
+
'fa fa-genderless' => array('group' => 'gender'),
|
620 |
+
'fa fa-intersex' => array('group' => 'gender'),
|
621 |
+
'fa fa-mars' => array('group' => 'gender'),
|
622 |
+
'fa fa-mars-double' => array('group' => 'gender'),
|
623 |
+
'fa fa-mars-stroke' => array('group' => 'gender'),
|
624 |
+
'fa fa-mars-stroke-h' => array('group' => 'gender'),
|
625 |
+
'fa fa-mars-stroke-v' => array('group' => 'gender'),
|
626 |
+
'fa fa-mercury' => array('group' => 'gender'),
|
627 |
+
'fa fa-neuter' => array('group' => 'gender'),
|
628 |
+
'fa fa-transgender' => array('group' => 'gender'),
|
629 |
+
'fa fa-transgender-alt' => array('group' => 'gender'),
|
630 |
+
'fa fa-venus' => array('group' => 'gender'),
|
631 |
+
'fa fa-venus-double' => array('group' => 'gender'),
|
632 |
+
'fa fa-venus-mars' => array('group' => 'gender'),
|
633 |
+
'fa fa-file' => array('group' => 'file-type'),
|
634 |
+
'fa fa-file-o' => array('group' => 'file-type'),
|
635 |
+
'fa fa-file-text' => array('group' => 'file-type'),
|
636 |
+
'fa fa-file-text-o' => array('group' => 'file-type'),
|
637 |
+
'fa fa-cc-amex' => array('group' => 'payment'),
|
638 |
+
'fa fa-cc-diners-club' => array('group' => 'payment'),
|
639 |
+
'fa fa-cc-discover' => array('group' => 'payment'),
|
640 |
+
'fa fa-cc-jcb' => array('group' => 'payment'),
|
641 |
+
'fa fa-cc-mastercard' => array('group' => 'payment'),
|
642 |
+
'fa fa-cc-paypal' => array('group' => 'payment'),
|
643 |
+
'fa fa-cc-stripe' => array('group' => 'payment'),
|
644 |
+
'fa fa-cc-visa' => array('group' => 'payment'),
|
645 |
+
'fa fa-google-wallet' => array('group' => 'payment'),
|
646 |
+
'fa fa-paypal' => array('group' => 'payment'),
|
647 |
+
'fa fa-bitcoin' => array('group' => 'currency'),
|
648 |
+
'fa fa-btc' => array('group' => 'currency'),
|
649 |
+
'fa fa-cny' => array('group' => 'currency'),
|
650 |
+
'fa fa-dollar' => array('group' => 'currency'),
|
651 |
+
'fa fa-eur' => array('group' => 'currency'),
|
652 |
+
'fa fa-euro' => array('group' => 'currency'),
|
653 |
+
'fa fa-gbp' => array('group' => 'currency'),
|
654 |
+
'fa fa-gg' => array('group' => 'currency'),
|
655 |
+
'fa fa-gg-circle' => array('group' => 'currency'),
|
656 |
+
'fa fa-ils' => array('group' => 'currency'),
|
657 |
+
'fa fa-inr' => array('group' => 'currency'),
|
658 |
+
'fa fa-jpy' => array('group' => 'currency'),
|
659 |
+
'fa fa-krw' => array('group' => 'currency'),
|
660 |
+
'fa fa-rmb' => array('group' => 'currency'),
|
661 |
+
'fa fa-rouble' => array('group' => 'currency'),
|
662 |
+
'fa fa-rub' => array('group' => 'currency'),
|
663 |
+
'fa fa-ruble' => array('group' => 'currency'),
|
664 |
+
'fa fa-rupee' => array('group' => 'currency'),
|
665 |
+
'fa fa-shekel' => array('group' => 'currency'),
|
666 |
+
'fa fa-sheqel' => array('group' => 'currency'),
|
667 |
+
'fa fa-try' => array('group' => 'currency'),
|
668 |
+
'fa fa-turkish-lira' => array('group' => 'currency'),
|
669 |
+
'fa fa-usd' => array('group' => 'currency'),
|
670 |
+
'fa fa-won' => array('group' => 'currency'),
|
671 |
+
'fa fa-yen' => array('group' => 'currency'),
|
672 |
+
'fa fa-align-center' => array('group' => 'text-editor'),
|
673 |
+
'fa fa-align-justify' => array('group' => 'text-editor'),
|
674 |
+
'fa fa-align-left' => array('group' => 'text-editor'),
|
675 |
+
'fa fa-align-right' => array('group' => 'text-editor'),
|
676 |
+
'fa fa-bold' => array('group' => 'text-editor'),
|
677 |
+
'fa fa-chain' => array('group' => 'text-editor'),
|
678 |
+
'fa fa-chain-broken' => array('group' => 'text-editor'),
|
679 |
+
'fa fa-clipboard' => array('group' => 'text-editor'),
|
680 |
+
'fa fa-columns' => array('group' => 'text-editor'),
|
681 |
+
'fa fa-copy' => array('group' => 'text-editor'),
|
682 |
+
'fa fa-cut' => array('group' => 'text-editor'),
|
683 |
+
'fa fa-dedent' => array('group' => 'text-editor'),
|
684 |
+
'fa fa-files-o' => array('group' => 'text-editor'),
|
685 |
+
'fa fa-floppy-o' => array('group' => 'text-editor'),
|
686 |
+
'fa fa-font' => array('group' => 'text-editor'),
|
687 |
+
'fa fa-header' => array('group' => 'text-editor'),
|
688 |
+
'fa fa-indent' => array('group' => 'text-editor'),
|
689 |
+
'fa fa-italic' => array('group' => 'text-editor'),
|
690 |
+
'fa fa-link' => array('group' => 'text-editor'),
|
691 |
+
'fa fa-list' => array('group' => 'text-editor'),
|
692 |
+
'fa fa-list-alt' => array('group' => 'text-editor'),
|
693 |
+
'fa fa-list-ol' => array('group' => 'text-editor'),
|
694 |
+
'fa fa-list-ul' => array('group' => 'text-editor'),
|
695 |
+
'fa fa-outdent' => array('group' => 'text-editor'),
|
696 |
+
'fa fa-paperclip' => array('group' => 'text-editor'),
|
697 |
+
'fa fa-paragraph' => array('group' => 'text-editor'),
|
698 |
+
'fa fa-paste' => array('group' => 'text-editor'),
|
699 |
+
'fa fa-repeat' => array('group' => 'text-editor'),
|
700 |
+
'fa fa-rotate-left' => array('group' => 'text-editor'),
|
701 |
+
'fa fa-rotate-right' => array('group' => 'text-editor'),
|
702 |
+
'fa fa-save' => array('group' => 'text-editor'),
|
703 |
+
'fa fa-scissors' => array('group' => 'text-editor'),
|
704 |
+
'fa fa-strikethrough' => array('group' => 'text-editor'),
|
705 |
+
'fa fa-subscript' => array('group' => 'text-editor'),
|
706 |
+
'fa fa-superscript' => array('group' => 'text-editor'),
|
707 |
+
'fa fa-table' => array('group' => 'text-editor'),
|
708 |
+
'fa fa-text-height' => array('group' => 'text-editor'),
|
709 |
+
'fa fa-text-width' => array('group' => 'text-editor'),
|
710 |
+
'fa fa-th' => array('group' => 'text-editor'),
|
711 |
+
'fa fa-th-large' => array('group' => 'text-editor'),
|
712 |
+
'fa fa-th-list' => array('group' => 'text-editor'),
|
713 |
+
'fa fa-underline' => array('group' => 'text-editor'),
|
714 |
+
'fa fa-undo' => array('group' => 'text-editor'),
|
715 |
+
'fa fa-unlink' => array('group' => 'text-editor'),
|
716 |
+
'fa fa-angle-double-down' => array('group' => 'directional'),
|
717 |
+
'fa fa-angle-double-left' => array('group' => 'directional'),
|
718 |
+
'fa fa-angle-double-right' => array('group' => 'directional'),
|
719 |
+
'fa fa-angle-double-up' => array('group' => 'directional'),
|
720 |
+
'fa fa-angle-down' => array('group' => 'directional'),
|
721 |
+
'fa fa-angle-left' => array('group' => 'directional'),
|
722 |
+
'fa fa-angle-right' => array('group' => 'directional'),
|
723 |
+
'fa fa-angle-up' => array('group' => 'directional'),
|
724 |
+
'fa fa-arrow-circle-down' => array('group' => 'directional'),
|
725 |
+
'fa fa-arrow-circle-left' => array('group' => 'directional'),
|
726 |
+
'fa fa-arrow-circle-o-down' => array('group' => 'directional'),
|
727 |
+
'fa fa-arrow-circle-o-left' => array('group' => 'directional'),
|
728 |
+
'fa fa-arrow-circle-o-right' => array('group' => 'directional'),
|
729 |
+
'fa fa-arrow-circle-o-up' => array('group' => 'directional'),
|
730 |
+
'fa fa-arrow-circle-right' => array('group' => 'directional'),
|
731 |
+
'fa fa-arrow-circle-up' => array('group' => 'directional'),
|
732 |
+
'fa fa-arrow-down' => array('group' => 'directional'),
|
733 |
+
'fa fa-arrow-left' => array('group' => 'directional'),
|
734 |
+
'fa fa-arrow-right' => array('group' => 'directional'),
|
735 |
+
'fa fa-arrow-up' => array('group' => 'directional'),
|
736 |
+
'fa fa-arrows-alt' => array('group' => 'directional'),
|
737 |
+
'fa fa-caret-down' => array('group' => 'directional'),
|
738 |
+
'fa fa-caret-left' => array('group' => 'directional'),
|
739 |
+
'fa fa-caret-right' => array('group' => 'directional'),
|
740 |
+
'fa fa-caret-up' => array('group' => 'directional'),
|
741 |
+
'fa fa-chevron-circle-down' => array('group' => 'directional'),
|
742 |
+
'fa fa-chevron-circle-left' => array('group' => 'directional'),
|
743 |
+
'fa fa-chevron-circle-right' => array('group' => 'directional'),
|
744 |
+
'fa fa-chevron-circle-up' => array('group' => 'directional'),
|
745 |
+
'fa fa-chevron-down' => array('group' => 'directional'),
|
746 |
+
'fa fa-chevron-left' => array('group' => 'directional'),
|
747 |
+
'fa fa-chevron-right' => array('group' => 'directional'),
|
748 |
+
'fa fa-chevron-up' => array('group' => 'directional'),
|
749 |
+
'fa fa-long-arrow-down' => array('group' => 'directional'),
|
750 |
+
'fa fa-long-arrow-left' => array('group' => 'directional'),
|
751 |
+
'fa fa-long-arrow-right' => array('group' => 'directional'),
|
752 |
+
'fa fa-long-arrow-up' => array('group' => 'directional'),
|
753 |
+
'fa fa-backward' => array('group' => 'video-player'),
|
754 |
+
'fa fa-compress' => array('group' => 'video-player'),
|
755 |
+
'fa fa-eject' => array('group' => 'video-player'),
|
756 |
+
'fa fa-expand' => array('group' => 'video-player'),
|
757 |
+
'fa fa-fast-backward' => array('group' => 'video-player'),
|
758 |
+
'fa fa-fast-forward' => array('group' => 'video-player'),
|
759 |
+
'fa fa-forward' => array('group' => 'video-player'),
|
760 |
+
'fa fa-pause' => array('group' => 'video-player'),
|
761 |
+
'fa fa-pause-circle' => array('group' => 'video-player'),
|
762 |
+
'fa fa-pause-circle-o' => array('group' => 'video-player'),
|
763 |
+
'fa fa-play' => array('group' => 'video-player'),
|
764 |
+
'fa fa-play-circle' => array('group' => 'video-player'),
|
765 |
+
'fa fa-play-circle-o' => array('group' => 'video-player'),
|
766 |
+
'fa fa-step-backward' => array('group' => 'video-player'),
|
767 |
+
'fa fa-step-forward' => array('group' => 'video-player'),
|
768 |
+
'fa fa-stop' => array('group' => 'video-player'),
|
769 |
+
'fa fa-stop-circle' => array('group' => 'video-player'),
|
770 |
+
'fa fa-stop-circle-o' => array('group' => 'video-player'),
|
771 |
+
'fa fa-youtube-play' => array('group' => 'video-player'),
|
772 |
+
'fa fa-500px' => array('group' => 'brand'),
|
773 |
+
'fa fa-adn' => array('group' => 'brand'),
|
774 |
+
'fa fa-amazon' => array('group' => 'brand'),
|
775 |
+
'fa fa-android' => array('group' => 'brand'),
|
776 |
+
'fa fa-angellist' => array('group' => 'brand'),
|
777 |
+
'fa fa-apple' => array('group' => 'brand'),
|
778 |
+
'fa fa-behance' => array('group' => 'brand'),
|
779 |
+
'fa fa-behance-square' => array('group' => 'brand'),
|
780 |
+
'fa fa-bitbucket' => array('group' => 'brand'),
|
781 |
+
'fa fa-bitbucket-square' => array('group' => 'brand'),
|
782 |
+
'fa fa-black-tie' => array('group' => 'brand'),
|
783 |
+
'fa fa-buysellads' => array('group' => 'brand'),
|
784 |
+
'fa fa-chrome' => array('group' => 'brand'),
|
785 |
+
'fa fa-codepen' => array('group' => 'brand'),
|
786 |
+
'fa fa-codiepie' => array('group' => 'brand'),
|
787 |
+
'fa fa-connectdevelop' => array('group' => 'brand'),
|
788 |
+
'fa fa-contao' => array('group' => 'brand'),
|
789 |
+
'fa fa-css3' => array('group' => 'brand'),
|
790 |
+
'fa fa-dashcube' => array('group' => 'brand'),
|
791 |
+
'fa fa-delicious' => array('group' => 'brand'),
|
792 |
+
'fa fa-deviantart' => array('group' => 'brand'),
|
793 |
+
'fa fa-digg' => array('group' => 'brand'),
|
794 |
+
'fa fa-dribbble' => array('group' => 'brand'),
|
795 |
+
'fa fa-dropbox' => array('group' => 'brand'),
|
796 |
+
'fa fa-drupal' => array('group' => 'brand'),
|
797 |
+
'fa fa-edge' => array('group' => 'brand'),
|
798 |
+
'fa fa-empire' => array('group' => 'brand'),
|
799 |
+
'fa fa-envira' => array('group' => 'brand'),
|
800 |
+
'fa fa-expeditedssl' => array('group' => 'brand'),
|
801 |
+
'fa fa-facebook' => array('group' => 'brand'),
|
802 |
+
'fa fa-facebook-f' => array('group' => 'brand'),
|
803 |
+
'fa fa-facebook-official' => array('group' => 'brand'),
|
804 |
+
'fa fa-facebook-square' => array('group' => 'brand'),
|
805 |
+
'fa fa-firefox' => array('group' => 'brand'),
|
806 |
+
'fa fa-flickr' => array('group' => 'brand'),
|
807 |
+
'fa fa-fonticons' => array('group' => 'brand'),
|
808 |
+
'fa fa-fort-awesome' => array('group' => 'brand'),
|
809 |
+
'fa fa-forumbee' => array('group' => 'brand'),
|
810 |
+
'fa fa-foursquare' => array('group' => 'brand'),
|
811 |
+
'fa fa-ge' => array('group' => 'brand'),
|
812 |
+
'fa fa-get-pocket' => array('group' => 'brand'),
|
813 |
+
'fa fa-git' => array('group' => 'brand'),
|
814 |
+
'fa fa-git-square' => array('group' => 'brand'),
|
815 |
+
'fa fa-github' => array('group' => 'brand'),
|
816 |
+
'fa fa-github-alt' => array('group' => 'brand'),
|
817 |
+
'fa fa-github-square' => array('group' => 'brand'),
|
818 |
+
'fa fa-gitlab' => array('group' => 'brand'),
|
819 |
+
'fa fa-gittip' => array('group' => 'brand'),
|
820 |
+
'fa fa-glide' => array('group' => 'brand'),
|
821 |
+
'fa fa-glide-g' => array('group' => 'brand'),
|
822 |
+
'fa fa-google' => array('group' => 'brand'),
|
823 |
+
'fa fa-google-plus' => array('group' => 'brand'),
|
824 |
+
'fa fa-google-plus-square' => array('group' => 'brand'),
|
825 |
+
'fa fa-gratipay' => array('group' => 'brand'),
|
826 |
+
'fa fa-hacker-news' => array('group' => 'brand'),
|
827 |
+
'fa fa-houzz' => array('group' => 'brand'),
|
828 |
+
'fa fa-html5' => array('group' => 'brand'),
|
829 |
+
'fa fa-instagram' => array('group' => 'brand'),
|
830 |
+
'fa fa-internet-explorer' => array('group' => 'brand'),
|
831 |
+
'fa fa-ioxhost' => array('group' => 'brand'),
|
832 |
+
'fa fa-joomla' => array('group' => 'brand'),
|
833 |
+
'fa fa-jsfiddle' => array('group' => 'brand'),
|
834 |
+
'fa fa-lastfm' => array('group' => 'brand'),
|
835 |
+
'fa fa-lastfm-square' => array('group' => 'brand'),
|
836 |
+
'fa fa-leanpub' => array('group' => 'brand'),
|
837 |
+
'fa fa-linkedin' => array('group' => 'brand'),
|
838 |
+
'fa fa-linkedin-square' => array('group' => 'brand'),
|
839 |
+
'fa fa-linux' => array('group' => 'brand'),
|
840 |
+
'fa fa-maxcdn' => array('group' => 'brand'),
|
841 |
+
'fa fa-meanpath' => array('group' => 'brand'),
|
842 |
+
'fa fa-medium' => array('group' => 'brand'),
|
843 |
+
'fa fa-mixcloud' => array('group' => 'brand'),
|
844 |
+
'fa fa-modx' => array('group' => 'brand'),
|
845 |
+
'fa fa-odnoklassniki' => array('group' => 'brand'),
|
846 |
+
'fa fa-odnoklassniki-square' => array('group' => 'brand'),
|
847 |
+
'fa fa-opencart' => array('group' => 'brand'),
|
848 |
+
'fa fa-openid' => array('group' => 'brand'),
|
849 |
+
'fa fa-opera' => array('group' => 'brand'),
|
850 |
+
'fa fa-optin-monster' => array('group' => 'brand'),
|
851 |
+
'fa fa-pagelines' => array('group' => 'brand'),
|
852 |
+
'fa fa-pied-piper' => array('group' => 'brand'),
|
853 |
+
'fa fa-pied-piper-alt' => array('group' => 'brand'),
|
854 |
+
'fa fa-pinterest' => array('group' => 'brand'),
|
855 |
+
'fa fa-pinterest-p' => array('group' => 'brand'),
|
856 |
+
'fa fa-pinterest-square' => array('group' => 'brand'),
|
857 |
+
'fa fa-product-hunt' => array('group' => 'brand'),
|
858 |
+
'fa fa-qq' => array('group' => 'brand'),
|
859 |
+
'fa fa-ra' => array('group' => 'brand'),
|
860 |
+
'fa fa-rebel' => array('group' => 'brand'),
|
861 |
+
'fa fa-reddit' => array('group' => 'brand'),
|
862 |
+
'fa fa-reddit-alien' => array('group' => 'brand'),
|
863 |
+
'fa fa-reddit-square' => array('group' => 'brand'),
|
864 |
+
'fa fa-renren' => array('group' => 'brand'),
|
865 |
+
'fa fa-safari' => array('group' => 'brand'),
|
866 |
+
'fa fa-scribd' => array('group' => 'brand'),
|
867 |
+
'fa fa-sellsy' => array('group' => 'brand'),
|
868 |
+
'fa fa-shirtsinbulk' => array('group' => 'brand'),
|
869 |
+
'fa fa-simplybuilt' => array('group' => 'brand'),
|
870 |
+
'fa fa-skyatlas' => array('group' => 'brand'),
|
871 |
+
'fa fa-skype' => array('group' => 'brand'),
|
872 |
+
'fa fa-slack' => array('group' => 'brand'),
|
873 |
+
'fa fa-slideshare' => array('group' => 'brand'),
|
874 |
+
'fa fa-snapchat' => array('group' => 'brand'),
|
875 |
+
'fa fa-snapchat-ghost' => array('group' => 'brand'),
|
876 |
+
'fa fa-snapchat-square' => array('group' => 'brand'),
|
877 |
+
'fa fa-soundcloud' => array('group' => 'brand'),
|
878 |
+
'fa fa-spotify' => array('group' => 'brand'),
|
879 |
+
'fa fa-stack-exchange' => array('group' => 'brand'),
|
880 |
+
'fa fa-stack-overflow' => array('group' => 'brand'),
|
881 |
+
'fa fa-steam' => array('group' => 'brand'),
|
882 |
+
'fa fa-steam-square' => array('group' => 'brand'),
|
883 |
+
'fa fa-stumbleupon' => array('group' => 'brand'),
|
884 |
+
'fa fa-stumbleupon-circle' => array('group' => 'brand'),
|
885 |
+
'fa fa-tencent-weibo' => array('group' => 'brand'),
|
886 |
+
'fa fa-trello' => array('group' => 'brand'),
|
887 |
+
'fa fa-tripadvisor' => array('group' => 'brand'),
|
888 |
+
'fa fa-tumblr' => array('group' => 'brand'),
|
889 |
+
'fa fa-tumblr-square' => array('group' => 'brand'),
|
890 |
+
'fa fa-twitch' => array('group' => 'brand'),
|
891 |
+
'fa fa-twitter' => array('group' => 'brand'),
|
892 |
+
'fa fa-twitter-square' => array('group' => 'brand'),
|
893 |
+
'fa fa-usb' => array('group' => 'brand'),
|
894 |
+
'fa fa-viacoin' => array('group' => 'brand'),
|
895 |
+
'fa fa-viadeo' => array('group' => 'brand'),
|
896 |
+
'fa fa-viadeo-square' => array('group' => 'brand'),
|
897 |
+
'fa fa-vimeo' => array('group' => 'brand'),
|
898 |
+
'fa fa-vimeo-square' => array('group' => 'brand'),
|
899 |
+
'fa fa-vine' => array('group' => 'brand'),
|
900 |
+
'fa fa-vk' => array('group' => 'brand'),
|
901 |
+
'fa fa-wechat' => array('group' => 'brand'),
|
902 |
+
'fa fa-weibo' => array('group' => 'brand'),
|
903 |
+
'fa fa-weixin' => array('group' => 'brand'),
|
904 |
+
'fa fa-whatsapp' => array('group' => 'brand'),
|
905 |
+
'fa fa-wikipedia-w' => array('group' => 'brand'),
|
906 |
+
'fa fa-windows' => array('group' => 'brand'),
|
907 |
+
'fa fa-wordpress' => array('group' => 'brand'),
|
908 |
+
'fa fa-wpbeginner' => array('group' => 'brand'),
|
909 |
+
'fa fa-wpforms' => array('group' => 'brand'),
|
910 |
+
'fa fa-xing' => array('group' => 'brand'),
|
911 |
+
'fa fa-xing-square' => array('group' => 'brand'),
|
912 |
+
'fa fa-y-combinator' => array('group' => 'brand'),
|
913 |
+
'fa fa-y-combinator-square' => array('group' => 'brand'),
|
914 |
+
'fa fa-yahoo' => array('group' => 'brand'),
|
915 |
+
'fa fa-yc' => array('group' => 'brand'),
|
916 |
+
'fa fa-yc-square' => array('group' => 'brand'),
|
917 |
+
'fa fa-yelp' => array('group' => 'brand'),
|
918 |
+
'fa fa-youtube' => array('group' => 'brand'),
|
919 |
+
'fa fa-youtube-square' => array('group' => 'brand'),
|
920 |
+
'fa fa-h-square' => array('group' => 'medical'),
|
921 |
+
'fa fa-hospital-o' => array('group' => 'medical'),
|
922 |
+
'fa fa-medkit' => array('group' => 'medical'),
|
923 |
+
'fa fa-stethoscope' => array('group' => 'medical'),
|
924 |
+
'fa fa-user-md' => array('group' => 'medical'),
|
925 |
),
|
926 |
),
|
927 |
);
|
framework/includes/option-types/wp-editor/class-fw-option-type-wp-editor.php
CHANGED
@@ -6,6 +6,9 @@ class FW_Option_Type_Wp_Editor extends FW_Option_Type {
|
|
6 |
// prevent useless calls of wp_enqueue_*()
|
7 |
private static $enqueued = false;
|
8 |
|
|
|
|
|
|
|
9 |
public function get_type() {
|
10 |
return 'wp-editor';
|
11 |
}
|
@@ -23,13 +26,24 @@ class FW_Option_Type_Wp_Editor extends FW_Option_Type {
|
|
23 |
* Also available
|
24 |
* https://github.com/WordPress/WordPress/blob/4.4.2/wp-includes/class-wp-editor.php#L80-L94
|
25 |
*/
|
|
|
26 |
);
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
29 |
/**
|
30 |
* @internal
|
31 |
*/
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
/**
|
35 |
* @internal
|
@@ -124,13 +138,17 @@ class FW_Option_Type_Wp_Editor extends FW_Option_Type {
|
|
124 |
|
125 |
ksort($_option); // keys must be in same order to obtain the same hash
|
126 |
|
127 |
-
|
|
|
|
|
|
|
|
|
128 |
|
129 |
/**
|
130 |
* This must be unique for option
|
131 |
* it will be in editor html and in javascript tinyMCEPreInit.qtInit[ {$id} ]
|
132 |
*/
|
133 |
-
$id =
|
134 |
|
135 |
unset($_option);
|
136 |
}
|
@@ -184,7 +202,7 @@ class FW_Option_Type_Wp_Editor extends FW_Option_Type {
|
|
184 |
|
185 |
$value = (string) $input_value;
|
186 |
|
187 |
-
if ( $option['wpautop'] === true ) {
|
188 |
$value = preg_replace( "/\n/i", '', wpautop( $value ) );
|
189 |
}
|
190 |
|
6 |
// prevent useless calls of wp_enqueue_*()
|
7 |
private static $enqueued = false;
|
8 |
|
9 |
+
// used in js and html
|
10 |
+
private static $wp_editor_id_prefix = 'fw_wp_editor_';
|
11 |
+
|
12 |
public function get_type() {
|
13 |
return 'wp-editor';
|
14 |
}
|
26 |
* Also available
|
27 |
* https://github.com/WordPress/WordPress/blob/4.4.2/wp-includes/class-wp-editor.php#L80-L94
|
28 |
*/
|
29 |
+
'wpautop' => true,
|
30 |
);
|
31 |
}
|
32 |
|
33 |
+
protected function _init() {
|
34 |
+
add_filter('tiny_mce_before_init', array(__CLASS__, '_filter_disable_default_init'), 10, 2);
|
35 |
+
}
|
36 |
+
|
37 |
/**
|
38 |
* @internal
|
39 |
*/
|
40 |
+
public static function _filter_disable_default_init($mceInit, $editor_id){
|
41 |
+
if (preg_match('/^'. preg_quote(self::$wp_editor_id_prefix, '/') .'/', $editor_id)) {
|
42 |
+
$mceInit['wp_skip_init'] = true;
|
43 |
+
}
|
44 |
+
|
45 |
+
return $mceInit;
|
46 |
+
}
|
47 |
|
48 |
/**
|
49 |
* @internal
|
138 |
|
139 |
ksort($_option); // keys must be in same order to obtain the same hash
|
140 |
|
141 |
+
/**
|
142 |
+
* The same option on enqueue and on modal ajax render can have different "fixed" values
|
143 |
+
* Remove the values that happen to be different
|
144 |
+
*/
|
145 |
+
unset($_option['attr'], $_option['value'], $_option['label'], $_option['desc']);
|
146 |
|
147 |
/**
|
148 |
* This must be unique for option
|
149 |
* it will be in editor html and in javascript tinyMCEPreInit.qtInit[ {$id} ]
|
150 |
*/
|
151 |
+
$id = self::$wp_editor_id_prefix . md5( $id .'|'. json_encode($_option) );
|
152 |
|
153 |
unset($_option);
|
154 |
}
|
202 |
|
203 |
$value = (string) $input_value;
|
204 |
|
205 |
+
if ( isset($option['wpautop']) && $option['wpautop'] === true ) {
|
206 |
$value = preg_replace( "/\n/i", '', wpautop( $value ) );
|
207 |
}
|
208 |
|
framework/languages/fw-es_ES.po
CHANGED
@@ -1,6234 +1,6234 @@
|
|
1 |
-
#
|
2 |
-
# Translators:
|
3 |
-
# Pablo <pablo.olave.77@gmail.com>, 2016
|
4 |
-
msgid ""
|
5 |
-
msgstr ""
|
6 |
-
"Project-Id-Version: Unyson\n"
|
7 |
-
"POT-Creation-Date: 2016-02-02 15:48+0300\n"
|
8 |
-
"PO-Revision-Date: 2016-03-26 22:10+0000\n"
|
9 |
-
"Last-Translator: Pablo <pablo.olave.77@gmail.com>\n"
|
10 |
-
"Language-Team: Spanish (Spain) (http://www.transifex.com/themefuse/unyson/language/es_ES/)\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"Language: es_ES\n"
|
15 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 1.5.4\n"
|
17 |
-
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
19 |
-
"X-Poedit-SearchPath-0: ..\n"
|
20 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
-
|
22 |
-
#: ../framework/manifest.php:5
|
23 |
-
msgid "Unyson"
|
24 |
-
msgstr "Unyson"
|
25 |
-
|
26 |
-
#: ../framework/helpers/class-fw-wp-filesystem.php:43
|
27 |
-
msgid "Cannot connect to Filesystem directly"
|
28 |
-
msgstr "No se puede conectar al sistema de archivos directamente"
|
29 |
-
|
30 |
-
#: ../framework/helpers/class-fw-wp-filesystem.php:271
|
31 |
-
#, php-format
|
32 |
-
msgid "Cannot create directory \"%s\". It must be inside \"%s\""
|
33 |
-
msgstr "No se puede crear el directorio \"%s\". Debe estar dentro de \"%s\""
|
34 |
-
|
35 |
-
#: ../framework/helpers/class-fw-wp-filesystem.php:273
|
36 |
-
msgid "\" or \""
|
37 |
-
msgstr "\" o \""
|
38 |
-
|
39 |
-
#: ../framework/helpers/class-fw-flash-messages.php:95
|
40 |
-
#, php-format
|
41 |
-
msgid "Invalid flash message type: %s"
|
42 |
-
msgstr "Tipo de mensaje flash no válido: %s"
|
43 |
-
|
44 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:185
|
45 |
-
msgid "No items found."
|
46 |
-
msgstr "No se encuentran items"
|
47 |
-
|
48 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:309
|
49 |
-
msgid "Bulk Actions"
|
50 |
-
msgstr "Acciones en lote"
|
51 |
-
|
52 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:319
|
53 |
-
msgid "Apply"
|
54 |
-
msgstr "Aplicar"
|
55 |
-
|
56 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:403
|
57 |
-
msgid "All dates"
|
58 |
-
msgstr "Todas las fechas"
|
59 |
-
|
60 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:416
|
61 |
-
#, php-format
|
62 |
-
msgid "%1$s %2$d"
|
63 |
-
msgstr "%1$s %2$d"
|
64 |
-
|
65 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:432
|
66 |
-
msgid "List View"
|
67 |
-
msgstr "Ver como lista"
|
68 |
-
|
69 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:433
|
70 |
-
msgid "Excerpt View"
|
71 |
-
msgstr "Ver como extracto"
|
72 |
-
|
73 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:459
|
74 |
-
#, php-format
|
75 |
-
msgid "%s pending"
|
76 |
-
msgstr "pendiente %s"
|
77 |
-
|
78 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:714
|
79 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:33
|
80 |
-
msgid "Select All"
|
81 |
-
msgstr "Seleccionar todo"
|
82 |
-
|
83 |
-
#: ../framework/helpers/general.php:1150
|
84 |
-
msgid "year"
|
85 |
-
msgstr "año"
|
86 |
-
|
87 |
-
#: ../framework/helpers/general.php:1151
|
88 |
-
msgid "years"
|
89 |
-
msgstr "años"
|
90 |
-
|
91 |
-
#: ../framework/helpers/general.php:1153
|
92 |
-
msgid "month"
|
93 |
-
msgstr "mes"
|
94 |
-
|
95 |
-
#: ../framework/helpers/general.php:1154
|
96 |
-
msgid "months"
|
97 |
-
msgstr "meses"
|
98 |
-
|
99 |
-
#: ../framework/helpers/general.php:1156
|
100 |
-
msgid "week"
|
101 |
-
msgstr "semana"
|
102 |
-
|
103 |
-
#: ../framework/helpers/general.php:1157
|
104 |
-
msgid "weeks"
|
105 |
-
msgstr "semanas"
|
106 |
-
|
107 |
-
#: ../framework/helpers/general.php:1159
|
108 |
-
msgid "day"
|
109 |
-
msgstr "día"
|
110 |
-
|
111 |
-
#: ../framework/helpers/general.php:1160
|
112 |
-
msgid "days"
|
113 |
-
msgstr "días"
|
114 |
-
|
115 |
-
#: ../framework/helpers/general.php:1162
|
116 |
-
msgid "hour"
|
117 |
-
msgstr "hora"
|
118 |
-
|
119 |
-
#: ../framework/helpers/general.php:1163
|
120 |
-
msgid "hours"
|
121 |
-
msgstr "horas"
|
122 |
-
|
123 |
-
#: ../framework/helpers/general.php:1165
|
124 |
-
msgid "minute"
|
125 |
-
msgstr "minuto"
|
126 |
-
|
127 |
-
#: ../framework/helpers/general.php:1166
|
128 |
-
msgid "minutes"
|
129 |
-
msgstr "minutos"
|
130 |
-
|
131 |
-
#: ../framework/helpers/general.php:1168
|
132 |
-
msgid "second"
|
133 |
-
msgstr "segundo"
|
134 |
-
|
135 |
-
#: ../framework/helpers/general.php:1169
|
136 |
-
msgid "seconds"
|
137 |
-
msgstr "segundos"
|
138 |
-
|
139 |
-
#: ../framework/helpers/general.php:1558
|
140 |
-
msgid "Maximum stack depth exceeded"
|
141 |
-
msgstr "Profundidad máxima de grupo excedida"
|
142 |
-
|
143 |
-
#: ../framework/helpers/general.php:1561
|
144 |
-
msgid "Underflow or the modes mismatch"
|
145 |
-
msgstr "Flujo inferior o modos no coinciden"
|
146 |
-
|
147 |
-
#: ../framework/helpers/general.php:1564
|
148 |
-
msgid "Unexpected control character found"
|
149 |
-
msgstr "Control de carácter inesperado encontrado"
|
150 |
-
|
151 |
-
#: ../framework/helpers/general.php:1567
|
152 |
-
msgid "Syntax error, malformed JSON"
|
153 |
-
msgstr "Error de sintaxis, JSON malformado"
|
154 |
-
|
155 |
-
#: ../framework/helpers/general.php:1570
|
156 |
-
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
157 |
-
msgstr "Caracteres UTF-8 malformados, posiblemente codificación incorrecta"
|
158 |
-
|
159 |
-
#: ../framework/helpers/general.php:1573
|
160 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:550
|
161 |
-
msgid "Unknown error"
|
162 |
-
msgstr "Error desconocido"
|
163 |
-
|
164 |
-
#: ../framework/helpers/class-fw-form.php:80
|
165 |
-
#, php-format
|
166 |
-
msgid "Form with id \"%s\" was already defined"
|
167 |
-
msgstr "Formulario id \"%s\"ya se encuentra definido"
|
168 |
-
|
169 |
-
#: ../framework/helpers/class-fw-form.php:168
|
170 |
-
msgid "Nonce verification failed"
|
171 |
-
msgstr "Mientras la verificación ha fallado"
|
172 |
-
|
173 |
-
#: ../framework/helpers/class-fw-form.php:331
|
174 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/views/form.php:13
|
175 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:66
|
176 |
-
msgid "Submit"
|
177 |
-
msgstr "Enviar"
|
178 |
-
|
179 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:285
|
180 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:602
|
181 |
-
msgid "Cannot delete: "
|
182 |
-
msgstr "No se puede eliminar: "
|
183 |
-
|
184 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:292
|
185 |
-
msgid "Cannot create: "
|
186 |
-
msgstr "No se puede crear"
|
187 |
-
|
188 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:370
|
189 |
-
msgid "Cannot remove old temporary directory: "
|
190 |
-
msgstr "No se puede remover el directorio temporal"
|
191 |
-
|
192 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:376
|
193 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:572
|
194 |
-
msgid "Cannot create directory: "
|
195 |
-
msgstr "No se puede crear el directorio: "
|
196 |
-
|
197 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:381
|
198 |
-
#, php-format
|
199 |
-
msgid "Downloading the %s..."
|
200 |
-
msgstr "Descargando... %s"
|
201 |
-
|
202 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:386
|
203 |
-
#, php-format
|
204 |
-
msgid "Cannot download the %s."
|
205 |
-
msgstr "No se puede descargar archivo zip %s"
|
206 |
-
|
207 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:396
|
208 |
-
#, php-format
|
209 |
-
msgid "Installing the %s..."
|
210 |
-
msgstr "Instalando %s"
|
211 |
-
|
212 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:402
|
213 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:431
|
214 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:531
|
215 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:552
|
216 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:582
|
217 |
-
msgid "Cannot access directory: "
|
218 |
-
msgstr "No se puede acceder al directorio"
|
219 |
-
|
220 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:421
|
221 |
-
msgid "Cannot remove: "
|
222 |
-
msgstr "No se puede remover"
|
223 |
-
|
224 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:456
|
225 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:522
|
226 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:628
|
227 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:652
|
228 |
-
#, php-format
|
229 |
-
msgid "Cannot move \"%s\" to \"%s\""
|
230 |
-
msgstr "No se puede mover \"%s\" a \"%s\""
|
231 |
-
|
232 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:472
|
233 |
-
#, php-format
|
234 |
-
msgid "Cannot merge \"%s\" with \"%s\""
|
235 |
-
msgstr "No se puede unir \"%s\" con \"%s\""
|
236 |
-
|
237 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:485
|
238 |
-
#, php-format
|
239 |
-
msgid "The %s has been successfully updated."
|
240 |
-
msgstr "Se ha actualizado correctamente %s"
|
241 |
-
|
242 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:492
|
243 |
-
#, php-format
|
244 |
-
msgid "Cannot remove temporary directory \"%s\"."
|
245 |
-
msgstr "No se puede remover el directorio temporal \"%s\"."
|
246 |
-
|
247 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:672
|
248 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:740
|
249 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:808
|
250 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:930
|
251 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1427
|
252 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1837
|
253 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2054
|
254 |
-
msgid "Invalid nonce."
|
255 |
-
msgstr "Mientras tanto no es válido"
|
256 |
-
|
257 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:683
|
258 |
-
msgid "Framework Update"
|
259 |
-
msgstr "Actualizar Framework"
|
260 |
-
|
261 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:699
|
262 |
-
msgid "Failed to get framework latest version."
|
263 |
-
msgstr "Ha fallado obtener la última versión del framework."
|
264 |
-
|
265 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:716
|
266 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:360
|
267 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:374
|
268 |
-
#: ../framework/extensions/update/views/updates-list.php:10
|
269 |
-
#: ../framework/core/class-fw-manifest.php:353
|
270 |
-
msgid "Framework"
|
271 |
-
msgstr "Framework"
|
272 |
-
|
273 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:751
|
274 |
-
msgid "Theme Update"
|
275 |
-
msgstr "Actualizar Tema"
|
276 |
-
|
277 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:767
|
278 |
-
msgid "Failed to get theme latest version."
|
279 |
-
msgstr "Ha fallado obtener la última versión del tema."
|
280 |
-
|
281 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:784
|
282 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:393
|
283 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:407
|
284 |
-
msgid "Theme"
|
285 |
-
msgstr "Tema"
|
286 |
-
|
287 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:817
|
288 |
-
msgid "Please check the extensions you want to update."
|
289 |
-
msgstr "Por favor marque las extensiones que quiere actualizar."
|
290 |
-
|
291 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:841
|
292 |
-
msgid "Extensions Update"
|
293 |
-
msgstr "Actualizar Extensiones"
|
294 |
-
|
295 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:879
|
296 |
-
msgid "No extensions updates found."
|
297 |
-
msgstr "No se encuentran actualizaciones disponibles."
|
298 |
-
|
299 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:886
|
300 |
-
#, php-format
|
301 |
-
msgid "Extension \"%s\" does not exist or is disabled."
|
302 |
-
msgstr "Extensión \"%s\" no existe o está deshabilitada."
|
303 |
-
|
304 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:893
|
305 |
-
#, php-format
|
306 |
-
msgid "No update found for the \"%s\" extension."
|
307 |
-
msgstr "No existen actualizaciones para la extensión \"%s\"."
|
308 |
-
|
309 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:915
|
310 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:426
|
311 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:440
|
312 |
-
#, php-format
|
313 |
-
msgid "%s extension"
|
314 |
-
msgstr "extensión \"%s\" "
|
315 |
-
|
316 |
-
#: ../framework/extensions/update/manifest.php:5
|
317 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/fullscreen.php:82
|
318 |
-
msgid "Update"
|
319 |
-
msgstr "Actualizar"
|
320 |
-
|
321 |
-
#: ../framework/extensions/update/manifest.php:6
|
322 |
-
msgid "Keep you framework, extensions and theme up to date."
|
323 |
-
msgstr "Mantenga su framework y extensiones actualizadas"
|
324 |
-
|
325 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:91
|
326 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:232
|
327 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2439
|
328 |
-
msgid "Github error:"
|
329 |
-
msgstr "Github error: "
|
330 |
-
|
331 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:100
|
332 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:241
|
333 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2446
|
334 |
-
#, php-format
|
335 |
-
msgid "Failed to access Github repository \"%s\" releases. (Response code: %d)"
|
336 |
-
msgstr "Ha fallado el acceso a publicaciones del repositorio Github \"%s\". (Código de respuesta: %d)"
|
337 |
-
|
338 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:108
|
339 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:249
|
340 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2462
|
341 |
-
#, php-format
|
342 |
-
msgid "Failed to access Github repository \"%s\" releases."
|
343 |
-
msgstr "Ha fallado el acceso a publicaciones del repositorio Github \"%s\"."
|
344 |
-
|
345 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:122
|
346 |
-
#, php-format
|
347 |
-
msgid "No releases found in repository \"%s\"."
|
348 |
-
msgstr "No hay publicaciones encontradas en repositorio \"%s\"."
|
349 |
-
|
350 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:143
|
351 |
-
#, php-format
|
352 |
-
msgid ""
|
353 |
-
"%s manifest has invalid \"github_update\" parameter. Please use "
|
354 |
-
"\"user/repo\" format."
|
355 |
-
msgstr "Manifiesto %s es un parámetro inválido para \"github_update\". Utilice el formato \"user/repo\""
|
356 |
-
|
357 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:171
|
358 |
-
#, php-format
|
359 |
-
msgid "Failed to fetch %s latest version from github \"%s\"."
|
360 |
-
msgstr "Ha fallado recuperar la última versión %s de Github \"%s\"."
|
361 |
-
|
362 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:264
|
363 |
-
#, php-format
|
364 |
-
msgid "%s github repository \"%s\" does not have the \"%s\" release."
|
365 |
-
msgstr "Github %s repositorio \"%s\" no tiene publicación \"%s\"."
|
366 |
-
|
367 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:284
|
368 |
-
#, php-format
|
369 |
-
msgid "Cannot download %s zip."
|
370 |
-
msgstr "No se puede descargar archivo zip %s"
|
371 |
-
|
372 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:297
|
373 |
-
#, php-format
|
374 |
-
msgid "Cannot save %s zip."
|
375 |
-
msgstr "No se puede guardar archivo zip %s"
|
376 |
-
|
377 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:316
|
378 |
-
#, php-format
|
379 |
-
msgid "Cannot remove %s zip."
|
380 |
-
msgstr "No se puede remover archivo zip %s"
|
381 |
-
|
382 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:325
|
383 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2566
|
384 |
-
msgid "Cannot access the unzipped directory files."
|
385 |
-
msgstr "No se puede acceder al directorio de archivos extraídos."
|
386 |
-
|
387 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:341
|
388 |
-
#, php-format
|
389 |
-
msgid "The unzipped %s directory not found."
|
390 |
-
msgstr "No se encuentra el directorio de archivos extraídos %s"
|
391 |
-
|
392 |
-
#: ../framework/extensions/update/views/updates-list.php:12
|
393 |
-
#, php-format
|
394 |
-
msgid "You have the latest version of %s."
|
395 |
-
msgstr "Usted tiene la última versión de %s"
|
396 |
-
|
397 |
-
#: ../framework/extensions/update/views/updates-list.php:25
|
398 |
-
msgid "Update Framework"
|
399 |
-
msgstr "Actualizar Framework"
|
400 |
-
|
401 |
-
#: ../framework/extensions/update/views/updates-list.php:37
|
402 |
-
msgid "Your theme is up to date."
|
403 |
-
msgstr "Su tema se encuentra actualizado"
|
404 |
-
|
405 |
-
#: ../framework/extensions/update/views/updates-list.php:50
|
406 |
-
msgid "Update Theme"
|
407 |
-
msgstr "Actualizar Tema"
|
408 |
-
|
409 |
-
#: ../framework/extensions/update/views/updates-list.php:60
|
410 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:844
|
411 |
-
#, php-format
|
412 |
-
msgid "%s Extensions"
|
413 |
-
msgstr "Extensiones %s"
|
414 |
-
|
415 |
-
#: ../framework/extensions/update/views/updates-list.php:62
|
416 |
-
#, php-format
|
417 |
-
msgid "You have the latest version of %s Extensions."
|
418 |
-
msgstr "Usted tiene la última versión de sus extensiones %s"
|
419 |
-
|
420 |
-
#: ../framework/extensions/update/views/updates-list.php:80
|
421 |
-
#: ../framework/extensions/update/views/updates-list.php:95
|
422 |
-
#: ../framework/extensions/update/views/updates-list.php:100
|
423 |
-
msgid "Update Extensions"
|
424 |
-
msgstr "Actualizar Extensiones"
|
425 |
-
|
426 |
-
#: ../framework/extensions/update/views/updates-list.php:99
|
427 |
-
msgid "New extensions updates available."
|
428 |
-
msgstr "Nuevas actualizaciones de extensiones disponibles"
|
429 |
-
|
430 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:16
|
431 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:14
|
432 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:16
|
433 |
-
msgid "Go to updates page"
|
434 |
-
msgstr "Ir a la página de actualizaciones"
|
435 |
-
|
436 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:19
|
437 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:17
|
438 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:19
|
439 |
-
msgid "Return to Updates page"
|
440 |
-
msgstr "Volver a la página de actualizaciones"
|
441 |
-
|
442 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:84
|
443 |
-
#, php-format
|
444 |
-
msgid "You have version %s installed. Update to %s."
|
445 |
-
msgstr "Usted tiene la versión %s instalada. Actualice %s"
|
446 |
-
|
447 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:126
|
448 |
-
msgid "No Extensions for update."
|
449 |
-
msgstr "Actualizar Extensiones"
|
450 |
-
|
451 |
-
#: ../framework/extensions/portfolio/manifest.php:7
|
452 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:260
|
453 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:72
|
454 |
-
msgid "Portfolio"
|
455 |
-
msgstr "Portafolios"
|
456 |
-
|
457 |
-
#: ../framework/extensions/portfolio/manifest.php:9
|
458 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:73
|
459 |
-
msgid ""
|
460 |
-
"This extension will add a fully fledged portfolio module that will let you "
|
461 |
-
"display your projects using the built in portfolio pages."
|
462 |
-
msgstr "Esta extensión añade un completo módulo de proyectos que le permitirá mostrar sus proyectos utilizando las páginas de portafolios predefinidas."
|
463 |
-
|
464 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:115
|
465 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
466 |
-
msgid "Project"
|
467 |
-
msgstr "Proyecto"
|
468 |
-
|
469 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:116
|
470 |
-
msgid "Projects"
|
471 |
-
msgstr "Proyectos"
|
472 |
-
|
473 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:123
|
474 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:63
|
475 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:127
|
476 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:57
|
477 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:58
|
478 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:76
|
479 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:8
|
480 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:32
|
481 |
-
msgid "Add New"
|
482 |
-
msgstr "Añadir Nuevo"
|
483 |
-
|
484 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:124
|
485 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:198
|
486 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:64
|
487 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:128
|
488 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:77
|
489 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:131
|
490 |
-
#, php-format
|
491 |
-
msgid "Add New %s"
|
492 |
-
msgstr "Añadir nuevo %s"
|
493 |
-
|
494 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:125
|
495 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:129
|
496 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:89
|
497 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:76
|
498 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:88
|
499 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:86
|
500 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:68
|
501 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:34
|
502 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:50
|
503 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:110
|
504 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:45
|
505 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:37
|
506 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:73
|
507 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:81
|
508 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:55
|
509 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:57
|
510 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:50
|
511 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:54
|
512 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:52
|
513 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:53
|
514 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:53
|
515 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:52
|
516 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:52
|
517 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:50
|
518 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:78
|
519 |
-
#: ../framework/includes/option-types/popup/class-fw-option-type-popup.php:158
|
520 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:151
|
521 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:177
|
522 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:161
|
523 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:187
|
524 |
-
msgid "Edit"
|
525 |
-
msgstr "Editar"
|
526 |
-
|
527 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:126
|
528 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:196
|
529 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:65
|
530 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:66
|
531 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:130
|
532 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:192
|
533 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:59
|
534 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:60
|
535 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:79
|
536 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:129
|
537 |
-
#, php-format
|
538 |
-
msgid "Edit %s"
|
539 |
-
msgstr "Editar %s"
|
540 |
-
|
541 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:127
|
542 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:67
|
543 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:131
|
544 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:61
|
545 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:80
|
546 |
-
#, php-format
|
547 |
-
msgid "New %s"
|
548 |
-
msgstr "Nuevo %s"
|
549 |
-
|
550 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:128
|
551 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:193
|
552 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:68
|
553 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:132
|
554 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:189
|
555 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:62
|
556 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:81
|
557 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:126
|
558 |
-
#, php-format
|
559 |
-
msgid "All %s"
|
560 |
-
msgstr "Todos los %s"
|
561 |
-
|
562 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:129
|
563 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:130
|
564 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:69
|
565 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:70
|
566 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:133
|
567 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:134
|
568 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:63
|
569 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:64
|
570 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:82
|
571 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:83
|
572 |
-
#, php-format
|
573 |
-
msgid "View %s"
|
574 |
-
msgstr "Ver %s"
|
575 |
-
|
576 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:131
|
577 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:192
|
578 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:71
|
579 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:135
|
580 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:65
|
581 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:84
|
582 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:125
|
583 |
-
#, php-format
|
584 |
-
msgid "Search %s"
|
585 |
-
msgstr "Buscar %s"
|
586 |
-
|
587 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:132
|
588 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:72
|
589 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:136
|
590 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:66
|
591 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:85
|
592 |
-
#, php-format
|
593 |
-
msgid "No %s Found"
|
594 |
-
msgstr "No se encuentran %s"
|
595 |
-
|
596 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:133
|
597 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:73
|
598 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:137
|
599 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:67
|
600 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:86
|
601 |
-
#, php-format
|
602 |
-
msgid "No %s Found In Trash"
|
603 |
-
msgstr "No se encuentran %s en la papelera"
|
604 |
-
|
605 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:136
|
606 |
-
msgid "Create a portfolio item"
|
607 |
-
msgstr "Crear un item en portafolio"
|
608 |
-
|
609 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:183
|
610 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:116
|
611 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:268
|
612 |
-
msgid "Category"
|
613 |
-
msgstr "Categoría"
|
614 |
-
|
615 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:184
|
616 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:117
|
617 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:168
|
618 |
-
msgid "Categories"
|
619 |
-
msgstr "Categorías"
|
620 |
-
|
621 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:194
|
622 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:190
|
623 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:127
|
624 |
-
#, php-format
|
625 |
-
msgid "Parent %s"
|
626 |
-
msgstr "Principal %s"
|
627 |
-
|
628 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:195
|
629 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:191
|
630 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:128
|
631 |
-
#, php-format
|
632 |
-
msgid "Parent %s:"
|
633 |
-
msgstr "Principal %s"
|
634 |
-
|
635 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:197
|
636 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:193
|
637 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:130
|
638 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:234
|
639 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:272
|
640 |
-
#, php-format
|
641 |
-
msgid "Update %s"
|
642 |
-
msgstr "Actualizar %s"
|
643 |
-
|
644 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:199
|
645 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:195
|
646 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:132
|
647 |
-
#, php-format
|
648 |
-
msgid "New %s Name"
|
649 |
-
msgstr "Nuevo nombre de %s"
|
650 |
-
|
651 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:200
|
652 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:196
|
653 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:133
|
654 |
-
#, php-format
|
655 |
-
msgid "%s"
|
656 |
-
msgstr "%s"
|
657 |
-
|
658 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
659 |
-
msgid "Gallery"
|
660 |
-
msgstr "Galería"
|
661 |
-
|
662 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:240
|
663 |
-
msgid "Set project gallery"
|
664 |
-
msgstr "Establecer galería de proyecto"
|
665 |
-
|
666 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:241
|
667 |
-
msgid "Edit project gallery"
|
668 |
-
msgstr "Editar galería de proyecto"
|
669 |
-
|
670 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:271
|
671 |
-
msgid "Project Cover Image"
|
672 |
-
msgstr "Imagen de portada del proyecto"
|
673 |
-
|
674 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:287
|
675 |
-
msgid "Edit this item"
|
676 |
-
msgstr "Editar Item"
|
677 |
-
|
678 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:348
|
679 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:361
|
680 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:320
|
681 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:333
|
682 |
-
msgid "View all categories"
|
683 |
-
msgstr "Ver todas las categorías"
|
684 |
-
|
685 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:381
|
686 |
-
msgid "Cover Image"
|
687 |
-
msgstr "Imagen de portada"
|
688 |
-
|
689 |
-
#: ../framework/extensions/seo/settings-options.php:17
|
690 |
-
#: ../framework/extensions/social/settings-options.php:11
|
691 |
-
msgid "General"
|
692 |
-
msgstr "General"
|
693 |
-
|
694 |
-
#: ../framework/extensions/seo/settings-options.php:21
|
695 |
-
#: ../framework/extensions/social/settings-options.php:15
|
696 |
-
msgid "General Settings"
|
697 |
-
msgstr "Configuraciones generales"
|
698 |
-
|
699 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:89
|
700 |
-
msgid "Site name"
|
701 |
-
msgstr "Nombre del sitio"
|
702 |
-
|
703 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:95
|
704 |
-
msgid "Site description"
|
705 |
-
msgstr "Descripción del sitio"
|
706 |
-
|
707 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:101
|
708 |
-
msgid "Current time"
|
709 |
-
msgstr "Hora actual"
|
710 |
-
|
711 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:107
|
712 |
-
msgid "Current date"
|
713 |
-
msgstr "Fecha actual"
|
714 |
-
|
715 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:113
|
716 |
-
msgid "Current month"
|
717 |
-
msgstr "Mes actual"
|
718 |
-
|
719 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:119
|
720 |
-
msgid "Current year"
|
721 |
-
msgstr "Año actual"
|
722 |
-
|
723 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:125
|
724 |
-
msgid "Date of the post/page"
|
725 |
-
msgstr "Fecha del post/página"
|
726 |
-
|
727 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:131
|
728 |
-
msgid "Title of the post/page/term"
|
729 |
-
msgstr "Título del post/página/término"
|
730 |
-
|
731 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:137
|
732 |
-
msgid "Excerpt of the current post, of auto-generate if it is not set"
|
733 |
-
msgstr "Resumen del post actual, si no se ha generado es automático"
|
734 |
-
|
735 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:143
|
736 |
-
msgid "Excerpt of the current post, without auto-generation"
|
737 |
-
msgstr "Resumen del post actual, sin autogenerar"
|
738 |
-
|
739 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:149
|
740 |
-
msgid "Post tags, separated by coma"
|
741 |
-
msgstr "Etiquetas de post, separadas por coma"
|
742 |
-
|
743 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:155
|
744 |
-
msgid "Post categories, separated by coma"
|
745 |
-
msgstr "Categorías de post, separadas por coma"
|
746 |
-
|
747 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:161
|
748 |
-
msgid "Category/tag/term description"
|
749 |
-
msgstr "Descripción de categoría/etiqueta/término"
|
750 |
-
|
751 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:167
|
752 |
-
msgid "Term title"
|
753 |
-
msgstr "Título de término"
|
754 |
-
|
755 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:173
|
756 |
-
msgid "Post modified time"
|
757 |
-
msgstr "Hora de modificación del post"
|
758 |
-
|
759 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:179
|
760 |
-
msgid "Post/page id"
|
761 |
-
msgstr "Post/página id "
|
762 |
-
|
763 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:185
|
764 |
-
msgid "Post/page author \"nicename\""
|
765 |
-
msgstr "Nombre de autor del Post/página"
|
766 |
-
|
767 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:191
|
768 |
-
msgid "Post/page author id"
|
769 |
-
msgstr "ID de autor del post/página"
|
770 |
-
|
771 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:197
|
772 |
-
msgid "Search phrase in search page"
|
773 |
-
msgstr "Buscar frase en búsqueda de página"
|
774 |
-
|
775 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:203
|
776 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:209
|
777 |
-
msgid "Page number"
|
778 |
-
msgstr "Número de página"
|
779 |
-
|
780 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:215
|
781 |
-
msgid "Attachment caption"
|
782 |
-
msgstr "Leyenda (subtítulo) de adjunto"
|
783 |
-
|
784 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:435
|
785 |
-
#: ../framework/extensions/seo/manifest.php:7
|
786 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:120
|
787 |
-
msgid "SEO"
|
788 |
-
msgstr "SEO"
|
789 |
-
|
790 |
-
#: ../framework/extensions/seo/manifest.php:9
|
791 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:121
|
792 |
-
msgid ""
|
793 |
-
"This extension will enable you to have a fully optimized WordPress website "
|
794 |
-
"by adding optimized meta titles, keywords and descriptions."
|
795 |
-
msgstr "Esta extensión añade un completo módulo para optimizar su sitio web en Wordpress, añadiendo títulos (<title>,<meta>) optimizados, palabras claves y descripciones."
|
796 |
-
|
797 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:22
|
798 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:310
|
799 |
-
msgid "Titles & Meta"
|
800 |
-
msgstr "Títulos & Meta"
|
801 |
-
|
802 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:26
|
803 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:6
|
804 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:9
|
805 |
-
msgid "Homepage"
|
806 |
-
msgstr "Página principal"
|
807 |
-
|
808 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:30
|
809 |
-
msgid "Homepage Title"
|
810 |
-
msgstr "Título de página principal"
|
811 |
-
|
812 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:31
|
813 |
-
msgid "Set homepage title format"
|
814 |
-
msgstr "Establecer formato de título para página de inicio"
|
815 |
-
|
816 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:36
|
817 |
-
msgid "Homepage Description"
|
818 |
-
msgstr "Descripción de la página de inicio "
|
819 |
-
|
820 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:37
|
821 |
-
msgid "Set homepage description"
|
822 |
-
msgstr "Establecer descripción para página de inicio"
|
823 |
-
|
824 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:44
|
825 |
-
msgid "Homepage Meta Keywords"
|
826 |
-
msgstr "Palabras claves para página de inicio"
|
827 |
-
|
828 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:45
|
829 |
-
msgid "Set homepage meta keywords"
|
830 |
-
msgstr "Establecer palabras claves para página de inicio"
|
831 |
-
|
832 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:54
|
833 |
-
msgid "Custom Posts"
|
834 |
-
msgstr "Post personalizados (Custom posts)"
|
835 |
-
|
836 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:59
|
837 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:111
|
838 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:120
|
839 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:7
|
840 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:15
|
841 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:12
|
842 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:8
|
843 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:15
|
844 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:56
|
845 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:480
|
846 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:62
|
847 |
-
msgid "Title"
|
848 |
-
msgstr "Título"
|
849 |
-
|
850 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:60
|
851 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:112
|
852 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:287
|
853 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:315
|
854 |
-
msgid "Set title format"
|
855 |
-
msgstr "Establecer formato de título"
|
856 |
-
|
857 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:63
|
858 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:74
|
859 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:87
|
860 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:115
|
861 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:126
|
862 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:139
|
863 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:247
|
864 |
-
msgid "Here are some tags examples:"
|
865 |
-
msgstr "Aquí hay algunos ejemplos de etiquetas: "
|
866 |
-
|
867 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:70
|
868 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:122
|
869 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:320
|
870 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:66
|
871 |
-
msgid "Description"
|
872 |
-
msgstr "scripción"
|
873 |
-
|
874 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:71
|
875 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:123
|
876 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:293
|
877 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:321
|
878 |
-
msgid "Set description format"
|
879 |
-
msgstr "Establecer formato de descripción"
|
880 |
-
|
881 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:83
|
882 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:135
|
883 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:328
|
884 |
-
msgid "Meta Keywords"
|
885 |
-
msgstr "Palabras claves (Meta Keywords)"
|
886 |
-
|
887 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:84
|
888 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:136
|
889 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:329
|
890 |
-
msgid "Set meta keywords"
|
891 |
-
msgstr "Establecer palabras claves"
|
892 |
-
|
893 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:96
|
894 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:148
|
895 |
-
msgid "Meta Robots"
|
896 |
-
msgstr "Robots (Meta Robots)"
|
897 |
-
|
898 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:97
|
899 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:149
|
900 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:188
|
901 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:227
|
902 |
-
msgid "noindex, follow"
|
903 |
-
msgstr "noindex, follow"
|
904 |
-
|
905 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:105
|
906 |
-
msgid "Taxonomies"
|
907 |
-
msgstr "Taxonomías"
|
908 |
-
|
909 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:158
|
910 |
-
msgid "Other"
|
911 |
-
msgstr "Otro (a)"
|
912 |
-
|
913 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:165
|
914 |
-
msgid "Author Page Title"
|
915 |
-
msgstr "Título de la página de autor"
|
916 |
-
|
917 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:166
|
918 |
-
msgid "Set author page title format"
|
919 |
-
msgstr "Establecer formato de la página de autor"
|
920 |
-
|
921 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:171
|
922 |
-
msgid "Author Page Description"
|
923 |
-
msgstr "Descripción de la página de autor"
|
924 |
-
|
925 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:172
|
926 |
-
msgid "Set author page description"
|
927 |
-
msgstr "Establecer descripción de la página de autor"
|
928 |
-
|
929 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:179
|
930 |
-
msgid "Author Meta Keywords"
|
931 |
-
msgstr "Palabras claves para autor"
|
932 |
-
|
933 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:180
|
934 |
-
msgid "Set author page meta keywords"
|
935 |
-
msgstr "Establecer palabras claves para autor"
|
936 |
-
|
937 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:187
|
938 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:226
|
939 |
-
msgid "Metarobots"
|
940 |
-
msgstr "Metarobots"
|
941 |
-
|
942 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:193
|
943 |
-
msgid "Disable Author Archives"
|
944 |
-
msgstr "Deshabilitar archivo de autor"
|
945 |
-
|
946 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:194
|
947 |
-
msgid "Disable Author archives SEO settings"
|
948 |
-
msgstr "Deshabilitar configuración SEO para archivo de autor"
|
949 |
-
|
950 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:204
|
951 |
-
msgid "Date Achieves Title"
|
952 |
-
msgstr "Título de la fecha de alcance"
|
953 |
-
|
954 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:205
|
955 |
-
msgid "Set date achieves title format"
|
956 |
-
msgstr "Establecer título de la fecha de alcance"
|
957 |
-
|
958 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:210
|
959 |
-
msgid "Date Achieves Description"
|
960 |
-
msgstr "Descripción de la fecha de alcance"
|
961 |
-
|
962 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:211
|
963 |
-
msgid "Set date achieves description"
|
964 |
-
msgstr "Establecer descripción de la fecha de alcance"
|
965 |
-
|
966 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:218
|
967 |
-
msgid "Date achieves Meta Keywords"
|
968 |
-
msgstr "Establecer palabras claves para la fecha de alcance"
|
969 |
-
|
970 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:219
|
971 |
-
msgid "Set date achieves meta keywords"
|
972 |
-
msgstr "Establecer alcance de fecha para palabras claves"
|
973 |
-
|
974 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:232
|
975 |
-
msgid "Disable Date Archives"
|
976 |
-
msgstr "Deshabilitar la fecha para archivo"
|
977 |
-
|
978 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:233
|
979 |
-
msgid "Disable date archives SEO settings"
|
980 |
-
msgstr "Deshabilitar configuraciones SEO para archivo de fechas"
|
981 |
-
|
982 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:243
|
983 |
-
msgid "Search Page Title"
|
984 |
-
msgstr "Título de la página de búsqueda"
|
985 |
-
|
986 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:244
|
987 |
-
msgid "Set search page title format"
|
988 |
-
msgstr "Formato del título de la página de búsqueda"
|
989 |
-
|
990 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:259
|
991 |
-
msgid "404 Page Title"
|
992 |
-
msgstr "Título de página 404"
|
993 |
-
|
994 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:260
|
995 |
-
msgid "Set 404 page title format"
|
996 |
-
msgstr "Establecer formato del título de página 404"
|
997 |
-
|
998 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:262
|
999 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:8
|
1000 |
-
msgid "404 Not Found"
|
1001 |
-
msgstr "404 no se encuentra"
|
1002 |
-
|
1003 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:286
|
1004 |
-
msgid "SEO Title"
|
1005 |
-
msgstr "Título SEO"
|
1006 |
-
|
1007 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:292
|
1008 |
-
msgid "SEO Description"
|
1009 |
-
msgstr "Descipción SEO"
|
1010 |
-
|
1011 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:314
|
1012 |
-
msgid "Page Title"
|
1013 |
-
msgstr "Título de página"
|
1014 |
-
|
1015 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:356
|
1016 |
-
msgid "Use Meta Keywords"
|
1017 |
-
msgstr "Utilizar palabras claves"
|
1018 |
-
|
1019 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:357
|
1020 |
-
msgid "Allow the use of meta keywords in posts and taxonomies"
|
1021 |
-
msgstr "Habilitar el uso de palabras claves en posts y taxonomías"
|
1022 |
-
|
1023 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:33
|
1024 |
-
msgid "Google Webmasters"
|
1025 |
-
msgstr "Google Webmasters"
|
1026 |
-
|
1027 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:34
|
1028 |
-
msgid "Insert Google Webmasters verification code"
|
1029 |
-
msgstr "Insertar código de verificación de Google Webmasters"
|
1030 |
-
|
1031 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:41
|
1032 |
-
msgid "Bing Webmasters"
|
1033 |
-
msgstr "Bing Webmasters"
|
1034 |
-
|
1035 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:42
|
1036 |
-
msgid "Insert Bing Webmasters verification code"
|
1037 |
-
msgstr "Insertar código de verificación de Bing Webmasters"
|
1038 |
-
|
1039 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:80
|
1040 |
-
msgid "Webmasters"
|
1041 |
-
msgstr "Webmasters"
|
1042 |
-
|
1043 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:89
|
1044 |
-
#, php-format
|
1045 |
-
msgid "Webmaster %s already exists"
|
1046 |
-
msgstr "Webmaster %s ya existe"
|
1047 |
-
|
1048 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:634
|
1049 |
-
msgid "Google"
|
1050 |
-
msgstr "Google"
|
1051 |
-
|
1052 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:638
|
1053 |
-
msgid "Bing"
|
1054 |
-
msgstr "Bing"
|
1055 |
-
|
1056 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:19
|
1057 |
-
msgid "Check if you want to exclude this page"
|
1058 |
-
msgstr "Marque si quiere excluir esta página"
|
1059 |
-
|
1060 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:40
|
1061 |
-
msgid "Check if you want to exclude this category"
|
1062 |
-
msgstr "Marque si quiere excluir esta categoría"
|
1063 |
-
|
1064 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:57
|
1065 |
-
msgid "Sitemap"
|
1066 |
-
msgstr "Mapa del sitio"
|
1067 |
-
|
1068 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:68
|
1069 |
-
msgid "View Sitemap"
|
1070 |
-
msgstr "Ver mapa del sitio"
|
1071 |
-
|
1072 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:69
|
1073 |
-
msgid "Press button to view sitemap file"
|
1074 |
-
msgstr "Presione este botón para ver archivo sitemap"
|
1075 |
-
|
1076 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:71
|
1077 |
-
msgid "XML Sitemap"
|
1078 |
-
msgstr "XML Sitemap"
|
1079 |
-
|
1080 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:81
|
1081 |
-
msgid "Search Engines"
|
1082 |
-
msgstr "Motores de búsqueda"
|
1083 |
-
|
1084 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:83
|
1085 |
-
msgid "After adding content the extension will automatically ping to:"
|
1086 |
-
msgstr "Después de añadir contenido la extensión realiza ping automático a:"
|
1087 |
-
|
1088 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:93
|
1089 |
-
msgid "Exclude Pages"
|
1090 |
-
msgstr "Excluir páginas"
|
1091 |
-
|
1092 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:95
|
1093 |
-
msgid "Please check the pages you do not want to include in sitemap"
|
1094 |
-
msgstr "Por favor marque las páginas que quiere excluir en su sitemap"
|
1095 |
-
|
1096 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:106
|
1097 |
-
msgid "Exclude Categories"
|
1098 |
-
msgstr "Excluir categorías"
|
1099 |
-
|
1100 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:108
|
1101 |
-
msgid "Please check the categories you do not want to include in sitemap"
|
1102 |
-
msgstr "Por favor marque las categorías que quiere excluir de su sitemap"
|
1103 |
-
|
1104 |
-
#: ../framework/extensions/mailer/manifest.php:5
|
1105 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:187
|
1106 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:188
|
1107 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:103
|
1108 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:240
|
1109 |
-
msgid "Mailer"
|
1110 |
-
msgstr "Mailer"
|
1111 |
-
|
1112 |
-
#: ../framework/extensions/mailer/manifest.php:6
|
1113 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:241
|
1114 |
-
msgid ""
|
1115 |
-
"This extension will let you set some global email options and it is used by "
|
1116 |
-
"other extensions (like Forms) to send emails."
|
1117 |
-
msgstr "Esta extensión le permite establecer opciones globales para email y puede ser utilizada por otras extensiones (cómo Forms) para enviar emails."
|
1118 |
-
|
1119 |
-
#: ../framework/extensions/mailer/class-fw-extension-mailer.php:48
|
1120 |
-
msgid "Invalid send method"
|
1121 |
-
msgstr "Método de envío inválido"
|
1122 |
-
|
1123 |
-
#: ../framework/extensions/mailer/class-fw-extension-mailer.php:81
|
1124 |
-
msgid "The message has been successfully sent!"
|
1125 |
-
msgstr "El mensaje se ha enviado con éxito!"
|
1126 |
-
|
1127 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:27
|
1128 |
-
msgid "Invalid email configuration"
|
1129 |
-
msgstr "Configuración de email inválida"
|
1130 |
-
|
1131 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:145
|
1132 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:161
|
1133 |
-
msgid "Email sent"
|
1134 |
-
msgstr "Email enviado"
|
1135 |
-
|
1136 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:146
|
1137 |
-
msgid "Could not send via smtp"
|
1138 |
-
msgstr "No se puede enviar vía smtp"
|
1139 |
-
|
1140 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:162
|
1141 |
-
msgid "Could not send via wp_mail"
|
1142 |
-
msgstr "No se puede enviar vía wp_mail"
|
1143 |
-
|
1144 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:25
|
1145 |
-
msgid "Server Address"
|
1146 |
-
msgstr "Dirección del servidor"
|
1147 |
-
|
1148 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:26
|
1149 |
-
msgid "Enter your email server"
|
1150 |
-
msgstr "Ingrese su email del servidor"
|
1151 |
-
|
1152 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:31
|
1153 |
-
msgid "Username"
|
1154 |
-
msgstr "Usuario"
|
1155 |
-
|
1156 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:32
|
1157 |
-
msgid "Enter your username"
|
1158 |
-
msgstr "ingrese su nombre de usuario"
|
1159 |
-
|
1160 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:37
|
1161 |
-
msgid "Password"
|
1162 |
-
msgstr "Contraseña"
|
1163 |
-
|
1164 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:38
|
1165 |
-
msgid "Enter your password"
|
1166 |
-
msgstr "ingrese su contraseña"
|
1167 |
-
|
1168 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:43
|
1169 |
-
msgid "Secure Connection"
|
1170 |
-
msgstr "Conección segura"
|
1171 |
-
|
1172 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:54
|
1173 |
-
msgid "Custom Port"
|
1174 |
-
msgstr "Puerto personalizado"
|
1175 |
-
|
1176 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:55
|
1177 |
-
msgid "Optional - SMTP port number to use."
|
1178 |
-
msgstr "Opcional - puerto SMTP a utilizar."
|
1179 |
-
|
1180 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:56
|
1181 |
-
msgid "Leave blank for default (SMTP - 25, SMTPS - 465)"
|
1182 |
-
msgstr "Deje en blanco, por defecto (SMTP - 25, SMTPS - 465)"
|
1183 |
-
|
1184 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:82
|
1185 |
-
msgid "Username cannot be empty"
|
1186 |
-
msgstr "Usuario no puede estar vacío"
|
1187 |
-
|
1188 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:89
|
1189 |
-
msgid "Password cannot be empty"
|
1190 |
-
msgstr "Contraseña no puede estar vacía"
|
1191 |
-
|
1192 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:96
|
1193 |
-
msgid "Invalid host"
|
1194 |
-
msgstr "Host inválido"
|
1195 |
-
|
1196 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:176
|
1197 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-wpmail.php:56
|
1198 |
-
msgid "Could not send the email"
|
1199 |
-
msgstr "No se puede enviar el email"
|
1200 |
-
|
1201 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:76
|
1202 |
-
msgid "Send Method"
|
1203 |
-
msgstr "Método de envío"
|
1204 |
-
|
1205 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:77
|
1206 |
-
msgid "Select the send form method"
|
1207 |
-
msgstr "Seleccione el método de envío del formulario"
|
1208 |
-
|
1209 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:94
|
1210 |
-
msgid "From Name"
|
1211 |
-
msgstr "Nombre remitente"
|
1212 |
-
|
1213 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:95
|
1214 |
-
msgid "The name you'll see in the From filed in your email client."
|
1215 |
-
msgstr "El nombre que verá en el campo de correo electrónico de su email."
|
1216 |
-
|
1217 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:102
|
1218 |
-
msgid "From Address"
|
1219 |
-
msgstr "Dirección remitente"
|
1220 |
-
|
1221 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:103
|
1222 |
-
msgid "The form will look like was sent from this email address."
|
1223 |
-
msgstr "El formulario se verá enviado desde esta dirección de email."
|
1224 |
-
|
1225 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:56
|
1226 |
-
msgid "Lesson"
|
1227 |
-
msgstr "Clase"
|
1228 |
-
|
1229 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:57
|
1230 |
-
#: ../framework/extensions/learning/views/content-course.php:14
|
1231 |
-
msgid "Lessons"
|
1232 |
-
msgstr "Clases"
|
1233 |
-
|
1234 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:78
|
1235 |
-
msgid "Create a lesson"
|
1236 |
-
msgstr "Crear una clase"
|
1237 |
-
|
1238 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:120
|
1239 |
-
#: ../framework/extensions/learning/hooks.php:53
|
1240 |
-
msgid "Course"
|
1241 |
-
msgstr "Curso"
|
1242 |
-
|
1243 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:121
|
1244 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:108
|
1245 |
-
msgid "Courses"
|
1246 |
-
msgstr "Cursos"
|
1247 |
-
|
1248 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:142
|
1249 |
-
msgid "Create a course"
|
1250 |
-
msgstr "Crear curso"
|
1251 |
-
|
1252 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:181
|
1253 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:222
|
1254 |
-
msgid "Course Category"
|
1255 |
-
msgstr "Categoría del curso"
|
1256 |
-
|
1257 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:182
|
1258 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:223
|
1259 |
-
msgid "Course Categories"
|
1260 |
-
msgstr "Categorías de curso"
|
1261 |
-
|
1262 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:188
|
1263 |
-
msgid "Search categories"
|
1264 |
-
msgstr "Buscar categorías"
|
1265 |
-
|
1266 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:194
|
1267 |
-
msgid "Add New category"
|
1268 |
-
msgstr "Añadir categoría"
|
1269 |
-
|
1270 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:285
|
1271 |
-
msgid "View all courses"
|
1272 |
-
msgstr "Ver todos los cursos"
|
1273 |
-
|
1274 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:511
|
1275 |
-
msgid "No courses available"
|
1276 |
-
msgstr "No hay cursos disponibles"
|
1277 |
-
|
1278 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:513
|
1279 |
-
msgid "Without Course"
|
1280 |
-
msgstr "Sin curso"
|
1281 |
-
|
1282 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:520
|
1283 |
-
msgid "Select Course"
|
1284 |
-
msgstr "Seleccionar Curso"
|
1285 |
-
|
1286 |
-
#: ../framework/extensions/learning/manifest.php:7
|
1287 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:216
|
1288 |
-
msgid "Learning"
|
1289 |
-
msgstr "Aprendizaje"
|
1290 |
-
|
1291 |
-
#: ../framework/extensions/learning/manifest.php:9
|
1292 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:217
|
1293 |
-
msgid ""
|
1294 |
-
"This extension adds a Learning module to your theme. Using this extension "
|
1295 |
-
"you can add courses, lessons and tests for your users to take."
|
1296 |
-
msgstr "Esta extensión añade un módulo de aprendizaje a su tema. utilizando esta extensión usted podrá agregar cursos, clases y exámenes para sus usuarios."
|
1297 |
-
|
1298 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:118
|
1299 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:145
|
1300 |
-
msgid "Quiz"
|
1301 |
-
msgstr "Examen"
|
1302 |
-
|
1303 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:259
|
1304 |
-
msgid "Quiz Elements"
|
1305 |
-
msgstr "Elementos del examen"
|
1306 |
-
|
1307 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:272
|
1308 |
-
msgid "Quiz settings"
|
1309 |
-
msgstr "Configuraciones de examen"
|
1310 |
-
|
1311 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:276
|
1312 |
-
msgid "Quiz Passmark Points"
|
1313 |
-
msgstr "Nota de aprobación del examen"
|
1314 |
-
|
1315 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:278
|
1316 |
-
msgid "The points number at which the test will be passed."
|
1317 |
-
msgstr "Número de puntos con que el examen es aprobado."
|
1318 |
-
|
1319 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:286
|
1320 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:296
|
1321 |
-
msgid "Lesson Quiz"
|
1322 |
-
msgstr "Examen de clase"
|
1323 |
-
|
1324 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:535
|
1325 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:544
|
1326 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:552
|
1327 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:559
|
1328 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:568
|
1329 |
-
msgid "Invalid Quiz"
|
1330 |
-
msgstr "Examen inválido"
|
1331 |
-
|
1332 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:21
|
1333 |
-
#, php-format
|
1334 |
-
msgid "You require %d points in oder to pass the test"
|
1335 |
-
msgstr "Usted requiere %d puntos para aprobar este examen"
|
1336 |
-
|
1337 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:27
|
1338 |
-
msgid "Sorry, you did not pass the test"
|
1339 |
-
msgstr "Lo sentimos, usted no ha aprobado el examen"
|
1340 |
-
|
1341 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:29
|
1342 |
-
msgid "Congratulation, you passed the test"
|
1343 |
-
msgstr "Felicidades, usted ha aprobado el examen"
|
1344 |
-
|
1345 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:43
|
1346 |
-
#, php-format
|
1347 |
-
msgid "You answered correctly %s questions from %s"
|
1348 |
-
msgstr "Usted ha respondido de manera correcta a %s preguntas de %s"
|
1349 |
-
|
1350 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:69
|
1351 |
-
#: ../framework/extensions/learning/views/content-lesson.php:18
|
1352 |
-
msgid "Back to"
|
1353 |
-
msgstr "Volver a"
|
1354 |
-
|
1355 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/start-quiz.php:11
|
1356 |
-
msgid "Start Quiz"
|
1357 |
-
msgstr "Iniciar Examen"
|
1358 |
-
|
1359 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:20
|
1360 |
-
msgid "Correct answers"
|
1361 |
-
msgstr "Respuestas Correctas"
|
1362 |
-
|
1363 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:21
|
1364 |
-
msgid "Add correct answer variants"
|
1365 |
-
msgstr "Añadir variantes de respuestas correctas"
|
1366 |
-
|
1367 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:24
|
1368 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:23
|
1369 |
-
msgid "Set Correct Answer"
|
1370 |
-
msgstr "Establcer respuesta correcta"
|
1371 |
-
|
1372 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:34
|
1373 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:31
|
1374 |
-
msgid "Wrong answers"
|
1375 |
-
msgstr "Respuestas incorrectas"
|
1376 |
-
|
1377 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:35
|
1378 |
-
msgid "Add wrong answer variants"
|
1379 |
-
msgstr "Añadir respuesta incorrecta"
|
1380 |
-
|
1381 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:38
|
1382 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:35
|
1383 |
-
msgid "Set Wrong Answer"
|
1384 |
-
msgstr "Establecer respuesta incorrecta"
|
1385 |
-
|
1386 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:56
|
1387 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:42
|
1388 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:55
|
1389 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:53
|
1390 |
-
msgid "Creates a"
|
1391 |
-
msgstr "Crear una"
|
1392 |
-
|
1393 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1394 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:59
|
1395 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:91
|
1396 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:23
|
1397 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:50
|
1398 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:82
|
1399 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:180
|
1400 |
-
msgid "Multiple Choice"
|
1401 |
-
msgstr "Elección múltiple"
|
1402 |
-
|
1403 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1404 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1405 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1406 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1407 |
-
msgid "item"
|
1408 |
-
msgstr "item"
|
1409 |
-
|
1410 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:87
|
1411 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:73
|
1412 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:86
|
1413 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:84
|
1414 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:23
|
1415 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:55
|
1416 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:76
|
1417 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:49
|
1418 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:75
|
1419 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:51
|
1420 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:77
|
1421 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:50
|
1422 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:77
|
1423 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:51
|
1424 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:80
|
1425 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:51
|
1426 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:80
|
1427 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:50
|
1428 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:77
|
1429 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:50
|
1430 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:77
|
1431 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:48
|
1432 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:75
|
1433 |
-
msgid "Label"
|
1434 |
-
msgstr "Etiqueta"
|
1435 |
-
|
1436 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:88
|
1437 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:75
|
1438 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:87
|
1439 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:85
|
1440 |
-
msgid "Add/Edit Question"
|
1441 |
-
msgstr "Añadir/Editar Pregunta"
|
1442 |
-
|
1443 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:90
|
1444 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:77
|
1445 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:90
|
1446 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:87
|
1447 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:58
|
1448 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:51
|
1449 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:55
|
1450 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:53
|
1451 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:54
|
1452 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:54
|
1453 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:53
|
1454 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:53
|
1455 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:51
|
1456 |
-
msgid "Delete"
|
1457 |
-
msgstr "Eliminar"
|
1458 |
-
|
1459 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:92
|
1460 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:90
|
1461 |
-
msgid "More"
|
1462 |
-
msgstr "Más"
|
1463 |
-
|
1464 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:93
|
1465 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:91
|
1466 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:57
|
1467 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:57
|
1468 |
-
msgid "Close"
|
1469 |
-
msgstr "Cerrar"
|
1470 |
-
|
1471 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:94
|
1472 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:78
|
1473 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:91
|
1474 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:89
|
1475 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:56
|
1476 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:52
|
1477 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:52
|
1478 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:54
|
1479 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:55
|
1480 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:55
|
1481 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:54
|
1482 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:54
|
1483 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:52
|
1484 |
-
msgid "Edit Label"
|
1485 |
-
msgstr "Editar etiqueta"
|
1486 |
-
|
1487 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:96
|
1488 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:80
|
1489 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:93
|
1490 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:93
|
1491 |
-
msgid "The question label is empty"
|
1492 |
-
msgstr "La etiqueta de pregunta se encuentra vacía"
|
1493 |
-
|
1494 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:97
|
1495 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:81
|
1496 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:94
|
1497 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:94
|
1498 |
-
msgid "Invalid mark point number"
|
1499 |
-
msgstr "Número de marca inválido"
|
1500 |
-
|
1501 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:98
|
1502 |
-
msgid "There needs to be at least one correct answer"
|
1503 |
-
msgstr "Es necesario que haya al menos una respuesta correcta"
|
1504 |
-
|
1505 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:18
|
1506 |
-
msgid "Correct answer"
|
1507 |
-
msgstr "Respuesta correcta"
|
1508 |
-
|
1509 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:19
|
1510 |
-
msgid "The question answer will be true or false"
|
1511 |
-
msgstr "La respuesta a la pregunta debe ser verdadero o falso"
|
1512 |
-
|
1513 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:22
|
1514 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:20
|
1515 |
-
msgid "True"
|
1516 |
-
msgstr "Verdadero"
|
1517 |
-
|
1518 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:26
|
1519 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:24
|
1520 |
-
msgid "False"
|
1521 |
-
msgstr "Falso"
|
1522 |
-
|
1523 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1524 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:45
|
1525 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:74
|
1526 |
-
msgid "True/False"
|
1527 |
-
msgstr "Verdadero/Falso"
|
1528 |
-
|
1529 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:19
|
1530 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:21
|
1531 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:97
|
1532 |
-
msgid "Text before gap"
|
1533 |
-
msgstr "Texto antes de relleno"
|
1534 |
-
|
1535 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:28
|
1536 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:30
|
1537 |
-
msgid "Gap"
|
1538 |
-
msgstr "Rellenar"
|
1539 |
-
|
1540 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:37
|
1541 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:39
|
1542 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:98
|
1543 |
-
msgid "Text after gap"
|
1544 |
-
msgstr "Texto después de rellenar"
|
1545 |
-
|
1546 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1547 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:58
|
1548 |
-
msgid "Gap Fill"
|
1549 |
-
msgstr "Completar relleno"
|
1550 |
-
|
1551 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:89
|
1552 |
-
msgid "Gap _____ Fill"
|
1553 |
-
msgstr "Completar _____ Relleno"
|
1554 |
-
|
1555 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:96
|
1556 |
-
#, php-format
|
1557 |
-
msgid "At least one of the fields ( %s or %s ) has to ve filled with text"
|
1558 |
-
msgstr "Al menos uno de los campos (%s o %s) debe ser rellenado con texto"
|
1559 |
-
|
1560 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:19
|
1561 |
-
msgid "Correct Answer"
|
1562 |
-
msgstr "Respuesta correcta"
|
1563 |
-
|
1564 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:20
|
1565 |
-
msgid "Write the correct answer text"
|
1566 |
-
msgstr "Escriba la respuesta correcta"
|
1567 |
-
|
1568 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:32
|
1569 |
-
msgid "Add wrong answers variants"
|
1570 |
-
msgstr "Agregar variantes de respuestas incorrectas"
|
1571 |
-
|
1572 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1573 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:56
|
1574 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:88
|
1575 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:23
|
1576 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:50
|
1577 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:82
|
1578 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:180
|
1579 |
-
msgid "Single Choice"
|
1580 |
-
msgstr "Elección única"
|
1581 |
-
|
1582 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:95
|
1583 |
-
msgid "Correct answer cannot be empty"
|
1584 |
-
msgstr "Respuesta correcta no puede estar vacía"
|
1585 |
-
|
1586 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:96
|
1587 |
-
msgid "There are not any wrong answers set"
|
1588 |
-
msgstr "No hay respuestas incorrectas establecidas"
|
1589 |
-
|
1590 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:51
|
1591 |
-
msgid "Question"
|
1592 |
-
msgstr "Pregunta"
|
1593 |
-
|
1594 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:53
|
1595 |
-
msgid "Type the question..."
|
1596 |
-
msgstr "Escriba la pregunta..."
|
1597 |
-
|
1598 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:58
|
1599 |
-
msgid "Points"
|
1600 |
-
msgstr "Puntos"
|
1601 |
-
|
1602 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:18
|
1603 |
-
msgid "Get list of courses"
|
1604 |
-
msgstr "Obtener lista de cursos"
|
1605 |
-
|
1606 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:20
|
1607 |
-
msgid "Lesson Courses"
|
1608 |
-
msgstr "Clase de cursos"
|
1609 |
-
|
1610 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:126
|
1611 |
-
msgid "Number of courses"
|
1612 |
-
msgstr "Número de cursos"
|
1613 |
-
|
1614 |
-
#: ../framework/extensions/analytics/settings-options.php:11
|
1615 |
-
msgid "Google Analytics"
|
1616 |
-
msgstr "Google Analytics"
|
1617 |
-
|
1618 |
-
#: ../framework/extensions/analytics/settings-options.php:12
|
1619 |
-
msgid "Enter your Google Analytics code (Ex: UA-XXXXX-X)"
|
1620 |
-
msgstr "ingrese su código de seguimiento Google Analytics (Ej: UA-XXXXX-X))"
|
1621 |
-
|
1622 |
-
#: ../framework/extensions/analytics/manifest.php:7
|
1623 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:192
|
1624 |
-
msgid "Analytics"
|
1625 |
-
msgstr "Analytics"
|
1626 |
-
|
1627 |
-
#: ../framework/extensions/analytics/manifest.php:8
|
1628 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:193
|
1629 |
-
msgid ""
|
1630 |
-
"Enables the possibility to add the Google Analytics tracking code that will "
|
1631 |
-
"let you get all the analytics about visitors, page views and more."
|
1632 |
-
msgstr "Añade la posibilidad de agregar el código de seguimiento de Google Analytics para obtener analítica de sus visitas, páginas vistas y más"
|
1633 |
-
|
1634 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:36
|
1635 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:37
|
1636 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:7
|
1637 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:10
|
1638 |
-
msgid "Blog"
|
1639 |
-
msgstr "Blog"
|
1640 |
-
|
1641 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:38
|
1642 |
-
msgid "Add blog post"
|
1643 |
-
msgstr "Añadir publicación al blog"
|
1644 |
-
|
1645 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:39
|
1646 |
-
msgid "Add new blog post"
|
1647 |
-
msgstr "Añadir nueva publicación al blog"
|
1648 |
-
|
1649 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:40
|
1650 |
-
msgid "All blog posts"
|
1651 |
-
msgstr "Todas las publicaciones en el blog"
|
1652 |
-
|
1653 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:41
|
1654 |
-
msgid "Edit blog post"
|
1655 |
-
msgstr "Editar publicación"
|
1656 |
-
|
1657 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:42
|
1658 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:43
|
1659 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:49
|
1660 |
-
msgid "Blog Post"
|
1661 |
-
msgstr "Publicación en blog"
|
1662 |
-
|
1663 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:44
|
1664 |
-
msgid "New blog post"
|
1665 |
-
msgstr "Añadir nueva publicación"
|
1666 |
-
|
1667 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:45
|
1668 |
-
msgid "No blog posts found"
|
1669 |
-
msgstr "No se encuentran publicaciones"
|
1670 |
-
|
1671 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:46
|
1672 |
-
msgid "No blog posts found in trash"
|
1673 |
-
msgstr "No se encuentran publicaciones en la papelera"
|
1674 |
-
|
1675 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:47
|
1676 |
-
msgid "Search blog posts"
|
1677 |
-
msgstr "Buscar publicaciones en blog"
|
1678 |
-
|
1679 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:48
|
1680 |
-
msgid "View blog post"
|
1681 |
-
msgstr "Ver publicación en blog"
|
1682 |
-
|
1683 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:67
|
1684 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:87
|
1685 |
-
#: ../framework/extensions/blog/manifest.php:7
|
1686 |
-
#: ../framework/extensions/blog/manifest.php:8
|
1687 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:50
|
1688 |
-
msgid "Blog Posts"
|
1689 |
-
msgstr "Publicaciones en blog"
|
1690 |
-
|
1691 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:76
|
1692 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:74
|
1693 |
-
msgid "Blog Categories"
|
1694 |
-
msgstr "Categorías del blog"
|
1695 |
-
|
1696 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:60
|
1697 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:61
|
1698 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:78
|
1699 |
-
#: ../framework/extensions/styling/manifest.php:7
|
1700 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:48
|
1701 |
-
msgid "Styling"
|
1702 |
-
msgstr "Estilizar"
|
1703 |
-
|
1704 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:104
|
1705 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:278
|
1706 |
-
#: ../framework/core/components/backend.php:357
|
1707 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2277
|
1708 |
-
msgid "Save"
|
1709 |
-
msgstr "Guardar"
|
1710 |
-
|
1711 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:118
|
1712 |
-
msgid "You have no permission to change Styling options"
|
1713 |
-
msgstr "Usted no tiene permisos para cambiar opciones de estilo"
|
1714 |
-
|
1715 |
-
#: ../framework/extensions/styling/manifest.php:8
|
1716 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:49
|
1717 |
-
msgid ""
|
1718 |
-
"This extension lets you control the website visual style. Starting from "
|
1719 |
-
"predefined styles to changing specific fonts and colors across the website."
|
1720 |
-
msgstr "Esta extensión le permite mantener el control visual de su sitio web. Comenzando por estilos predefinidos hasta cambiar fuentes y colores a través del sitio web."
|
1721 |
-
|
1722 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/manifest.php:7
|
1723 |
-
msgid "Switch Style Panel"
|
1724 |
-
msgstr "Cambiar Panel de Estilos"
|
1725 |
-
|
1726 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/manifest.php:8
|
1727 |
-
msgid ""
|
1728 |
-
"Show on the front-end a panel that allows the user to make the switch "
|
1729 |
-
"between predefined styles."
|
1730 |
-
msgstr "Mostrar en el front-end un panel que permite al usuario realizar cambios entre estilos predefinidos."
|
1731 |
-
|
1732 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:9
|
1733 |
-
msgid "Frontend Style Switcher"
|
1734 |
-
msgstr "Cambiar Estilos Frontend"
|
1735 |
-
|
1736 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:10
|
1737 |
-
msgid "Enable frontend style switcher"
|
1738 |
-
msgstr "Activar cambiar estilos en frontend"
|
1739 |
-
|
1740 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:13
|
1741 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:274
|
1742 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:45
|
1743 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:24
|
1744 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:42
|
1745 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:34
|
1746 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:48
|
1747 |
-
#: ../framework/includes/option-types/simple.php:454
|
1748 |
-
#: ../framework/includes/option-types/switch/class-fw-option-type-switch.php:151
|
1749 |
-
msgid "Yes"
|
1750 |
-
msgstr "Si"
|
1751 |
-
|
1752 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:17
|
1753 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:278
|
1754 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:49
|
1755 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:28
|
1756 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:46
|
1757 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:38
|
1758 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:52
|
1759 |
-
#: ../framework/includes/option-types/switch/class-fw-option-type-switch.php:147
|
1760 |
-
msgid "No"
|
1761 |
-
msgstr "No"
|
1762 |
-
|
1763 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:24
|
1764 |
-
msgid "The text that will be displayed at the top of the panel."
|
1765 |
-
msgstr "El texto que se muestra arriba del panel."
|
1766 |
-
|
1767 |
-
#: ../framework/extensions/styling/includes/option-types/style/views/settings.php:119
|
1768 |
-
msgid "Background"
|
1769 |
-
msgstr "Fondo"
|
1770 |
-
|
1771 |
-
#: ../framework/extensions/styling/includes/option-types/style/views/predefined.php:26
|
1772 |
-
msgid "Predefined Styles"
|
1773 |
-
msgstr "Estilos Predefinidos"
|
1774 |
-
|
1775 |
-
#: ../framework/extensions/styling/includes/option-types/style/views/preview.php:41
|
1776 |
-
msgid "This is a simplified preview, not changes are reflected."
|
1777 |
-
msgstr "Esta es una vista simplificada, los cambios no son reflejados."
|
1778 |
-
|
1779 |
-
#: ../framework/extensions/feedback/class-fw-extension-feedback.php:64
|
1780 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:144
|
1781 |
-
msgid "Feedback"
|
1782 |
-
msgstr "Feedback"
|
1783 |
-
|
1784 |
-
#: ../framework/extensions/feedback/class-fw-extension-feedback.php:111
|
1785 |
-
msgid "Reviews"
|
1786 |
-
msgstr "Opiniones"
|
1787 |
-
|
1788 |
-
#: ../framework/extensions/feedback/settings-options.php:10
|
1789 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/settings-options.php:11
|
1790 |
-
msgid "Activate for"
|
1791 |
-
msgstr "Activo para"
|
1792 |
-
|
1793 |
-
#: ../framework/extensions/feedback/settings-options.php:16
|
1794 |
-
msgid "Select the options you want the Feedback extension to be activated for"
|
1795 |
-
msgstr "Seleccione las opciones en que será activada la extensión Feedback"
|
1796 |
-
|
1797 |
-
#: ../framework/extensions/feedback/manifest.php:7
|
1798 |
-
msgid "FeedBack"
|
1799 |
-
msgstr "Feedback"
|
1800 |
-
|
1801 |
-
#: ../framework/extensions/feedback/manifest.php:8
|
1802 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:145
|
1803 |
-
msgid ""
|
1804 |
-
"Adds the possibility to leave feedback (comments, reviews and rating) about "
|
1805 |
-
"your products, articles, etc. This replaces the default comments system."
|
1806 |
-
msgstr "Añade la posibilidad de dejar un feedback (comentarios, opiniones y valoraciones) acerca de sus productos, artículos, etc. Esta reemplaza el sistema de comentarios por defecto."
|
1807 |
-
|
1808 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:84
|
1809 |
-
msgid "Rating:"
|
1810 |
-
msgstr "Valoración: "
|
1811 |
-
|
1812 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:195
|
1813 |
-
msgid "Feedback Stars"
|
1814 |
-
msgstr "Estrellas feedback"
|
1815 |
-
|
1816 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:221
|
1817 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/rate.php:12
|
1818 |
-
msgid "Rating"
|
1819 |
-
msgstr "Valoración"
|
1820 |
-
|
1821 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1822 |
-
msgid "ERROR"
|
1823 |
-
msgstr "ERROR"
|
1824 |
-
|
1825 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1826 |
-
msgid "please rate the post."
|
1827 |
-
msgstr "por favor valore esta publicación."
|
1828 |
-
|
1829 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/manifest.php:7
|
1830 |
-
msgid "FeedBack Stars"
|
1831 |
-
msgstr "Estrellas Feedback"
|
1832 |
-
|
1833 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/manifest.php:8
|
1834 |
-
msgid "Allows visitors to appreciate a post using star rating"
|
1835 |
-
msgstr "Permite a sus visitantes valorar el post por medio de estrellas de valroación"
|
1836 |
-
|
1837 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1838 |
-
msgid "Pingback:"
|
1839 |
-
msgstr "Pingback: "
|
1840 |
-
|
1841 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1842 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1843 |
-
msgid "(Edit)"
|
1844 |
-
msgstr "(Editar)"
|
1845 |
-
|
1846 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:37
|
1847 |
-
msgid "Post author"
|
1848 |
-
msgstr "Autor de publicación"
|
1849 |
-
|
1850 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:57
|
1851 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1852 |
-
#, php-format
|
1853 |
-
msgid "%1$s at %2$s"
|
1854 |
-
msgstr "%1$s en %2$s"
|
1855 |
-
|
1856 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:63
|
1857 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:53
|
1858 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:56
|
1859 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:122
|
1860 |
-
msgid "Your comment is awaiting moderation."
|
1861 |
-
msgstr "Su comentario se encuentra en espera de moderación."
|
1862 |
-
|
1863 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:24
|
1864 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:40
|
1865 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:119
|
1866 |
-
msgid "says"
|
1867 |
-
msgstr "dice"
|
1868 |
-
|
1869 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/view-rates.php:24
|
1870 |
-
#, php-format
|
1871 |
-
msgid "Based on %s Votes"
|
1872 |
-
msgstr "Basado en %s Votos"
|
1873 |
-
|
1874 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:6
|
1875 |
-
msgid "Rating System"
|
1876 |
-
msgstr "Sistema de valoración"
|
1877 |
-
|
1878 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:9
|
1879 |
-
msgid "Enter the number of stars you want in the rating system"
|
1880 |
-
msgstr "Ingrese el número de estrellas que quiere en el sistema de valoración"
|
1881 |
-
|
1882 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:11
|
1883 |
-
msgid "5 stars"
|
1884 |
-
msgstr "5 estrellas"
|
1885 |
-
|
1886 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:12
|
1887 |
-
msgid "7 stars"
|
1888 |
-
msgstr "7 estrellas"
|
1889 |
-
|
1890 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:13
|
1891 |
-
msgid "10 stars"
|
1892 |
-
msgstr "10 estrellas"
|
1893 |
-
|
1894 |
-
#: ../framework/extensions/feedback/views/reviews.php:32
|
1895 |
-
#: ../framework/extensions/feedback/views/reviews.php:53
|
1896 |
-
msgid "Comment navigation"
|
1897 |
-
msgstr "Explorar comentario"
|
1898 |
-
|
1899 |
-
#: ../framework/extensions/feedback/views/reviews.php:35
|
1900 |
-
#: ../framework/extensions/feedback/views/reviews.php:56
|
1901 |
-
msgid "← Older Comments"
|
1902 |
-
msgstr "← Comentarios Previos"
|
1903 |
-
|
1904 |
-
#: ../framework/extensions/feedback/views/reviews.php:36
|
1905 |
-
#: ../framework/extensions/feedback/views/reviews.php:57
|
1906 |
-
msgid "Newer Comments →"
|
1907 |
-
msgstr "Comentarios Nuevos →"
|
1908 |
-
|
1909 |
-
#: ../framework/extensions/feedback/views/reviews.php:62
|
1910 |
-
msgid "Comments are closed."
|
1911 |
-
msgstr "Comentarios cerrados."
|
1912 |
-
|
1913 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/settings-options.php:18
|
1914 |
-
msgid ""
|
1915 |
-
"Select the posts you want the Page Builder extension to be activated for"
|
1916 |
-
msgstr "Seleccione las publicaciones en que quiera activar el Constructor de Página"
|
1917 |
-
|
1918 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/manifest.php:7
|
1919 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:84
|
1920 |
-
msgid "Page Builder"
|
1921 |
-
msgstr "Constructor de Página"
|
1922 |
-
|
1923 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/manifest.php:9
|
1924 |
-
msgid ""
|
1925 |
-
"Lets you easily build countless pages with the help of the drag and drop "
|
1926 |
-
"visual page builder that comes with a lot of already created shortcodes."
|
1927 |
-
msgstr "Permite construir de manera sencilla innumerables páginas con la ayuda del constructor visual \"arrastre y suelte\" que viene con un grupo de shortcodes listos para utilizar."
|
1928 |
-
|
1929 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:51
|
1930 |
-
msgid ""
|
1931 |
-
"There must not be more than one page Editor integrated with the wp post "
|
1932 |
-
"editor per page"
|
1933 |
-
msgstr "No debe haber más de un editor de páginas integrado con el editor de publicación por página."
|
1934 |
-
|
1935 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:96
|
1936 |
-
msgid "Visual Page Builder"
|
1937 |
-
msgstr "Constructor visual de páginas"
|
1938 |
-
|
1939 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:97
|
1940 |
-
msgid "Default Editor"
|
1941 |
-
msgstr "Editor por Defecto"
|
1942 |
-
|
1943 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:126
|
1944 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:117
|
1945 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:5
|
1946 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:22
|
1947 |
-
msgid "Layout Elements"
|
1948 |
-
msgstr "Elementos de Diseño"
|
1949 |
-
|
1950 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:99
|
1951 |
-
#, php-format
|
1952 |
-
msgid "No Page Builder tab specified for shortcode: %s"
|
1953 |
-
msgstr "No hay pestaña especificada en el constructor de página para el shortcode: %s"
|
1954 |
-
|
1955 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:111
|
1956 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:75
|
1957 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:83
|
1958 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:57
|
1959 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:238
|
1960 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:141
|
1961 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:345
|
1962 |
-
msgid "Remove"
|
1963 |
-
msgstr "Remover"
|
1964 |
-
|
1965 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:112
|
1966 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:74
|
1967 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:82
|
1968 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:56
|
1969 |
-
msgid "Duplicate"
|
1970 |
-
msgstr "Duplicar"
|
1971 |
-
|
1972 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:8
|
1973 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:12
|
1974 |
-
msgid "Testimonials"
|
1975 |
-
msgstr "Testimonios"
|
1976 |
-
|
1977 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:9
|
1978 |
-
msgid "Add some Testimonials"
|
1979 |
-
msgstr "Añadir algunos testimonios"
|
1980 |
-
|
1981 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:10
|
1982 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:10
|
1983 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:10
|
1984 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:10
|
1985 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:8
|
1986 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:10
|
1987 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:8
|
1988 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:8
|
1989 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:10
|
1990 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:10
|
1991 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:10
|
1992 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:10
|
1993 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:10
|
1994 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:10
|
1995 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:8
|
1996 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:10
|
1997 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:10
|
1998 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:106
|
1999 |
-
msgid "Content Elements"
|
2000 |
-
msgstr "Elementos de contenido"
|
2001 |
-
|
2002 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:8
|
2003 |
-
msgid "Option Testimonials Title"
|
2004 |
-
msgstr "Opción título de testimonios"
|
2005 |
-
|
2006 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:13
|
2007 |
-
msgid "Add/Edit Testimonial"
|
2008 |
-
msgstr "Agregar/Editar Testimonio"
|
2009 |
-
|
2010 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:14
|
2011 |
-
msgid "Here you can add, remove and edit your Testimonials."
|
2012 |
-
msgstr "Aquí usted añadir, remover y editar sus testimonios."
|
2013 |
-
|
2014 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:19
|
2015 |
-
msgid "Quote"
|
2016 |
-
msgstr "Cita (frase)"
|
2017 |
-
|
2018 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:20
|
2019 |
-
msgid "Enter the testimonial here"
|
2020 |
-
msgstr "Ingrese el testimonio aquí"
|
2021 |
-
|
2022 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:25
|
2023 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:6
|
2024 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:102
|
2025 |
-
msgid "Image"
|
2026 |
-
msgstr "Imagen"
|
2027 |
-
|
2028 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:26
|
2029 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:8
|
2030 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:9
|
2031 |
-
msgid ""
|
2032 |
-
"Either upload a new, or choose an existing image from your media library"
|
2033 |
-
msgstr "Ya sea subir una nueva o escoger una existente en su biblioteca multimedia"
|
2034 |
-
|
2035 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:30
|
2036 |
-
msgid "Name"
|
2037 |
-
msgstr "Nombre"
|
2038 |
-
|
2039 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:31
|
2040 |
-
msgid "Enter the Name of the Person to quote"
|
2041 |
-
msgstr "Ingrese el nombre de la persona a citar"
|
2042 |
-
|
2043 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:35
|
2044 |
-
msgid "Position"
|
2045 |
-
msgstr "Cargo"
|
2046 |
-
|
2047 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:36
|
2048 |
-
msgid "Can be used for a job description"
|
2049 |
-
msgstr "Utilice para describir cargo en empresa"
|
2050 |
-
|
2051 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:40
|
2052 |
-
msgid "Website Name"
|
2053 |
-
msgstr "Nombre del sitio web"
|
2054 |
-
|
2055 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:41
|
2056 |
-
msgid "Linktext for the above Link"
|
2057 |
-
msgstr "Texto sobre el link"
|
2058 |
-
|
2059 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:45
|
2060 |
-
msgid "Website Link"
|
2061 |
-
msgstr "Link a sitio web"
|
2062 |
-
|
2063 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:46
|
2064 |
-
msgid "Link to the Persons website"
|
2065 |
-
msgstr "Link a sitio web personal"
|
2066 |
-
|
2067 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:8
|
2068 |
-
msgid "Accordion"
|
2069 |
-
msgstr "Acordeón"
|
2070 |
-
|
2071 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:9
|
2072 |
-
msgid "Add an Accordion"
|
2073 |
-
msgstr "Añadir Acordeón"
|
2074 |
-
|
2075 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:8
|
2076 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:8
|
2077 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:8
|
2078 |
-
msgid "Tabs"
|
2079 |
-
msgstr "Pestañas"
|
2080 |
-
|
2081 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:9
|
2082 |
-
msgid "Add/Edit Tabs"
|
2083 |
-
msgstr "Agregar/Editar Pestañas"
|
2084 |
-
|
2085 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:10
|
2086 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:10
|
2087 |
-
msgid "Create your tabs"
|
2088 |
-
msgstr "Crear sus pestañas"
|
2089 |
-
|
2090 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:19
|
2091 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:24
|
2092 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:13
|
2093 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/options.php:10
|
2094 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:19
|
2095 |
-
msgid "Content"
|
2096 |
-
msgstr "Contenido"
|
2097 |
-
|
2098 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:8
|
2099 |
-
msgid "Table"
|
2100 |
-
msgstr "Tabla"
|
2101 |
-
|
2102 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:9
|
2103 |
-
msgid "Add a Table"
|
2104 |
-
msgstr "Agregar una tabla"
|
2105 |
-
|
2106 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:64
|
2107 |
-
msgid "table-builder option type must be inside the table shortcode"
|
2108 |
-
msgstr "la opción constructor de tablas debe estar dentro de un shortcode tabla"
|
2109 |
-
|
2110 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:171
|
2111 |
-
msgid "Table Styling"
|
2112 |
-
msgstr "Estilo de tabla"
|
2113 |
-
|
2114 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:172
|
2115 |
-
msgid "Choose the table styling options"
|
2116 |
-
msgstr "Escoger las opciones de estilo de tabla"
|
2117 |
-
|
2118 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:174
|
2119 |
-
msgid "Use the table as a pricing table"
|
2120 |
-
msgstr "Utilizar tabla como tabla de precios"
|
2121 |
-
|
2122 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:175
|
2123 |
-
msgid "Use the table to display tabular data"
|
2124 |
-
msgstr "Utilizar tabla para mostrar tabla tabular"
|
2125 |
-
|
2126 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:197
|
2127 |
-
msgid "Default row"
|
2128 |
-
msgstr "Fila por defecto"
|
2129 |
-
|
2130 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:198
|
2131 |
-
msgid "Heading row"
|
2132 |
-
msgstr "Título de fila"
|
2133 |
-
|
2134 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:199
|
2135 |
-
msgid "Pricing row"
|
2136 |
-
msgstr "Precio de fila"
|
2137 |
-
|
2138 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:200
|
2139 |
-
msgid "Button row"
|
2140 |
-
msgstr "Botón de fila"
|
2141 |
-
|
2142 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:201
|
2143 |
-
msgid "Row switch"
|
2144 |
-
msgstr "Cambio de fila"
|
2145 |
-
|
2146 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:211
|
2147 |
-
msgid "Default column"
|
2148 |
-
msgstr "Columna por defecto"
|
2149 |
-
|
2150 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:212
|
2151 |
-
msgid "Description column"
|
2152 |
-
msgstr "Descripción de columna"
|
2153 |
-
|
2154 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:213
|
2155 |
-
msgid "Highlight column"
|
2156 |
-
msgstr "Resaltar columna"
|
2157 |
-
|
2158 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:214
|
2159 |
-
msgid "Center text column"
|
2160 |
-
msgstr "Centrar texto de columna"
|
2161 |
-
|
2162 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:251
|
2163 |
-
msgid "per month"
|
2164 |
-
msgstr "por mes"
|
2165 |
-
|
2166 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:262
|
2167 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:8
|
2168 |
-
msgid "Button"
|
2169 |
-
msgstr "Botón"
|
2170 |
-
|
2171 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:263
|
2172 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:39
|
2173 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:148
|
2174 |
-
#: ../framework/includes/option-types/addable-option/class-fw-option-type-addable-option.php:20
|
2175 |
-
#: ../framework/includes/option-types/addable-popup/class-fw-option-type-addable-popup.php:153
|
2176 |
-
#: ../framework/includes/option-types/addable-box/class-fw-option-type-addable-box.php:186
|
2177 |
-
msgid "Add"
|
2178 |
-
msgstr "Añadir"
|
2179 |
-
|
2180 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-head-template.php:27
|
2181 |
-
msgid "Add Column"
|
2182 |
-
msgstr "Añadir Columna"
|
2183 |
-
|
2184 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/view.php:161
|
2185 |
-
msgid "Add Row"
|
2186 |
-
msgstr "Añadir fila"
|
2187 |
-
|
2188 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:24
|
2189 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:25
|
2190 |
-
msgid "Custom"
|
2191 |
-
msgstr "Personalizar"
|
2192 |
-
|
2193 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:27
|
2194 |
-
msgid "Locations"
|
2195 |
-
msgstr "Ubicaciones"
|
2196 |
-
|
2197 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:28
|
2198 |
-
msgid "Add/Edit Location"
|
2199 |
-
msgstr "Agregar/Editar ubicación"
|
2200 |
-
|
2201 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:31
|
2202 |
-
msgid "Note: Please set location"
|
2203 |
-
msgstr "Nota: por favor establezca ubicación"
|
2204 |
-
|
2205 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:35
|
2206 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:187
|
2207 |
-
msgid "Location"
|
2208 |
-
msgstr "Ubicación"
|
2209 |
-
|
2210 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:39
|
2211 |
-
msgid "Location Title"
|
2212 |
-
msgstr "Título de ubicación"
|
2213 |
-
|
2214 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:40
|
2215 |
-
msgid "Set location title"
|
2216 |
-
msgstr "Establecer título de ubicación"
|
2217 |
-
|
2218 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:44
|
2219 |
-
msgid "Location Description"
|
2220 |
-
msgstr "Descripción de ubicación"
|
2221 |
-
|
2222 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:45
|
2223 |
-
msgid "Set location description"
|
2224 |
-
msgstr "Establecer descripción de ubicación"
|
2225 |
-
|
2226 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:49
|
2227 |
-
msgid "Location Url"
|
2228 |
-
msgstr "URL de ubicación"
|
2229 |
-
|
2230 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:50
|
2231 |
-
msgid "Set page url (Ex: http://example.com)"
|
2232 |
-
msgstr "Establecer url de página (Ej: http://ejemplo.com)"
|
2233 |
-
|
2234 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:53
|
2235 |
-
msgid "Location Image"
|
2236 |
-
msgstr "Imagen de ubicación"
|
2237 |
-
|
2238 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:54
|
2239 |
-
msgid "Add location image"
|
2240 |
-
msgstr "Añadir imagen de ubicación"
|
2241 |
-
|
2242 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:113
|
2243 |
-
msgid "No location provider specified for map shortcode"
|
2244 |
-
msgstr "No hay proveedor de ubicación especificado en el shortcode mapa"
|
2245 |
-
|
2246 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:115
|
2247 |
-
msgid "Map Placeholder"
|
2248 |
-
msgstr "Marcador (Placeholder) en mapa"
|
2249 |
-
|
2250 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:122
|
2251 |
-
#, php-format
|
2252 |
-
msgid "Unknown location provider \"%s\" specified for map shortcode"
|
2253 |
-
msgstr "Proveedor de ubicación desconocido \"%s\" especificado en shortcode mapa"
|
2254 |
-
|
2255 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:8
|
2256 |
-
msgid "Map"
|
2257 |
-
msgstr "Mapa"
|
2258 |
-
|
2259 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:9
|
2260 |
-
msgid "Add a Map"
|
2261 |
-
msgstr "Agregar un mapa"
|
2262 |
-
|
2263 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:13
|
2264 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:13
|
2265 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:214
|
2266 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:473
|
2267 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:11
|
2268 |
-
msgid "Population Method"
|
2269 |
-
msgstr "Método de agrupación"
|
2270 |
-
|
2271 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:14
|
2272 |
-
msgid "Select map population method (Ex: events, custom)"
|
2273 |
-
msgstr "Seleccione método de agrupación (Ej: eventos, personalizado)"
|
2274 |
-
|
2275 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:24
|
2276 |
-
msgid "Map Type"
|
2277 |
-
msgstr "Tipo de mapa"
|
2278 |
-
|
2279 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:25
|
2280 |
-
msgid "Select map type"
|
2281 |
-
msgstr "Seleccione tipo de mapa"
|
2282 |
-
|
2283 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:27
|
2284 |
-
msgid "Roadmap"
|
2285 |
-
msgstr "Mapa vial"
|
2286 |
-
|
2287 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:28
|
2288 |
-
msgid "Terrain"
|
2289 |
-
msgstr "Terreno"
|
2290 |
-
|
2291 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:29
|
2292 |
-
msgid "Satellite"
|
2293 |
-
msgstr "télite"
|
2294 |
-
|
2295 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:30
|
2296 |
-
msgid "Hybrid"
|
2297 |
-
msgstr "Híbrido"
|
2298 |
-
|
2299 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:34
|
2300 |
-
msgid "Map Height"
|
2301 |
-
msgstr "Alto de mapa"
|
2302 |
-
|
2303 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:35
|
2304 |
-
msgid "Set map height (Ex: 300)"
|
2305 |
-
msgstr "Establecer alto de mapa (Ej: 300)"
|
2306 |
-
|
2307 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:41
|
2308 |
-
msgid "Disable zoom on scroll"
|
2309 |
-
msgstr "Desactivar acercamiento al hacer scroll"
|
2310 |
-
|
2311 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:42
|
2312 |
-
msgid "Prevent the map from zooming when scrolling until clicking on the map"
|
2313 |
-
msgstr "Previene el acercamiento cuando hace scroll hasta que haga click en el mapa"
|
2314 |
-
|
2315 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:76
|
2316 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:65
|
2317 |
-
msgid "Column"
|
2318 |
-
msgstr "Columna"
|
2319 |
-
|
2320 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:120
|
2321 |
-
#, php-format
|
2322 |
-
msgid "Add a %s column"
|
2323 |
-
msgstr "Agregar una %s columna"
|
2324 |
-
|
2325 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:12
|
2326 |
-
msgid "Columns"
|
2327 |
-
msgstr "Columnas"
|
2328 |
-
|
2329 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:47
|
2330 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:47
|
2331 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:51
|
2332 |
-
msgid "No Templates Saved"
|
2333 |
-
msgstr "No hay plantillas guardadas"
|
2334 |
-
|
2335 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:50
|
2336 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:50
|
2337 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:54
|
2338 |
-
msgid "Load Template"
|
2339 |
-
msgstr "Cargar plantilla"
|
2340 |
-
|
2341 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:91
|
2342 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:91
|
2343 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:94
|
2344 |
-
msgid "Template Name"
|
2345 |
-
msgstr "Nombre de plantilla"
|
2346 |
-
|
2347 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:92
|
2348 |
-
msgid "Save Column"
|
2349 |
-
msgstr "Guardar columna"
|
2350 |
-
|
2351 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:93
|
2352 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:93
|
2353 |
-
msgid "Save as Template"
|
2354 |
-
msgstr "Guardar como plantilla"
|
2355 |
-
|
2356 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:174
|
2357 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:174
|
2358 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:206
|
2359 |
-
msgid "No Title"
|
2360 |
-
msgstr "Sin título"
|
2361 |
-
|
2362 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:6
|
2363 |
-
msgid "Special Heading"
|
2364 |
-
msgstr "Título de encabezado especial"
|
2365 |
-
|
2366 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:7
|
2367 |
-
msgid "Add a Special Heading"
|
2368 |
-
msgstr "Agregar un título de encabezado especial"
|
2369 |
-
|
2370 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:8
|
2371 |
-
msgid "Heading Title"
|
2372 |
-
msgstr "Título de encabezado"
|
2373 |
-
|
2374 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:9
|
2375 |
-
msgid "Write the heading title content"
|
2376 |
-
msgstr "Escriba el contenido del encabezado"
|
2377 |
-
|
2378 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:13
|
2379 |
-
msgid "Heading Subtitle"
|
2380 |
-
msgstr "Subtítulo de encabezado"
|
2381 |
-
|
2382 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:14
|
2383 |
-
msgid "Write the heading subtitle content"
|
2384 |
-
msgstr "Escriba el contenido del subtítulo de encabezado"
|
2385 |
-
|
2386 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:18
|
2387 |
-
msgid "Heading Size"
|
2388 |
-
msgstr "Tamaño de encabezado"
|
2389 |
-
|
2390 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:30
|
2391 |
-
msgid "Centered"
|
2392 |
-
msgstr "Centrado"
|
2393 |
-
|
2394 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:8
|
2395 |
-
msgid "Team Member"
|
2396 |
-
msgstr "Miembro de equipo"
|
2397 |
-
|
2398 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:9
|
2399 |
-
msgid "Add a Team Member"
|
2400 |
-
msgstr "Agregar mienbro de equipo"
|
2401 |
-
|
2402 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:7
|
2403 |
-
msgid "Team Member Image"
|
2404 |
-
msgstr "Imagen de miembro"
|
2405 |
-
|
2406 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:12
|
2407 |
-
msgid "Team Member Name"
|
2408 |
-
msgstr "Nombre de miembro"
|
2409 |
-
|
2410 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:13
|
2411 |
-
msgid "Name of the person"
|
2412 |
-
msgstr "Nombre de la persona"
|
2413 |
-
|
2414 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:18
|
2415 |
-
msgid "Team Member Job Title"
|
2416 |
-
msgstr "Cargo de miembro"
|
2417 |
-
|
2418 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:19
|
2419 |
-
msgid "Job title of the person."
|
2420 |
-
msgstr "Cargo de la persona"
|
2421 |
-
|
2422 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:24
|
2423 |
-
msgid "Team Member Description"
|
2424 |
-
msgstr "Descripción de miembro"
|
2425 |
-
|
2426 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:25
|
2427 |
-
msgid "Enter a few words that describe the person"
|
2428 |
-
msgstr "Ingrese algunas palabras para describir a la persona"
|
2429 |
-
|
2430 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:6
|
2431 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:8
|
2432 |
-
#: ../framework/extensions/megamenu/class-fw-extension-megamenu.php:115
|
2433 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:188
|
2434 |
-
msgid "Icon"
|
2435 |
-
msgstr "Icono"
|
2436 |
-
|
2437 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:7
|
2438 |
-
msgid "Add an Icon"
|
2439 |
-
msgstr "Agregar Icono"
|
2440 |
-
|
2441 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:13
|
2442 |
-
msgid "Icon title"
|
2443 |
-
msgstr "Título de icono"
|
2444 |
-
|
2445 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:6
|
2446 |
-
msgid "Icon Box"
|
2447 |
-
msgstr "Icono con caja"
|
2448 |
-
|
2449 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:7
|
2450 |
-
msgid "Add an Icon Box"
|
2451 |
-
msgstr "Agregar una caja con icono"
|
2452 |
-
|
2453 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:8
|
2454 |
-
msgid "Box Style"
|
2455 |
-
msgstr "Estilo de Caja"
|
2456 |
-
|
2457 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:10
|
2458 |
-
msgid "Icon above title"
|
2459 |
-
msgstr "Icono sobre el título"
|
2460 |
-
|
2461 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:11
|
2462 |
-
msgid "Icon in line with title"
|
2463 |
-
msgstr "Icono en línea con el título"
|
2464 |
-
|
2465 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:16
|
2466 |
-
msgid "Choose an Icon"
|
2467 |
-
msgstr "Escoger un Icono"
|
2468 |
-
|
2469 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:20
|
2470 |
-
msgid "Title of the Box"
|
2471 |
-
msgstr "Título de la caja"
|
2472 |
-
|
2473 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:25
|
2474 |
-
msgid "Enter the desired content"
|
2475 |
-
msgstr "Ingrese el contenido deseado"
|
2476 |
-
|
2477 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:9
|
2478 |
-
msgid "Add a Button"
|
2479 |
-
msgstr "Agregar botón"
|
2480 |
-
|
2481 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:7
|
2482 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:17
|
2483 |
-
msgid "Button Label"
|
2484 |
-
msgstr "Etiqueta de botón"
|
2485 |
-
|
2486 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:8
|
2487 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:18
|
2488 |
-
msgid "This is the text that appears on your button"
|
2489 |
-
msgstr "Este es el texto que aparece en su botón"
|
2490 |
-
|
2491 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:13
|
2492 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:23
|
2493 |
-
msgid "Button Link"
|
2494 |
-
msgstr "Link de botón"
|
2495 |
-
|
2496 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:14
|
2497 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:24
|
2498 |
-
msgid "Where should your button link to"
|
2499 |
-
msgstr "Lugar dónde direcciona el link de botón"
|
2500 |
-
|
2501 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:20
|
2502 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:38
|
2503 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:30
|
2504 |
-
msgid "Open Link in New Window"
|
2505 |
-
msgstr "Abrir en nueva ventana"
|
2506 |
-
|
2507 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:21
|
2508 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:39
|
2509 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:31
|
2510 |
-
msgid "Select here if you want to open the linked page in a new window"
|
2511 |
-
msgstr "Seleccione aquí si usted quiere abrir link en una nueva ventana"
|
2512 |
-
|
2513 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:32
|
2514 |
-
msgid "Button Color"
|
2515 |
-
msgstr "Color de botón"
|
2516 |
-
|
2517 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:33
|
2518 |
-
msgid "Choose a color for your button"
|
2519 |
-
msgstr "Escoger color de botón"
|
2520 |
-
|
2521 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:36
|
2522 |
-
msgid "Default"
|
2523 |
-
msgstr "Por defecto"
|
2524 |
-
|
2525 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:37
|
2526 |
-
msgid "Black"
|
2527 |
-
msgstr "Negro"
|
2528 |
-
|
2529 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:38
|
2530 |
-
msgid "Blue"
|
2531 |
-
msgstr "Azul"
|
2532 |
-
|
2533 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:39
|
2534 |
-
msgid "Green"
|
2535 |
-
msgstr "Verde"
|
2536 |
-
|
2537 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:40
|
2538 |
-
msgid "Red"
|
2539 |
-
msgstr "Rojo"
|
2540 |
-
|
2541 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:6
|
2542 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:108
|
2543 |
-
msgid "Video"
|
2544 |
-
msgstr "Video"
|
2545 |
-
|
2546 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:7
|
2547 |
-
msgid "Add a Video"
|
2548 |
-
msgstr "Agregar video"
|
2549 |
-
|
2550 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:8
|
2551 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:8
|
2552 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:10
|
2553 |
-
msgid "Media Elements"
|
2554 |
-
msgstr "Elementos multimedia"
|
2555 |
-
|
2556 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:8
|
2557 |
-
msgid "Insert Video URL"
|
2558 |
-
msgstr "Inserte URL del video"
|
2559 |
-
|
2560 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:9
|
2561 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:24
|
2562 |
-
msgid "Insert Video URL to embed this video"
|
2563 |
-
msgstr "Inserte URL para adjuntar este video"
|
2564 |
-
|
2565 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:13
|
2566 |
-
msgid "Video Width"
|
2567 |
-
msgstr "Ancho del video"
|
2568 |
-
|
2569 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:14
|
2570 |
-
msgid "Enter a value for the width"
|
2571 |
-
msgstr "Ingrese el valor del ancho"
|
2572 |
-
|
2573 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:19
|
2574 |
-
msgid "Video Height"
|
2575 |
-
msgstr "Alto del video"
|
2576 |
-
|
2577 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:20
|
2578 |
-
msgid "Enter a value for the height"
|
2579 |
-
msgstr "Ingrese el valor para el alto"
|
2580 |
-
|
2581 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:8
|
2582 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:16
|
2583 |
-
msgid "Calendar"
|
2584 |
-
msgstr "Calendario"
|
2585 |
-
|
2586 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:9
|
2587 |
-
msgid "Add a Calendar"
|
2588 |
-
msgstr "Agregar Calendario"
|
2589 |
-
|
2590 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:14
|
2591 |
-
msgid "Select calendar population method (Ex: events, custom)"
|
2592 |
-
msgstr "Seleccione método de agrupación del calendario (Ej: eventos, personalizado)"
|
2593 |
-
|
2594 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:23
|
2595 |
-
msgid "Calendar Type"
|
2596 |
-
msgstr "Tipo de calendario"
|
2597 |
-
|
2598 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:24
|
2599 |
-
msgid "Select calendar type"
|
2600 |
-
msgstr "Seleccione tipo de calendario"
|
2601 |
-
|
2602 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:27
|
2603 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:23
|
2604 |
-
msgid "Daily"
|
2605 |
-
msgstr "Diario"
|
2606 |
-
|
2607 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:28
|
2608 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:22
|
2609 |
-
msgid "Weekly"
|
2610 |
-
msgstr "Semanal"
|
2611 |
-
|
2612 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:29
|
2613 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:21
|
2614 |
-
msgid "Monthly"
|
2615 |
-
msgstr "Mensual"
|
2616 |
-
|
2617 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:33
|
2618 |
-
msgid "Start Week On"
|
2619 |
-
msgstr "La semana empieza el "
|
2620 |
-
|
2621 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:34
|
2622 |
-
msgid "Select first day of week"
|
2623 |
-
msgstr "Seleccione primer día de la semana"
|
2624 |
-
|
2625 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:37
|
2626 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:110
|
2627 |
-
msgid "Monday"
|
2628 |
-
msgstr "Lunes"
|
2629 |
-
|
2630 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:38
|
2631 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:109
|
2632 |
-
msgid "Sunday"
|
2633 |
-
msgstr "Domingo"
|
2634 |
-
|
2635 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:29
|
2636 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:56
|
2637 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:82
|
2638 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:69
|
2639 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:74
|
2640 |
-
#: ../framework/extensions/events/manifest.php:7
|
2641 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:77
|
2642 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:185
|
2643 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:180
|
2644 |
-
msgid "Events"
|
2645 |
-
msgstr "Eventos"
|
2646 |
-
|
2647 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:30
|
2648 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:59
|
2649 |
-
msgid "Add/Edit Date & Time"
|
2650 |
-
msgstr "Agregar/Editar fecha y evento"
|
2651 |
-
|
2652 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:33
|
2653 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:63
|
2654 |
-
msgid "Note: Please set start & end event datetime"
|
2655 |
-
msgstr "Nota: Por favor seleccione fecha de inicio y fin del evento"
|
2656 |
-
|
2657 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:37
|
2658 |
-
msgid "Event Title"
|
2659 |
-
msgstr "Título del evento"
|
2660 |
-
|
2661 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:38
|
2662 |
-
msgid "Enter the event title"
|
2663 |
-
msgstr "Ingrese el título del evento"
|
2664 |
-
|
2665 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:42
|
2666 |
-
msgid "Event URL"
|
2667 |
-
msgstr "URL del evento"
|
2668 |
-
|
2669 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:43
|
2670 |
-
msgid "Enter the event URL (Ex: http://your-domain.com/event)"
|
2671 |
-
msgstr "Ingrese la URL del evento (Ej: http://ejemplo.com/evento)"
|
2672 |
-
|
2673 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:47
|
2674 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:58
|
2675 |
-
msgid "Date & Time"
|
2676 |
-
msgstr "Fecha y hora"
|
2677 |
-
|
2678 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:48
|
2679 |
-
msgid "Enter the event date & time"
|
2680 |
-
msgstr "Ingrese la fecha y hora del evento"
|
2681 |
-
|
2682 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:129
|
2683 |
-
msgid "No events provider specified for calendar shortcode"
|
2684 |
-
msgstr "No existen eventos especificados para el shortcode calendario"
|
2685 |
-
|
2686 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:138
|
2687 |
-
#, php-format
|
2688 |
-
msgid "Unknown events provider \"%s\" specified for calendar shortcode"
|
2689 |
-
msgstr "Eventos desconocidos especificados \"%s\" para el shortcode calendario"
|
2690 |
-
|
2691 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:55
|
2692 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:68
|
2693 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:75
|
2694 |
-
msgid "Event"
|
2695 |
-
msgstr "Evento"
|
2696 |
-
|
2697 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:57
|
2698 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/views/view.php:23
|
2699 |
-
msgid "Today"
|
2700 |
-
msgstr "Hoy"
|
2701 |
-
|
2702 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:66
|
2703 |
-
#, php-format
|
2704 |
-
msgid "Calendar: View %s not found"
|
2705 |
-
msgstr "Calendario: No se encuentra %s"
|
2706 |
-
|
2707 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:67
|
2708 |
-
#, php-format
|
2709 |
-
msgid "Calendar: Wrong date format %s. Should be either \"now\" or \"yyyy-mm-dd\""
|
2710 |
-
msgstr "Calendario: Formato de fecha incorrecto %s. Debe ser \"ahora\" o \"aaaa-mm-dd\""
|
2711 |
-
|
2712 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:69
|
2713 |
-
msgid "Calendar: Event URL is not set"
|
2714 |
-
msgstr "Calendario: URL de evento no establecida"
|
2715 |
-
|
2716 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:70
|
2717 |
-
#, php-format
|
2718 |
-
msgid ""
|
2719 |
-
"Calendar: Wrong navigation direction %s. Can be only \"next\" or \"prev\" or"
|
2720 |
-
" \"today\""
|
2721 |
-
msgstr "Calendario: dirección de explroación incorrecta %s. Debe ser solo \"Siguiente\", \"Anterior\" u \"Hoy\""
|
2722 |
-
|
2723 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:72
|
2724 |
-
msgid ""
|
2725 |
-
"Calendar: Time split parameter should divide 60 without decimals. Something "
|
2726 |
-
"like 10, 15, 30"
|
2727 |
-
msgstr "Calendario: El parámetro de división debe dividir 60 sin decimales. Algo como 10, 15, 30"
|
2728 |
-
|
2729 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:74
|
2730 |
-
msgid "No events in this day."
|
2731 |
-
msgstr "No hay eventos este día."
|
2732 |
-
|
2733 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:77
|
2734 |
-
#, php-format
|
2735 |
-
msgid "week %s of %s"
|
2736 |
-
msgstr "semana %s de %s"
|
2737 |
-
|
2738 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:79
|
2739 |
-
msgid "Week "
|
2740 |
-
msgstr "Semana"
|
2741 |
-
|
2742 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:80
|
2743 |
-
msgid "All day"
|
2744 |
-
msgstr "Todo el día"
|
2745 |
-
|
2746 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:81
|
2747 |
-
msgid "Time"
|
2748 |
-
msgstr "Hora"
|
2749 |
-
|
2750 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:83
|
2751 |
-
msgid "Ends before timeline"
|
2752 |
-
msgstr "Termina antes de cronograma"
|
2753 |
-
|
2754 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:84
|
2755 |
-
msgid "Starts after timeline"
|
2756 |
-
msgstr "Inicia después de cronograma"
|
2757 |
-
|
2758 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:85
|
2759 |
-
msgid "January"
|
2760 |
-
msgstr "Enero"
|
2761 |
-
|
2762 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:86
|
2763 |
-
msgid "February"
|
2764 |
-
msgstr "Febrero"
|
2765 |
-
|
2766 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:87
|
2767 |
-
msgid "March"
|
2768 |
-
msgstr "Marzo"
|
2769 |
-
|
2770 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:88
|
2771 |
-
msgid "April"
|
2772 |
-
msgstr "Abril"
|
2773 |
-
|
2774 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:89
|
2775 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:101
|
2776 |
-
msgid "May"
|
2777 |
-
msgstr "Mayo"
|
2778 |
-
|
2779 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:90
|
2780 |
-
msgid "June"
|
2781 |
-
msgstr "Junio"
|
2782 |
-
|
2783 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:91
|
2784 |
-
msgid "July"
|
2785 |
-
msgstr "Julio"
|
2786 |
-
|
2787 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:92
|
2788 |
-
msgid "August"
|
2789 |
-
msgstr "Agosto"
|
2790 |
-
|
2791 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:93
|
2792 |
-
msgid "September"
|
2793 |
-
msgstr "Septiembre"
|
2794 |
-
|
2795 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:94
|
2796 |
-
msgid "October"
|
2797 |
-
msgstr "Octubre"
|
2798 |
-
|
2799 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:95
|
2800 |
-
msgid "November"
|
2801 |
-
msgstr "Noviembre"
|
2802 |
-
|
2803 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:96
|
2804 |
-
msgid "December"
|
2805 |
-
msgstr "Diciembre"
|
2806 |
-
|
2807 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:97
|
2808 |
-
msgid "Jan"
|
2809 |
-
msgstr "Ene"
|
2810 |
-
|
2811 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:98
|
2812 |
-
msgid "Feb"
|
2813 |
-
msgstr "Feb"
|
2814 |
-
|
2815 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:99
|
2816 |
-
msgid "Mar"
|
2817 |
-
msgstr "Mar"
|
2818 |
-
|
2819 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:100
|
2820 |
-
msgid "Apr"
|
2821 |
-
msgstr "Abr"
|
2822 |
-
|
2823 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:102
|
2824 |
-
msgid "Jun"
|
2825 |
-
msgstr "Jun"
|
2826 |
-
|
2827 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:103
|
2828 |
-
msgid "Jul"
|
2829 |
-
msgstr "Jul"
|
2830 |
-
|
2831 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:104
|
2832 |
-
msgid "Aug"
|
2833 |
-
msgstr "Ago"
|
2834 |
-
|
2835 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:105
|
2836 |
-
msgid "Sep"
|
2837 |
-
msgstr "Sep"
|
2838 |
-
|
2839 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:106
|
2840 |
-
msgid "Oct"
|
2841 |
-
msgstr "Oct"
|
2842 |
-
|
2843 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:107
|
2844 |
-
msgid "Nov"
|
2845 |
-
msgstr "Nov"
|
2846 |
-
|
2847 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:108
|
2848 |
-
msgid "Dec"
|
2849 |
-
msgstr "Dic"
|
2850 |
-
|
2851 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:111
|
2852 |
-
msgid "Tuesday"
|
2853 |
-
msgstr "Martes"
|
2854 |
-
|
2855 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:112
|
2856 |
-
msgid "Wednesday"
|
2857 |
-
msgstr "Miércoles"
|
2858 |
-
|
2859 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:113
|
2860 |
-
msgid "Thursday"
|
2861 |
-
msgstr "Jueves"
|
2862 |
-
|
2863 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:114
|
2864 |
-
msgid "Friday"
|
2865 |
-
msgstr "Viernes"
|
2866 |
-
|
2867 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:115
|
2868 |
-
msgid "Saturday"
|
2869 |
-
msgstr "Sábado"
|
2870 |
-
|
2871 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:7
|
2872 |
-
msgid "Add an Image"
|
2873 |
-
msgstr "Agregar Imagen"
|
2874 |
-
|
2875 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:8
|
2876 |
-
msgid "Choose Image"
|
2877 |
-
msgstr "Escoger imagen"
|
2878 |
-
|
2879 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:16
|
2880 |
-
msgid "Width"
|
2881 |
-
msgstr "Ancho"
|
2882 |
-
|
2883 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:17
|
2884 |
-
msgid "Set image width"
|
2885 |
-
msgstr "Establecer ancho de imagen"
|
2886 |
-
|
2887 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:22
|
2888 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:24
|
2889 |
-
msgid "Height"
|
2890 |
-
msgstr "Alto"
|
2891 |
-
|
2892 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:23
|
2893 |
-
msgid "Set image height"
|
2894 |
-
msgstr "Establecer alto de imagen"
|
2895 |
-
|
2896 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:33
|
2897 |
-
msgid "Image Link"
|
2898 |
-
msgstr "Link de imagen"
|
2899 |
-
|
2900 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:34
|
2901 |
-
msgid "Where should your image link to?"
|
2902 |
-
msgstr "Dónde direccionará su imagen?"
|
2903 |
-
|
2904 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:8
|
2905 |
-
msgid "Notification"
|
2906 |
-
msgstr "Notificación"
|
2907 |
-
|
2908 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:9
|
2909 |
-
msgid "Add a Notification Box"
|
2910 |
-
msgstr "Agregar caja de notificación"
|
2911 |
-
|
2912 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:7
|
2913 |
-
msgid "Message"
|
2914 |
-
msgstr "Mensaje"
|
2915 |
-
|
2916 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:8
|
2917 |
-
msgid "Notification message"
|
2918 |
-
msgstr "Notificación de mensaje"
|
2919 |
-
|
2920 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:10
|
2921 |
-
msgid "Message!"
|
2922 |
-
msgstr "Mensaje!"
|
2923 |
-
|
2924 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:13
|
2925 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:444
|
2926 |
-
msgid "Type"
|
2927 |
-
msgstr "Tipo"
|
2928 |
-
|
2929 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:14
|
2930 |
-
msgid "Notification type"
|
2931 |
-
msgstr "Tipo de notificación"
|
2932 |
-
|
2933 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:17
|
2934 |
-
msgid "Congratulations"
|
2935 |
-
msgstr "Felicitación"
|
2936 |
-
|
2937 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:18
|
2938 |
-
msgid "Information"
|
2939 |
-
msgstr "Información"
|
2940 |
-
|
2941 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:19
|
2942 |
-
msgid "Alert"
|
2943 |
-
msgstr "Alerta"
|
2944 |
-
|
2945 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:20
|
2946 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:456
|
2947 |
-
msgid "Error"
|
2948 |
-
msgstr "Error"
|
2949 |
-
|
2950 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:9
|
2951 |
-
msgid "Congratulations!"
|
2952 |
-
msgstr "Felicitaciones!"
|
2953 |
-
|
2954 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:13
|
2955 |
-
msgid "Information!"
|
2956 |
-
msgstr "Información!"
|
2957 |
-
|
2958 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:17
|
2959 |
-
msgid "Alert!"
|
2960 |
-
msgstr "Alerta!"
|
2961 |
-
|
2962 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:21
|
2963 |
-
msgid "Error!"
|
2964 |
-
msgstr "Error!"
|
2965 |
-
|
2966 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:8
|
2967 |
-
msgid "Widget Area"
|
2968 |
-
msgstr "Área de widget"
|
2969 |
-
|
2970 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:9
|
2971 |
-
msgid "Add a Widget Area"
|
2972 |
-
msgstr "Agregar área de widget"
|
2973 |
-
|
2974 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/options.php:5
|
2975 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:5
|
2976 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:7
|
2977 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:40
|
2978 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:91
|
2979 |
-
msgid "Sidebar"
|
2980 |
-
msgstr "Barra lateral (Sidebar)"
|
2981 |
-
|
2982 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:8
|
2983 |
-
msgid "Call To Action"
|
2984 |
-
msgstr "Llamar a la acción"
|
2985 |
-
|
2986 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:9
|
2987 |
-
msgid "Add a Call to Action"
|
2988 |
-
msgstr "Agregar llamar a la acción"
|
2989 |
-
|
2990 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:9
|
2991 |
-
msgid "This can be left blank"
|
2992 |
-
msgstr "Esto se puede dejar en blanco"
|
2993 |
-
|
2994 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:14
|
2995 |
-
msgid "Enter some content for this Info Box"
|
2996 |
-
msgstr "Ingrese algún contenido para esta caja de información"
|
2997 |
-
|
2998 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:8
|
2999 |
-
msgid "Text Block"
|
3000 |
-
msgstr "Bloque de texto"
|
3001 |
-
|
3002 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:9
|
3003 |
-
msgid "Add a Text Block"
|
3004 |
-
msgstr "Agregar bloque de texto"
|
3005 |
-
|
3006 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/options.php:11
|
3007 |
-
msgid "Enter some content for this texblock"
|
3008 |
-
msgstr "Ingrese algún contenido para este bloque de texto"
|
3009 |
-
|
3010 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:6
|
3011 |
-
msgid "Divider"
|
3012 |
-
msgstr "Separador"
|
3013 |
-
|
3014 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:7
|
3015 |
-
msgid "Add a Divider"
|
3016 |
-
msgstr "Agregar separador"
|
3017 |
-
|
3018 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:13
|
3019 |
-
msgid "Ruler Type"
|
3020 |
-
msgstr "Tipo de regla"
|
3021 |
-
|
3022 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:14
|
3023 |
-
msgid "Here you can set the styling and size of the HR element"
|
3024 |
-
msgstr "Aquí usted puede establecer el estilo y alto de su elemento HR (separador)"
|
3025 |
-
|
3026 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:16
|
3027 |
-
msgid "Line"
|
3028 |
-
msgstr "Línea"
|
3029 |
-
|
3030 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:17
|
3031 |
-
msgid "Whitespace"
|
3032 |
-
msgstr "Espacio en blanco"
|
3033 |
-
|
3034 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:25
|
3035 |
-
msgid ""
|
3036 |
-
"How much whitespace do you need? Enter a pixel value. Positive value will "
|
3037 |
-
"increase the whitespace, negative value will reduce it. eg: '50', '-25', "
|
3038 |
-
"'200'"
|
3039 |
-
msgstr "Cuánto espacio necesita? ingrese un valor en pixeles. Valor positivo incrementa el espacio, valor negativo disminuye espacio. Ej: '50', '-25', '200'"
|
3040 |
-
|
3041 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:6
|
3042 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:23
|
3043 |
-
msgid "Section"
|
3044 |
-
msgstr "Sección"
|
3045 |
-
|
3046 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:7
|
3047 |
-
msgid "Add a Section"
|
3048 |
-
msgstr "Agregar sección"
|
3049 |
-
|
3050 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:7
|
3051 |
-
msgid "Full Width"
|
3052 |
-
msgstr "Ancho fluido "
|
3053 |
-
|
3054 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:11
|
3055 |
-
msgid "Background Color"
|
3056 |
-
msgstr "Color de fondo"
|
3057 |
-
|
3058 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:12
|
3059 |
-
msgid "Please select the background color"
|
3060 |
-
msgstr "Seleccione color de fondo"
|
3061 |
-
|
3062 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:16
|
3063 |
-
msgid "Background Image"
|
3064 |
-
msgstr "Imagen de fondo"
|
3065 |
-
|
3066 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:17
|
3067 |
-
msgid "Please select the background image"
|
3068 |
-
msgstr "Seleccione imagen de fondo"
|
3069 |
-
|
3070 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:23
|
3071 |
-
msgid "Background Video"
|
3072 |
-
msgstr "Video de fondo"
|
3073 |
-
|
3074 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:12
|
3075 |
-
msgid "Sections"
|
3076 |
-
msgstr "Secciones"
|
3077 |
-
|
3078 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:92
|
3079 |
-
msgid "Save Section"
|
3080 |
-
msgstr "Guardar sección"
|
3081 |
-
|
3082 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:24
|
3083 |
-
msgid "Creates a section"
|
3084 |
-
msgstr "Crear una sección"
|
3085 |
-
|
3086 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:9
|
3087 |
-
msgid "Add some Tabs"
|
3088 |
-
msgstr "Agregar algunas pestañas"
|
3089 |
-
|
3090 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:9
|
3091 |
-
msgid "Add/Edit Tab"
|
3092 |
-
msgstr "Agregar/Editar Pestaña"
|
3093 |
-
|
3094 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcode.php:194
|
3095 |
-
#, php-format
|
3096 |
-
msgid "No default view (views/view.php) found for shortcode: %s"
|
3097 |
-
msgstr "No hay vista por defecto encontrada (views/view.php) para el shortcode: %s"
|
3098 |
-
|
3099 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:203
|
3100 |
-
#, php-format
|
3101 |
-
msgid "Shortcode \"%s\" from %s was already defined at %s"
|
3102 |
-
msgstr "Shortcode \"%s\" de %s ya ha se ha definido en %s"
|
3103 |
-
|
3104 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:264
|
3105 |
-
#, php-format
|
3106 |
-
msgid "Class file found for shortcode %s but no class %s found"
|
3107 |
-
msgstr "Archivo Class encontrado para shortcode %s pero no se ha definido la class %s"
|
3108 |
-
|
3109 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:269
|
3110 |
-
#, php-format
|
3111 |
-
msgid "The class %s must extend from FW_Shortcode"
|
3112 |
-
msgstr "La class %s debe ser extendida desde FW_Shortcode"
|
3113 |
-
|
3114 |
-
#: ../framework/extensions/builder/manifest.php:5
|
3115 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:204
|
3116 |
-
msgid "Builder"
|
3117 |
-
msgstr "Constructor"
|
3118 |
-
|
3119 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:306
|
3120 |
-
msgid "Full Screen"
|
3121 |
-
msgstr "Pantalla Completa"
|
3122 |
-
|
3123 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:307
|
3124 |
-
msgid "Exit Full Screen"
|
3125 |
-
msgstr "Salir de pantalla completa"
|
3126 |
-
|
3127 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:334
|
3128 |
-
msgid "Undo"
|
3129 |
-
msgstr "Deshacer"
|
3130 |
-
|
3131 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:335
|
3132 |
-
msgid "Redo"
|
3133 |
-
msgstr "Rehacer"
|
3134 |
-
|
3135 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/fullscreen.php:81
|
3136 |
-
msgid "Preview Changes"
|
3137 |
-
msgstr "Previsualizar Cambios"
|
3138 |
-
|
3139 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/class-fw-ext-builder-templates.php:119
|
3140 |
-
msgid "Templates"
|
3141 |
-
msgstr "Plantillas"
|
3142 |
-
|
3143 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:12
|
3144 |
-
msgid "Full Templates"
|
3145 |
-
msgstr "Plantillas Completas"
|
3146 |
-
|
3147 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:61
|
3148 |
-
msgid "Save Full Template"
|
3149 |
-
msgstr "Guardar Plantilla Completa"
|
3150 |
-
|
3151 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:95
|
3152 |
-
msgid "Save Builder Template"
|
3153 |
-
msgstr "Guardar Plantilla Constructor"
|
3154 |
-
|
3155 |
-
#: ../framework/extensions/social/manifest.php:7
|
3156 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:252
|
3157 |
-
msgid "Social"
|
3158 |
-
msgstr "Social"
|
3159 |
-
|
3160 |
-
#: ../framework/extensions/social/manifest.php:8
|
3161 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:253
|
3162 |
-
msgid ""
|
3163 |
-
"Use this extension to configure all your social related APIs. Other "
|
3164 |
-
"extensions will use the Social extension to connect to your social accounts."
|
3165 |
-
msgstr "Utilice esta extensión para configurar sus APIs de redes sociales. Otras extensiones pueden ser utilizadas para conectar con sus cuentas sociales"
|
3166 |
-
|
3167 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:62
|
3168 |
-
#: ../framework/core/components/backend.php:584
|
3169 |
-
msgid "Facebook"
|
3170 |
-
msgstr "Facebook"
|
3171 |
-
|
3172 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:66
|
3173 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:33
|
3174 |
-
msgid "API Settings"
|
3175 |
-
msgstr "Configuración API"
|
3176 |
-
|
3177 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:72
|
3178 |
-
msgid "App ID/API Key:"
|
3179 |
-
msgstr "App ID/API Key:"
|
3180 |
-
|
3181 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:73
|
3182 |
-
msgid "Enter Facebook App ID / API Key."
|
3183 |
-
msgstr "Ingrese su App ID/API Key de Facebook:"
|
3184 |
-
|
3185 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:78
|
3186 |
-
msgid "App Secret:"
|
3187 |
-
msgstr "APP secreto:"
|
3188 |
-
|
3189 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:79
|
3190 |
-
msgid "Enter Facebook App Secret."
|
3191 |
-
msgstr "Ingrese su secreto de APP Facebok."
|
3192 |
-
|
3193 |
-
#: ../framework/extensions/social/extensions/social-facebook/manifest.php:7
|
3194 |
-
#: ../framework/extensions/social/extensions/social-facebook/manifest.php:8
|
3195 |
-
msgid "Social Facebook"
|
3196 |
-
msgstr "Facebook Social"
|
3197 |
-
|
3198 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:29
|
3199 |
-
#: ../framework/core/components/backend.php:592
|
3200 |
-
msgid "Twitter"
|
3201 |
-
msgstr "Twitter"
|
3202 |
-
|
3203 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:39
|
3204 |
-
msgid "Consumer Key"
|
3205 |
-
msgstr "Clave de cliente"
|
3206 |
-
|
3207 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:40
|
3208 |
-
msgid "Enter Twitter Consumer Key."
|
3209 |
-
msgstr "Ingrese su clave de cliente de Twitter."
|
3210 |
-
|
3211 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:45
|
3212 |
-
msgid "Consumer Secret"
|
3213 |
-
msgstr "Secret Cliente"
|
3214 |
-
|
3215 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:46
|
3216 |
-
msgid "Enter Twitter App Secret."
|
3217 |
-
msgstr "ingrese su APP secreto de Twitter"
|
3218 |
-
|
3219 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:51
|
3220 |
-
msgid "Access Token"
|
3221 |
-
msgstr "Token de acceso"
|
3222 |
-
|
3223 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:52
|
3224 |
-
msgid "Enter Twitter Access Token."
|
3225 |
-
msgstr "Ingrese su Token de acceso de Twitter."
|
3226 |
-
|
3227 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:57
|
3228 |
-
msgid "Access Token Secret"
|
3229 |
-
msgstr "Token de acceso secreto"
|
3230 |
-
|
3231 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:58
|
3232 |
-
msgid "Enter Twitter Access Token Secret."
|
3233 |
-
msgstr "Ingrese el token secreto de acceso ."
|
3234 |
-
|
3235 |
-
#: ../framework/extensions/social/extensions/social-twitter/manifest.php:7
|
3236 |
-
#: ../framework/extensions/social/extensions/social-twitter/manifest.php:8
|
3237 |
-
msgid "Social Twitter"
|
3238 |
-
msgstr "Twitter Social"
|
3239 |
-
|
3240 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:112
|
3241 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:123
|
3242 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:131
|
3243 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:142
|
3244 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:102
|
3245 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:114
|
3246 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:124
|
3247 |
-
msgid "Unable to process the form"
|
3248 |
-
msgstr "Incapaz de procesar este formulario"
|
3249 |
-
|
3250 |
-
#: ../framework/extensions/forms/manifest.php:5
|
3251 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:228
|
3252 |
-
msgid "Forms"
|
3253 |
-
msgstr "Formulario"
|
3254 |
-
|
3255 |
-
#: ../framework/extensions/forms/manifest.php:7
|
3256 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:229
|
3257 |
-
msgid ""
|
3258 |
-
"This extension adds the possibility to create a contact form. Use the drag &"
|
3259 |
-
" drop form builder to create any contact form you'll ever want or need."
|
3260 |
-
msgstr "Esta extensión añade la posibilidad de crear un formulario de contacto. Utilice el constructor \"arrastrar y soltar\" para crear el formulario de contacto que quiera o necesite."
|
3261 |
-
|
3262 |
-
#: ../framework/extensions/forms/extensions/contact-forms/manifest.php:5
|
3263 |
-
msgid "Contact Forms"
|
3264 |
-
msgstr "Formularios de Contacto"
|
3265 |
-
|
3266 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:134
|
3267 |
-
msgid "Invalid destination email (please contact the site administrator)"
|
3268 |
-
msgstr "Dirección de envío inválida (Contacte al administrador del sitio)"
|
3269 |
-
|
3270 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:158
|
3271 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:77
|
3272 |
-
msgid "Message sent!"
|
3273 |
-
msgstr "Mensaje enviado!"
|
3274 |
-
|
3275 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:164
|
3276 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:85
|
3277 |
-
msgid "Oops something went wrong."
|
3278 |
-
msgstr "Oops ha ocurrido algo mal."
|
3279 |
-
|
3280 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:190
|
3281 |
-
msgid "Please configure the {mailer_link} extension."
|
3282 |
-
msgstr "Por favor configure la extensión {mailer_link}."
|
3283 |
-
|
3284 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:8
|
3285 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:107
|
3286 |
-
msgid "Contact form"
|
3287 |
-
msgstr "Formulario de contacto"
|
3288 |
-
|
3289 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:9
|
3290 |
-
msgid "Build contact forms"
|
3291 |
-
msgstr "Construir formularios de contacto"
|
3292 |
-
|
3293 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:15
|
3294 |
-
msgid "Form Fields"
|
3295 |
-
msgstr "Campos de formularios"
|
3296 |
-
|
3297 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:39
|
3298 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:82
|
3299 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:31
|
3300 |
-
msgid "Settings"
|
3301 |
-
msgstr "Configuraciones"
|
3302 |
-
|
3303 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:42
|
3304 |
-
msgid "Options"
|
3305 |
-
msgstr "Opciones"
|
3306 |
-
|
3307 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:53
|
3308 |
-
msgid "Subject Message"
|
3309 |
-
msgstr "Asunto del mensaje"
|
3310 |
-
|
3311 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:54
|
3312 |
-
msgid "This text will be used as subject message for the email"
|
3313 |
-
msgstr "Este texto es utilizado como asunto del mensaje en el email"
|
3314 |
-
|
3315 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:55
|
3316 |
-
msgid "New message"
|
3317 |
-
msgstr "Nuevo mensaje"
|
3318 |
-
|
3319 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:64
|
3320 |
-
msgid "Submit Button"
|
3321 |
-
msgstr "Botón Enviar"
|
3322 |
-
|
3323 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:65
|
3324 |
-
msgid "This text will appear in submit button"
|
3325 |
-
msgstr "Este texto aparece en el botón enviar"
|
3326 |
-
|
3327 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:66
|
3328 |
-
msgid "Send"
|
3329 |
-
msgstr "Enviar"
|
3330 |
-
|
3331 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:75
|
3332 |
-
msgid "Success Message"
|
3333 |
-
msgstr "Mensaje de éxito"
|
3334 |
-
|
3335 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:76
|
3336 |
-
msgid "This text will be displayed when the form will successfully send"
|
3337 |
-
msgstr "Este texto se muestra cuando el formulario se ha enviado exitosamente"
|
3338 |
-
|
3339 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:83
|
3340 |
-
msgid "Failure Message"
|
3341 |
-
msgstr "Mensaje de fallo"
|
3342 |
-
|
3343 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:84
|
3344 |
-
msgid "This text will be displayed when the form will fail to be sent"
|
3345 |
-
msgstr "Este texto se muestra cuando el formulario no e ha enviado"
|
3346 |
-
|
3347 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:94
|
3348 |
-
msgid "Email To"
|
3349 |
-
msgstr "Email a"
|
3350 |
-
|
3351 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:95
|
3352 |
-
msgid "We recommend you to use an email that you verify often"
|
3353 |
-
msgstr "Recomendamos el uso de un correo electrónico que verifique frecuentemente"
|
3354 |
-
|
3355 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:96
|
3356 |
-
msgid "The form will be sent to this email address."
|
3357 |
-
msgstr "El formulario será enviado a esta dirección de email."
|
3358 |
-
|
3359 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:52
|
3360 |
-
msgid "Contact Form"
|
3361 |
-
msgstr "Formulario de Contacto"
|
3362 |
-
|
3363 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:54
|
3364 |
-
msgid "Configure Mailer"
|
3365 |
-
msgstr "Configurar Mailer"
|
3366 |
-
|
3367 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:108
|
3368 |
-
msgid "Add a Contact Form"
|
3369 |
-
msgstr "Agregar Formulario de Contacto"
|
3370 |
-
|
3371 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:9
|
3372 |
-
msgid "Note that the type can't be changed later."
|
3373 |
-
msgstr "Tenga en cuenta que el tipo no se puede cambiar más adelante."
|
3374 |
-
|
3375 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:11
|
3376 |
-
msgid ""
|
3377 |
-
"You will need to create a new form in order to have a different form type."
|
3378 |
-
msgstr "Usted tendrá que crear un nuevo formulario con el fin de tener un tipo diferente de formulario."
|
3379 |
-
|
3380 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:20
|
3381 |
-
#: ../framework/extensions/forms/views/backend/submit-box-edit.php:16
|
3382 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:14
|
3383 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:31
|
3384 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-error.php:8
|
3385 |
-
msgid "Delete Permanently"
|
3386 |
-
msgstr "Eliminar de forma permanente"
|
3387 |
-
|
3388 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:22
|
3389 |
-
#: ../framework/extensions/forms/views/backend/submit-box-edit.php:18
|
3390 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:16
|
3391 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:33
|
3392 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-error.php:10
|
3393 |
-
msgid "Move to Trash"
|
3394 |
-
msgstr "Mover a la papelera"
|
3395 |
-
|
3396 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:33
|
3397 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:35
|
3398 |
-
msgid "Create"
|
3399 |
-
msgstr "Crear"
|
3400 |
-
|
3401 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:24
|
3402 |
-
msgid "Add a Recaptcha field"
|
3403 |
-
msgstr "Agregar campo Recaptcha"
|
3404 |
-
|
3405 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:26
|
3406 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:54
|
3407 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:78
|
3408 |
-
msgid "Recaptcha"
|
3409 |
-
msgstr "Recaptcha"
|
3410 |
-
|
3411 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:59
|
3412 |
-
msgid "Set site key"
|
3413 |
-
msgstr "Establecer clave de sitio"
|
3414 |
-
|
3415 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:60
|
3416 |
-
msgid "Set secret key"
|
3417 |
-
msgstr "Establecer clave secreta"
|
3418 |
-
|
3419 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:77
|
3420 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:76
|
3421 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:78
|
3422 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:78
|
3423 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:81
|
3424 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:81
|
3425 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:78
|
3426 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:78
|
3427 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:76
|
3428 |
-
msgid "Enter field label (it will be displayed on the web site)"
|
3429 |
-
msgstr "Ingrese el valor de etiqueta (Este es mostrado en el sitio web)"
|
3430 |
-
|
3431 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:133
|
3432 |
-
msgid "Security Code"
|
3433 |
-
msgstr "Código de seguridad"
|
3434 |
-
|
3435 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:147
|
3436 |
-
msgid "Could not validate the form"
|
3437 |
-
msgstr "No es posible validar el formulario"
|
3438 |
-
|
3439 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:148
|
3440 |
-
msgid "Please fill the recaptcha"
|
3441 |
-
msgstr "Por favor complete el recaptcha"
|
3442 |
-
|
3443 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:37
|
3444 |
-
msgid "Site key"
|
3445 |
-
msgstr "Clave de sitio"
|
3446 |
-
|
3447 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:38
|
3448 |
-
msgid "Your website key. More on how to configure ReCaptcha"
|
3449 |
-
msgstr "Su clave de sitio. Mas en cómo configurar ReCaptcha"
|
3450 |
-
|
3451 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:42
|
3452 |
-
msgid "Secret key"
|
3453 |
-
msgstr "Clave secreta"
|
3454 |
-
|
3455 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:43
|
3456 |
-
msgid "Your secret key. More on how to configure ReCaptcha"
|
3457 |
-
msgstr "Su clave secreta. Mas en cómo configurar ReCaptcha"
|
3458 |
-
|
3459 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:18
|
3460 |
-
msgid "Add a Paragraph Text"
|
3461 |
-
msgstr "Agregar párrafo de texto"
|
3462 |
-
|
3463 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:20
|
3464 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:48
|
3465 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:77
|
3466 |
-
msgid "Paragraph Text"
|
3467 |
-
msgstr "Párrafo de texto"
|
3468 |
-
|
3469 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:53
|
3470 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:53
|
3471 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:51
|
3472 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:52
|
3473 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:52
|
3474 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:51
|
3475 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:51
|
3476 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:49
|
3477 |
-
msgid "Toggle mandatory field"
|
3478 |
-
msgstr "Activar campo obligatorio"
|
3479 |
-
|
3480 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:83
|
3481 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:85
|
3482 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:85
|
3483 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:88
|
3484 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:88
|
3485 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:85
|
3486 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:85
|
3487 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:83
|
3488 |
-
msgid "Mandatory Field"
|
3489 |
-
msgstr "Campo Obligatorio"
|
3490 |
-
|
3491 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:84
|
3492 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:86
|
3493 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:86
|
3494 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:89
|
3495 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:89
|
3496 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:86
|
3497 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:86
|
3498 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:84
|
3499 |
-
msgid "Make this field mandatory?"
|
3500 |
-
msgstr "Hacer este campo obligatorio?"
|
3501 |
-
|
3502 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:98
|
3503 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:100
|
3504 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:100
|
3505 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:100
|
3506 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:98
|
3507 |
-
msgid "Placeholder"
|
3508 |
-
msgstr "Marcador (Placeholder)"
|
3509 |
-
|
3510 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:99
|
3511 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:101
|
3512 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:101
|
3513 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:101
|
3514 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:99
|
3515 |
-
msgid "This text will be used as field placeholder"
|
3516 |
-
msgstr "Este texto es utilizado como marca en el campo."
|
3517 |
-
|
3518 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:105
|
3519 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:107
|
3520 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:107
|
3521 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:105
|
3522 |
-
msgid "Default Value"
|
3523 |
-
msgstr "Valor por defecto"
|
3524 |
-
|
3525 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:106
|
3526 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:108
|
3527 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:108
|
3528 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:106
|
3529 |
-
msgid "This text will be used as field default value"
|
3530 |
-
msgstr "Este texto es utilizado como valor por defecto"
|
3531 |
-
|
3532 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:126
|
3533 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:128
|
3534 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:126
|
3535 |
-
msgid "Restrictions"
|
3536 |
-
msgstr "Restricciones"
|
3537 |
-
|
3538 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:127
|
3539 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:127
|
3540 |
-
msgid "Set characters or words restrictions for this field"
|
3541 |
-
msgstr "Establecer caracteres o palabras restringidas en este campo"
|
3542 |
-
|
3543 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:131
|
3544 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:131
|
3545 |
-
msgid "Characters"
|
3546 |
-
msgstr "Caracteres"
|
3547 |
-
|
3548 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:132
|
3549 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:132
|
3550 |
-
msgid "Words"
|
3551 |
-
msgstr "Palabras"
|
3552 |
-
|
3553 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:140
|
3554 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:154
|
3555 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:142
|
3556 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:156
|
3557 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:140
|
3558 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:154
|
3559 |
-
msgid "Min"
|
3560 |
-
msgstr "Min"
|
3561 |
-
|
3562 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:141
|
3563 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:155
|
3564 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:143
|
3565 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:157
|
3566 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:141
|
3567 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:155
|
3568 |
-
msgid "Minim value"
|
3569 |
-
msgstr "Valor Mínimo"
|
3570 |
-
|
3571 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:146
|
3572 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:160
|
3573 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:148
|
3574 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:162
|
3575 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:146
|
3576 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:160
|
3577 |
-
msgid "Max"
|
3578 |
-
msgstr "Max"
|
3579 |
-
|
3580 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:147
|
3581 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:161
|
3582 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:149
|
3583 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:163
|
3584 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:147
|
3585 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:161
|
3586 |
-
msgid "Maxim value"
|
3587 |
-
msgstr "Valor Máximo"
|
3588 |
-
|
3589 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:178
|
3590 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:180
|
3591 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:121
|
3592 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:137
|
3593 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:137
|
3594 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:114
|
3595 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:121
|
3596 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:178
|
3597 |
-
msgid "Instructions for Users"
|
3598 |
-
msgstr "Instrucciones para usuarios"
|
3599 |
-
|
3600 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:179
|
3601 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:181
|
3602 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:122
|
3603 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:138
|
3604 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:138
|
3605 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:115
|
3606 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:122
|
3607 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:179
|
3608 |
-
msgid "The users will see these instructions in the tooltip near the field"
|
3609 |
-
msgstr "Los usuarios verán estas instrucciones en el tooltip junto al campo"
|
3610 |
-
|
3611 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:331
|
3612 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:368
|
3613 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:230
|
3614 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:244
|
3615 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:244
|
3616 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:210
|
3617 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:217
|
3618 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:332
|
3619 |
-
msgid "The {label} field is required"
|
3620 |
-
msgstr "El campo {label} es requerido"
|
3621 |
-
|
3622 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:336
|
3623 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:337
|
3624 |
-
#, php-format
|
3625 |
-
msgid "The {label} field must contain minimum %d character"
|
3626 |
-
msgstr "El campo {label} debe contener mínimo %d caracter"
|
3627 |
-
|
3628 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:341
|
3629 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:342
|
3630 |
-
#, php-format
|
3631 |
-
msgid "The {label} field must contain minimum %d characters"
|
3632 |
-
msgstr "El campo {label} debe contener mínimo %d caracteres"
|
3633 |
-
|
3634 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:346
|
3635 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:347
|
3636 |
-
#, php-format
|
3637 |
-
msgid "The {label} field must contain maximum %d character"
|
3638 |
-
msgstr "El campo {label} debe contener máximo %d caracter"
|
3639 |
-
|
3640 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:351
|
3641 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:352
|
3642 |
-
#, php-format
|
3643 |
-
msgid "The {label} field must contain maximum %d characters"
|
3644 |
-
msgstr "El campo {label} debe contener máximo %d caracteres"
|
3645 |
-
|
3646 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:356
|
3647 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:357
|
3648 |
-
#, php-format
|
3649 |
-
msgid "The {label} field must contain minimum %d word"
|
3650 |
-
msgstr "El campo {label} debe contener mínimo %d palabra"
|
3651 |
-
|
3652 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:361
|
3653 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:362
|
3654 |
-
#, php-format
|
3655 |
-
msgid "The {label} field must contain minimum %d words"
|
3656 |
-
msgstr "El campo {label} debe contener mínimo %d palabras"
|
3657 |
-
|
3658 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:366
|
3659 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:367
|
3660 |
-
#, php-format
|
3661 |
-
msgid "The {label} field must contain maximum %d word"
|
3662 |
-
msgstr "El campo {label} debe contener máximo %d palabra"
|
3663 |
-
|
3664 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:371
|
3665 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:372
|
3666 |
-
#, php-format
|
3667 |
-
msgid "The {label} field must contain maximum %d words"
|
3668 |
-
msgstr "El campo {label} debe contener máximo %d palabras"
|
3669 |
-
|
3670 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:20
|
3671 |
-
msgid "Add a Number field"
|
3672 |
-
msgstr "Agregar campo numérico"
|
3673 |
-
|
3674 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:22
|
3675 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:50
|
3676 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:79
|
3677 |
-
msgid "Number"
|
3678 |
-
msgstr "Número"
|
3679 |
-
|
3680 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:129
|
3681 |
-
msgid "Set digits or values restrictions of this field"
|
3682 |
-
msgstr "Establecer dígitos o valores restringidos en este campo"
|
3683 |
-
|
3684 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:133
|
3685 |
-
msgid "Digits"
|
3686 |
-
msgstr "Digitos"
|
3687 |
-
|
3688 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:134
|
3689 |
-
msgid "Value"
|
3690 |
-
msgstr "Valores"
|
3691 |
-
|
3692 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:363
|
3693 |
-
msgid "The {label} field must be a valid number"
|
3694 |
-
msgstr "El campo {label} debe ser un número válido"
|
3695 |
-
|
3696 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:373
|
3697 |
-
#, php-format
|
3698 |
-
msgid "The {label} field must have minimum %d digit"
|
3699 |
-
msgstr "El campo {label} debe contener mínimo %d dígito"
|
3700 |
-
|
3701 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:378
|
3702 |
-
#, php-format
|
3703 |
-
msgid "The {label} field must have minimum %d digits"
|
3704 |
-
msgstr "El campo {label} debe contener mínimo %d dígitos"
|
3705 |
-
|
3706 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:383
|
3707 |
-
#, php-format
|
3708 |
-
msgid "The {label} field must have maximum %d digit"
|
3709 |
-
msgstr "El campo {label} debe contener máximo %d dígito"
|
3710 |
-
|
3711 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:388
|
3712 |
-
#, php-format
|
3713 |
-
msgid "The {label} field must have maximum %d digits"
|
3714 |
-
msgstr "El campo {label} debe contener máximo %d dígitos"
|
3715 |
-
|
3716 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:393
|
3717 |
-
#, php-format
|
3718 |
-
msgid "The {label} field minimum value must be %s"
|
3719 |
-
msgstr "El campo {label} debe ser valor mínimo de %s"
|
3720 |
-
|
3721 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:398
|
3722 |
-
#, php-format
|
3723 |
-
msgid "The {label} field maximum value must be %s"
|
3724 |
-
msgstr "El campo {label} debe ser valor máximo de %s"
|
3725 |
-
|
3726 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:18
|
3727 |
-
msgid "Add a Dropdown"
|
3728 |
-
msgstr "Agregar Lista (Dropdown)"
|
3729 |
-
|
3730 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:22
|
3731 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:49
|
3732 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:79
|
3733 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:164
|
3734 |
-
msgid "Dropdown"
|
3735 |
-
msgstr "Lista (Dropdown)"
|
3736 |
-
|
3737 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:100
|
3738 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:103
|
3739 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:103
|
3740 |
-
msgid "Choices"
|
3741 |
-
msgstr "Opciones"
|
3742 |
-
|
3743 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:101
|
3744 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:104
|
3745 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:104
|
3746 |
-
msgid "Add choice"
|
3747 |
-
msgstr "Agregar opción"
|
3748 |
-
|
3749 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:110
|
3750 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:113
|
3751 |
-
msgid "Randomize"
|
3752 |
-
msgstr "Aleatorio"
|
3753 |
-
|
3754 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:111
|
3755 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:114
|
3756 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:114
|
3757 |
-
msgid "Do you want choices to be displayed in random order?"
|
3758 |
-
msgstr "Quiere que las opciones sean mostradas en orden aleatorio?"
|
3759 |
-
|
3760 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:235
|
3761 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:249
|
3762 |
-
msgid "{label}: Submitted data contains not existing choice"
|
3763 |
-
msgstr "{label}: Datos enviados contienen opción inexistente"
|
3764 |
-
|
3765 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:38
|
3766 |
-
msgid "Edit Title"
|
3767 |
-
msgstr "Editar título"
|
3768 |
-
|
3769 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:39
|
3770 |
-
msgid "Edit Subtitle"
|
3771 |
-
msgstr "Editar Subtítulo"
|
3772 |
-
|
3773 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:57
|
3774 |
-
msgid "The title will be displayed on contact form header"
|
3775 |
-
msgstr "Este título es mostrado en el encabezado de formulario"
|
3776 |
-
|
3777 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:62
|
3778 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:7
|
3779 |
-
msgid "Subtitle"
|
3780 |
-
msgstr "Subtítulo"
|
3781 |
-
|
3782 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:63
|
3783 |
-
msgid "The form header subtitle text"
|
3784 |
-
msgstr "Subtítulo en encabezado de formulario"
|
3785 |
-
|
3786 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:18
|
3787 |
-
msgid "Add a Single Choice field"
|
3788 |
-
msgstr "Agregar un campo de elección única"
|
3789 |
-
|
3790 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:56
|
3791 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:56
|
3792 |
-
msgid "{x} More"
|
3793 |
-
msgstr "{x} Más"
|
3794 |
-
|
3795 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:113
|
3796 |
-
msgid "Randomize?"
|
3797 |
-
msgstr "Aleatorio?"
|
3798 |
-
|
3799 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:124
|
3800 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:124
|
3801 |
-
msgid "Field Layout"
|
3802 |
-
msgstr "Diseño de campo"
|
3803 |
-
|
3804 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:125
|
3805 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:125
|
3806 |
-
msgid "Select choice display layout"
|
3807 |
-
msgstr "Seleccione opción de diseño"
|
3808 |
-
|
3809 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:127
|
3810 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:127
|
3811 |
-
msgid "One column"
|
3812 |
-
msgstr "Una columna"
|
3813 |
-
|
3814 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:128
|
3815 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:128
|
3816 |
-
msgid "Two columns"
|
3817 |
-
msgstr "Dos columnas"
|
3818 |
-
|
3819 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:129
|
3820 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:129
|
3821 |
-
msgid "Three columns"
|
3822 |
-
msgstr "Tres columnas"
|
3823 |
-
|
3824 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:130
|
3825 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:130
|
3826 |
-
msgid "Side by side"
|
3827 |
-
msgstr "Lado a lado"
|
3828 |
-
|
3829 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:18
|
3830 |
-
msgid "Add a Multiple Choices field"
|
3831 |
-
msgstr "Agregar campo de elecciones múltiples"
|
3832 |
-
|
3833 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:249
|
3834 |
-
msgid "{label}: Submitted data contains not existing choices"
|
3835 |
-
msgstr "{label}: Datos enviados contienen opciones inexistentes"
|
3836 |
-
|
3837 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:18
|
3838 |
-
msgid "Add an Email field"
|
3839 |
-
msgstr "Agregar campo de Email"
|
3840 |
-
|
3841 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:22
|
3842 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:49
|
3843 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:79
|
3844 |
-
msgid "Email"
|
3845 |
-
msgstr "Email"
|
3846 |
-
|
3847 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:215
|
3848 |
-
msgid "The {label} field must contain a valid email"
|
3849 |
-
msgstr "Campo {label} debe contener una dirección de email válida"
|
3850 |
-
|
3851 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:18
|
3852 |
-
msgid "Add a Website field"
|
3853 |
-
msgstr "Agregar campo sitio web"
|
3854 |
-
|
3855 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:22
|
3856 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:49
|
3857 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:79
|
3858 |
-
msgid "Website"
|
3859 |
-
msgstr "Sitio Web"
|
3860 |
-
|
3861 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:222
|
3862 |
-
msgid "The {label} field must be a valid website name"
|
3863 |
-
msgstr "Campo {label} debe tener un sitio web válido"
|
3864 |
-
|
3865 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:18
|
3866 |
-
msgid "Add a Single Line Text"
|
3867 |
-
msgstr "Agregar campo de texto de una línea"
|
3868 |
-
|
3869 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:20
|
3870 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:47
|
3871 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:77
|
3872 |
-
msgid "Single Line Text"
|
3873 |
-
msgstr "Campo de Texto de una línea"
|
3874 |
-
|
3875 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:17
|
3876 |
-
msgid "Text for Homepage"
|
3877 |
-
msgstr "Texto para página de inicio"
|
3878 |
-
|
3879 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:18
|
3880 |
-
msgid "The homepage anchor will have this text"
|
3881 |
-
msgstr "La etiqueta de página de inicio tendrá este texto"
|
3882 |
-
|
3883 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:23
|
3884 |
-
msgid "Text for Blog Page"
|
3885 |
-
msgstr "Texto para página de blog"
|
3886 |
-
|
3887 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:24
|
3888 |
-
msgid ""
|
3889 |
-
"The blog page anchor will have this text. In case homepage will be set as "
|
3890 |
-
"blog page, will be taken the homepage text"
|
3891 |
-
msgstr "La etiqueta de página de blog tendrá este texto. En caso de que la página de inicio esté configurada como página de blog (entradas), tomará el texto de página de inicio"
|
3892 |
-
|
3893 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:29
|
3894 |
-
msgid "Text for 404 Page"
|
3895 |
-
msgstr "Texto para página 404"
|
3896 |
-
|
3897 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:30
|
3898 |
-
msgid "The 404 anchor will have this text"
|
3899 |
-
msgstr "La etiqueta de página de error 404 tendrá este texto"
|
3900 |
-
|
3901 |
-
#: ../framework/extensions/breadcrumbs/manifest.php:7
|
3902 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:108
|
3903 |
-
msgid "Breadcrumbs"
|
3904 |
-
msgstr "Migas de pan (Breadcrumbs)"
|
3905 |
-
|
3906 |
-
#: ../framework/extensions/breadcrumbs/manifest.php:9
|
3907 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:109
|
3908 |
-
msgid ""
|
3909 |
-
"Creates a simplified navigation menu for the pages that can be placed "
|
3910 |
-
"anywhere in the theme. This will make navigating the website much easier."
|
3911 |
-
msgstr "Crea un menu de navegación simplificado para páginas que puede ser ubicado en cualquier lugar de un tema. Esto conlleva a una navegación mas sencilla."
|
3912 |
-
|
3913 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:11
|
3914 |
-
msgid "404 Not found"
|
3915 |
-
msgstr "404 No se encuentra"
|
3916 |
-
|
3917 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:124
|
3918 |
-
msgid "Searching for:"
|
3919 |
-
msgstr "Búsqueda para: "
|
3920 |
-
|
3921 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:248
|
3922 |
-
#: ../framework/includes/option-types/multi-select/class-fw-option-type-multi-select.php:472
|
3923 |
-
msgid "No title"
|
3924 |
-
msgstr "(sin título)"
|
3925 |
-
|
3926 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:89
|
3927 |
-
msgid "Create a event item"
|
3928 |
-
msgstr "Crear un item evento"
|
3929 |
-
|
3930 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:186
|
3931 |
-
msgid "Date"
|
3932 |
-
msgstr "Fecha"
|
3933 |
-
|
3934 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:204
|
3935 |
-
msgid "Event Options"
|
3936 |
-
msgstr "Opciones de eventp"
|
3937 |
-
|
3938 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:310
|
3939 |
-
msgid "Multi Interval Event"
|
3940 |
-
msgstr "Evento Multi Intervalo"
|
3941 |
-
|
3942 |
-
#: ../framework/extensions/events/manifest.php:8
|
3943 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:181
|
3944 |
-
msgid ""
|
3945 |
-
"This extension adds a fully fledged Events module to your theme. It comes "
|
3946 |
-
"with built in pages that contain a calendar where events can be added."
|
3947 |
-
msgstr "Esta extensión añade un completo módulo para gestionar Eventos en su tema. Viene con páginas elaboradas que contienen calendario en donde cada evento es agregado."
|
3948 |
-
|
3949 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:81
|
3950 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:189
|
3951 |
-
msgid "Event Categories"
|
3952 |
-
msgstr "Categorías de Evento"
|
3953 |
-
|
3954 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:82
|
3955 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:190
|
3956 |
-
msgid "Select an event category"
|
3957 |
-
msgstr "Seleccione una categoría de evento"
|
3958 |
-
|
3959 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:84
|
3960 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:192
|
3961 |
-
msgid "All Events"
|
3962 |
-
msgstr "Todos Los Eventos"
|
3963 |
-
|
3964 |
-
#: ../framework/extensions/events/extensions/events-tags/manifest.php:7
|
3965 |
-
msgid "Event-search-tags"
|
3966 |
-
msgstr "buscar-etiquetas-evento"
|
3967 |
-
|
3968 |
-
#: ../framework/extensions/events/extensions/events-tags/manifest.php:8
|
3969 |
-
msgid "Connect extension event with shortcodes map & calendar"
|
3970 |
-
msgstr "Conectar extensión con shortcode mapa y calendario"
|
3971 |
-
|
3972 |
-
#: ../framework/extensions/events/views/content.php:16
|
3973 |
-
msgid "Google Calendar"
|
3974 |
-
msgstr "Calendario Google"
|
3975 |
-
|
3976 |
-
#: ../framework/extensions/events/views/content.php:17
|
3977 |
-
msgid "Ical Export"
|
3978 |
-
msgstr "Exportar Ical"
|
3979 |
-
|
3980 |
-
#: ../framework/extensions/events/views/content.php:20
|
3981 |
-
msgid "Start"
|
3982 |
-
msgstr "Comienza"
|
3983 |
-
|
3984 |
-
#: ../framework/extensions/events/views/content.php:21
|
3985 |
-
msgid "End"
|
3986 |
-
msgstr "Finaliza"
|
3987 |
-
|
3988 |
-
#: ../framework/extensions/events/views/content.php:25
|
3989 |
-
msgid "Speakers"
|
3990 |
-
msgstr "Presentantes"
|
3991 |
-
|
3992 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:37
|
3993 |
-
msgid "Event Location"
|
3994 |
-
msgstr "Ubicación de evento"
|
3995 |
-
|
3996 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:39
|
3997 |
-
msgid "Where does the event take place?"
|
3998 |
-
msgstr "Dónde tendrá lugar el evento?"
|
3999 |
-
|
4000 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:43
|
4001 |
-
msgid "All Day Event?"
|
4002 |
-
msgstr "Evento todo el día?"
|
4003 |
-
|
4004 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:44
|
4005 |
-
msgid "Is your event an all day event?"
|
4006 |
-
msgstr "Su evento dura todo el día?"
|
4007 |
-
|
4008 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:67
|
4009 |
-
msgid "Start & End of Event"
|
4010 |
-
msgstr "Comienzo y Fin de Evento"
|
4011 |
-
|
4012 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:68
|
4013 |
-
msgid "Set start and end events datetime"
|
4014 |
-
msgstr "Establecer fecha comienzo y fin de evento"
|
4015 |
-
|
4016 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:97
|
4017 |
-
msgid "Associated User"
|
4018 |
-
msgstr "Usuario asociado"
|
4019 |
-
|
4020 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:99
|
4021 |
-
msgid "Link this event to a specific user"
|
4022 |
-
msgstr "Asociar este evento a usuario específico"
|
4023 |
-
|
4024 |
-
#: ../framework/extensions/sidebars/manifest.php:7
|
4025 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:132
|
4026 |
-
msgid "Sidebars"
|
4027 |
-
msgstr "Barras Laterales (Sidebars)"
|
4028 |
-
|
4029 |
-
#: ../framework/extensions/sidebars/manifest.php:9
|
4030 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:133
|
4031 |
-
msgid ""
|
4032 |
-
"Brings a new layer of customization freedom to your website by letting you "
|
4033 |
-
"add more than one sidebar to a page, or different sidebars on different "
|
4034 |
-
"pages."
|
4035 |
-
msgstr "Aporta una nueva capa de personalización libre para su sitio web permitiendo agregar mas de una barra lateral (Sidebar) a su página o diferentes barras laterales en diferentes páginas."
|
4036 |
-
|
4037 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:131
|
4038 |
-
msgid "No matches found"
|
4039 |
-
msgstr "No hay resultados coincidentes"
|
4040 |
-
|
4041 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:139
|
4042 |
-
msgid "Do you realy want to change without saving?"
|
4043 |
-
msgstr "Realmente quiere realizar cambios sin guardar?"
|
4044 |
-
|
4045 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:141
|
4046 |
-
msgid "Missing ID. Check that you provided all mandatory data."
|
4047 |
-
msgstr "ID Incorrecto. Revise que ha ingresado todos los datos requeridos"
|
4048 |
-
|
4049 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:142
|
4050 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:27
|
4051 |
-
msgid "Created"
|
4052 |
-
msgstr "Creado"
|
4053 |
-
|
4054 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:143
|
4055 |
-
msgid "(For Grouped Pages)"
|
4056 |
-
msgstr "(Para Páginas Agrupadas)"
|
4057 |
-
|
4058 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:144
|
4059 |
-
msgid "(For Specific Pages)"
|
4060 |
-
msgstr "(Para Páginas Específicas)"
|
4061 |
-
|
4062 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:145
|
4063 |
-
msgid "No sidebar name specified"
|
4064 |
-
msgstr "Nombre de barra lateral no especificado"
|
4065 |
-
|
4066 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:146
|
4067 |
-
msgid "Sidebar Name"
|
4068 |
-
msgstr "Nombre de barra lateral"
|
4069 |
-
|
4070 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:147
|
4071 |
-
msgid "New Sidebar"
|
4072 |
-
msgstr "Nueva barra lateral"
|
4073 |
-
|
4074 |
-
#: ../framework/extensions/sidebars/views/frontend-no-widgets.php:5
|
4075 |
-
msgid "Widgets Page"
|
4076 |
-
msgstr "Página de widgets"
|
4077 |
-
|
4078 |
-
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:5
|
4079 |
-
msgid "For specific"
|
4080 |
-
msgstr "Para específica"
|
4081 |
-
|
4082 |
-
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:23
|
4083 |
-
msgid "Type to search ..."
|
4084 |
-
msgstr "Escriba aquí para buscar ..."
|
4085 |
-
|
4086 |
-
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:30
|
4087 |
-
msgid "Search for a specific page you want to set a sidebar for"
|
4088 |
-
msgstr "Búsqueda para una página específica para la cual quiere establecer una barra lateral"
|
4089 |
-
|
4090 |
-
#: ../framework/extensions/sidebars/views/backend-tab-grouped.php:6
|
4091 |
-
msgid "For group"
|
4092 |
-
msgstr "Para un grupo"
|
4093 |
-
|
4094 |
-
#: ../framework/extensions/sidebars/views/backend-tab-grouped.php:25
|
4095 |
-
msgid "Select group of pages you want to set a sidebar for."
|
4096 |
-
msgstr "Seleccione un grupo de páginas para las cuales quiere establecer su barra lateral."
|
4097 |
-
|
4098 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:18
|
4099 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:60
|
4100 |
-
msgid "Choose the position for your sidebar(s)"
|
4101 |
-
msgstr "Escoja la posición de su(s) barra(s) lateral(es)"
|
4102 |
-
|
4103 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:43
|
4104 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:40
|
4105 |
-
msgid "Add Sidebar"
|
4106 |
-
msgstr "Agregar Barra Lateral"
|
4107 |
-
|
4108 |
-
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:4
|
4109 |
-
msgid "Sidebars for"
|
4110 |
-
msgstr "Barras Laterales para"
|
4111 |
-
|
4112 |
-
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4113 |
-
msgid "For Specific Page"
|
4114 |
-
msgstr "Para página específica"
|
4115 |
-
|
4116 |
-
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4117 |
-
msgid "For Grouped Page"
|
4118 |
-
msgstr "Para grupo de páginas"
|
4119 |
-
|
4120 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:11
|
4121 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:15
|
4122 |
-
msgid "Manage Sidebars"
|
4123 |
-
msgstr "Gestionar Barras Laterales"
|
4124 |
-
|
4125 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:18
|
4126 |
-
msgid ""
|
4127 |
-
"Use this section to create and/or set different sidebar(s) for different "
|
4128 |
-
"page(s)"
|
4129 |
-
msgstr "Utilice esta sección para crear y/o establecer diferentes barras laterales para diferentes páginas"
|
4130 |
-
|
4131 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:24
|
4132 |
-
msgid "For Grouped Pages"
|
4133 |
-
msgstr "Para grupo de páginas"
|
4134 |
-
|
4135 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:25
|
4136 |
-
msgid "For Specific Pages"
|
4137 |
-
msgstr "Para página específica"
|
4138 |
-
|
4139 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:32
|
4140 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:121
|
4141 |
-
msgid "Select sidebar you wish to replace."
|
4142 |
-
msgstr "Seleccione barra lateral que quiere reemplazar"
|
4143 |
-
|
4144 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:241
|
4145 |
-
msgid "No sidebar name specified."
|
4146 |
-
msgstr "Nombre de barra lateral no especificado"
|
4147 |
-
|
4148 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:270
|
4149 |
-
msgid "Dynamic sidebar doesn't exixt"
|
4150 |
-
msgstr "Barra lateral dinámica no existe"
|
4151 |
-
|
4152 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:277
|
4153 |
-
msgid ""
|
4154 |
-
"The placeholder can't be deleted because it is used in one of sidebars "
|
4155 |
-
"below."
|
4156 |
-
msgstr "El marcador no puede ser eliminado porque es utilizado en una de las barras laterales de abajo."
|
4157 |
-
|
4158 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:280
|
4159 |
-
msgid ""
|
4160 |
-
"Please replace it first so that you will not have visual gaps in your "
|
4161 |
-
"layout."
|
4162 |
-
msgstr "Por favor primero reemplace y de este modo usted no tendrá deficiencias visuales en su diseño."
|
4163 |
-
|
4164 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:293
|
4165 |
-
msgid "Successfully removed"
|
4166 |
-
msgstr "Eliminado exitosamente"
|
4167 |
-
|
4168 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:543
|
4169 |
-
msgid "Default for all pages"
|
4170 |
-
msgstr "Por defecto para todas las páginas"
|
4171 |
-
|
4172 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:613
|
4173 |
-
msgid " (no title)"
|
4174 |
-
msgstr "(sin título)"
|
4175 |
-
|
4176 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:780
|
4177 |
-
msgid "Error: Type or sub_type error"
|
4178 |
-
msgstr "Error: Error en tipo o subtipo"
|
4179 |
-
|
4180 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:838
|
4181 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:869
|
4182 |
-
msgid "Error: Sidebars not set"
|
4183 |
-
msgstr "Error: Barras laterales no establecidas"
|
4184 |
-
|
4185 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:865
|
4186 |
-
msgid "Error: Position doesn't exists. Please check config file."
|
4187 |
-
msgstr "Error: Posición inexistente. Por favor revise el archivo de configuración."
|
4188 |
-
|
4189 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:55
|
4190 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:253
|
4191 |
-
msgid "Page"
|
4192 |
-
msgstr "Página"
|
4193 |
-
|
4194 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:56
|
4195 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:153
|
4196 |
-
msgid "Pages"
|
4197 |
-
msgstr "Páginas"
|
4198 |
-
|
4199 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:61
|
4200 |
-
msgid "Portfolio Project"
|
4201 |
-
msgstr "Proyecto en Portafolios"
|
4202 |
-
|
4203 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:62
|
4204 |
-
msgid "Portfolio Projects"
|
4205 |
-
msgstr "Proyectos en Portafolios"
|
4206 |
-
|
4207 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:73
|
4208 |
-
msgid "Blog Category"
|
4209 |
-
msgstr "Categoría del Blog"
|
4210 |
-
|
4211 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:79
|
4212 |
-
msgid "Portfolio Category"
|
4213 |
-
msgstr "Categoría de Portafolios"
|
4214 |
-
|
4215 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:85
|
4216 |
-
msgid "Home Page"
|
4217 |
-
msgstr "Página de Inicio"
|
4218 |
-
|
4219 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:90
|
4220 |
-
msgid "Search Page"
|
4221 |
-
msgstr "Página de Búsqueda"
|
4222 |
-
|
4223 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:95
|
4224 |
-
msgid "404 Page"
|
4225 |
-
msgstr "Página 404"
|
4226 |
-
|
4227 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:100
|
4228 |
-
msgid "Author Page"
|
4229 |
-
msgstr "Página de Autor"
|
4230 |
-
|
4231 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:105
|
4232 |
-
msgid "Archive Page"
|
4233 |
-
msgstr "Página de Archivo"
|
4234 |
-
|
4235 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:149
|
4236 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:308
|
4237 |
-
msgid "All Pages"
|
4238 |
-
msgstr "Todas las Páginas"
|
4239 |
-
|
4240 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:184
|
4241 |
-
msgid "Others"
|
4242 |
-
msgstr "Otras"
|
4243 |
-
|
4244 |
-
#: ../framework/extensions/megamenu/manifest.php:7
|
4245 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:64
|
4246 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:60
|
4247 |
-
msgid "Mega Menu"
|
4248 |
-
msgstr "Mega Menú"
|
4249 |
-
|
4250 |
-
#: ../framework/extensions/megamenu/manifest.php:8
|
4251 |
-
#: ../framework/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 "La extensión Mega Menú añade un menú desplegable fácil de utilizar que le permitirá crear de manera fácil configuraciones altamente personalizadas de menú."
|
4256 |
-
|
4257 |
-
#: ../framework/extensions/megamenu/class-fw-extension-megamenu.php:58
|
4258 |
-
msgid "Select Icon"
|
4259 |
-
msgstr "Seleccionar Icono"
|
4260 |
-
|
4261 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:44
|
4262 |
-
#, php-format
|
4263 |
-
msgid "%s (Invalid)"
|
4264 |
-
msgstr "%s (No válido)"
|
4265 |
-
|
4266 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:48
|
4267 |
-
#, php-format
|
4268 |
-
msgid "%s (Pending)"
|
4269 |
-
msgstr "%s (Pendiente)"
|
4270 |
-
|
4271 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:61
|
4272 |
-
msgid "sub item"
|
4273 |
-
msgstr "sub item"
|
4274 |
-
|
4275 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:97
|
4276 |
-
msgid "Edit Menu Item"
|
4277 |
-
msgstr "Editar Item de Menú"
|
4278 |
-
|
4279 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:108
|
4280 |
-
msgid "URL"
|
4281 |
-
msgstr "URL"
|
4282 |
-
|
4283 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:117
|
4284 |
-
msgid "Navigation Label"
|
4285 |
-
msgstr "Etiqueta de navegación"
|
4286 |
-
|
4287 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:125
|
4288 |
-
msgid "Title Attribute"
|
4289 |
-
msgstr "Atributo de título"
|
4290 |
-
|
4291 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:134
|
4292 |
-
msgid "Open link in a new window/tab"
|
4293 |
-
msgstr "Abrir link en nueva ventana/pestaña"
|
4294 |
-
|
4295 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:141
|
4296 |
-
msgid "CSS Classes (optional)"
|
4297 |
-
msgstr "Clases CSS (Opcional)"
|
4298 |
-
|
4299 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:149
|
4300 |
-
msgid "Link Relationship (XFN)"
|
4301 |
-
msgstr "Relación del enlace (XFN)"
|
4302 |
-
|
4303 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:157
|
4304 |
-
msgid "Mega Menu Column Title"
|
4305 |
-
msgstr "Título de Columna Mega Menú"
|
4306 |
-
|
4307 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:158
|
4308 |
-
msgid "Item Title"
|
4309 |
-
msgstr "Título de Item"
|
4310 |
-
|
4311 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:166
|
4312 |
-
msgid "Hide"
|
4313 |
-
msgstr "Ocultar"
|
4314 |
-
|
4315 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:172
|
4316 |
-
msgid "This column should start a new row"
|
4317 |
-
msgstr "Esta columna debe comenzar en una nueva fila"
|
4318 |
-
|
4319 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:178
|
4320 |
-
msgid "Description (HTML)"
|
4321 |
-
msgstr "Descripción (HTML)"
|
4322 |
-
|
4323 |
-
#: ../framework/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 "La descripción es mostrada en el menú si el actual tema tiene soporte para esta."
|
4328 |
-
|
4329 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:190
|
4330 |
-
msgid "Add Icon"
|
4331 |
-
msgstr "Agregar Icono"
|
4332 |
-
|
4333 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:191
|
4334 |
-
msgid "Edit Icon"
|
4335 |
-
msgstr "Editar Icono"
|
4336 |
-
|
4337 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:205
|
4338 |
-
msgid "Use as Mega Menu"
|
4339 |
-
msgstr "Utilizar como Mega Menú"
|
4340 |
-
|
4341 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:211
|
4342 |
-
msgid "Move"
|
4343 |
-
msgstr "Mover"
|
4344 |
-
|
4345 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:212
|
4346 |
-
msgid "Up one"
|
4347 |
-
msgstr "Uno arriba"
|
4348 |
-
|
4349 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:213
|
4350 |
-
msgid "Down one"
|
4351 |
-
msgstr "Uno abajo"
|
4352 |
-
|
4353 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:216
|
4354 |
-
msgid "To the top"
|
4355 |
-
msgstr "Al principio"
|
4356 |
-
|
4357 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:225
|
4358 |
-
#, php-format
|
4359 |
-
msgid "Original: %s"
|
4360 |
-
msgstr "Original: %s"
|
4361 |
-
|
4362 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:239
|
4363 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:60
|
4364 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2282
|
4365 |
-
msgid "Cancel"
|
4366 |
-
msgstr "Cancelar"
|
4367 |
-
|
4368 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:299
|
4369 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:366
|
4370 |
-
msgid "File not specified"
|
4371 |
-
msgstr "Archivo no especificado"
|
4372 |
-
|
4373 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:399
|
4374 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:400
|
4375 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:156
|
4376 |
-
msgid "Backup"
|
4377 |
-
msgstr "Respaldar"
|
4378 |
-
|
4379 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:554
|
4380 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:568
|
4381 |
-
msgid "Access Denied"
|
4382 |
-
msgstr "Acceso Denegado"
|
4383 |
-
|
4384 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:561
|
4385 |
-
msgid "Archive not found"
|
4386 |
-
msgstr "Archivo no encontrado"
|
4387 |
-
|
4388 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:575
|
4389 |
-
#: ../framework/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 "Ha fallado abrir el archivo"
|
4392 |
-
|
4393 |
-
#: ../framework/extensions/backups/helpers.php:37
|
4394 |
-
msgid "Invalid JSON response"
|
4395 |
-
msgstr "Respuesta JSON no válida"
|
4396 |
-
|
4397 |
-
#: ../framework/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 "Conexiones de bucle invertido HTTP no están activadas en este servidor. \nSi necesita ponerse en contacto con su proveedor de alojamiento web, dígales que cuando PHP intenta conectarse de nuevo al sitio en la URL `{url}` este obtiene el error `{error}`. Puede haber un problema con la configuración del servidor (Ej: problemas en DNS local, mod_security, etc) previniendo que las conecciones funcionen apropiadamente."
|
4405 |
-
|
4406 |
-
#: ../framework/extensions/backups/helpers.php:123
|
4407 |
-
#: ../framework/extensions/backups/helpers.php:145
|
4408 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:363
|
4409 |
-
#: ../framework/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 "Falla al crear directorio: %s"
|
4413 |
-
|
4414 |
-
#: ../framework/extensions/backups/helpers.php:152
|
4415 |
-
#: ../framework/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 "Falla al copiar: %s"
|
4419 |
-
|
4420 |
-
#: ../framework/extensions/backups/manifest.php:7
|
4421 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:168
|
4422 |
-
msgid "Backup & Demo Content"
|
4423 |
-
msgstr "Respaldo & Contenido Demostrativo"
|
4424 |
-
|
4425 |
-
#: ../framework/extensions/backups/manifest.php:9
|
4426 |
-
#: ../framework/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 "Esta extensión le permite crear respaldos programados automáticamente, importar contenido demostrativo o incluso crear un archivo de contenido demostrativo para propósitos de migración."
|
4431 |
-
|
4432 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:97
|
4433 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:98
|
4434 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:385
|
4435 |
-
msgid "Demo Content Install"
|
4436 |
-
msgstr "Instalar Contenido Demostrativo"
|
4437 |
-
|
4438 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:282
|
4439 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:329
|
4440 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:362
|
4441 |
-
msgid "Forbidden"
|
4442 |
-
msgstr "Prohibido"
|
4443 |
-
|
4444 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:342
|
4445 |
-
msgid "Invalid demo"
|
4446 |
-
msgstr "Demostración Inválida"
|
4447 |
-
|
4448 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:349
|
4449 |
-
msgid "A content install is currently running"
|
4450 |
-
msgstr "Un contenido de instalación se está ejecutando actualmente"
|
4451 |
-
|
4452 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:28
|
4453 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:39
|
4454 |
-
#: ../framework/extensions/backups/views/page.php:17
|
4455 |
-
#: ../framework/extensions/backups/views/page.php:28
|
4456 |
-
msgid "Important"
|
4457 |
-
msgstr "Importante"
|
4458 |
-
|
4459 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:30
|
4460 |
-
#: ../framework/extensions/backups/views/page.php:19
|
4461 |
-
#, php-format
|
4462 |
-
msgid "You need to activate %s."
|
4463 |
-
msgstr "Usted necesita activar %s."
|
4464 |
-
|
4465 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:31
|
4466 |
-
#: ../framework/extensions/backups/views/page.php:20
|
4467 |
-
msgid "zip extension"
|
4468 |
-
msgstr "extensión zip"
|
4469 |
-
|
4470 |
-
#: ../framework/extensions/backups/views/page.php:70
|
4471 |
-
msgid "Archives"
|
4472 |
-
msgstr "Archivos"
|
4473 |
-
|
4474 |
-
#: ../framework/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4475 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:76
|
4476 |
-
msgid "Full Backup"
|
4477 |
-
msgstr "Respaldo Total"
|
4478 |
-
|
4479 |
-
#: ../framework/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4480 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:85
|
4481 |
-
msgid "Content Backup"
|
4482 |
-
msgstr "Respaldo de Contenido"
|
4483 |
-
|
4484 |
-
#: ../framework/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 "Advertencia! \nUsted está eliminando un respaldo, este se perderá completamente. \nEstá seguro (a)?"
|
4490 |
-
|
4491 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:16
|
4492 |
-
msgid "Interval"
|
4493 |
-
msgstr "Intervalo"
|
4494 |
-
|
4495 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:20
|
4496 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:180
|
4497 |
-
msgid "Disabled"
|
4498 |
-
msgstr "Deshabilitado"
|
4499 |
-
|
4500 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:25
|
4501 |
-
msgid "Select how often do you want to backup your website."
|
4502 |
-
msgstr "Seleccione la frecuencia con qué quiere hacer copias de seguridad de su sitio web."
|
4503 |
-
|
4504 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:32
|
4505 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:45
|
4506 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:58
|
4507 |
-
msgid "Age Limit"
|
4508 |
-
msgstr "Límite de Antigüedad"
|
4509 |
-
|
4510 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:33
|
4511 |
-
msgid "Age limit of backups in months"
|
4512 |
-
msgstr "Límite de Antigüedad de respaldo en meses"
|
4513 |
-
|
4514 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:46
|
4515 |
-
msgid "Age limit of backups in weeks"
|
4516 |
-
msgstr "Límite de Antigüedad de respaldo en semanas"
|
4517 |
-
|
4518 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:59
|
4519 |
-
msgid "Age limit of backups in days"
|
4520 |
-
msgstr "Límite de Antigüedad de respaldo en días"
|
4521 |
-
|
4522 |
-
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:186
|
4523 |
-
msgid "Backup Schedule"
|
4524 |
-
msgstr "Respaldo Programado"
|
4525 |
-
|
4526 |
-
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:288
|
4527 |
-
msgid "Once Weekly"
|
4528 |
-
msgstr "Una vez a la semana"
|
4529 |
-
|
4530 |
-
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:292
|
4531 |
-
msgid "Once a month"
|
4532 |
-
msgstr "Una vez al mes"
|
4533 |
-
|
4534 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:139
|
4535 |
-
msgid "undefined"
|
4536 |
-
msgstr "indefinido"
|
4537 |
-
|
4538 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:279
|
4539 |
-
msgid "Task type not registered"
|
4540 |
-
msgstr "Tipo de tarea no registrada"
|
4541 |
-
|
4542 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:286
|
4543 |
-
msgid "Execution stopped (next step did not started)"
|
4544 |
-
msgstr "Ejecución detenida (siguiente paso no inicia)"
|
4545 |
-
|
4546 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:306
|
4547 |
-
msgid "Timed out"
|
4548 |
-
msgstr "Se agotó el tiempo"
|
4549 |
-
|
4550 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:366
|
4551 |
-
msgid "Invalid execution end time"
|
4552 |
-
msgstr "Tiempo del fin de ejecución no válido"
|
4553 |
-
|
4554 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:537
|
4555 |
-
msgid "Invalid execution result"
|
4556 |
-
msgstr "Resultado de la ejecución no válido"
|
4557 |
-
|
4558 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:639
|
4559 |
-
msgid "Invalid token"
|
4560 |
-
msgstr "Token inválido"
|
4561 |
-
|
4562 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:658
|
4563 |
-
msgid "Invalid tasks hash"
|
4564 |
-
msgstr "Hash de tareas inválido"
|
4565 |
-
|
4566 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-restore.php:9
|
4567 |
-
msgid "Image Sizes Restore"
|
4568 |
-
msgstr "Restablecer Tamaños de Imagen"
|
4569 |
-
|
4570 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:12
|
4571 |
-
msgid "Archive Unzip"
|
4572 |
-
msgstr "Descomprimir Archivo"
|
4573 |
-
|
4574 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:39
|
4575 |
-
msgid "Zip file not specified"
|
4576 |
-
msgstr "Archivo zip no especificado"
|
4577 |
-
|
4578 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:47
|
4579 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:50
|
4580 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:49
|
4581 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:114
|
4582 |
-
msgid "Destination dir not specified"
|
4583 |
-
msgstr "Directorio de destino no especificado"
|
4584 |
-
|
4585 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:56
|
4586 |
-
msgid "Destination dir is not empty"
|
4587 |
-
msgstr "Directorio de destino no está vacío"
|
4588 |
-
|
4589 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:63
|
4590 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:59
|
4591 |
-
#: ../framework/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 "Falta la extensión zip"
|
4594 |
-
|
4595 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:71
|
4596 |
-
#: ../framework/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 "No es posible abrir zip (Código de error: %s)"
|
4600 |
-
|
4601 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:38
|
4602 |
-
msgid "Database export"
|
4603 |
-
msgstr "Exportar Base de datos"
|
4604 |
-
|
4605 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:71
|
4606 |
-
msgid "Database table disappeared"
|
4607 |
-
msgstr "Tabla de la base desaparecida"
|
4608 |
-
|
4609 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:91
|
4610 |
-
msgid "Cannot create file"
|
4611 |
-
msgstr "No es posible crear archivo"
|
4612 |
-
|
4613 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:97
|
4614 |
-
msgid "Cannot reopen file"
|
4615 |
-
msgstr "No es posible re-abrir archivo"
|
4616 |
-
|
4617 |
-
#: ../framework/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 "No es posible exportar sql CREATE TABLE"
|
4620 |
-
|
4621 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:211
|
4622 |
-
#: ../framework/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 "No es posible obtener la siguiente tabla de la base de datos"
|
4625 |
-
|
4626 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:9
|
4627 |
-
msgid "Files Restore"
|
4628 |
-
msgstr "Restaurar Archivos"
|
4629 |
-
|
4630 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:32
|
4631 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:41
|
4632 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:45
|
4633 |
-
msgid "Source dir not specified"
|
4634 |
-
msgstr "Directorio de origen no especificado"
|
4635 |
-
|
4636 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:39
|
4637 |
-
msgid "Invalid source dir"
|
4638 |
-
msgstr "Directorio de origen no válido"
|
4639 |
-
|
4640 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:46
|
4641 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:25
|
4642 |
-
msgid "Source dirs not specified"
|
4643 |
-
msgstr "Directorios de origen no especificados"
|
4644 |
-
|
4645 |
-
#: ../framework/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 "Sin acceso al sistema de archivos, se requieren credenciales"
|
4648 |
-
|
4649 |
-
#: ../framework/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 "Sin acceso al sistema de archivos, credenciales inválidas"
|
4652 |
-
|
4653 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:126
|
4654 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:135
|
4655 |
-
msgid "Filesystem init failed"
|
4656 |
-
msgstr "Inicio del sistema de archivos incorrecto"
|
4657 |
-
|
4658 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:192
|
4659 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:317
|
4660 |
-
#: ../framework/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 "No se puede convertir ruta del sistema de archivo: %s"
|
4664 |
-
|
4665 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:197
|
4666 |
-
#: ../framework/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 "Falla al listar directorio: %s"
|
4670 |
-
|
4671 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:227
|
4672 |
-
#: ../framework/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 "Falla al remover directorio: %s"
|
4676 |
-
|
4677 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:234
|
4678 |
-
#: ../framework/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 "Falla al remover archivo: %s"
|
4682 |
-
|
4683 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:376
|
4684 |
-
#: ../framework/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 "Falla al copiar archivo: %s"
|
4688 |
-
|
4689 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:12
|
4690 |
-
msgid "Archive Zip"
|
4691 |
-
msgstr "Archivo Zip"
|
4692 |
-
|
4693 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:97
|
4694 |
-
msgid "Cannot close the zip file"
|
4695 |
-
msgstr "No es posible cerrar archivo zip"
|
4696 |
-
|
4697 |
-
#: ../framework/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 "No es posible mover zip a directorio de destino"
|
4700 |
-
|
4701 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:9
|
4702 |
-
msgid "Files Export"
|
4703 |
-
msgstr "Exportar Archivos"
|
4704 |
-
|
4705 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:33
|
4706 |
-
msgid "Destination not specified"
|
4707 |
-
msgstr "Destino no especificado"
|
4708 |
-
|
4709 |
-
#: ../framework/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 "Directorio de origen %s está vacío"
|
4713 |
-
|
4714 |
-
#: ../framework/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 "Falla al obtener chmod del directorio"
|
4717 |
-
|
4718 |
-
#: ../framework/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 "Falla al crear directorio de destino"
|
4721 |
-
|
4722 |
-
#: ../framework/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 "Falla al restablecer la lista del directorio: %s"
|
4726 |
-
|
4727 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:12
|
4728 |
-
msgid "Database restore"
|
4729 |
-
msgstr "Restaurar Base de Datos"
|
4730 |
-
|
4731 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:63
|
4732 |
-
msgid "Database file not found"
|
4733 |
-
msgstr "Archivo de base de datos no encontrado"
|
4734 |
-
|
4735 |
-
#: ../framework/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 "No es posible colocar la tabla temporal: %s"
|
4739 |
-
|
4740 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:129
|
4741 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:285
|
4742 |
-
msgid "Cannot open db file"
|
4743 |
-
msgstr "No es posible abrir archivo de base de datos"
|
4744 |
-
|
4745 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:138
|
4746 |
-
#: ../framework/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 "No es posible mover cursor en archivo de base de datos"
|
4749 |
-
|
4750 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:154
|
4751 |
-
#: ../framework/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 "Falla al decodificar línea %d del archivo de base de datos."
|
4755 |
-
|
4756 |
-
#: ../framework/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 "No es posible leer línea %d del archivo de base de datos"
|
4760 |
-
|
4761 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:195
|
4762 |
-
msgid "Required params not found"
|
4763 |
-
msgstr "Parámetros requeridos no encontrados"
|
4764 |
-
|
4765 |
-
#: ../framework/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 "No es posible realizar la restauración total de base de datos porque al respaldo le faltan algunas tablas"
|
4768 |
-
|
4769 |
-
#: ../framework/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 "Falla al colocar tabla tmp %s"
|
4773 |
-
|
4774 |
-
#: ../framework/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 "Falla al crear tabla tmp %s"
|
4778 |
-
|
4779 |
-
#: ../framework/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 "Intento de insertar datos en tabla que no se importó %s"
|
4783 |
-
|
4784 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:606
|
4785 |
-
#: ../framework/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 "Falló insertar fila de línea %d"
|
4789 |
-
|
4790 |
-
#: ../framework/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 "Tipo de json %s no válido en archivo de base de datos"
|
4794 |
-
|
4795 |
-
#: ../framework/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 "No es posible leer línea de archivo de base de datos"
|
4798 |
-
|
4799 |
-
#: ../framework/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 "Falla al restaurar la etapa opciones de mantenimiento"
|
4802 |
-
|
4803 |
-
#: ../framework/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 "Falla al mantener la opción: %s"
|
4807 |
-
|
4808 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:774
|
4809 |
-
msgid "Tables drop failed"
|
4810 |
-
msgstr "Colocar tablas ha fallado"
|
4811 |
-
|
4812 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:787
|
4813 |
-
msgid "Tables rename failed."
|
4814 |
-
msgstr "Renombrar tablas ha fallado"
|
4815 |
-
|
4816 |
-
#: ../framework/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 "Sub tarea %s no válida"
|
4820 |
-
|
4821 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:12
|
4822 |
-
msgid "Directory Cleanup"
|
4823 |
-
msgstr "Limpieza de Directorio"
|
4824 |
-
|
4825 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:21
|
4826 |
-
msgid "Dir not specified"
|
4827 |
-
msgstr "Directorio no especificado"
|
4828 |
-
|
4829 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:30
|
4830 |
-
msgid "Cannot remove directory"
|
4831 |
-
msgstr "No es posible remover el directorio"
|
4832 |
-
|
4833 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:37
|
4834 |
-
msgid "Cannot create directory"
|
4835 |
-
msgstr "No es posible crear el directorio"
|
4836 |
-
|
4837 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:55
|
4838 |
-
#: ../framework/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 "No es posible crear archivo: %s"
|
4842 |
-
|
4843 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:9
|
4844 |
-
msgid "Image Sizes Remove"
|
4845 |
-
msgstr "Remover tamaños de imagen"
|
4846 |
-
|
4847 |
-
#: ../framework/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 "Directorio de subidas no especificado"
|
4850 |
-
|
4851 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:18
|
4852 |
-
msgid "Download"
|
4853 |
-
msgstr "Descargar"
|
4854 |
-
|
4855 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:119
|
4856 |
-
msgid "Invalid destination dir"
|
4857 |
-
msgstr "Directorio de destino no válido"
|
4858 |
-
|
4859 |
-
#: ../framework/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 "Tipo no válido: %s"
|
4863 |
-
|
4864 |
-
#: ../framework/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 "Argumentos no especificados para tipo: %s"
|
4868 |
-
|
4869 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:9
|
4870 |
-
msgid "Local Download"
|
4871 |
-
msgstr "Descarga Local"
|
4872 |
-
|
4873 |
-
#: ../framework/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 "Origen no especificado"
|
4876 |
-
|
4877 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:29
|
4878 |
-
msgid "Invalid source"
|
4879 |
-
msgstr "Origen no válido"
|
4880 |
-
|
4881 |
-
#: ../framework/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 "Tipo de origen no válido"
|
4884 |
-
|
4885 |
-
#: ../framework/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 "No es posible abrir zip: %s"
|
4889 |
-
|
4890 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:70
|
4891 |
-
msgid "Unhandled type"
|
4892 |
-
msgstr "Tipo no controlado"
|
4893 |
-
|
4894 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:13
|
4895 |
-
msgid "Downloading..."
|
4896 |
-
msgstr "Descargando..."
|
4897 |
-
|
4898 |
-
#: ../framework/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 "Descarga finalizada. Realizando descompresión..."
|
4901 |
-
|
4902 |
-
#: ../framework/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 "Descargando... %s de %s"
|
4906 |
-
|
4907 |
-
#: ../framework/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 "Descargando... %s"
|
4911 |
-
|
4912 |
-
#: ../framework/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 "Url no especificada"
|
4915 |
-
|
4916 |
-
#: ../framework/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 "Url no válida"
|
4919 |
-
|
4920 |
-
#: ../framework/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 "Id de archivo no especificado"
|
4923 |
-
|
4924 |
-
#: ../framework/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 "Id de archivo no válido"
|
4927 |
-
|
4928 |
-
#: ../framework/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 "Falla al abrir zip (código %d). Por favor intente nuevamente"
|
4932 |
-
|
4933 |
-
#: ../framework/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 "Extracción zip ha fallado"
|
4936 |
-
|
4937 |
-
#: ../framework/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 "Falla al cerrar el zip después de extraer"
|
4940 |
-
|
4941 |
-
#: ../framework/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 "Solicitud ha fallado. Código de error: %d"
|
4945 |
-
|
4946 |
-
#: ../framework/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 "Posición de byte inválida"
|
4949 |
-
|
4950 |
-
#: ../framework/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 "Estructura de la respuesta vacía"
|
4953 |
-
|
4954 |
-
#: ../framework/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 "Termino de archivo sin contenido"
|
4957 |
-
|
4958 |
-
#: ../framework/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 "Falla al escribir datos al archivo"
|
4961 |
-
|
4962 |
-
#: ../framework/extensions/translation/settings-options.php:11
|
4963 |
-
msgid "Default Language"
|
4964 |
-
msgstr "Idioma Predeterminado"
|
4965 |
-
|
4966 |
-
#: ../framework/extensions/translation/settings-options.php:12
|
4967 |
-
msgid "This is the default language of your website."
|
4968 |
-
msgstr "Este es el idioma predeterminado de su sitio web."
|
4969 |
-
|
4970 |
-
#: ../framework/extensions/translation/settings-options.php:19
|
4971 |
-
msgid "Translate to"
|
4972 |
-
msgstr "Traducir a "
|
4973 |
-
|
4974 |
-
#: ../framework/extensions/translation/settings-options.php:20
|
4975 |
-
msgid "Choose the languages you want your website translated to."
|
4976 |
-
msgstr "Escoja el idioma al cual quiere que su sitio sea traducido."
|
4977 |
-
|
4978 |
-
#: ../framework/extensions/translation/settings-options.php:27
|
4979 |
-
msgid "Convert data"
|
4980 |
-
msgstr "Convertir datos"
|
4981 |
-
|
4982 |
-
#: ../framework/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 "Establecer idioma predeterminado para publicaciones, páginas, categorías o etiquetas que no tengan idioma establecido?"
|
4987 |
-
|
4988 |
-
#: ../framework/extensions/translation/manifest.php:7
|
4989 |
-
#: ../framework/extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:336
|
4990 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:264
|
4991 |
-
msgid "Translations"
|
4992 |
-
msgstr "Traducciones"
|
4993 |
-
|
4994 |
-
#: ../framework/extensions/translation/manifest.php:8
|
4995 |
-
#: ../framework/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-"
|
4999 |
-
"end."
|
5000 |
-
msgstr "Esta extensión le permite traducir su sitio web a cualquier idioma o incluso añadir múltiples idiomas para que sus usuarios cambien a su elección desde el front-end."
|
5001 |
-
|
5002 |
-
#: ../framework/extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:114
|
5003 |
-
msgid "All Languages"
|
5004 |
-
msgstr "Todos los idiomas"
|
5005 |
-
|
5006 |
-
#: ../framework/extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:332
|
5007 |
-
msgid "The term translation does already exists.ACTION +++ "
|
5008 |
-
msgstr "La traducción del término ya existe. ACCIÓN +++"
|
5009 |
-
|
5010 |
-
#: ../framework/extensions/translation/extensions/translate-terms/manifest.php:7
|
5011 |
-
msgid "Translate Terms"
|
5012 |
-
msgstr "Traducir términos"
|
5013 |
-
|
5014 |
-
#: ../framework/extensions/translation/extensions/translate-terms/manifest.php:8
|
5015 |
-
msgid "This extension translate terms"
|
5016 |
-
msgstr "Esta extensión traduce términos"
|
5017 |
-
|
5018 |
-
#: ../framework/extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:341
|
5019 |
-
msgid "Language of this post"
|
5020 |
-
msgstr "Idioma de esta publicación"
|
5021 |
-
|
5022 |
-
#: ../framework/extensions/translation/extensions/translate-posts/manifest.php:7
|
5023 |
-
msgid "Translate Posts"
|
5024 |
-
msgstr "Traducir Publicaciones"
|
5025 |
-
|
5026 |
-
#: ../framework/extensions/translation/extensions/translate-posts/manifest.php:8
|
5027 |
-
msgid "This extension translate posts"
|
5028 |
-
msgstr "Esta extensión traduce publicaciones"
|
5029 |
-
|
5030 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/manifest.php:7
|
5031 |
-
msgid "Translate Widgets"
|
5032 |
-
msgstr "Traducir Widgets"
|
5033 |
-
|
5034 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/manifest.php:8
|
5035 |
-
msgid "This extension translate Widgets"
|
5036 |
-
msgstr "Esta extensión traduce Widgets"
|
5037 |
-
|
5038 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:10
|
5039 |
-
msgid "Language Switcher"
|
5040 |
-
msgstr "Alternar Idioma"
|
5041 |
-
|
5042 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:11
|
5043 |
-
msgid "A Language Switcher Widget"
|
5044 |
-
msgstr "Un widget alternador de idioma"
|
5045 |
-
|
5046 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:42
|
5047 |
-
msgid "New title"
|
5048 |
-
msgstr "Nuevo título"
|
5049 |
-
|
5050 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:45
|
5051 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:49
|
5052 |
-
msgid "Title:"
|
5053 |
-
msgstr "Título:"
|
5054 |
-
|
5055 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:14
|
5056 |
-
msgid "A calendar of your site’s Posts."
|
5057 |
-
msgstr "Un calendario de publicaciones en su sitio."
|
5058 |
-
|
5059 |
-
#: ../framework/extensions/translation/extensions/translate-menus/manifest.php:7
|
5060 |
-
msgid "Translate Menus"
|
5061 |
-
msgstr "Traducir menus"
|
5062 |
-
|
5063 |
-
#: ../framework/extensions/translation/extensions/translate-menus/manifest.php:8
|
5064 |
-
msgid "This extension translate menus"
|
5065 |
-
msgstr "Esta extensión traduce menus"
|
5066 |
-
|
5067 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:211
|
5068 |
-
msgid "Slider Design"
|
5069 |
-
msgstr "Diseñor del Deslizador"
|
5070 |
-
|
5071 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:213
|
5072 |
-
msgid "Number of Images"
|
5073 |
-
msgstr "Número de imágenes"
|
5074 |
-
|
5075 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:231
|
5076 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:234
|
5077 |
-
#, php-format
|
5078 |
-
msgid "%s updated."
|
5079 |
-
msgstr "%s actualizado."
|
5080 |
-
|
5081 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:232
|
5082 |
-
msgid "Custom field updated."
|
5083 |
-
msgstr "Campo personalizado actualizado."
|
5084 |
-
|
5085 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:233
|
5086 |
-
msgid "Custom field deleted."
|
5087 |
-
msgstr "Campo personalizado eliminado."
|
5088 |
-
|
5089 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:235
|
5090 |
-
#, php-format
|
5091 |
-
msgid "%s restored to revision from %s"
|
5092 |
-
msgstr "%s se restablece a la revisión del %s"
|
5093 |
-
|
5094 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:237
|
5095 |
-
#, php-format
|
5096 |
-
msgid "%s published."
|
5097 |
-
msgstr "%s publicado."
|
5098 |
-
|
5099 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:238
|
5100 |
-
msgid "Page saved."
|
5101 |
-
msgstr "Página guardada."
|
5102 |
-
|
5103 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:239
|
5104 |
-
#, php-format
|
5105 |
-
msgid "%s submitted."
|
5106 |
-
msgstr "%s se ha enviado."
|
5107 |
-
|
5108 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:240
|
5109 |
-
#, php-format
|
5110 |
-
msgid "%s scheduled for: %s."
|
5111 |
-
msgstr "%s programada para: %s."
|
5112 |
-
|
5113 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:242
|
5114 |
-
#, php-format
|
5115 |
-
msgid "%s draft updated."
|
5116 |
-
msgstr "%s borrador actualizado."
|
5117 |
-
|
5118 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:272
|
5119 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:52
|
5120 |
-
msgid "Publish"
|
5121 |
-
msgstr "Publicar"
|
5122 |
-
|
5123 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:342
|
5124 |
-
msgid ""
|
5125 |
-
"This slider was created correctly, but the code implementation was delete "
|
5126 |
-
"from source code or blocked from filter.Delete this post or recovery slider "
|
5127 |
-
"implementation"
|
5128 |
-
msgstr "Este deslizador se ha creado correctamente, pero el código de implementación fue eliminado del código fuente o bloqueado desde el filtro. Elimine esta publicación o recupere la implementación del deslizador."
|
5129 |
-
|
5130 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:351
|
5131 |
-
msgid ""
|
5132 |
-
"This slider was created correctly, but the multimedia_types from config.php "
|
5133 |
-
"file was deleted, please set multimedia_types for this slider type."
|
5134 |
-
msgstr "Este deslizador se ha creado correctamente, pero los tipos_multimedia del archivo config.php fueron eliminados, por favor establezca tipos_multimedia (multimedia_types) para este tipo de deslizador."
|
5135 |
-
|
5136 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:361
|
5137 |
-
msgid "Slider Configuration"
|
5138 |
-
msgstr "Configuración del Deslizador"
|
5139 |
-
|
5140 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:375
|
5141 |
-
msgid "Slider Title"
|
5142 |
-
msgstr "Título de deslizador"
|
5143 |
-
|
5144 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:377
|
5145 |
-
msgid "Choose a title for your slider only for internal use: Ex: \"Homepage\"."
|
5146 |
-
msgstr "Escoja un título para su deslizador solo para uso interno: Ej: \"Página de inicio\"."
|
5147 |
-
|
5148 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:433
|
5149 |
-
msgid "Slider Settings"
|
5150 |
-
msgstr "Opciones del Deslizador"
|
5151 |
-
|
5152 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:461
|
5153 |
-
msgid ""
|
5154 |
-
"You don't have slider extensions, please create at least one extension for "
|
5155 |
-
"properly work"
|
5156 |
-
msgstr "Usted no tiene extensiones para deslizador, por favor cree al menos una extensión para su correcto funcionamiento."
|
5157 |
-
|
5158 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:474
|
5159 |
-
msgid "Choose the population method for your slider"
|
5160 |
-
msgstr "Escoja el método para agrupación de su deslizador"
|
5161 |
-
|
5162 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:542
|
5163 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:94
|
5164 |
-
msgid "(no title)"
|
5165 |
-
msgstr "(sin título)"
|
5166 |
-
|
5167 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:6
|
5168 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:12
|
5169 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:18
|
5170 |
-
#: ../framework/extensions/media/extensions/slider/manifest.php:5
|
5171 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:12
|
5172 |
-
msgid "Sliders"
|
5173 |
-
msgstr "Deslizadores"
|
5174 |
-
|
5175 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:7
|
5176 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:8
|
5177 |
-
msgid "Slider"
|
5178 |
-
msgstr "Deslizador"
|
5179 |
-
|
5180 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:9
|
5181 |
-
msgid "Add New Slider"
|
5182 |
-
msgstr "Agregar Nuevo Deslizador"
|
5183 |
-
|
5184 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:10
|
5185 |
-
msgid "Edit Slider"
|
5186 |
-
msgstr "Editar Deslizador"
|
5187 |
-
|
5188 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:11
|
5189 |
-
msgid "New Slider"
|
5190 |
-
msgstr "Nuevo Deslizador"
|
5191 |
-
|
5192 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:13
|
5193 |
-
msgid "View Slider"
|
5194 |
-
msgstr "Ver Deslizador"
|
5195 |
-
|
5196 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:14
|
5197 |
-
msgid "Search Sliders"
|
5198 |
-
msgstr "Buscar Deslizadores"
|
5199 |
-
|
5200 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:15
|
5201 |
-
msgid "No Sliders found"
|
5202 |
-
msgstr "No se encuentran deslizadores"
|
5203 |
-
|
5204 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:16
|
5205 |
-
msgid "No Sliders found in Trash"
|
5206 |
-
msgstr "No se encuentran deslizadores en la papelera"
|
5207 |
-
|
5208 |
-
#: ../framework/extensions/media/extensions/slider/manifest.php:6
|
5209 |
-
msgid ""
|
5210 |
-
"Adds the Sliders extension to your website. You'll be able to create "
|
5211 |
-
"different built in jQuery sliders for your homepage and all the other "
|
5212 |
-
"website pages."
|
5213 |
-
msgstr "Añade la extensión deslizadores (Sliders) a su sitio web. Usted podrá crear diferentes deslizadores jQuery integrados para su página de inicio y otras páginas del sitio web."
|
5214 |
-
|
5215 |
-
#: ../framework/extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:5
|
5216 |
-
#: ../framework/extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:6
|
5217 |
-
msgid "Nivo Slider"
|
5218 |
-
msgstr "Deslizador Nivo"
|
5219 |
-
|
5220 |
-
#: ../framework/extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:5
|
5221 |
-
#: ../framework/extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:6
|
5222 |
-
msgid "Owl Slider"
|
5223 |
-
msgstr "Deslizador Owl"
|
5224 |
-
|
5225 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/manifest.php:5
|
5226 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/manifest.php:6
|
5227 |
-
msgid "Bx-Slider"
|
5228 |
-
msgstr "Deslizador Bx"
|
5229 |
-
|
5230 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:4
|
5231 |
-
msgid "Population Method Categories opt 1"
|
5232 |
-
msgstr "Categorías del método de agrupación opc 1"
|
5233 |
-
|
5234 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:5
|
5235 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:11
|
5236 |
-
msgid "Option description"
|
5237 |
-
msgstr "Descripción de opción"
|
5238 |
-
|
5239 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:10
|
5240 |
-
msgid "Population Method Categories opt 2"
|
5241 |
-
msgstr "Categorías del método de agrupación opc 2"
|
5242 |
-
|
5243 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:5
|
5244 |
-
msgid "Type of Transition"
|
5245 |
-
msgstr "Tipo de transición"
|
5246 |
-
|
5247 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:6
|
5248 |
-
msgid "Type of transition between slides"
|
5249 |
-
msgstr "Tipo de transición entre diapositivas"
|
5250 |
-
|
5251 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:9
|
5252 |
-
msgid "Horizontal"
|
5253 |
-
msgstr "Horizontal"
|
5254 |
-
|
5255 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:10
|
5256 |
-
msgid "Vertical"
|
5257 |
-
msgstr "Vertical"
|
5258 |
-
|
5259 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:11
|
5260 |
-
msgid "Fade"
|
5261 |
-
msgstr "Desvanecer"
|
5262 |
-
|
5263 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:9
|
5264 |
-
msgid "Choose a subtitle for your slide."
|
5265 |
-
msgstr "Escoja un subtítulo para su diapositiva."
|
5266 |
-
|
5267 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:9
|
5268 |
-
msgid "Add a Slider"
|
5269 |
-
msgstr "Añadir un slider"
|
5270 |
-
|
5271 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:9
|
5272 |
-
msgid "Select Slider"
|
5273 |
-
msgstr "Seleccione Deslizador"
|
5274 |
-
|
5275 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:14
|
5276 |
-
msgid "Set width"
|
5277 |
-
msgstr "Establecer ancho"
|
5278 |
-
|
5279 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:19
|
5280 |
-
msgid "Set height"
|
5281 |
-
msgstr "Establecer alto"
|
5282 |
-
|
5283 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:34
|
5284 |
-
msgid "No Sliders Available"
|
5285 |
-
msgstr "No hay deslizadores disponibles"
|
5286 |
-
|
5287 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:47
|
5288 |
-
msgid "create a new Slider"
|
5289 |
-
msgstr "crear un nuevo deslizador"
|
5290 |
-
|
5291 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:49
|
5292 |
-
msgid ""
|
5293 |
-
"No Sliders created yet. Please go to the {br}Sliders page and "
|
5294 |
-
"{add_slider_link}."
|
5295 |
-
msgstr "No hay deslizadores creados aún. Por favor vaya a la {br} Página Deslizadores y {add_slider_link}."
|
5296 |
-
|
5297 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:5
|
5298 |
-
msgid ""
|
5299 |
-
"Note that the type and population can't be changed later. You'll need to "
|
5300 |
-
"create a new slider to have a different slider type or population method."
|
5301 |
-
msgstr "Note que el tipo y agrupación no podrá ser modificado después. Usted necesitará crear un nuevo deslizador para tener un tipo distinto de deslizador o método de agrupación."
|
5302 |
-
|
5303 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:31
|
5304 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:48
|
5305 |
-
msgid "Schedule"
|
5306 |
-
msgstr "Programado"
|
5307 |
-
|
5308 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:40
|
5309 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:57
|
5310 |
-
msgid "Submit for Review"
|
5311 |
-
msgstr "Enviar para revisión"
|
5312 |
-
|
5313 |
-
#: ../framework/extensions/media/extensions/population-method/class-fw-extension-population-method.php:36
|
5314 |
-
#, php-format
|
5315 |
-
msgid "Specified population method does not exists: %s"
|
5316 |
-
msgstr "Método de agrupación especificado no existe: %s"
|
5317 |
-
|
5318 |
-
#: ../framework/extensions/media/extensions/population-method/class-fw-extension-population-method.php:55
|
5319 |
-
#, php-format
|
5320 |
-
msgid "Population method %s does not exist"
|
5321 |
-
msgstr "Método de agrupación %s no existe"
|
5322 |
-
|
5323 |
-
#: ../framework/extensions/media/extensions/population-method/manifest.php:3
|
5324 |
-
msgid "Population Methods"
|
5325 |
-
msgstr "Métodos de Agrupación"
|
5326 |
-
|
5327 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:21
|
5328 |
-
msgid "Automatically, fetch images from categories"
|
5329 |
-
msgstr "Automáticamente, extrae imágenes desde categorías"
|
5330 |
-
|
5331 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:29
|
5332 |
-
#, php-format
|
5333 |
-
msgid "%s extension needs configured categories in post types"
|
5334 |
-
msgstr "extensión %s necesita ser categorías configuradas en tipos de entradas (post types)"
|
5335 |
-
|
5336 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:34
|
5337 |
-
msgid "Categories Population Method"
|
5338 |
-
msgstr "Categorías del Método de Agrupación"
|
5339 |
-
|
5340 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:44
|
5341 |
-
msgid "Choose Category"
|
5342 |
-
msgstr "Escoger Categoría"
|
5343 |
-
|
5344 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:53
|
5345 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:53
|
5346 |
-
msgid "Number of Images in the slider"
|
5347 |
-
msgstr "Número de imágenes en el deslizador"
|
5348 |
-
|
5349 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:107
|
5350 |
-
msgid "Select Specific Categories"
|
5351 |
-
msgstr "Seleccionar Categorías Específicas"
|
5352 |
-
|
5353 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:3
|
5354 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:4
|
5355 |
-
msgid "Population Method - Categories"
|
5356 |
-
msgstr "Método de Agrupación - Categorías"
|
5357 |
-
|
5358 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:21
|
5359 |
-
msgid "Automatically, fetch images from tags"
|
5360 |
-
msgstr "Automáticamente, extrae imágenes desde etiquetas"
|
5361 |
-
|
5362 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:29
|
5363 |
-
#, php-format
|
5364 |
-
msgid "%s extension needs configured tags in post types"
|
5365 |
-
msgstr "Extensión %s necesita ser etiquetas configuradas en tipos de entradas (post types)"
|
5366 |
-
|
5367 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:34
|
5368 |
-
msgid "Tags Population Method"
|
5369 |
-
msgstr "Método de Agrupación de Etiquetas"
|
5370 |
-
|
5371 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:44
|
5372 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:44
|
5373 |
-
msgid "Choose Tag"
|
5374 |
-
msgstr "Escoger Etiqueta"
|
5375 |
-
|
5376 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:107
|
5377 |
-
msgid "Select Specific tags"
|
5378 |
-
msgstr "Seleccionar etiquetas específicas"
|
5379 |
-
|
5380 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:3
|
5381 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:4
|
5382 |
-
msgid "Population Method - Tags"
|
5383 |
-
msgstr "Método de Agrupación - Etiquetas"
|
5384 |
-
|
5385 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:21
|
5386 |
-
msgid "Automatically, fetch images from posts"
|
5387 |
-
msgstr "Automáticamente, extrae imágenes desde entradas"
|
5388 |
-
|
5389 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:29
|
5390 |
-
#, php-format
|
5391 |
-
msgid "%s extension needs configured post categories in post types"
|
5392 |
-
msgstr "Extensión %s necesita ser entradas configuradas en tipos de entradas (post types)"
|
5393 |
-
|
5394 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:34
|
5395 |
-
msgid "Posts Population Method"
|
5396 |
-
msgstr "Método de Agrupación de Entradas"
|
5397 |
-
|
5398 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:101
|
5399 |
-
msgid "Select Specific posts"
|
5400 |
-
msgstr "Seleccionar entradas específicas"
|
5401 |
-
|
5402 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:3
|
5403 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:4
|
5404 |
-
msgid "Population Method - Posts"
|
5405 |
-
msgstr "Método de Argupación - Entradas"
|
5406 |
-
|
5407 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:22
|
5408 |
-
msgid "Manually, I'll upload the images myself"
|
5409 |
-
msgstr "Manualmente, subiré las imágenes por mi cuenta"
|
5410 |
-
|
5411 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:33
|
5412 |
-
msgid "Click to edit / Drag to reorder"
|
5413 |
-
msgstr "Click para editar / Arrastrar para reordenar"
|
5414 |
-
|
5415 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:54
|
5416 |
-
msgid "Choose"
|
5417 |
-
msgstr "Escoger"
|
5418 |
-
|
5419 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:3
|
5420 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:4
|
5421 |
-
msgid "Population Method - Custom"
|
5422 |
-
msgstr "Método de Agrupación - Personalizado"
|
5423 |
-
|
5424 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:57
|
5425 |
-
msgid "Add Slide"
|
5426 |
-
msgstr "Agregar Diapositiva"
|
5427 |
-
|
5428 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:59
|
5429 |
-
#: ../framework/views/backend-settings-form.php:47
|
5430 |
-
msgid "Save Changes"
|
5431 |
-
msgstr "Guardar Cambios"
|
5432 |
-
|
5433 |
-
#: ../framework/core/Fw.php:73
|
5434 |
-
msgid "Framework requirements not met:"
|
5435 |
-
msgstr "No se cumplen los requisitos del Framework: "
|
5436 |
-
|
5437 |
-
#: ../framework/core/class-fw-manifest.php:293
|
5438 |
-
msgid "minimum required version is"
|
5439 |
-
msgstr "Versión mínima requerida es "
|
5440 |
-
|
5441 |
-
#: ../framework/core/class-fw-manifest.php:296
|
5442 |
-
msgid "maximum required version is"
|
5443 |
-
msgstr "Versión máxima requerida es "
|
5444 |
-
|
5445 |
-
#: ../framework/core/class-fw-manifest.php:301
|
5446 |
-
msgid "and"
|
5447 |
-
msgstr "y"
|
5448 |
-
|
5449 |
-
#: ../framework/core/class-fw-manifest.php:308
|
5450 |
-
#, php-format
|
5451 |
-
msgid "Current WordPress version is %s, %s"
|
5452 |
-
msgstr "Versión actual de Wordpress es %s, %s"
|
5453 |
-
|
5454 |
-
#: ../framework/core/class-fw-manifest.php:314
|
5455 |
-
#, php-format
|
5456 |
-
msgid "Current Framework version is %s, %s"
|
5457 |
-
msgstr "Versión actual del Framework es %s, %s"
|
5458 |
-
|
5459 |
-
#: ../framework/core/class-fw-manifest.php:323
|
5460 |
-
#, php-format
|
5461 |
-
msgid "Current version of the %s extension is %s, %s"
|
5462 |
-
msgstr "Versión actual de la extensión %s es %s, %s"
|
5463 |
-
|
5464 |
-
#: ../framework/core/class-fw-manifest.php:329
|
5465 |
-
#, php-format
|
5466 |
-
msgid "%s extension is required"
|
5467 |
-
msgstr "Extensión %s es requerida"
|
5468 |
-
|
5469 |
-
#: ../framework/core/class-fw-manifest.php:334
|
5470 |
-
#, php-format
|
5471 |
-
msgid "%s extension is required (%s)"
|
5472 |
-
msgstr "Extensión %s es requerida (%s)"
|
5473 |
-
|
5474 |
-
#: ../framework/core/extends/class-fw-option-type.php:283
|
5475 |
-
#, php-format
|
5476 |
-
msgid "Option type %s has no default value"
|
5477 |
-
msgstr "Tipo de opción %s no tiene un valor por defecto"
|
5478 |
-
|
5479 |
-
#: ../framework/core/components/backend.php:355
|
5480 |
-
msgid "Done"
|
5481 |
-
msgstr "Realizado"
|
5482 |
-
|
5483 |
-
#: ../framework/core/components/backend.php:356
|
5484 |
-
msgid "Ah, Sorry"
|
5485 |
-
msgstr "Ah, Disculpas"
|
5486 |
-
|
5487 |
-
#: ../framework/core/components/backend.php:358
|
5488 |
-
#: ../framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:39
|
5489 |
-
#: ../framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:40
|
5490 |
-
#: ../framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:41
|
5491 |
-
#: ../framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:42
|
5492 |
-
msgid "Reset"
|
5493 |
-
msgstr "Restablecer"
|
5494 |
-
|
5495 |
-
#: ../framework/core/components/backend.php:541
|
5496 |
-
#: ../framework/core/components/backend.php:542
|
5497 |
-
#: ../framework/core/components/backend.php:650
|
5498 |
-
msgid "Theme Settings"
|
5499 |
-
msgstr "Configuración del Tema"
|
5500 |
-
|
5501 |
-
#: ../framework/core/components/backend.php:577
|
5502 |
-
msgid "leave a review"
|
5503 |
-
msgstr "dejar una opinión"
|
5504 |
-
|
5505 |
-
#: ../framework/core/components/backend.php:588
|
5506 |
-
msgid ""
|
5507 |
-
"Unyson WordPress Framework is the fastest and easiest way to develop a "
|
5508 |
-
"premium theme. I highly recommend it"
|
5509 |
-
msgstr "Framework Unyson Wordpress es el más rápido y fácil camino para desarrollar un tema premium. Recomiendo altamente éste"
|
5510 |
-
|
5511 |
-
#: ../framework/core/components/backend.php:594
|
5512 |
-
msgid ""
|
5513 |
-
"If you like Unyson, {wp_review_link}, share on {facebook_share_link} or "
|
5514 |
-
"{twitter_share_link}."
|
5515 |
-
msgstr "Si a usted le gusta Unyson, {wp_review_link}, comparta en {facebook_share_link} o {twitter_share_link}"
|
5516 |
-
|
5517 |
-
#: ../framework/core/components/backend.php:1303
|
5518 |
-
msgid "You have no permissions to change settings options"
|
5519 |
-
msgstr "Usted no tiene autorización para cambiar opciones de configuración"
|
5520 |
-
|
5521 |
-
#: ../framework/core/components/backend.php:1316
|
5522 |
-
msgid "The options were successfully reset"
|
5523 |
-
msgstr "Las opciones se han restablecido exitosamente"
|
5524 |
-
|
5525 |
-
#: ../framework/core/components/backend.php:1327
|
5526 |
-
msgid "The options were successfully saved"
|
5527 |
-
msgstr "Las opciones se han guardado exitosamente"
|
5528 |
-
|
5529 |
-
#: ../framework/core/components/backend.php:1440
|
5530 |
-
msgid "Unknown collected group"
|
5531 |
-
msgstr "Grupo recogido desconocido"
|
5532 |
-
|
5533 |
-
#: ../framework/core/components/backend.php:1779
|
5534 |
-
#, php-format
|
5535 |
-
msgid "Undefined option type: %s"
|
5536 |
-
msgstr "Tipo de opción no definido: %s"
|
5537 |
-
|
5538 |
-
#: ../framework/core/components/backend.php:1826
|
5539 |
-
#, php-format
|
5540 |
-
msgid "Undefined container type: %s"
|
5541 |
-
msgstr "Tipo de contenedor no definido: %s"
|
5542 |
-
|
5543 |
-
#: ../framework/core/components/extensions.php:447
|
5544 |
-
#: ../framework/core/components/extensions.php:525
|
5545 |
-
#, php-format
|
5546 |
-
msgid "Extension %s is invalid."
|
5547 |
-
msgstr "Extensión %s no es válida"
|
5548 |
-
|
5549 |
-
#: ../framework/core/components/theme.php:206
|
5550 |
-
msgid "Theme requirements not met:"
|
5551 |
-
msgstr "No se cumplen los requisitos del Tema: "
|
5552 |
-
|
5553 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:351
|
5554 |
-
msgid "Cannot remove the old extensions backup dir"
|
5555 |
-
msgstr "No es posible remover el directorio antiguo del respaldo de extensiones"
|
5556 |
-
|
5557 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:357
|
5558 |
-
msgid "Cannot create the extensions backup dir"
|
5559 |
-
msgstr "No es posible crear el directorio del respaldo de extensiones"
|
5560 |
-
|
5561 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:362
|
5562 |
-
msgid "Cannot backup the extensions"
|
5563 |
-
msgstr "No es posible respaldar extensiones"
|
5564 |
-
|
5565 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:408
|
5566 |
-
msgid "Cannot clear the extensions directory"
|
5567 |
-
msgstr "No es posible vaciar el directorio de extensiones"
|
5568 |
-
|
5569 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:413
|
5570 |
-
msgid "Cannot recreate the extensions directory"
|
5571 |
-
msgstr "No es posible recrear el directorio de extensiones"
|
5572 |
-
|
5573 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:419
|
5574 |
-
msgid "Cannot recover the extensions"
|
5575 |
-
msgstr "No es posible recuperar extensiones"
|
5576 |
-
|
5577 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:645
|
5578 |
-
#, php-format
|
5579 |
-
msgid "Cannot activate hidden standalone extension %s"
|
5580 |
-
msgstr "No es posible activar extensión oculta autonóma %s "
|
5581 |
-
|
5582 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:874
|
5583 |
-
msgid "You are not allowed to install extensions."
|
5584 |
-
msgstr "Usted no está autorizado para instalar extensiones."
|
5585 |
-
|
5586 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:891
|
5587 |
-
msgid "All supported extensions are already installed."
|
5588 |
-
msgstr "Todas las extensiones soportadas ya se encuentran instaladas."
|
5589 |
-
|
5590 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:967
|
5591 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2384
|
5592 |
-
#, php-format
|
5593 |
-
msgid "Cannot remove temporary directory: %s"
|
5594 |
-
msgstr "No se puede remover el directorio temporal %s."
|
5595 |
-
|
5596 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1037
|
5597 |
-
msgid "You have no permissions to install extensions"
|
5598 |
-
msgstr "Usted no tiene permisos para instalar extensiones"
|
5599 |
-
|
5600 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1044
|
5601 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1517
|
5602 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1901
|
5603 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2116
|
5604 |
-
msgid "No extensions provided"
|
5605 |
-
msgstr "No hay extensiones proveídas"
|
5606 |
-
|
5607 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1053
|
5608 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1527
|
5609 |
-
msgid "WP Filesystem is not initialized"
|
5610 |
-
msgstr "Sistema de archivos WP no está inicializado"
|
5611 |
-
|
5612 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1079
|
5613 |
-
#, php-format
|
5614 |
-
msgid "Extension \"%s\" is already installed."
|
5615 |
-
msgstr "Extensión \"%s\" ya se encuentra instalada."
|
5616 |
-
|
5617 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1094
|
5618 |
-
#, php-format
|
5619 |
-
msgid "Extension \"%s\" is not available for install."
|
5620 |
-
msgstr "Extensión \"%s\" no está disponible para instalación."
|
5621 |
-
|
5622 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1122
|
5623 |
-
#, php-format
|
5624 |
-
msgid "Parent extension \"%s\" not available."
|
5625 |
-
msgstr "Extensión principal \"%s\" no disponible"
|
5626 |
-
|
5627 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1156
|
5628 |
-
#, php-format
|
5629 |
-
msgid "Downloading the \"%s\" extension..."
|
5630 |
-
msgstr "Descargando la extensión \"%s\" ..."
|
5631 |
-
|
5632 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1200
|
5633 |
-
#, php-format
|
5634 |
-
msgid "Installing the \"%s\" extension..."
|
5635 |
-
msgstr "Instalando la extensión \"%s\" ..."
|
5636 |
-
|
5637 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1238
|
5638 |
-
#, php-format
|
5639 |
-
msgid "The %s extension has been successfully installed."
|
5640 |
-
msgstr "La extensión %s se ha instalado correctamente."
|
5641 |
-
|
5642 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1399
|
5643 |
-
msgid "You are not allowed to delete extensions."
|
5644 |
-
msgstr "Usted no tiene autorización para eliminar extensiones."
|
5645 |
-
|
5646 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1510
|
5647 |
-
msgid "You have no permissions to uninstall extensions"
|
5648 |
-
msgstr "Usted no tiene autorización para desinstalar extensiones."
|
5649 |
-
|
5650 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1578
|
5651 |
-
#, php-format
|
5652 |
-
msgid "Deleting the \"%s\" extension..."
|
5653 |
-
msgstr "Eliminando la extensión \"%s\" ..."
|
5654 |
-
|
5655 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1590
|
5656 |
-
#, php-format
|
5657 |
-
msgid "Cannot delete the \"%s\" extension."
|
5658 |
-
msgstr "No es posible eliminar la extensión \"%s\"."
|
5659 |
-
|
5660 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1602
|
5661 |
-
#, php-format
|
5662 |
-
msgid "The %s extension has been successfully deleted."
|
5663 |
-
msgstr "La extensión %s se ha eliminado exitosamente."
|
5664 |
-
|
5665 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1703
|
5666 |
-
msgid "Extension not specified."
|
5667 |
-
msgstr "Extensión no especificada."
|
5668 |
-
|
5669 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1708
|
5670 |
-
#, php-format
|
5671 |
-
msgid "Extension \"%s\" is not installed."
|
5672 |
-
msgstr "Extensión \"%s\" no está instalada."
|
5673 |
-
|
5674 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1776
|
5675 |
-
#, php-format
|
5676 |
-
msgid "Extension \"%s\" does not exist or is not active."
|
5677 |
-
msgstr "Extensión \"%s\" no existe o no está activa."
|
5678 |
-
|
5679 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1785
|
5680 |
-
#, php-format
|
5681 |
-
msgid "%s extension does not have settings."
|
5682 |
-
msgstr "Extensión %s no tiene configuraciones."
|
5683 |
-
|
5684 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1806
|
5685 |
-
msgid "Extension has no Install Instructions"
|
5686 |
-
msgstr "Extensión no tiene instrucciones de instalación"
|
5687 |
-
|
5688 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1830
|
5689 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2047
|
5690 |
-
msgid "Invalid request method."
|
5691 |
-
msgstr "Método de solicitud inválido."
|
5692 |
-
|
5693 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1842
|
5694 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2059
|
5695 |
-
msgid "No extension specified."
|
5696 |
-
msgstr "Extensión no especificada."
|
5697 |
-
|
5698 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1894
|
5699 |
-
msgid "You have no permissions to activate extensions"
|
5700 |
-
msgstr "Usted no tiene permisos para activar extensiones"
|
5701 |
-
|
5702 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1914
|
5703 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2132
|
5704 |
-
#, php-format
|
5705 |
-
msgid "Extension \"%s\" does not exist."
|
5706 |
-
msgstr "Extensión \"%s\" no existe."
|
5707 |
-
|
5708 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2109
|
5709 |
-
msgid "You have no permissions to deactivate extensions"
|
5710 |
-
msgstr "Usted no tiene permisos para desactivar extensiones"
|
5711 |
-
|
5712 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2297
|
5713 |
-
msgid "You are not allowed to save extensions settings."
|
5714 |
-
msgstr "Usted no tiene autorización para guardar configuraciones de extensiones."
|
5715 |
-
|
5716 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2304
|
5717 |
-
msgid "Invalid extension."
|
5718 |
-
msgstr "Extensión inválida."
|
5719 |
-
|
5720 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2309
|
5721 |
-
msgid "Extension does not have settings options."
|
5722 |
-
msgstr "Extensión no tiene opciones de configuración."
|
5723 |
-
|
5724 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2341
|
5725 |
-
msgid "Extensions settings successfully saved."
|
5726 |
-
msgstr "Configuraciones de extensiones guardadas exitosamente."
|
5727 |
-
|
5728 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2368
|
5729 |
-
#, php-format
|
5730 |
-
msgid "Extension \"%s\" has no download sources."
|
5731 |
-
msgstr "Extensión \"%s\" no tiene origen de descarga."
|
5732 |
-
|
5733 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2392
|
5734 |
-
#, php-format
|
5735 |
-
msgid "Cannot create temporary directory: %s"
|
5736 |
-
msgstr "No se puede crear el directorio temporal: %s"
|
5737 |
-
|
5738 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2403
|
5739 |
-
#, php-format
|
5740 |
-
msgid "\"%s\" extension github source \"user_repo\" parameter is required"
|
5741 |
-
msgstr "Recurso Github de extensión \"%s\" requiere el parámetro \"user_repo\""
|
5742 |
-
|
5743 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2454
|
5744 |
-
#, php-format
|
5745 |
-
msgid "Failed to access Github repository \"%s\" releases. (%s)"
|
5746 |
-
msgstr "Falló acceso al repositorio de publicaciones Github \"%s\". (%s)"
|
5747 |
-
|
5748 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2477
|
5749 |
-
#, php-format
|
5750 |
-
msgid "\"%s\" extension github repository \"%s\" has no releases."
|
5751 |
-
msgstr "Repositorio de extensión \"%s\" no tiene publicaciones \"%s\"."
|
5752 |
-
|
5753 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2510
|
5754 |
-
#, php-format
|
5755 |
-
msgid "Cannot download the \"%s\" extension zip. (Response code: %d)"
|
5756 |
-
msgstr "No es posible descargar zip de extensión \"%s\". (Código de respuesta: %d)"
|
5757 |
-
|
5758 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2517
|
5759 |
-
#, php-format
|
5760 |
-
msgid "Cannot download the \"%s\" extension zip. %s"
|
5761 |
-
msgstr "No es posible descargar zip de extensión \"%s\". %s"
|
5762 |
-
|
5763 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2525
|
5764 |
-
#, php-format
|
5765 |
-
msgid "Cannot download the \"%s\" extension zip."
|
5766 |
-
msgstr "No es posible descargar zip de extensión \"%s\"."
|
5767 |
-
|
5768 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2538
|
5769 |
-
#, php-format
|
5770 |
-
msgid "Cannot save the \"%s\" extension zip."
|
5771 |
-
msgstr "No es posible guardar zip de extensión \"%s\"."
|
5772 |
-
|
5773 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2557
|
5774 |
-
#, php-format
|
5775 |
-
msgid "Cannot remove the \"%s\" extension downloaded zip."
|
5776 |
-
msgstr "No es posible remover zip descargado de extensión \"%s\""
|
5777 |
-
|
5778 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2582
|
5779 |
-
#, php-format
|
5780 |
-
msgid "The unzipped \"%s\" extension directory not found."
|
5781 |
-
msgstr "Directorio descomprimido de extensión \"%s\" no encontrado."
|
5782 |
-
|
5783 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2589
|
5784 |
-
#, php-format
|
5785 |
-
msgid "Unknown \"%s\" extension download source \"%s\""
|
5786 |
-
msgstr "Desconocido \"%s\" origen de descarga extensión \"%s\""
|
5787 |
-
|
5788 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2615
|
5789 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2634
|
5790 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2697
|
5791 |
-
#, php-format
|
5792 |
-
msgid "Cannot read directory \"%s\"."
|
5793 |
-
msgstr "No es posible leer el directorio \"%s\"."
|
5794 |
-
|
5795 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2649
|
5796 |
-
#, php-format
|
5797 |
-
msgid "Cannot delete \"%s\"."
|
5798 |
-
msgstr "No es posible eliminar \"%s\"."
|
5799 |
-
|
5800 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2660
|
5801 |
-
#, php-format
|
5802 |
-
msgid "Cannot create the \"%s\" directory."
|
5803 |
-
msgstr "No es posible crear el directorio \"%s\"."
|
5804 |
-
|
5805 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2678
|
5806 |
-
#, php-format
|
5807 |
-
msgid "Cannot move \"%s\" to \"%s\"."
|
5808 |
-
msgstr "No es posible mover \"%s\" a \"%s\"."
|
5809 |
-
|
5810 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3103
|
5811 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3150
|
5812 |
-
#, php-format
|
5813 |
-
msgid "Cannot activate the %s extension because it is not installed. %s"
|
5814 |
-
msgstr "No es posible activar la extensión %s porque esta no está instalada. %s"
|
5815 |
-
|
5816 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3107
|
5817 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3154
|
5818 |
-
msgid "Install"
|
5819 |
-
msgstr "Instalar"
|
5820 |
-
|
5821 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3197
|
5822 |
-
msgid "Install theme compatible extensions"
|
5823 |
-
msgstr "Instalar extensiones compatibles con el tema"
|
5824 |
-
|
5825 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:13
|
5826 |
-
msgid ""
|
5827 |
-
"Adds a sliders module to your website from where you'll be able to create "
|
5828 |
-
"different built in jQuery sliders for your homepage and rest of the pages."
|
5829 |
-
msgstr "Añade módulo deslizadores (Sliders) a su sitio web, donde usted podrá crear diferentes deslizadores jQuery integrados para su página de inicio y otras páginas del sitio web."
|
5830 |
-
|
5831 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:24
|
5832 |
-
msgid "Media"
|
5833 |
-
msgstr "Medios"
|
5834 |
-
|
5835 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:36
|
5836 |
-
msgid "Population method"
|
5837 |
-
msgstr "Método de agrupación"
|
5838 |
-
|
5839 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:85
|
5840 |
-
msgid ""
|
5841 |
-
"Let's you easily build countless pages with the help of the drag and drop "
|
5842 |
-
"visual page builder that comes with a lot of already created shortcodes."
|
5843 |
-
msgstr "Permite construir de manera sencilla innumerables páginas con la ayuda del constructor visual \"arrastre y suelte\" que viene con un grupo de shortcodes listos para utilizar."
|
5844 |
-
|
5845 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:96
|
5846 |
-
msgid "Shortcodes"
|
5847 |
-
msgstr "Shortcodes"
|
5848 |
-
|
5849 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:157
|
5850 |
-
msgid ""
|
5851 |
-
"This extension lets you set up daily, weekly or monthly backup schedule. You"
|
5852 |
-
" can choose between a full backup or a data base only backup."
|
5853 |
-
msgstr "Esta extensión le permite establecer tareas de respaldo diario, semanal o mensual. Usted puede escoger entre un respaldo total o solo un respaldo de base de datos."
|
5854 |
-
|
5855 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:89
|
5856 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:25
|
5857 |
-
msgid "Install Instructions"
|
5858 |
-
msgstr "Instrucciones de instalación"
|
5859 |
-
|
5860 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:102
|
5861 |
-
msgid "Compatible"
|
5862 |
-
msgstr "Compatible"
|
5863 |
-
|
5864 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:102
|
5865 |
-
msgid "with your current theme"
|
5866 |
-
msgstr "con su actual tema"
|
5867 |
-
|
5868 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:174
|
5869 |
-
#, php-format
|
5870 |
-
msgid "Parent extension \"%s\" is disabled"
|
5871 |
-
msgstr "Extensión principal \"%s\" está deshabilitada."
|
5872 |
-
|
5873 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:199
|
5874 |
-
#, php-format
|
5875 |
-
msgid "You need to update WordPress to %s: %s"
|
5876 |
-
msgstr "Usted necesita actualizar Wordpress a %s: %s"
|
5877 |
-
|
5878 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:201
|
5879 |
-
msgid "Update WordPress"
|
5880 |
-
msgstr "Actualizar Wordpress"
|
5881 |
-
|
5882 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:205
|
5883 |
-
#, php-format
|
5884 |
-
msgid "WordPress needs to be updated to %s"
|
5885 |
-
msgstr "Wordpress necesita ser actualizado a %s"
|
5886 |
-
|
5887 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:215
|
5888 |
-
#, php-format
|
5889 |
-
msgid "Maximum supported WordPress version is %s"
|
5890 |
-
msgstr "Versión máxima de Wordpress soportada es %s"
|
5891 |
-
|
5892 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:230
|
5893 |
-
#, php-format
|
5894 |
-
msgid "You need to update %s to %s: %s"
|
5895 |
-
msgstr "Usted necesita actualizar %s a %s: %s"
|
5896 |
-
|
5897 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:239
|
5898 |
-
#, php-format
|
5899 |
-
msgid "%s needs to be updated to %s"
|
5900 |
-
msgstr "%s necesita actualizarse a %s"
|
5901 |
-
|
5902 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:250
|
5903 |
-
#, php-format
|
5904 |
-
msgid "Maximum supported %s version is %s"
|
5905 |
-
msgstr "Versión máxima soportada %s y es %s"
|
5906 |
-
|
5907 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:268
|
5908 |
-
#, php-format
|
5909 |
-
msgid "You need to update the %s extension to %s: %s"
|
5910 |
-
msgstr "Usted necesita actualizar la extensión %s a %s: %s"
|
5911 |
-
|
5912 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:277
|
5913 |
-
#, php-format
|
5914 |
-
msgid "The %s extension needs to be updated to %s"
|
5915 |
-
msgstr "La extensión %s necesita actualizarse a %s"
|
5916 |
-
|
5917 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:288
|
5918 |
-
#, php-format
|
5919 |
-
msgid "Maximum supported %s extension version is %s"
|
5920 |
-
msgstr "Versión máxima soportada de extensión %s y es %s"
|
5921 |
-
|
5922 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:303
|
5923 |
-
#, php-format
|
5924 |
-
msgid "The %s extension is disabled"
|
5925 |
-
msgstr "La extensión %s está deshabilitada"
|
5926 |
-
|
5927 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:304
|
5928 |
-
#, php-format
|
5929 |
-
msgid "Activate %s"
|
5930 |
-
msgstr "Activar %s"
|
5931 |
-
|
5932 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:313
|
5933 |
-
#, php-format
|
5934 |
-
msgid "The %s extension is not installed: %s"
|
5935 |
-
msgstr "Extensión \"%s\" no está instalada: %s"
|
5936 |
-
|
5937 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:316
|
5938 |
-
#, php-format
|
5939 |
-
msgid "Install %s"
|
5940 |
-
msgstr "Instalar %s"
|
5941 |
-
|
5942 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:321
|
5943 |
-
#, php-format
|
5944 |
-
msgid "The %s extension is not installed"
|
5945 |
-
msgstr "Extensión \"%s\" no está instalada"
|
5946 |
-
|
5947 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:342
|
5948 |
-
msgid "View Requirements"
|
5949 |
-
msgstr "Ver requerimientos"
|
5950 |
-
|
5951 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:40
|
5952 |
-
#, php-format
|
5953 |
-
msgid "%s Settings"
|
5954 |
-
msgstr "%s Configuraciones"
|
5955 |
-
|
5956 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:43
|
5957 |
-
#, php-format
|
5958 |
-
msgid "%s Install Instructions"
|
5959 |
-
msgstr "%s Instrucciones de instalación"
|
5960 |
-
|
5961 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:46
|
5962 |
-
msgid "Unknown tab:"
|
5963 |
-
msgstr "Pestaña desconocida: "
|
5964 |
-
|
5965 |
-
#: ../framework/core/components/extensions/manager/views/delete-form.php:42
|
5966 |
-
#: ../framework/core/components/extensions/manager/views/install-form.php:51
|
5967 |
-
msgid "No, Return me to the extension list"
|
5968 |
-
msgstr "No, Regrese a a la lista de extensiones"
|
5969 |
-
|
5970 |
-
#: ../framework/core/components/extensions/manager/views/delete-form.php:45
|
5971 |
-
msgid "Click to view entire list of directories which will be deleted"
|
5972 |
-
msgstr "Click para ver lista completa de directorios serán eliminados"
|
5973 |
-
|
5974 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:17
|
5975 |
-
msgid "Active Extensions"
|
5976 |
-
msgstr "Extensiones Activas"
|
5977 |
-
|
5978 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:33
|
5979 |
-
msgid "No extensions activated yet"
|
5980 |
-
msgstr "No hay extensiones activas aún"
|
5981 |
-
|
5982 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:33
|
5983 |
-
msgid "Check the available extensions below"
|
5984 |
-
msgstr "Revisar abajo extensiones disponibles"
|
5985 |
-
|
5986 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:59
|
5987 |
-
msgid "Available Extensions"
|
5988 |
-
msgstr "Extensiones Disponibles"
|
5989 |
-
|
5990 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:184
|
5991 |
-
msgid "Show other extensions"
|
5992 |
-
msgstr "Mostrar otras extensiones"
|
5993 |
-
|
5994 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:185
|
5995 |
-
msgid "Hide other extensions"
|
5996 |
-
msgstr "Ocultar otras extensiones"
|
5997 |
-
|
5998 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:14
|
5999 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:14
|
6000 |
-
msgid "Go to extensions page"
|
6001 |
-
msgstr "Ir a la página de extensiones"
|
6002 |
-
|
6003 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:17
|
6004 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:17
|
6005 |
-
msgid "Return to Extensions page"
|
6006 |
-
msgstr "Volver a la página de extensiones"
|
6007 |
-
|
6008 |
-
#: ../framework/views/backend-settings-form.php:48
|
6009 |
-
msgid "Reset Options"
|
6010 |
-
msgstr "Restablecer Opciones"
|
6011 |
-
|
6012 |
-
#: ../framework/views/backend-settings-form.php:62
|
6013 |
-
msgid "by"
|
6014 |
-
msgstr "por"
|
6015 |
-
|
6016 |
-
#: ../framework/views/backend-settings-form.php:155
|
6017 |
-
msgid ""
|
6018 |
-
"Click OK to reset.\n"
|
6019 |
-
"All settings will be lost and replaced with default settings!"
|
6020 |
-
msgstr "Click OK para restablecer.\nTodas las configuraciones de perderán y reemplazadas a las configuraciones predeterminadas!"
|
6021 |
-
|
6022 |
-
#: ../framework/views/backend-settings-form.php:202
|
6023 |
-
msgid "Resetting"
|
6024 |
-
msgstr "Restableciendo"
|
6025 |
-
|
6026 |
-
#: ../framework/views/backend-settings-form.php:204
|
6027 |
-
msgid "We are currently resetting your settings."
|
6028 |
-
msgstr "Estamos actualmente restableciendo sus configuraciones."
|
6029 |
-
|
6030 |
-
#: ../framework/views/backend-settings-form.php:206
|
6031 |
-
#: ../framework/views/backend-settings-form.php:212
|
6032 |
-
msgid "This may take a few moments."
|
6033 |
-
msgstr "Esto podría tomar unos momentos."
|
6034 |
-
|
6035 |
-
#: ../framework/views/backend-settings-form.php:208
|
6036 |
-
msgid "Saving"
|
6037 |
-
msgstr "Guardando"
|
6038 |
-
|
6039 |
-
#: ../framework/views/backend-settings-form.php:210
|
6040 |
-
msgid "We are currently saving your settings."
|
6041 |
-
msgstr "Estamos actualmente guardando sus configuraciones."
|
6042 |
-
|
6043 |
-
#: ../framework/includes/option-types/class-fw-option-type-undefined.php:25
|
6044 |
-
msgid "UNDEFINED OPTION TYPE"
|
6045 |
-
msgstr "TIPO DE OPCIÓN NO DEFINIDA"
|
6046 |
-
|
6047 |
-
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:22
|
6048 |
-
msgid "25%"
|
6049 |
-
msgstr "25%"
|
6050 |
-
|
6051 |
-
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:23
|
6052 |
-
msgid "50%"
|
6053 |
-
msgstr "50%"
|
6054 |
-
|
6055 |
-
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:24
|
6056 |
-
msgid "100%"
|
6057 |
-
msgstr "100%"
|
6058 |
-
|
6059 |
-
#: ../framework/includes/option-types/map/views/view.php:12
|
6060 |
-
msgid "Specify location"
|
6061 |
-
msgstr "Especificar ubicación"
|
6062 |
-
|
6063 |
-
#: ../framework/includes/option-types/map/views/view.php:27
|
6064 |
-
msgid "Location Venue"
|
6065 |
-
msgstr "Lugar de ubicación"
|
6066 |
-
|
6067 |
-
#: ../framework/includes/option-types/map/views/view.php:42
|
6068 |
-
msgid "Address"
|
6069 |
-
msgstr "Dirección"
|
6070 |
-
|
6071 |
-
#: ../framework/includes/option-types/map/views/view.php:57
|
6072 |
-
msgid "City"
|
6073 |
-
msgstr "Ciudad"
|
6074 |
-
|
6075 |
-
#: ../framework/includes/option-types/map/views/view.php:72
|
6076 |
-
msgid "Country"
|
6077 |
-
msgstr "País"
|
6078 |
-
|
6079 |
-
#: ../framework/includes/option-types/map/views/view.php:87
|
6080 |
-
msgid "State"
|
6081 |
-
msgstr "Región o Estado"
|
6082 |
-
|
6083 |
-
#: ../framework/includes/option-types/map/views/view.php:103
|
6084 |
-
msgid "Zip Code"
|
6085 |
-
msgstr "Código Zip"
|
6086 |
-
|
6087 |
-
#: ../framework/includes/option-types/map/views/view.php:138
|
6088 |
-
msgid "Cannot find the location?"
|
6089 |
-
msgstr "No encuentra la ubicación?"
|
6090 |
-
|
6091 |
-
#: ../framework/includes/option-types/map/views/view.php:150
|
6092 |
-
msgid "Reset location"
|
6093 |
-
msgstr "Restablecer ubicación"
|
6094 |
-
|
6095 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:150
|
6096 |
-
msgid "Add Image"
|
6097 |
-
msgstr "Agregar Imagen"
|
6098 |
-
|
6099 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:176
|
6100 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:186
|
6101 |
-
msgid "Upload"
|
6102 |
-
msgstr "Subir"
|
6103 |
-
|
6104 |
-
#: ../framework/includes/option-types/typography-v2/view.php:39
|
6105 |
-
msgid "Font face"
|
6106 |
-
msgstr "Tipo de fuente"
|
6107 |
-
|
6108 |
-
#: ../framework/includes/option-types/typography-v2/view.php:48
|
6109 |
-
msgid "Normal"
|
6110 |
-
msgstr "Normal"
|
6111 |
-
|
6112 |
-
#: ../framework/includes/option-types/typography-v2/view.php:49
|
6113 |
-
msgid "Italic"
|
6114 |
-
msgstr "Itálica"
|
6115 |
-
|
6116 |
-
#: ../framework/includes/option-types/typography-v2/view.php:50
|
6117 |
-
msgid "Oblique"
|
6118 |
-
msgstr "Oblicua"
|
6119 |
-
|
6120 |
-
#: ../framework/includes/option-types/typography-v2/view.php:59
|
6121 |
-
#: ../framework/includes/option-types/typography-v2/view.php:118
|
6122 |
-
msgid "Style"
|
6123 |
-
msgstr "Estilo"
|
6124 |
-
|
6125 |
-
#: ../framework/includes/option-types/typography-v2/view.php:85
|
6126 |
-
msgid "Weight"
|
6127 |
-
msgstr "Espesor"
|
6128 |
-
|
6129 |
-
#: ../framework/includes/option-types/typography-v2/view.php:101
|
6130 |
-
msgid "Script"
|
6131 |
-
msgstr "Script"
|
6132 |
-
|
6133 |
-
#: ../framework/includes/option-types/typography-v2/view.php:128
|
6134 |
-
msgid "Size"
|
6135 |
-
msgstr "Tamaño"
|
6136 |
-
|
6137 |
-
#: ../framework/includes/option-types/typography-v2/view.php:139
|
6138 |
-
msgid "Line height"
|
6139 |
-
msgstr "Alto de línea"
|
6140 |
-
|
6141 |
-
#: ../framework/includes/option-types/typography-v2/view.php:150
|
6142 |
-
msgid "Letter spacing"
|
6143 |
-
msgstr "Espacio entre letras"
|
6144 |
-
|
6145 |
-
#: ../framework/includes/option-types/typography-v2/view.php:173
|
6146 |
-
msgid "Color"
|
6147 |
-
msgstr "Color"
|
6148 |
-
|
6149 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:156
|
6150 |
-
msgid "Unknown Set"
|
6151 |
-
msgstr "Configruación Desconocida"
|
6152 |
-
|
6153 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:186
|
6154 |
-
msgid "Web Application Icons"
|
6155 |
-
msgstr "Iconos Aplicaciones Web"
|
6156 |
-
|
6157 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:187
|
6158 |
-
msgid "Hand Icons"
|
6159 |
-
msgstr "Iconos Manos"
|
6160 |
-
|
6161 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:188
|
6162 |
-
msgid "Transportation Icons"
|
6163 |
-
msgstr "Iconos Transportes"
|
6164 |
-
|
6165 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:189
|
6166 |
-
msgid "Gender Icons"
|
6167 |
-
msgstr "Iconos Géneros"
|
6168 |
-
|
6169 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:190
|
6170 |
-
msgid "File Type Icons"
|
6171 |
-
msgstr "Iconos Tipos de Archivos"
|
6172 |
-
|
6173 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:193
|
6174 |
-
msgid "Payment Icons"
|
6175 |
-
msgstr "Iconos de Pago"
|
6176 |
-
|
6177 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:195
|
6178 |
-
msgid "Currency Icons"
|
6179 |
-
msgstr "Iconos de Monedas"
|
6180 |
-
|
6181 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:196
|
6182 |
-
msgid "Text Editor Icons"
|
6183 |
-
msgstr "Iconos Editor de Texto"
|
6184 |
-
|
6185 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:197
|
6186 |
-
msgid "Directional Icons"
|
6187 |
-
msgstr "Iconos Direcciones"
|
6188 |
-
|
6189 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:198
|
6190 |
-
msgid "Video Player Icons"
|
6191 |
-
msgstr "Iconos Reproductor de Video"
|
6192 |
-
|
6193 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:199
|
6194 |
-
msgid "Brand Icons"
|
6195 |
-
msgstr "Iconos de Marcas"
|
6196 |
-
|
6197 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:200
|
6198 |
-
msgid "Medical Icons"
|
6199 |
-
msgstr "Iconos Médicos"
|
6200 |
-
|
6201 |
-
#: ../framework/includes/option-types/icon/view.php:39
|
6202 |
-
msgid "All Categories"
|
6203 |
-
msgstr "Todas las Categorías"
|
6204 |
-
|
6205 |
-
#: ../framework/includes/option-types/datetime-range/view.php:41
|
6206 |
-
#: ../framework/includes/option-types/gradient/view.php:46
|
6207 |
-
msgid "to"
|
6208 |
-
msgstr "a"
|
6209 |
-
|
6210 |
-
#: ../framework/includes/option-types/multi-picker/class-fw-option-type-multi-picker.php:179
|
6211 |
-
#, php-format
|
6212 |
-
msgid "No 'picker' key set for multi-picker option: %s"
|
6213 |
-
msgstr "No establecida clave 'picker' (selector) para opción multi-selección: %s"
|
6214 |
-
|
6215 |
-
#: ../framework/includes/option-types/background-image/view.php:37
|
6216 |
-
msgid "Predefined images"
|
6217 |
-
msgstr "Imágenes predefinidas"
|
6218 |
-
|
6219 |
-
#: ../framework/includes/option-types/background-image/view.php:38
|
6220 |
-
msgid "Custom image"
|
6221 |
-
msgstr "Imagen personalizada"
|
6222 |
-
|
6223 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:160
|
6224 |
-
msgid "Add Images"
|
6225 |
-
msgstr "Agregar imágenes"
|
6226 |
-
|
6227 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:188
|
6228 |
-
msgid "1 File"
|
6229 |
-
msgstr "1 Archivo"
|
6230 |
-
|
6231 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:189
|
6232 |
-
#, php-format
|
6233 |
-
msgid "%u Files"
|
6234 |
-
msgstr "%u Archivos"
|
1 |
+
#
|
2 |
+
# Translators:
|
3 |
+
# Pablo <pablo.olave.77@gmail.com>, 2016
|
4 |
+
msgid ""
|
5 |
+
msgstr ""
|
6 |
+
"Project-Id-Version: Unyson\n"
|
7 |
+
"POT-Creation-Date: 2016-02-02 15:48+0300\n"
|
8 |
+
"PO-Revision-Date: 2016-03-26 22:10+0000\n"
|
9 |
+
"Last-Translator: Pablo <pablo.olave.77@gmail.com>\n"
|
10 |
+
"Language-Team: Spanish (Spain) (http://www.transifex.com/themefuse/unyson/language/es_ES/)\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"Language: es_ES\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
19 |
+
"X-Poedit-SearchPath-0: ..\n"
|
20 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
+
|
22 |
+
#: ../framework/manifest.php:5
|
23 |
+
msgid "Unyson"
|
24 |
+
msgstr "Unyson"
|
25 |
+
|
26 |
+
#: ../framework/helpers/class-fw-wp-filesystem.php:43
|
27 |
+
msgid "Cannot connect to Filesystem directly"
|
28 |
+
msgstr "No se puede conectar al sistema de archivos directamente"
|
29 |
+
|
30 |
+
#: ../framework/helpers/class-fw-wp-filesystem.php:271
|
31 |
+
#, php-format
|
32 |
+
msgid "Cannot create directory \"%s\". It must be inside \"%s\""
|
33 |
+
msgstr "No se puede crear el directorio \"%s\". Debe estar dentro de \"%s\""
|
34 |
+
|
35 |
+
#: ../framework/helpers/class-fw-wp-filesystem.php:273
|
36 |
+
msgid "\" or \""
|
37 |
+
msgstr "\" o \""
|
38 |
+
|
39 |
+
#: ../framework/helpers/class-fw-flash-messages.php:95
|
40 |
+
#, php-format
|
41 |
+
msgid "Invalid flash message type: %s"
|
42 |
+
msgstr "Tipo de mensaje flash no válido: %s"
|
43 |
+
|
44 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:185
|
45 |
+
msgid "No items found."
|
46 |
+
msgstr "No se encuentran items"
|
47 |
+
|
48 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:309
|
49 |
+
msgid "Bulk Actions"
|
50 |
+
msgstr "Acciones en lote"
|
51 |
+
|
52 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:319
|
53 |
+
msgid "Apply"
|
54 |
+
msgstr "Aplicar"
|
55 |
+
|
56 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:403
|
57 |
+
msgid "All dates"
|
58 |
+
msgstr "Todas las fechas"
|
59 |
+
|
60 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:416
|
61 |
+
#, php-format
|
62 |
+
msgid "%1$s %2$d"
|
63 |
+
msgstr "%1$s %2$d"
|
64 |
+
|
65 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:432
|
66 |
+
msgid "List View"
|
67 |
+
msgstr "Ver como lista"
|
68 |
+
|
69 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:433
|
70 |
+
msgid "Excerpt View"
|
71 |
+
msgstr "Ver como extracto"
|
72 |
+
|
73 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:459
|
74 |
+
#, php-format
|
75 |
+
msgid "%s pending"
|
76 |
+
msgstr "pendiente %s"
|
77 |
+
|
78 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:714
|
79 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:33
|
80 |
+
msgid "Select All"
|
81 |
+
msgstr "Seleccionar todo"
|
82 |
+
|
83 |
+
#: ../framework/helpers/general.php:1150
|
84 |
+
msgid "year"
|
85 |
+
msgstr "año"
|
86 |
+
|
87 |
+
#: ../framework/helpers/general.php:1151
|
88 |
+
msgid "years"
|
89 |
+
msgstr "años"
|
90 |
+
|
91 |
+
#: ../framework/helpers/general.php:1153
|
92 |
+
msgid "month"
|
93 |
+
msgstr "mes"
|
94 |
+
|
95 |
+
#: ../framework/helpers/general.php:1154
|
96 |
+
msgid "months"
|
97 |
+
msgstr "meses"
|
98 |
+
|
99 |
+
#: ../framework/helpers/general.php:1156
|
100 |
+
msgid "week"
|
101 |
+
msgstr "semana"
|
102 |
+
|
103 |
+
#: ../framework/helpers/general.php:1157
|
104 |
+
msgid "weeks"
|
105 |
+
msgstr "semanas"
|
106 |
+
|
107 |
+
#: ../framework/helpers/general.php:1159
|
108 |
+
msgid "day"
|
109 |
+
msgstr "día"
|
110 |
+
|
111 |
+
#: ../framework/helpers/general.php:1160
|
112 |
+
msgid "days"
|
113 |
+
msgstr "días"
|
114 |
+
|
115 |
+
#: ../framework/helpers/general.php:1162
|
116 |
+
msgid "hour"
|
117 |
+
msgstr "hora"
|
118 |
+
|
119 |
+
#: ../framework/helpers/general.php:1163
|
120 |
+
msgid "hours"
|
121 |
+
msgstr "horas"
|
122 |
+
|
123 |
+
#: ../framework/helpers/general.php:1165
|
124 |
+
msgid "minute"
|
125 |
+
msgstr "minuto"
|
126 |
+
|
127 |
+
#: ../framework/helpers/general.php:1166
|
128 |
+
msgid "minutes"
|
129 |
+
msgstr "minutos"
|
130 |
+
|
131 |
+
#: ../framework/helpers/general.php:1168
|
132 |
+
msgid "second"
|
133 |
+
msgstr "segundo"
|
134 |
+
|
135 |
+
#: ../framework/helpers/general.php:1169
|
136 |
+
msgid "seconds"
|
137 |
+
msgstr "segundos"
|
138 |
+
|
139 |
+
#: ../framework/helpers/general.php:1558
|
140 |
+
msgid "Maximum stack depth exceeded"
|
141 |
+
msgstr "Profundidad máxima de grupo excedida"
|
142 |
+
|
143 |
+
#: ../framework/helpers/general.php:1561
|
144 |
+
msgid "Underflow or the modes mismatch"
|
145 |
+
msgstr "Flujo inferior o modos no coinciden"
|
146 |
+
|
147 |
+
#: ../framework/helpers/general.php:1564
|
148 |
+
msgid "Unexpected control character found"
|
149 |
+
msgstr "Control de carácter inesperado encontrado"
|
150 |
+
|
151 |
+
#: ../framework/helpers/general.php:1567
|
152 |
+
msgid "Syntax error, malformed JSON"
|
153 |
+
msgstr "Error de sintaxis, JSON malformado"
|
154 |
+
|
155 |
+
#: ../framework/helpers/general.php:1570
|
156 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
157 |
+
msgstr "Caracteres UTF-8 malformados, posiblemente codificación incorrecta"
|
158 |
+
|
159 |
+
#: ../framework/helpers/general.php:1573
|
160 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:550
|
161 |
+
msgid "Unknown error"
|
162 |
+
msgstr "Error desconocido"
|
163 |
+
|
164 |
+
#: ../framework/helpers/class-fw-form.php:80
|
165 |
+
#, php-format
|
166 |
+
msgid "Form with id \"%s\" was already defined"
|
167 |
+
msgstr "Formulario id \"%s\"ya se encuentra definido"
|
168 |
+
|
169 |
+
#: ../framework/helpers/class-fw-form.php:168
|
170 |
+
msgid "Nonce verification failed"
|
171 |
+
msgstr "Mientras la verificación ha fallado"
|
172 |
+
|
173 |
+
#: ../framework/helpers/class-fw-form.php:331
|
174 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/views/form.php:13
|
175 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:66
|
176 |
+
msgid "Submit"
|
177 |
+
msgstr "Enviar"
|
178 |
+
|
179 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:285
|
180 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:602
|
181 |
+
msgid "Cannot delete: "
|
182 |
+
msgstr "No se puede eliminar: "
|
183 |
+
|
184 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:292
|
185 |
+
msgid "Cannot create: "
|
186 |
+
msgstr "No se puede crear"
|
187 |
+
|
188 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:370
|
189 |
+
msgid "Cannot remove old temporary directory: "
|
190 |
+
msgstr "No se puede remover el directorio temporal"
|
191 |
+
|
192 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:376
|
193 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:572
|
194 |
+
msgid "Cannot create directory: "
|
195 |
+
msgstr "No se puede crear el directorio: "
|
196 |
+
|
197 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:381
|
198 |
+
#, php-format
|
199 |
+
msgid "Downloading the %s..."
|
200 |
+
msgstr "Descargando... %s"
|
201 |
+
|
202 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:386
|
203 |
+
#, php-format
|
204 |
+
msgid "Cannot download the %s."
|
205 |
+
msgstr "No se puede descargar archivo zip %s"
|
206 |
+
|
207 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:396
|
208 |
+
#, php-format
|
209 |
+
msgid "Installing the %s..."
|
210 |
+
msgstr "Instalando %s"
|
211 |
+
|
212 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:402
|
213 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:431
|
214 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:531
|
215 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:552
|
216 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:582
|
217 |
+
msgid "Cannot access directory: "
|
218 |
+
msgstr "No se puede acceder al directorio"
|
219 |
+
|
220 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:421
|
221 |
+
msgid "Cannot remove: "
|
222 |
+
msgstr "No se puede remover"
|
223 |
+
|
224 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:456
|
225 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:522
|
226 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:628
|
227 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:652
|
228 |
+
#, php-format
|
229 |
+
msgid "Cannot move \"%s\" to \"%s\""
|
230 |
+
msgstr "No se puede mover \"%s\" a \"%s\""
|
231 |
+
|
232 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:472
|
233 |
+
#, php-format
|
234 |
+
msgid "Cannot merge \"%s\" with \"%s\""
|
235 |
+
msgstr "No se puede unir \"%s\" con \"%s\""
|
236 |
+
|
237 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:485
|
238 |
+
#, php-format
|
239 |
+
msgid "The %s has been successfully updated."
|
240 |
+
msgstr "Se ha actualizado correctamente %s"
|
241 |
+
|
242 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:492
|
243 |
+
#, php-format
|
244 |
+
msgid "Cannot remove temporary directory \"%s\"."
|
245 |
+
msgstr "No se puede remover el directorio temporal \"%s\"."
|
246 |
+
|
247 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:672
|
248 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:740
|
249 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:808
|
250 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:930
|
251 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1427
|
252 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1837
|
253 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2054
|
254 |
+
msgid "Invalid nonce."
|
255 |
+
msgstr "Mientras tanto no es válido"
|
256 |
+
|
257 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:683
|
258 |
+
msgid "Framework Update"
|
259 |
+
msgstr "Actualizar Framework"
|
260 |
+
|
261 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:699
|
262 |
+
msgid "Failed to get framework latest version."
|
263 |
+
msgstr "Ha fallado obtener la última versión del framework."
|
264 |
+
|
265 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:716
|
266 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:360
|
267 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:374
|
268 |
+
#: ../framework/extensions/update/views/updates-list.php:10
|
269 |
+
#: ../framework/core/class-fw-manifest.php:353
|
270 |
+
msgid "Framework"
|
271 |
+
msgstr "Framework"
|
272 |
+
|
273 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:751
|
274 |
+
msgid "Theme Update"
|
275 |
+
msgstr "Actualizar Tema"
|
276 |
+
|
277 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:767
|
278 |
+
msgid "Failed to get theme latest version."
|
279 |
+
msgstr "Ha fallado obtener la última versión del tema."
|
280 |
+
|
281 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:784
|
282 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:393
|
283 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:407
|
284 |
+
msgid "Theme"
|
285 |
+
msgstr "Tema"
|
286 |
+
|
287 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:817
|
288 |
+
msgid "Please check the extensions you want to update."
|
289 |
+
msgstr "Por favor marque las extensiones que quiere actualizar."
|
290 |
+
|
291 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:841
|
292 |
+
msgid "Extensions Update"
|
293 |
+
msgstr "Actualizar Extensiones"
|
294 |
+
|
295 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:879
|
296 |
+
msgid "No extensions updates found."
|
297 |
+
msgstr "No se encuentran actualizaciones disponibles."
|
298 |
+
|
299 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:886
|
300 |
+
#, php-format
|
301 |
+
msgid "Extension \"%s\" does not exist or is disabled."
|
302 |
+
msgstr "Extensión \"%s\" no existe o está deshabilitada."
|
303 |
+
|
304 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:893
|
305 |
+
#, php-format
|
306 |
+
msgid "No update found for the \"%s\" extension."
|
307 |
+
msgstr "No existen actualizaciones para la extensión \"%s\"."
|
308 |
+
|
309 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:915
|
310 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:426
|
311 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:440
|
312 |
+
#, php-format
|
313 |
+
msgid "%s extension"
|
314 |
+
msgstr "extensión \"%s\" "
|
315 |
+
|
316 |
+
#: ../framework/extensions/update/manifest.php:5
|
317 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/fullscreen.php:82
|
318 |
+
msgid "Update"
|
319 |
+
msgstr "Actualizar"
|
320 |
+
|
321 |
+
#: ../framework/extensions/update/manifest.php:6
|
322 |
+
msgid "Keep you framework, extensions and theme up to date."
|
323 |
+
msgstr "Mantenga su framework y extensiones actualizadas"
|
324 |
+
|
325 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:91
|
326 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:232
|
327 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2439
|
328 |
+
msgid "Github error:"
|
329 |
+
msgstr "Github error: "
|
330 |
+
|
331 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:100
|
332 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:241
|
333 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2446
|
334 |
+
#, php-format
|
335 |
+
msgid "Failed to access Github repository \"%s\" releases. (Response code: %d)"
|
336 |
+
msgstr "Ha fallado el acceso a publicaciones del repositorio Github \"%s\". (Código de respuesta: %d)"
|
337 |
+
|
338 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:108
|
339 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:249
|
340 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2462
|
341 |
+
#, php-format
|
342 |
+
msgid "Failed to access Github repository \"%s\" releases."
|
343 |
+
msgstr "Ha fallado el acceso a publicaciones del repositorio Github \"%s\"."
|
344 |
+
|
345 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:122
|
346 |
+
#, php-format
|
347 |
+
msgid "No releases found in repository \"%s\"."
|
348 |
+
msgstr "No hay publicaciones encontradas en repositorio \"%s\"."
|
349 |
+
|
350 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:143
|
351 |
+
#, php-format
|
352 |
+
msgid ""
|
353 |
+
"%s manifest has invalid \"github_update\" parameter. Please use "
|
354 |
+
"\"user/repo\" format."
|
355 |
+
msgstr "Manifiesto %s es un parámetro inválido para \"github_update\". Utilice el formato \"user/repo\""
|
356 |
+
|
357 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:171
|
358 |
+
#, php-format
|
359 |
+
msgid "Failed to fetch %s latest version from github \"%s\"."
|
360 |
+
msgstr "Ha fallado recuperar la última versión %s de Github \"%s\"."
|
361 |
+
|
362 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:264
|
363 |
+
#, php-format
|
364 |
+
msgid "%s github repository \"%s\" does not have the \"%s\" release."
|
365 |
+
msgstr "Github %s repositorio \"%s\" no tiene publicación \"%s\"."
|
366 |
+
|
367 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:284
|
368 |
+
#, php-format
|
369 |
+
msgid "Cannot download %s zip."
|
370 |
+
msgstr "No se puede descargar archivo zip %s"
|
371 |
+
|
372 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:297
|
373 |
+
#, php-format
|
374 |
+
msgid "Cannot save %s zip."
|
375 |
+
msgstr "No se puede guardar archivo zip %s"
|
376 |
+
|
377 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:316
|
378 |
+
#, php-format
|
379 |
+
msgid "Cannot remove %s zip."
|
380 |
+
msgstr "No se puede remover archivo zip %s"
|
381 |
+
|
382 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:325
|
383 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2566
|
384 |
+
msgid "Cannot access the unzipped directory files."
|
385 |
+
msgstr "No se puede acceder al directorio de archivos extraídos."
|
386 |
+
|
387 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:341
|
388 |
+
#, php-format
|
389 |
+
msgid "The unzipped %s directory not found."
|
390 |
+
msgstr "No se encuentra el directorio de archivos extraídos %s"
|
391 |
+
|
392 |
+
#: ../framework/extensions/update/views/updates-list.php:12
|
393 |
+
#, php-format
|
394 |
+
msgid "You have the latest version of %s."
|
395 |
+
msgstr "Usted tiene la última versión de %s"
|
396 |
+
|
397 |
+
#: ../framework/extensions/update/views/updates-list.php:25
|
398 |
+
msgid "Update Framework"
|
399 |
+
msgstr "Actualizar Framework"
|
400 |
+
|
401 |
+
#: ../framework/extensions/update/views/updates-list.php:37
|
402 |
+
msgid "Your theme is up to date."
|
403 |
+
msgstr "Su tema se encuentra actualizado"
|
404 |
+
|
405 |
+
#: ../framework/extensions/update/views/updates-list.php:50
|
406 |
+
msgid "Update Theme"
|
407 |
+
msgstr "Actualizar Tema"
|
408 |
+
|
409 |
+
#: ../framework/extensions/update/views/updates-list.php:60
|
410 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:844
|
411 |
+
#, php-format
|
412 |
+
msgid "%s Extensions"
|
413 |
+
msgstr "Extensiones %s"
|
414 |
+
|
415 |
+
#: ../framework/extensions/update/views/updates-list.php:62
|
416 |
+
#, php-format
|
417 |
+
msgid "You have the latest version of %s Extensions."
|
418 |
+
msgstr "Usted tiene la última versión de sus extensiones %s"
|
419 |
+
|
420 |
+
#: ../framework/extensions/update/views/updates-list.php:80
|
421 |
+
#: ../framework/extensions/update/views/updates-list.php:95
|
422 |
+
#: ../framework/extensions/update/views/updates-list.php:100
|
423 |
+
msgid "Update Extensions"
|
424 |
+
msgstr "Actualizar Extensiones"
|
425 |
+
|
426 |
+
#: ../framework/extensions/update/views/updates-list.php:99
|
427 |
+
msgid "New extensions updates available."
|
428 |
+
msgstr "Nuevas actualizaciones de extensiones disponibles"
|
429 |
+
|
430 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:16
|
431 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:14
|
432 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:16
|
433 |
+
msgid "Go to updates page"
|
434 |
+
msgstr "Ir a la página de actualizaciones"
|
435 |
+
|
436 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:19
|
437 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:17
|
438 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:19
|
439 |
+
msgid "Return to Updates page"
|
440 |
+
msgstr "Volver a la página de actualizaciones"
|
441 |
+
|
442 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:84
|
443 |
+
#, php-format
|
444 |
+
msgid "You have version %s installed. Update to %s."
|
445 |
+
msgstr "Usted tiene la versión %s instalada. Actualice %s"
|
446 |
+
|
447 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:126
|
448 |
+
msgid "No Extensions for update."
|
449 |
+
msgstr "Actualizar Extensiones"
|
450 |
+
|
451 |
+
#: ../framework/extensions/portfolio/manifest.php:7
|
452 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:260
|
453 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:72
|
454 |
+
msgid "Portfolio"
|
455 |
+
msgstr "Portafolios"
|
456 |
+
|
457 |
+
#: ../framework/extensions/portfolio/manifest.php:9
|
458 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:73
|
459 |
+
msgid ""
|
460 |
+
"This extension will add a fully fledged portfolio module that will let you "
|
461 |
+
"display your projects using the built in portfolio pages."
|
462 |
+
msgstr "Esta extensión añade un completo módulo de proyectos que le permitirá mostrar sus proyectos utilizando las páginas de portafolios predefinidas."
|
463 |
+
|
464 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:115
|
465 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
466 |
+
msgid "Project"
|
467 |
+
msgstr "Proyecto"
|
468 |
+
|
469 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:116
|
470 |
+
msgid "Projects"
|
471 |
+
msgstr "Proyectos"
|
472 |
+
|
473 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:123
|
474 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:63
|
475 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:127
|
476 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:57
|
477 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:58
|
478 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:76
|
479 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:8
|
480 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:32
|
481 |
+
msgid "Add New"
|
482 |
+
msgstr "Añadir Nuevo"
|
483 |
+
|
484 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:124
|
485 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:198
|
486 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:64
|
487 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:128
|
488 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:77
|
489 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:131
|
490 |
+
#, php-format
|
491 |
+
msgid "Add New %s"
|
492 |
+
msgstr "Añadir nuevo %s"
|
493 |
+
|
494 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:125
|
495 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:129
|
496 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:89
|
497 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:76
|
498 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:88
|
499 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:86
|
500 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:68
|
501 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:34
|
502 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:50
|
503 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:110
|
504 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:45
|
505 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:37
|
506 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:73
|
507 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:81
|
508 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:55
|
509 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:57
|
510 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:50
|
511 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:54
|
512 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:52
|
513 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:53
|
514 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:53
|
515 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:52
|
516 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:52
|
517 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:50
|
518 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:78
|
519 |
+
#: ../framework/includes/option-types/popup/class-fw-option-type-popup.php:158
|
520 |
+
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:151
|
521 |
+
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:177
|
522 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:161
|
523 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:187
|
524 |
+
msgid "Edit"
|
525 |
+
msgstr "Editar"
|
526 |
+
|
527 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:126
|
528 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:196
|
529 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:65
|
530 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:66
|
531 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:130
|
532 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:192
|
533 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:59
|
534 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:60
|
535 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:79
|
536 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:129
|
537 |
+
#, php-format
|
538 |
+
msgid "Edit %s"
|
539 |
+
msgstr "Editar %s"
|
540 |
+
|
541 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:127
|
542 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:67
|
543 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:131
|
544 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:61
|
545 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:80
|
546 |
+
#, php-format
|
547 |
+
msgid "New %s"
|
548 |
+
msgstr "Nuevo %s"
|
549 |
+
|
550 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:128
|
551 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:193
|
552 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:68
|
553 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:132
|
554 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:189
|
555 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:62
|
556 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:81
|
557 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:126
|
558 |
+
#, php-format
|
559 |
+
msgid "All %s"
|
560 |
+
msgstr "Todos los %s"
|
561 |
+
|
562 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:129
|
563 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:130
|
564 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:69
|
565 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:70
|
566 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:133
|
567 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:134
|
568 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:63
|
569 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:64
|
570 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:82
|
571 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:83
|
572 |
+
#, php-format
|
573 |
+
msgid "View %s"
|
574 |
+
msgstr "Ver %s"
|
575 |
+
|
576 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:131
|
577 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:192
|
578 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:71
|
579 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:135
|
580 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:65
|
581 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:84
|
582 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:125
|
583 |
+
#, php-format
|
584 |
+
msgid "Search %s"
|
585 |
+
msgstr "Buscar %s"
|
586 |
+
|
587 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:132
|
588 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:72
|
589 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:136
|
590 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:66
|
591 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:85
|
592 |
+
#, php-format
|
593 |
+
msgid "No %s Found"
|
594 |
+
msgstr "No se encuentran %s"
|
595 |
+
|
596 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:133
|
597 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:73
|
598 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:137
|
599 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:67
|
600 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:86
|
601 |
+
#, php-format
|
602 |
+
msgid "No %s Found In Trash"
|
603 |
+
msgstr "No se encuentran %s en la papelera"
|
604 |
+
|
605 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:136
|
606 |
+
msgid "Create a portfolio item"
|
607 |
+
msgstr "Crear un item en portafolio"
|
608 |
+
|
609 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:183
|
610 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:116
|
611 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:268
|
612 |
+
msgid "Category"
|
613 |
+
msgstr "Categoría"
|
614 |
+
|
615 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:184
|
616 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:117
|
617 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:168
|
618 |
+
msgid "Categories"
|
619 |
+
msgstr "Categorías"
|
620 |
+
|
621 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:194
|
622 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:190
|
623 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:127
|
624 |
+
#, php-format
|
625 |
+
msgid "Parent %s"
|
626 |
+
msgstr "Principal %s"
|
627 |
+
|
628 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:195
|
629 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:191
|
630 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:128
|
631 |
+
#, php-format
|
632 |
+
msgid "Parent %s:"
|
633 |
+
msgstr "Principal %s"
|
634 |
+
|
635 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:197
|
636 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:193
|
637 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:130
|
638 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:234
|
639 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:272
|
640 |
+
#, php-format
|
641 |
+
msgid "Update %s"
|
642 |
+
msgstr "Actualizar %s"
|
643 |
+
|
644 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:199
|
645 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:195
|
646 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:132
|
647 |
+
#, php-format
|
648 |
+
msgid "New %s Name"
|
649 |
+
msgstr "Nuevo nombre de %s"
|
650 |
+
|
651 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:200
|
652 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:196
|
653 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:133
|
654 |
+
#, php-format
|
655 |
+
msgid "%s"
|
656 |
+
msgstr "%s"
|
657 |
+
|
658 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
659 |
+
msgid "Gallery"
|
660 |
+
msgstr "Galería"
|
661 |
+
|
662 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:240
|
663 |
+
msgid "Set project gallery"
|
664 |
+
msgstr "Establecer galería de proyecto"
|
665 |
+
|
666 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:241
|
667 |
+
msgid "Edit project gallery"
|
668 |
+
msgstr "Editar galería de proyecto"
|
669 |
+
|
670 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:271
|
671 |
+
msgid "Project Cover Image"
|
672 |
+
msgstr "Imagen de portada del proyecto"
|
673 |
+
|
674 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:287
|
675 |
+
msgid "Edit this item"
|
676 |
+
msgstr "Editar Item"
|
677 |
+
|
678 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:348
|
679 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:361
|
680 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:320
|
681 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:333
|
682 |
+
msgid "View all categories"
|
683 |
+
msgstr "Ver todas las categorías"
|
684 |
+
|
685 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:381
|
686 |
+
msgid "Cover Image"
|
687 |
+
msgstr "Imagen de portada"
|
688 |
+
|
689 |
+
#: ../framework/extensions/seo/settings-options.php:17
|
690 |
+
#: ../framework/extensions/social/settings-options.php:11
|
691 |
+
msgid "General"
|
692 |
+
msgstr "General"
|
693 |
+
|
694 |
+
#: ../framework/extensions/seo/settings-options.php:21
|
695 |
+
#: ../framework/extensions/social/settings-options.php:15
|
696 |
+
msgid "General Settings"
|
697 |
+
msgstr "Configuraciones generales"
|
698 |
+
|
699 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:89
|
700 |
+
msgid "Site name"
|
701 |
+
msgstr "Nombre del sitio"
|
702 |
+
|
703 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:95
|
704 |
+
msgid "Site description"
|
705 |
+
msgstr "Descripción del sitio"
|
706 |
+
|
707 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:101
|
708 |
+
msgid "Current time"
|
709 |
+
msgstr "Hora actual"
|
710 |
+
|
711 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:107
|
712 |
+
msgid "Current date"
|
713 |
+
msgstr "Fecha actual"
|
714 |
+
|
715 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:113
|
716 |
+
msgid "Current month"
|
717 |
+
msgstr "Mes actual"
|
718 |
+
|
719 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:119
|
720 |
+
msgid "Current year"
|
721 |
+
msgstr "Año actual"
|
722 |
+
|
723 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:125
|
724 |
+
msgid "Date of the post/page"
|
725 |
+
msgstr "Fecha del post/página"
|
726 |
+
|
727 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:131
|
728 |
+
msgid "Title of the post/page/term"
|
729 |
+
msgstr "Título del post/página/término"
|
730 |
+
|
731 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:137
|
732 |
+
msgid "Excerpt of the current post, of auto-generate if it is not set"
|
733 |
+
msgstr "Resumen del post actual, si no se ha generado es automático"
|
734 |
+
|
735 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:143
|
736 |
+
msgid "Excerpt of the current post, without auto-generation"
|
737 |
+
msgstr "Resumen del post actual, sin autogenerar"
|
738 |
+
|
739 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:149
|
740 |
+
msgid "Post tags, separated by coma"
|
741 |
+
msgstr "Etiquetas de post, separadas por coma"
|
742 |
+
|
743 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:155
|
744 |
+
msgid "Post categories, separated by coma"
|
745 |
+
msgstr "Categorías de post, separadas por coma"
|
746 |
+
|
747 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:161
|
748 |
+
msgid "Category/tag/term description"
|
749 |
+
msgstr "Descripción de categoría/etiqueta/término"
|
750 |
+
|
751 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:167
|
752 |
+
msgid "Term title"
|
753 |
+
msgstr "Título de término"
|
754 |
+
|
755 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:173
|
756 |
+
msgid "Post modified time"
|
757 |
+
msgstr "Hora de modificación del post"
|
758 |
+
|
759 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:179
|
760 |
+
msgid "Post/page id"
|
761 |
+
msgstr "Post/página id "
|
762 |
+
|
763 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:185
|
764 |
+
msgid "Post/page author \"nicename\""
|
765 |
+
msgstr "Nombre de autor del Post/página"
|
766 |
+
|
767 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:191
|
768 |
+
msgid "Post/page author id"
|
769 |
+
msgstr "ID de autor del post/página"
|
770 |
+
|
771 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:197
|
772 |
+
msgid "Search phrase in search page"
|
773 |
+
msgstr "Buscar frase en búsqueda de página"
|
774 |
+
|
775 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:203
|
776 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:209
|
777 |
+
msgid "Page number"
|
778 |
+
msgstr "Número de página"
|
779 |
+
|
780 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:215
|
781 |
+
msgid "Attachment caption"
|
782 |
+
msgstr "Leyenda (subtítulo) de adjunto"
|
783 |
+
|
784 |
+
#: ../framework/extensions/seo/class-fw-extension-seo.php:435
|
785 |
+
#: ../framework/extensions/seo/manifest.php:7
|
786 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:120
|
787 |
+
msgid "SEO"
|
788 |
+
msgstr "SEO"
|
789 |
+
|
790 |
+
#: ../framework/extensions/seo/manifest.php:9
|
791 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:121
|
792 |
+
msgid ""
|
793 |
+
"This extension will enable you to have a fully optimized WordPress website "
|
794 |
+
"by adding optimized meta titles, keywords and descriptions."
|
795 |
+
msgstr "Esta extensión añade un completo módulo para optimizar su sitio web en Wordpress, añadiendo títulos (<title>,<meta>) optimizados, palabras claves y descripciones."
|
796 |
+
|
797 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:22
|
798 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:310
|
799 |
+
msgid "Titles & Meta"
|
800 |
+
msgstr "Títulos & Meta"
|
801 |
+
|
802 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:26
|
803 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:6
|
804 |
+
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:9
|
805 |
+
msgid "Homepage"
|
806 |
+
msgstr "Página principal"
|
807 |
+
|
808 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:30
|
809 |
+
msgid "Homepage Title"
|
810 |
+
msgstr "Título de página principal"
|
811 |
+
|
812 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:31
|
813 |
+
msgid "Set homepage title format"
|
814 |
+
msgstr "Establecer formato de título para página de inicio"
|
815 |
+
|
816 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:36
|
817 |
+
msgid "Homepage Description"
|
818 |
+
msgstr "Descripción de la página de inicio "
|
819 |
+
|
820 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:37
|
821 |
+
msgid "Set homepage description"
|
822 |
+
msgstr "Establecer descripción para página de inicio"
|
823 |
+
|
824 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:44
|
825 |
+
msgid "Homepage Meta Keywords"
|
826 |
+
msgstr "Palabras claves para página de inicio"
|
827 |
+
|
828 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:45
|
829 |
+
msgid "Set homepage meta keywords"
|
830 |
+
msgstr "Establecer palabras claves para página de inicio"
|
831 |
+
|
832 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:54
|
833 |
+
msgid "Custom Posts"
|
834 |
+
msgstr "Post personalizados (Custom posts)"
|
835 |
+
|
836 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:59
|
837 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:111
|
838 |
+
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:120
|
839 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:7
|
840 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:15
|
841 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:12
|
842 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:8
|
843 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:15
|
844 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:56
|
845 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:480
|
846 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:62
|
847 |
+
msgid "Title"
|
848 |
+
msgstr "Título"
|
849 |
+
|
850 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:60
|
851 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:112
|
852 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:287
|
853 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:315
|
854 |
+
msgid "Set title format"
|
855 |
+
msgstr "Establecer formato de título"
|
856 |
+
|
857 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:63
|
858 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:74
|
859 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:87
|
860 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:115
|
861 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:126
|
862 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:139
|
863 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:247
|
864 |
+
msgid "Here are some tags examples:"
|
865 |
+
msgstr "Aquí hay algunos ejemplos de etiquetas: "
|
866 |
+
|
867 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:70
|
868 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:122
|
869 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:320
|
870 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:66
|
871 |
+
msgid "Description"
|
872 |
+
msgstr "scripción"
|
873 |
+
|
874 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:71
|
875 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:123
|
876 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:293
|
877 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:321
|
878 |
+
msgid "Set description format"
|
879 |
+
msgstr "Establecer formato de descripción"
|
880 |
+
|
881 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:83
|
882 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:135
|
883 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:328
|
884 |
+
msgid "Meta Keywords"
|
885 |
+
msgstr "Palabras claves (Meta Keywords)"
|
886 |
+
|
887 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:84
|
888 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:136
|
889 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:329
|
890 |
+
msgid "Set meta keywords"
|
891 |
+
msgstr "Establecer palabras claves"
|
892 |
+
|
893 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:96
|
894 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:148
|
895 |
+
msgid "Meta Robots"
|
896 |
+
msgstr "Robots (Meta Robots)"
|
897 |
+
|
898 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:97
|
899 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:149
|
900 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:188
|
901 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:227
|
902 |
+
msgid "noindex, follow"
|
903 |
+
msgstr "noindex, follow"
|
904 |
+
|
905 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:105
|
906 |
+
msgid "Taxonomies"
|
907 |
+
msgstr "Taxonomías"
|
908 |
+
|
909 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:158
|
910 |
+
msgid "Other"
|
911 |
+
msgstr "Otro (a)"
|
912 |
+
|
913 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:165
|
914 |
+
msgid "Author Page Title"
|
915 |
+
msgstr "Título de la página de autor"
|
916 |
+
|
917 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:166
|
918 |
+
msgid "Set author page title format"
|
919 |
+
msgstr "Establecer formato de la página de autor"
|
920 |
+
|
921 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:171
|
922 |
+
msgid "Author Page Description"
|
923 |
+
msgstr "Descripción de la página de autor"
|
924 |
+
|
925 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:172
|
926 |
+
msgid "Set author page description"
|
927 |
+
msgstr "Establecer descripción de la página de autor"
|
928 |
+
|
929 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:179
|
930 |
+
msgid "Author Meta Keywords"
|
931 |
+
msgstr "Palabras claves para autor"
|
932 |
+
|
933 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:180
|
934 |
+
msgid "Set author page meta keywords"
|
935 |
+
msgstr "Establecer palabras claves para autor"
|
936 |
+
|
937 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:187
|
938 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:226
|
939 |
+
msgid "Metarobots"
|
940 |
+
msgstr "Metarobots"
|
941 |
+
|
942 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:193
|
943 |
+
msgid "Disable Author Archives"
|
944 |
+
msgstr "Deshabilitar archivo de autor"
|
945 |
+
|
946 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:194
|
947 |
+
msgid "Disable Author archives SEO settings"
|
948 |
+
msgstr "Deshabilitar configuración SEO para archivo de autor"
|
949 |
+
|
950 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:204
|
951 |
+
msgid "Date Achieves Title"
|
952 |
+
msgstr "Título de la fecha de alcance"
|
953 |
+
|
954 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:205
|
955 |
+
msgid "Set date achieves title format"
|
956 |
+
msgstr "Establecer título de la fecha de alcance"
|
957 |
+
|
958 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:210
|
959 |
+
msgid "Date Achieves Description"
|
960 |
+
msgstr "Descripción de la fecha de alcance"
|
961 |
+
|
962 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:211
|
963 |
+
msgid "Set date achieves description"
|
964 |
+
msgstr "Establecer descripción de la fecha de alcance"
|
965 |
+
|
966 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:218
|
967 |
+
msgid "Date achieves Meta Keywords"
|
968 |
+
msgstr "Establecer palabras claves para la fecha de alcance"
|
969 |
+
|
970 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:219
|
971 |
+
msgid "Set date achieves meta keywords"
|
972 |
+
msgstr "Establecer alcance de fecha para palabras claves"
|
973 |
+
|
974 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:232
|
975 |
+
msgid "Disable Date Archives"
|
976 |
+
msgstr "Deshabilitar la fecha para archivo"
|
977 |
+
|
978 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:233
|
979 |
+
msgid "Disable date archives SEO settings"
|
980 |
+
msgstr "Deshabilitar configuraciones SEO para archivo de fechas"
|
981 |
+
|
982 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:243
|
983 |
+
msgid "Search Page Title"
|
984 |
+
msgstr "Título de la página de búsqueda"
|
985 |
+
|
986 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:244
|
987 |
+
msgid "Set search page title format"
|
988 |
+
msgstr "Formato del título de la página de búsqueda"
|
989 |
+
|
990 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:259
|
991 |
+
msgid "404 Page Title"
|
992 |
+
msgstr "Título de página 404"
|
993 |
+
|
994 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:260
|
995 |
+
msgid "Set 404 page title format"
|
996 |
+
msgstr "Establecer formato del título de página 404"
|
997 |
+
|
998 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:262
|
999 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:8
|
1000 |
+
msgid "404 Not Found"
|
1001 |
+
msgstr "404 no se encuentra"
|
1002 |
+
|
1003 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:286
|
1004 |
+
msgid "SEO Title"
|
1005 |
+
msgstr "Título SEO"
|
1006 |
+
|
1007 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:292
|
1008 |
+
msgid "SEO Description"
|
1009 |
+
msgstr "Descipción SEO"
|
1010 |
+
|
1011 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:314
|
1012 |
+
msgid "Page Title"
|
1013 |
+
msgstr "Título de página"
|
1014 |
+
|
1015 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:356
|
1016 |
+
msgid "Use Meta Keywords"
|
1017 |
+
msgstr "Utilizar palabras claves"
|
1018 |
+
|
1019 |
+
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:357
|
1020 |
+
msgid "Allow the use of meta keywords in posts and taxonomies"
|
1021 |
+
msgstr "Habilitar el uso de palabras claves en posts y taxonomías"
|
1022 |
+
|
1023 |
+
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:33
|
1024 |
+
msgid "Google Webmasters"
|
1025 |
+
msgstr "Google Webmasters"
|
1026 |
+
|
1027 |
+
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:34
|
1028 |
+
msgid "Insert Google Webmasters verification code"
|
1029 |
+
msgstr "Insertar código de verificación de Google Webmasters"
|
1030 |
+
|
1031 |
+
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:41
|
1032 |
+
msgid "Bing Webmasters"
|
1033 |
+
msgstr "Bing Webmasters"
|
1034 |
+
|
1035 |
+
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:42
|
1036 |
+
msgid "Insert Bing Webmasters verification code"
|
1037 |
+
msgstr "Insertar código de verificación de Bing Webmasters"
|
1038 |
+
|
1039 |
+
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:80
|
1040 |
+
msgid "Webmasters"
|
1041 |
+
msgstr "Webmasters"
|
1042 |
+
|
1043 |
+
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:89
|
1044 |
+
#, php-format
|
1045 |
+
msgid "Webmaster %s already exists"
|
1046 |
+
msgstr "Webmaster %s ya existe"
|
1047 |
+
|
1048 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:634
|
1049 |
+
msgid "Google"
|
1050 |
+
msgstr "Google"
|
1051 |
+
|
1052 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:638
|
1053 |
+
msgid "Bing"
|
1054 |
+
msgstr "Bing"
|
1055 |
+
|
1056 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:19
|
1057 |
+
msgid "Check if you want to exclude this page"
|
1058 |
+
msgstr "Marque si quiere excluir esta página"
|
1059 |
+
|
1060 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:40
|
1061 |
+
msgid "Check if you want to exclude this category"
|
1062 |
+
msgstr "Marque si quiere excluir esta categoría"
|
1063 |
+
|
1064 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:57
|
1065 |
+
msgid "Sitemap"
|
1066 |
+
msgstr "Mapa del sitio"
|
1067 |
+
|
1068 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:68
|
1069 |
+
msgid "View Sitemap"
|
1070 |
+
msgstr "Ver mapa del sitio"
|
1071 |
+
|
1072 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:69
|
1073 |
+
msgid "Press button to view sitemap file"
|
1074 |
+
msgstr "Presione este botón para ver archivo sitemap"
|
1075 |
+
|
1076 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:71
|
1077 |
+
msgid "XML Sitemap"
|
1078 |
+
msgstr "XML Sitemap"
|
1079 |
+
|
1080 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:81
|
1081 |
+
msgid "Search Engines"
|
1082 |
+
msgstr "Motores de búsqueda"
|
1083 |
+
|
1084 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:83
|
1085 |
+
msgid "After adding content the extension will automatically ping to:"
|
1086 |
+
msgstr "Después de añadir contenido la extensión realiza ping automático a:"
|
1087 |
+
|
1088 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:93
|
1089 |
+
msgid "Exclude Pages"
|
1090 |
+
msgstr "Excluir páginas"
|
1091 |
+
|
1092 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:95
|
1093 |
+
msgid "Please check the pages you do not want to include in sitemap"
|
1094 |
+
msgstr "Por favor marque las páginas que quiere excluir en su sitemap"
|
1095 |
+
|
1096 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:106
|
1097 |
+
msgid "Exclude Categories"
|
1098 |
+
msgstr "Excluir categorías"
|
1099 |
+
|
1100 |
+
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:108
|
1101 |
+
msgid "Please check the categories you do not want to include in sitemap"
|
1102 |
+
msgstr "Por favor marque las categorías que quiere excluir de su sitemap"
|
1103 |
+
|
1104 |
+
#: ../framework/extensions/mailer/manifest.php:5
|
1105 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:187
|
1106 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:188
|
1107 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:103
|
1108 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:240
|
1109 |
+
msgid "Mailer"
|
1110 |
+
msgstr "Mailer"
|
1111 |
+
|
1112 |
+
#: ../framework/extensions/mailer/manifest.php:6
|
1113 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:241
|
1114 |
+
msgid ""
|
1115 |
+
"This extension will let you set some global email options and it is used by "
|
1116 |
+
"other extensions (like Forms) to send emails."
|
1117 |
+
msgstr "Esta extensión le permite establecer opciones globales para email y puede ser utilizada por otras extensiones (cómo Forms) para enviar emails."
|
1118 |
+
|
1119 |
+
#: ../framework/extensions/mailer/class-fw-extension-mailer.php:48
|
1120 |
+
msgid "Invalid send method"
|
1121 |
+
msgstr "Método de envío inválido"
|
1122 |
+
|
1123 |
+
#: ../framework/extensions/mailer/class-fw-extension-mailer.php:81
|
1124 |
+
msgid "The message has been successfully sent!"
|
1125 |
+
msgstr "El mensaje se ha enviado con éxito!"
|
1126 |
+
|
1127 |
+
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:27
|
1128 |
+
msgid "Invalid email configuration"
|
1129 |
+
msgstr "Configuración de email inválida"
|
1130 |
+
|
1131 |
+
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:145
|
1132 |
+
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:161
|
1133 |
+
msgid "Email sent"
|
1134 |
+
msgstr "Email enviado"
|
1135 |
+
|
1136 |
+
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:146
|
1137 |
+
msgid "Could not send via smtp"
|
1138 |
+
msgstr "No se puede enviar vía smtp"
|
1139 |
+
|
1140 |
+
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:162
|
1141 |
+
msgid "Could not send via wp_mail"
|
1142 |
+
msgstr "No se puede enviar vía wp_mail"
|
1143 |
+
|
1144 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:25
|
1145 |
+
msgid "Server Address"
|
1146 |
+
msgstr "Dirección del servidor"
|
1147 |
+
|
1148 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:26
|
1149 |
+
msgid "Enter your email server"
|
1150 |
+
msgstr "Ingrese su email del servidor"
|
1151 |
+
|
1152 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:31
|
1153 |
+
msgid "Username"
|
1154 |
+
msgstr "Usuario"
|
1155 |
+
|
1156 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:32
|
1157 |
+
msgid "Enter your username"
|
1158 |
+
msgstr "ingrese su nombre de usuario"
|
1159 |
+
|
1160 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:37
|
1161 |
+
msgid "Password"
|
1162 |
+
msgstr "Contraseña"
|
1163 |
+
|
1164 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:38
|
1165 |
+
msgid "Enter your password"
|
1166 |
+
msgstr "ingrese su contraseña"
|
1167 |
+
|
1168 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:43
|
1169 |
+
msgid "Secure Connection"
|
1170 |
+
msgstr "Conección segura"
|
1171 |
+
|
1172 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:54
|
1173 |
+
msgid "Custom Port"
|
1174 |
+
msgstr "Puerto personalizado"
|
1175 |
+
|
1176 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:55
|
1177 |
+
msgid "Optional - SMTP port number to use."
|
1178 |
+
msgstr "Opcional - puerto SMTP a utilizar."
|
1179 |
+
|
1180 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:56
|
1181 |
+
msgid "Leave blank for default (SMTP - 25, SMTPS - 465)"
|
1182 |
+
msgstr "Deje en blanco, por defecto (SMTP - 25, SMTPS - 465)"
|
1183 |
+
|
1184 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:82
|
1185 |
+
msgid "Username cannot be empty"
|
1186 |
+
msgstr "Usuario no puede estar vacío"
|
1187 |
+
|
1188 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:89
|
1189 |
+
msgid "Password cannot be empty"
|
1190 |
+
msgstr "Contraseña no puede estar vacía"
|
1191 |
+
|
1192 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:96
|
1193 |
+
msgid "Invalid host"
|
1194 |
+
msgstr "Host inválido"
|
1195 |
+
|
1196 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:176
|
1197 |
+
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-wpmail.php:56
|
1198 |
+
msgid "Could not send the email"
|
1199 |
+
msgstr "No se puede enviar el email"
|
1200 |
+
|
1201 |
+
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:76
|
1202 |
+
msgid "Send Method"
|
1203 |
+
msgstr "Método de envío"
|
1204 |
+
|
1205 |
+
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:77
|
1206 |
+
msgid "Select the send form method"
|
1207 |
+
msgstr "Seleccione el método de envío del formulario"
|
1208 |
+
|
1209 |
+
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:94
|
1210 |
+
msgid "From Name"
|
1211 |
+
msgstr "Nombre remitente"
|
1212 |
+
|
1213 |
+
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:95
|
1214 |
+
msgid "The name you'll see in the From filed in your email client."
|
1215 |
+
msgstr "El nombre que verá en el campo de correo electrónico de su email."
|
1216 |
+
|
1217 |
+
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:102
|
1218 |
+
msgid "From Address"
|
1219 |
+
msgstr "Dirección remitente"
|
1220 |
+
|
1221 |
+
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:103
|
1222 |
+
msgid "The form will look like was sent from this email address."
|
1223 |
+
msgstr "El formulario se verá enviado desde esta dirección de email."
|
1224 |
+
|
1225 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:56
|
1226 |
+
msgid "Lesson"
|
1227 |
+
msgstr "Clase"
|
1228 |
+
|
1229 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:57
|
1230 |
+
#: ../framework/extensions/learning/views/content-course.php:14
|
1231 |
+
msgid "Lessons"
|
1232 |
+
msgstr "Clases"
|
1233 |
+
|
1234 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:78
|
1235 |
+
msgid "Create a lesson"
|
1236 |
+
msgstr "Crear una clase"
|
1237 |
+
|
1238 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:120
|
1239 |
+
#: ../framework/extensions/learning/hooks.php:53
|
1240 |
+
msgid "Course"
|
1241 |
+
msgstr "Curso"
|
1242 |
+
|
1243 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:121
|
1244 |
+
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:108
|
1245 |
+
msgid "Courses"
|
1246 |
+
msgstr "Cursos"
|
1247 |
+
|
1248 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:142
|
1249 |
+
msgid "Create a course"
|
1250 |
+
msgstr "Crear curso"
|
1251 |
+
|
1252 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:181
|
1253 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:222
|
1254 |
+
msgid "Course Category"
|
1255 |
+
msgstr "Categoría del curso"
|
1256 |
+
|
1257 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:182
|
1258 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:223
|
1259 |
+
msgid "Course Categories"
|
1260 |
+
msgstr "Categorías de curso"
|
1261 |
+
|
1262 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:188
|
1263 |
+
msgid "Search categories"
|
1264 |
+
msgstr "Buscar categorías"
|
1265 |
+
|
1266 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:194
|
1267 |
+
msgid "Add New category"
|
1268 |
+
msgstr "Añadir categoría"
|
1269 |
+
|
1270 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:285
|
1271 |
+
msgid "View all courses"
|
1272 |
+
msgstr "Ver todos los cursos"
|
1273 |
+
|
1274 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:511
|
1275 |
+
msgid "No courses available"
|
1276 |
+
msgstr "No hay cursos disponibles"
|
1277 |
+
|
1278 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:513
|
1279 |
+
msgid "Without Course"
|
1280 |
+
msgstr "Sin curso"
|
1281 |
+
|
1282 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:520
|
1283 |
+
msgid "Select Course"
|
1284 |
+
msgstr "Seleccionar Curso"
|
1285 |
+
|
1286 |
+
#: ../framework/extensions/learning/manifest.php:7
|
1287 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:216
|
1288 |
+
msgid "Learning"
|
1289 |
+
msgstr "Aprendizaje"
|
1290 |
+
|
1291 |
+
#: ../framework/extensions/learning/manifest.php:9
|
1292 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:217
|
1293 |
+
msgid ""
|
1294 |
+
"This extension adds a Learning module to your theme. Using this extension "
|
1295 |
+
"you can add courses, lessons and tests for your users to take."
|
1296 |
+
msgstr "Esta extensión añade un módulo de aprendizaje a su tema. utilizando esta extensión usted podrá agregar cursos, clases y exámenes para sus usuarios."
|
1297 |
+
|
1298 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:118
|
1299 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:145
|
1300 |
+
msgid "Quiz"
|
1301 |
+
msgstr "Examen"
|
1302 |
+
|
1303 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:259
|
1304 |
+
msgid "Quiz Elements"
|
1305 |
+
msgstr "Elementos del examen"
|
1306 |
+
|
1307 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:272
|
1308 |
+
msgid "Quiz settings"
|
1309 |
+
msgstr "Configuraciones de examen"
|
1310 |
+
|
1311 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:276
|
1312 |
+
msgid "Quiz Passmark Points"
|
1313 |
+
msgstr "Nota de aprobación del examen"
|
1314 |
+
|
1315 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:278
|
1316 |
+
msgid "The points number at which the test will be passed."
|
1317 |
+
msgstr "Número de puntos con que el examen es aprobado."
|
1318 |
+
|
1319 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:286
|
1320 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:296
|
1321 |
+
msgid "Lesson Quiz"
|
1322 |
+
msgstr "Examen de clase"
|
1323 |
+
|
1324 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:535
|
1325 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:544
|
1326 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:552
|
1327 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:559
|
1328 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:568
|
1329 |
+
msgid "Invalid Quiz"
|
1330 |
+
msgstr "Examen inválido"
|
1331 |
+
|
1332 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:21
|
1333 |
+
#, php-format
|
1334 |
+
msgid "You require %d points in oder to pass the test"
|
1335 |
+
msgstr "Usted requiere %d puntos para aprobar este examen"
|
1336 |
+
|
1337 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:27
|
1338 |
+
msgid "Sorry, you did not pass the test"
|
1339 |
+
msgstr "Lo sentimos, usted no ha aprobado el examen"
|
1340 |
+
|
1341 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:29
|
1342 |
+
msgid "Congratulation, you passed the test"
|
1343 |
+
msgstr "Felicidades, usted ha aprobado el examen"
|
1344 |
+
|
1345 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:43
|
1346 |
+
#, php-format
|
1347 |
+
msgid "You answered correctly %s questions from %s"
|
1348 |
+
msgstr "Usted ha respondido de manera correcta a %s preguntas de %s"
|
1349 |
+
|
1350 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:69
|
1351 |
+
#: ../framework/extensions/learning/views/content-lesson.php:18
|
1352 |
+
msgid "Back to"
|
1353 |
+
msgstr "Volver a"
|
1354 |
+
|
1355 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/views/start-quiz.php:11
|
1356 |
+
msgid "Start Quiz"
|
1357 |
+
msgstr "Iniciar Examen"
|
1358 |
+
|
1359 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:20
|
1360 |
+
msgid "Correct answers"
|
1361 |
+
msgstr "Respuestas Correctas"
|
1362 |
+
|
1363 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:21
|
1364 |
+
msgid "Add correct answer variants"
|
1365 |
+
msgstr "Añadir variantes de respuestas correctas"
|
1366 |
+
|
1367 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:24
|
1368 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:23
|
1369 |
+
msgid "Set Correct Answer"
|
1370 |
+
msgstr "Establcer respuesta correcta"
|
1371 |
+
|
1372 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:34
|
1373 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:31
|
1374 |
+
msgid "Wrong answers"
|
1375 |
+
msgstr "Respuestas incorrectas"
|
1376 |
+
|
1377 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:35
|
1378 |
+
msgid "Add wrong answer variants"
|
1379 |
+
msgstr "Añadir respuesta incorrecta"
|
1380 |
+
|
1381 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:38
|
1382 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:35
|
1383 |
+
msgid "Set Wrong Answer"
|
1384 |
+
msgstr "Establecer respuesta incorrecta"
|
1385 |
+
|
1386 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:56
|
1387 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:42
|
1388 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:55
|
1389 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:53
|
1390 |
+
msgid "Creates a"
|
1391 |
+
msgstr "Crear una"
|
1392 |
+
|
1393 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1394 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:59
|
1395 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:91
|
1396 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:23
|
1397 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:50
|
1398 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:82
|
1399 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:180
|
1400 |
+
msgid "Multiple Choice"
|
1401 |
+
msgstr "Elección múltiple"
|
1402 |
+
|
1403 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1404 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1405 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1406 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1407 |
+
msgid "item"
|
1408 |
+
msgstr "item"
|
1409 |
+
|
1410 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:87
|
1411 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:73
|
1412 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:86
|
1413 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:84
|
1414 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:23
|
1415 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:55
|
1416 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:76
|
1417 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:49
|
1418 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:75
|
1419 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:51
|
1420 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:77
|
1421 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:50
|
1422 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:77
|
1423 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:51
|
1424 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:80
|
1425 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:51
|
1426 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:80
|
1427 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:50
|
1428 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:77
|
1429 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:50
|
1430 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:77
|
1431 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:48
|
1432 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:75
|
1433 |
+
msgid "Label"
|
1434 |
+
msgstr "Etiqueta"
|
1435 |
+
|
1436 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:88
|
1437 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:75
|
1438 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:87
|
1439 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:85
|
1440 |
+
msgid "Add/Edit Question"
|
1441 |
+
msgstr "Añadir/Editar Pregunta"
|
1442 |
+
|
1443 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:90
|
1444 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:77
|
1445 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:90
|
1446 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:87
|
1447 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:58
|
1448 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:51
|
1449 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:55
|
1450 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:53
|
1451 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:54
|
1452 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:54
|
1453 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:53
|
1454 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:53
|
1455 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:51
|
1456 |
+
msgid "Delete"
|
1457 |
+
msgstr "Eliminar"
|
1458 |
+
|
1459 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:92
|
1460 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:90
|
1461 |
+
msgid "More"
|
1462 |
+
msgstr "Más"
|
1463 |
+
|
1464 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:93
|
1465 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:91
|
1466 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:57
|
1467 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:57
|
1468 |
+
msgid "Close"
|
1469 |
+
msgstr "Cerrar"
|
1470 |
+
|
1471 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:94
|
1472 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:78
|
1473 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:91
|
1474 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:89
|
1475 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:56
|
1476 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:52
|
1477 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:52
|
1478 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:54
|
1479 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:55
|
1480 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:55
|
1481 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:54
|
1482 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:54
|
1483 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:52
|
1484 |
+
msgid "Edit Label"
|
1485 |
+
msgstr "Editar etiqueta"
|
1486 |
+
|
1487 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:96
|
1488 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:80
|
1489 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:93
|
1490 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:93
|
1491 |
+
msgid "The question label is empty"
|
1492 |
+
msgstr "La etiqueta de pregunta se encuentra vacía"
|
1493 |
+
|
1494 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:97
|
1495 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:81
|
1496 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:94
|
1497 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:94
|
1498 |
+
msgid "Invalid mark point number"
|
1499 |
+
msgstr "Número de marca inválido"
|
1500 |
+
|
1501 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:98
|
1502 |
+
msgid "There needs to be at least one correct answer"
|
1503 |
+
msgstr "Es necesario que haya al menos una respuesta correcta"
|
1504 |
+
|
1505 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:18
|
1506 |
+
msgid "Correct answer"
|
1507 |
+
msgstr "Respuesta correcta"
|
1508 |
+
|
1509 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:19
|
1510 |
+
msgid "The question answer will be true or false"
|
1511 |
+
msgstr "La respuesta a la pregunta debe ser verdadero o falso"
|
1512 |
+
|
1513 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:22
|
1514 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:20
|
1515 |
+
msgid "True"
|
1516 |
+
msgstr "Verdadero"
|
1517 |
+
|
1518 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:26
|
1519 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:24
|
1520 |
+
msgid "False"
|
1521 |
+
msgstr "Falso"
|
1522 |
+
|
1523 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1524 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:45
|
1525 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:74
|
1526 |
+
msgid "True/False"
|
1527 |
+
msgstr "Verdadero/Falso"
|
1528 |
+
|
1529 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:19
|
1530 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:21
|
1531 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:97
|
1532 |
+
msgid "Text before gap"
|
1533 |
+
msgstr "Texto antes de relleno"
|
1534 |
+
|
1535 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:28
|
1536 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:30
|
1537 |
+
msgid "Gap"
|
1538 |
+
msgstr "Rellenar"
|
1539 |
+
|
1540 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:37
|
1541 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:39
|
1542 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:98
|
1543 |
+
msgid "Text after gap"
|
1544 |
+
msgstr "Texto después de rellenar"
|
1545 |
+
|
1546 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1547 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:58
|
1548 |
+
msgid "Gap Fill"
|
1549 |
+
msgstr "Completar relleno"
|
1550 |
+
|
1551 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:89
|
1552 |
+
msgid "Gap _____ Fill"
|
1553 |
+
msgstr "Completar _____ Relleno"
|
1554 |
+
|
1555 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:96
|
1556 |
+
#, php-format
|
1557 |
+
msgid "At least one of the fields ( %s or %s ) has to ve filled with text"
|
1558 |
+
msgstr "Al menos uno de los campos (%s o %s) debe ser rellenado con texto"
|
1559 |
+
|
1560 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:19
|
1561 |
+
msgid "Correct Answer"
|
1562 |
+
msgstr "Respuesta correcta"
|
1563 |
+
|
1564 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:20
|
1565 |
+
msgid "Write the correct answer text"
|
1566 |
+
msgstr "Escriba la respuesta correcta"
|
1567 |
+
|
1568 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:32
|
1569 |
+
msgid "Add wrong answers variants"
|
1570 |
+
msgstr "Agregar variantes de respuestas incorrectas"
|
1571 |
+
|
1572 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1573 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:56
|
1574 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:88
|
1575 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:23
|
1576 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:50
|
1577 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:82
|
1578 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:180
|
1579 |
+
msgid "Single Choice"
|
1580 |
+
msgstr "Elección única"
|
1581 |
+
|
1582 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:95
|
1583 |
+
msgid "Correct answer cannot be empty"
|
1584 |
+
msgstr "Respuesta correcta no puede estar vacía"
|
1585 |
+
|
1586 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:96
|
1587 |
+
msgid "There are not any wrong answers set"
|
1588 |
+
msgstr "No hay respuestas incorrectas establecidas"
|
1589 |
+
|
1590 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:51
|
1591 |
+
msgid "Question"
|
1592 |
+
msgstr "Pregunta"
|
1593 |
+
|
1594 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:53
|
1595 |
+
msgid "Type the question..."
|
1596 |
+
msgstr "Escriba la pregunta..."
|
1597 |
+
|
1598 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:58
|
1599 |
+
msgid "Points"
|
1600 |
+
msgstr "Puntos"
|
1601 |
+
|
1602 |
+
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:18
|
1603 |
+
msgid "Get list of courses"
|
1604 |
+
msgstr "Obtener lista de cursos"
|
1605 |
+
|
1606 |
+
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:20
|
1607 |
+
msgid "Lesson Courses"
|
1608 |
+
msgstr "Clase de cursos"
|
1609 |
+
|
1610 |
+
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:126
|
1611 |
+
msgid "Number of courses"
|
1612 |
+
msgstr "Número de cursos"
|
1613 |
+
|
1614 |
+
#: ../framework/extensions/analytics/settings-options.php:11
|
1615 |
+
msgid "Google Analytics"
|
1616 |
+
msgstr "Google Analytics"
|
1617 |
+
|
1618 |
+
#: ../framework/extensions/analytics/settings-options.php:12
|
1619 |
+
msgid "Enter your Google Analytics code (Ex: UA-XXXXX-X)"
|
1620 |
+
msgstr "ingrese su código de seguimiento Google Analytics (Ej: UA-XXXXX-X))"
|
1621 |
+
|
1622 |
+
#: ../framework/extensions/analytics/manifest.php:7
|
1623 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:192
|
1624 |
+
msgid "Analytics"
|
1625 |
+
msgstr "Analytics"
|
1626 |
+
|
1627 |
+
#: ../framework/extensions/analytics/manifest.php:8
|
1628 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:193
|
1629 |
+
msgid ""
|
1630 |
+
"Enables the possibility to add the Google Analytics tracking code that will "
|
1631 |
+
"let you get all the analytics about visitors, page views and more."
|
1632 |
+
msgstr "Añade la posibilidad de agregar el código de seguimiento de Google Analytics para obtener analítica de sus visitas, páginas vistas y más"
|
1633 |
+
|
1634 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:36
|
1635 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:37
|
1636 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:7
|
1637 |
+
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:10
|
1638 |
+
msgid "Blog"
|
1639 |
+
msgstr "Blog"
|
1640 |
+
|
1641 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:38
|
1642 |
+
msgid "Add blog post"
|
1643 |
+
msgstr "Añadir publicación al blog"
|
1644 |
+
|
1645 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:39
|
1646 |
+
msgid "Add new blog post"
|
1647 |
+
msgstr "Añadir nueva publicación al blog"
|
1648 |
+
|
1649 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:40
|
1650 |
+
msgid "All blog posts"
|
1651 |
+
msgstr "Todas las publicaciones en el blog"
|
1652 |
+
|
1653 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:41
|
1654 |
+
msgid "Edit blog post"
|
1655 |
+
msgstr "Editar publicación"
|
1656 |
+
|
1657 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:42
|
1658 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:43
|
1659 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:49
|
1660 |
+
msgid "Blog Post"
|
1661 |
+
msgstr "Publicación en blog"
|
1662 |
+
|
1663 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:44
|
1664 |
+
msgid "New blog post"
|
1665 |
+
msgstr "Añadir nueva publicación"
|
1666 |
+
|
1667 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:45
|
1668 |
+
msgid "No blog posts found"
|
1669 |
+
msgstr "No se encuentran publicaciones"
|
1670 |
+
|
1671 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:46
|
1672 |
+
msgid "No blog posts found in trash"
|
1673 |
+
msgstr "No se encuentran publicaciones en la papelera"
|
1674 |
+
|
1675 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:47
|
1676 |
+
msgid "Search blog posts"
|
1677 |
+
msgstr "Buscar publicaciones en blog"
|
1678 |
+
|
1679 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:48
|
1680 |
+
msgid "View blog post"
|
1681 |
+
msgstr "Ver publicación en blog"
|
1682 |
+
|
1683 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:67
|
1684 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:87
|
1685 |
+
#: ../framework/extensions/blog/manifest.php:7
|
1686 |
+
#: ../framework/extensions/blog/manifest.php:8
|
1687 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:50
|
1688 |
+
msgid "Blog Posts"
|
1689 |
+
msgstr "Publicaciones en blog"
|
1690 |
+
|
1691 |
+
#: ../framework/extensions/blog/class-fw-extension-blog.php:76
|
1692 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:74
|
1693 |
+
msgid "Blog Categories"
|
1694 |
+
msgstr "Categorías del blog"
|
1695 |
+
|
1696 |
+
#: ../framework/extensions/styling/class-fw-extension-styling.php:60
|
1697 |
+
#: ../framework/extensions/styling/class-fw-extension-styling.php:61
|
1698 |
+
#: ../framework/extensions/styling/class-fw-extension-styling.php:78
|
1699 |
+
#: ../framework/extensions/styling/manifest.php:7
|
1700 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:48
|
1701 |
+
msgid "Styling"
|
1702 |
+
msgstr "Estilizar"
|
1703 |
+
|
1704 |
+
#: ../framework/extensions/styling/class-fw-extension-styling.php:104
|
1705 |
+
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:278
|
1706 |
+
#: ../framework/core/components/backend.php:357
|
1707 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2277
|
1708 |
+
msgid "Save"
|
1709 |
+
msgstr "Guardar"
|
1710 |
+
|
1711 |
+
#: ../framework/extensions/styling/class-fw-extension-styling.php:118
|
1712 |
+
msgid "You have no permission to change Styling options"
|
1713 |
+
msgstr "Usted no tiene permisos para cambiar opciones de estilo"
|
1714 |
+
|
1715 |
+
#: ../framework/extensions/styling/manifest.php:8
|
1716 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:49
|
1717 |
+
msgid ""
|
1718 |
+
"This extension lets you control the website visual style. Starting from "
|
1719 |
+
"predefined styles to changing specific fonts and colors across the website."
|
1720 |
+
msgstr "Esta extensión le permite mantener el control visual de su sitio web. Comenzando por estilos predefinidos hasta cambiar fuentes y colores a través del sitio web."
|
1721 |
+
|
1722 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/manifest.php:7
|
1723 |
+
msgid "Switch Style Panel"
|
1724 |
+
msgstr "Cambiar Panel de Estilos"
|
1725 |
+
|
1726 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/manifest.php:8
|
1727 |
+
msgid ""
|
1728 |
+
"Show on the front-end a panel that allows the user to make the switch "
|
1729 |
+
"between predefined styles."
|
1730 |
+
msgstr "Mostrar en el front-end un panel que permite al usuario realizar cambios entre estilos predefinidos."
|
1731 |
+
|
1732 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:9
|
1733 |
+
msgid "Frontend Style Switcher"
|
1734 |
+
msgstr "Cambiar Estilos Frontend"
|
1735 |
+
|
1736 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:10
|
1737 |
+
msgid "Enable frontend style switcher"
|
1738 |
+
msgstr "Activar cambiar estilos en frontend"
|
1739 |
+
|
1740 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:13
|
1741 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:274
|
1742 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:45
|
1743 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:24
|
1744 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:42
|
1745 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:34
|
1746 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:48
|
1747 |
+
#: ../framework/includes/option-types/simple.php:454
|
1748 |
+
#: ../framework/includes/option-types/switch/class-fw-option-type-switch.php:151
|
1749 |
+
msgid "Yes"
|
1750 |
+
msgstr "Si"
|
1751 |
+
|
1752 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:17
|
1753 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:278
|
1754 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:49
|
1755 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:28
|
1756 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:46
|
1757 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:38
|
1758 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:52
|
1759 |
+
#: ../framework/includes/option-types/switch/class-fw-option-type-switch.php:147
|
1760 |
+
msgid "No"
|
1761 |
+
msgstr "No"
|
1762 |
+
|
1763 |
+
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:24
|
1764 |
+
msgid "The text that will be displayed at the top of the panel."
|
1765 |
+
msgstr "El texto que se muestra arriba del panel."
|
1766 |
+
|
1767 |
+
#: ../framework/extensions/styling/includes/option-types/style/views/settings.php:119
|
1768 |
+
msgid "Background"
|
1769 |
+
msgstr "Fondo"
|
1770 |
+
|
1771 |
+
#: ../framework/extensions/styling/includes/option-types/style/views/predefined.php:26
|
1772 |
+
msgid "Predefined Styles"
|
1773 |
+
msgstr "Estilos Predefinidos"
|
1774 |
+
|
1775 |
+
#: ../framework/extensions/styling/includes/option-types/style/views/preview.php:41
|
1776 |
+
msgid "This is a simplified preview, not changes are reflected."
|
1777 |
+
msgstr "Esta es una vista simplificada, los cambios no son reflejados."
|
1778 |
+
|
1779 |
+
#: ../framework/extensions/feedback/class-fw-extension-feedback.php:64
|
1780 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:144
|
1781 |
+
msgid "Feedback"
|
1782 |
+
msgstr "Feedback"
|
1783 |
+
|
1784 |
+
#: ../framework/extensions/feedback/class-fw-extension-feedback.php:111
|
1785 |
+
msgid "Reviews"
|
1786 |
+
msgstr "Opiniones"
|
1787 |
+
|
1788 |
+
#: ../framework/extensions/feedback/settings-options.php:10
|
1789 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/settings-options.php:11
|
1790 |
+
msgid "Activate for"
|
1791 |
+
msgstr "Activo para"
|
1792 |
+
|
1793 |
+
#: ../framework/extensions/feedback/settings-options.php:16
|
1794 |
+
msgid "Select the options you want the Feedback extension to be activated for"
|
1795 |
+
msgstr "Seleccione las opciones en que será activada la extensión Feedback"
|
1796 |
+
|
1797 |
+
#: ../framework/extensions/feedback/manifest.php:7
|
1798 |
+
msgid "FeedBack"
|
1799 |
+
msgstr "Feedback"
|
1800 |
+
|
1801 |
+
#: ../framework/extensions/feedback/manifest.php:8
|
1802 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:145
|
1803 |
+
msgid ""
|
1804 |
+
"Adds the possibility to leave feedback (comments, reviews and rating) about "
|
1805 |
+
"your products, articles, etc. This replaces the default comments system."
|
1806 |
+
msgstr "Añade la posibilidad de dejar un feedback (comentarios, opiniones y valoraciones) acerca de sus productos, artículos, etc. Esta reemplaza el sistema de comentarios por defecto."
|
1807 |
+
|
1808 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:84
|
1809 |
+
msgid "Rating:"
|
1810 |
+
msgstr "Valoración: "
|
1811 |
+
|
1812 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:195
|
1813 |
+
msgid "Feedback Stars"
|
1814 |
+
msgstr "Estrellas feedback"
|
1815 |
+
|
1816 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:221
|
1817 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/rate.php:12
|
1818 |
+
msgid "Rating"
|
1819 |
+
msgstr "Valoración"
|
1820 |
+
|
1821 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1822 |
+
msgid "ERROR"
|
1823 |
+
msgstr "ERROR"
|
1824 |
+
|
1825 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1826 |
+
msgid "please rate the post."
|
1827 |
+
msgstr "por favor valore esta publicación."
|
1828 |
+
|
1829 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/manifest.php:7
|
1830 |
+
msgid "FeedBack Stars"
|
1831 |
+
msgstr "Estrellas Feedback"
|
1832 |
+
|
1833 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/manifest.php:8
|
1834 |
+
msgid "Allows visitors to appreciate a post using star rating"
|
1835 |
+
msgstr "Permite a sus visitantes valorar el post por medio de estrellas de valroación"
|
1836 |
+
|
1837 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1838 |
+
msgid "Pingback:"
|
1839 |
+
msgstr "Pingback: "
|
1840 |
+
|
1841 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1842 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1843 |
+
msgid "(Edit)"
|
1844 |
+
msgstr "(Editar)"
|
1845 |
+
|
1846 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:37
|
1847 |
+
msgid "Post author"
|
1848 |
+
msgstr "Autor de publicación"
|
1849 |
+
|
1850 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:57
|
1851 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1852 |
+
#, php-format
|
1853 |
+
msgid "%1$s at %2$s"
|
1854 |
+
msgstr "%1$s en %2$s"
|
1855 |
+
|
1856 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:63
|
1857 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:53
|
1858 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:56
|
1859 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:122
|
1860 |
+
msgid "Your comment is awaiting moderation."
|
1861 |
+
msgstr "Su comentario se encuentra en espera de moderación."
|
1862 |
+
|
1863 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:24
|
1864 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:40
|
1865 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:119
|
1866 |
+
msgid "says"
|
1867 |
+
msgstr "dice"
|
1868 |
+
|
1869 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/view-rates.php:24
|
1870 |
+
#, php-format
|
1871 |
+
msgid "Based on %s Votes"
|
1872 |
+
msgstr "Basado en %s Votos"
|
1873 |
+
|
1874 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:6
|
1875 |
+
msgid "Rating System"
|
1876 |
+
msgstr "Sistema de valoración"
|
1877 |
+
|
1878 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:9
|
1879 |
+
msgid "Enter the number of stars you want in the rating system"
|
1880 |
+
msgstr "Ingrese el número de estrellas que quiere en el sistema de valoración"
|
1881 |
+
|
1882 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:11
|
1883 |
+
msgid "5 stars"
|
1884 |
+
msgstr "5 estrellas"
|
1885 |
+
|
1886 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:12
|
1887 |
+
msgid "7 stars"
|
1888 |
+
msgstr "7 estrellas"
|
1889 |
+
|
1890 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:13
|
1891 |
+
msgid "10 stars"
|
1892 |
+
msgstr "10 estrellas"
|
1893 |
+
|
1894 |
+
#: ../framework/extensions/feedback/views/reviews.php:32
|
1895 |
+
#: ../framework/extensions/feedback/views/reviews.php:53
|
1896 |
+
msgid "Comment navigation"
|
1897 |
+
msgstr "Explorar comentario"
|
1898 |
+
|
1899 |
+
#: ../framework/extensions/feedback/views/reviews.php:35
|
1900 |
+
#: ../framework/extensions/feedback/views/reviews.php:56
|
1901 |
+
msgid "← Older Comments"
|
1902 |
+
msgstr "← Comentarios Previos"
|
1903 |
+
|
1904 |
+
#: ../framework/extensions/feedback/views/reviews.php:36
|
1905 |
+
#: ../framework/extensions/feedback/views/reviews.php:57
|
1906 |
+
msgid "Newer Comments →"
|
1907 |
+
msgstr "Comentarios Nuevos →"
|
1908 |
+
|
1909 |
+
#: ../framework/extensions/feedback/views/reviews.php:62
|
1910 |
+
msgid "Comments are closed."
|
1911 |
+
msgstr "Comentarios cerrados."
|
1912 |
+
|
1913 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/settings-options.php:18
|
1914 |
+
msgid ""
|
1915 |
+
"Select the posts you want the Page Builder extension to be activated for"
|
1916 |
+
msgstr "Seleccione las publicaciones en que quiera activar el Constructor de Página"
|
1917 |
+
|
1918 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/manifest.php:7
|
1919 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:84
|
1920 |
+
msgid "Page Builder"
|
1921 |
+
msgstr "Constructor de Página"
|
1922 |
+
|
1923 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/manifest.php:9
|
1924 |
+
msgid ""
|
1925 |
+
"Lets you easily build countless pages with the help of the drag and drop "
|
1926 |
+
"visual page builder that comes with a lot of already created shortcodes."
|
1927 |
+
msgstr "Permite construir de manera sencilla innumerables páginas con la ayuda del constructor visual \"arrastre y suelte\" que viene con un grupo de shortcodes listos para utilizar."
|
1928 |
+
|
1929 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:51
|
1930 |
+
msgid ""
|
1931 |
+
"There must not be more than one page Editor integrated with the wp post "
|
1932 |
+
"editor per page"
|
1933 |
+
msgstr "No debe haber más de un editor de páginas integrado con el editor de publicación por página."
|
1934 |
+
|
1935 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:96
|
1936 |
+
msgid "Visual Page Builder"
|
1937 |
+
msgstr "Constructor visual de páginas"
|
1938 |
+
|
1939 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:97
|
1940 |
+
msgid "Default Editor"
|
1941 |
+
msgstr "Editor por Defecto"
|
1942 |
+
|
1943 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:126
|
1944 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:117
|
1945 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:5
|
1946 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:22
|
1947 |
+
msgid "Layout Elements"
|
1948 |
+
msgstr "Elementos de Diseño"
|
1949 |
+
|
1950 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:99
|
1951 |
+
#, php-format
|
1952 |
+
msgid "No Page Builder tab specified for shortcode: %s"
|
1953 |
+
msgstr "No hay pestaña especificada en el constructor de página para el shortcode: %s"
|
1954 |
+
|
1955 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:111
|
1956 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:75
|
1957 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:83
|
1958 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:57
|
1959 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:238
|
1960 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:141
|
1961 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:345
|
1962 |
+
msgid "Remove"
|
1963 |
+
msgstr "Remover"
|
1964 |
+
|
1965 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:112
|
1966 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:74
|
1967 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:82
|
1968 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:56
|
1969 |
+
msgid "Duplicate"
|
1970 |
+
msgstr "Duplicar"
|
1971 |
+
|
1972 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:8
|
1973 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:12
|
1974 |
+
msgid "Testimonials"
|
1975 |
+
msgstr "Testimonios"
|
1976 |
+
|
1977 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:9
|
1978 |
+
msgid "Add some Testimonials"
|
1979 |
+
msgstr "Añadir algunos testimonios"
|
1980 |
+
|
1981 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:10
|
1982 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:10
|
1983 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:10
|
1984 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:10
|
1985 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:8
|
1986 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:10
|
1987 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:8
|
1988 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:8
|
1989 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:10
|
1990 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:10
|
1991 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:10
|
1992 |
+
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:10
|
1993 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:10
|
1994 |
+
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:10
|
1995 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:8
|
1996 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:10
|
1997 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:10
|
1998 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:106
|
1999 |
+
msgid "Content Elements"
|
2000 |
+
msgstr "Elementos de contenido"
|
2001 |
+
|
2002 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:8
|
2003 |
+
msgid "Option Testimonials Title"
|
2004 |
+
msgstr "Opción título de testimonios"
|
2005 |
+
|
2006 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:13
|
2007 |
+
msgid "Add/Edit Testimonial"
|
2008 |
+
msgstr "Agregar/Editar Testimonio"
|
2009 |
+
|
2010 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:14
|
2011 |
+
msgid "Here you can add, remove and edit your Testimonials."
|
2012 |
+
msgstr "Aquí usted añadir, remover y editar sus testimonios."
|
2013 |
+
|
2014 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:19
|
2015 |
+
msgid "Quote"
|
2016 |
+
msgstr "Cita (frase)"
|
2017 |
+
|
2018 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:20
|
2019 |
+
msgid "Enter the testimonial here"
|
2020 |
+
msgstr "Ingrese el testimonio aquí"
|
2021 |
+
|
2022 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:25
|
2023 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:6
|
2024 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:102
|
2025 |
+
msgid "Image"
|
2026 |
+
msgstr "Imagen"
|
2027 |
+
|
2028 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:26
|
2029 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:8
|
2030 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:9
|
2031 |
+
msgid ""
|
2032 |
+
"Either upload a new, or choose an existing image from your media library"
|
2033 |
+
msgstr "Ya sea subir una nueva o escoger una existente en su biblioteca multimedia"
|
2034 |
+
|
2035 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:30
|
2036 |
+
msgid "Name"
|
2037 |
+
msgstr "Nombre"
|
2038 |
+
|
2039 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:31
|
2040 |
+
msgid "Enter the Name of the Person to quote"
|
2041 |
+
msgstr "Ingrese el nombre de la persona a citar"
|
2042 |
+
|
2043 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:35
|
2044 |
+
msgid "Position"
|
2045 |
+
msgstr "Cargo"
|
2046 |
+
|
2047 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:36
|
2048 |
+
msgid "Can be used for a job description"
|
2049 |
+
msgstr "Utilice para describir cargo en empresa"
|
2050 |
+
|
2051 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:40
|
2052 |
+
msgid "Website Name"
|
2053 |
+
msgstr "Nombre del sitio web"
|
2054 |
+
|
2055 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:41
|
2056 |
+
msgid "Linktext for the above Link"
|
2057 |
+
msgstr "Texto sobre el link"
|
2058 |
+
|
2059 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:45
|
2060 |
+
msgid "Website Link"
|
2061 |
+
msgstr "Link a sitio web"
|
2062 |
+
|
2063 |
+
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:46
|
2064 |
+
msgid "Link to the Persons website"
|
2065 |
+
msgstr "Link a sitio web personal"
|
2066 |
+
|
2067 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:8
|
2068 |
+
msgid "Accordion"
|
2069 |
+
msgstr "Acordeón"
|
2070 |
+
|
2071 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:9
|
2072 |
+
msgid "Add an Accordion"
|
2073 |
+
msgstr "Añadir Acordeón"
|
2074 |
+
|
2075 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:8
|
2076 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:8
|
2077 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:8
|
2078 |
+
msgid "Tabs"
|
2079 |
+
msgstr "Pestañas"
|
2080 |
+
|
2081 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:9
|
2082 |
+
msgid "Add/Edit Tabs"
|
2083 |
+
msgstr "Agregar/Editar Pestañas"
|
2084 |
+
|
2085 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:10
|
2086 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:10
|
2087 |
+
msgid "Create your tabs"
|
2088 |
+
msgstr "Crear sus pestañas"
|
2089 |
+
|
2090 |
+
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:19
|
2091 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:24
|
2092 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:13
|
2093 |
+
#: ../framework/extensions/shortcodes/shortcodes/text-block/options.php:10
|
2094 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:19
|
2095 |
+
msgid "Content"
|
2096 |
+
msgstr "Contenido"
|
2097 |
+
|
2098 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:8
|
2099 |
+
msgid "Table"
|
2100 |
+
msgstr "Tabla"
|
2101 |
+
|
2102 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:9
|
2103 |
+
msgid "Add a Table"
|
2104 |
+
msgstr "Agregar una tabla"
|
2105 |
+
|
2106 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:64
|
2107 |
+
msgid "table-builder option type must be inside the table shortcode"
|
2108 |
+
msgstr "la opción constructor de tablas debe estar dentro de un shortcode tabla"
|
2109 |
+
|
2110 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:171
|
2111 |
+
msgid "Table Styling"
|
2112 |
+
msgstr "Estilo de tabla"
|
2113 |
+
|
2114 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:172
|
2115 |
+
msgid "Choose the table styling options"
|
2116 |
+
msgstr "Escoger las opciones de estilo de tabla"
|
2117 |
+
|
2118 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:174
|
2119 |
+
msgid "Use the table as a pricing table"
|
2120 |
+
msgstr "Utilizar tabla como tabla de precios"
|
2121 |
+
|
2122 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:175
|
2123 |
+
msgid "Use the table to display tabular data"
|
2124 |
+
msgstr "Utilizar tabla para mostrar tabla tabular"
|
2125 |
+
|
2126 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:197
|
2127 |
+
msgid "Default row"
|
2128 |
+
msgstr "Fila por defecto"
|
2129 |
+
|
2130 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:198
|
2131 |
+
msgid "Heading row"
|
2132 |
+
msgstr "Título de fila"
|
2133 |
+
|
2134 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:199
|
2135 |
+
msgid "Pricing row"
|
2136 |
+
msgstr "Precio de fila"
|
2137 |
+
|
2138 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:200
|
2139 |
+
msgid "Button row"
|
2140 |
+
msgstr "Botón de fila"
|
2141 |
+
|
2142 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:201
|
2143 |
+
msgid "Row switch"
|
2144 |
+
msgstr "Cambio de fila"
|
2145 |
+
|
2146 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:211
|
2147 |
+
msgid "Default column"
|
2148 |
+
msgstr "Columna por defecto"
|
2149 |
+
|
2150 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:212
|
2151 |
+
msgid "Description column"
|
2152 |
+
msgstr "Descripción de columna"
|
2153 |
+
|
2154 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:213
|
2155 |
+
msgid "Highlight column"
|
2156 |
+
msgstr "Resaltar columna"
|
2157 |
+
|
2158 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:214
|
2159 |
+
msgid "Center text column"
|
2160 |
+
msgstr "Centrar texto de columna"
|
2161 |
+
|
2162 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:251
|
2163 |
+
msgid "per month"
|
2164 |
+
msgstr "por mes"
|
2165 |
+
|
2166 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:262
|
2167 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:8
|
2168 |
+
msgid "Button"
|
2169 |
+
msgstr "Botón"
|
2170 |
+
|
2171 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:263
|
2172 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:39
|
2173 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:148
|
2174 |
+
#: ../framework/includes/option-types/addable-option/class-fw-option-type-addable-option.php:20
|
2175 |
+
#: ../framework/includes/option-types/addable-popup/class-fw-option-type-addable-popup.php:153
|
2176 |
+
#: ../framework/includes/option-types/addable-box/class-fw-option-type-addable-box.php:186
|
2177 |
+
msgid "Add"
|
2178 |
+
msgstr "Añadir"
|
2179 |
+
|
2180 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-head-template.php:27
|
2181 |
+
msgid "Add Column"
|
2182 |
+
msgstr "Añadir Columna"
|
2183 |
+
|
2184 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/view.php:161
|
2185 |
+
msgid "Add Row"
|
2186 |
+
msgstr "Añadir fila"
|
2187 |
+
|
2188 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:24
|
2189 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:25
|
2190 |
+
msgid "Custom"
|
2191 |
+
msgstr "Personalizar"
|
2192 |
+
|
2193 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:27
|
2194 |
+
msgid "Locations"
|
2195 |
+
msgstr "Ubicaciones"
|
2196 |
+
|
2197 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:28
|
2198 |
+
msgid "Add/Edit Location"
|
2199 |
+
msgstr "Agregar/Editar ubicación"
|
2200 |
+
|
2201 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:31
|
2202 |
+
msgid "Note: Please set location"
|
2203 |
+
msgstr "Nota: por favor establezca ubicación"
|
2204 |
+
|
2205 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:35
|
2206 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:187
|
2207 |
+
msgid "Location"
|
2208 |
+
msgstr "Ubicación"
|
2209 |
+
|
2210 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:39
|
2211 |
+
msgid "Location Title"
|
2212 |
+
msgstr "Título de ubicación"
|
2213 |
+
|
2214 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:40
|
2215 |
+
msgid "Set location title"
|
2216 |
+
msgstr "Establecer título de ubicación"
|
2217 |
+
|
2218 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:44
|
2219 |
+
msgid "Location Description"
|
2220 |
+
msgstr "Descripción de ubicación"
|
2221 |
+
|
2222 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:45
|
2223 |
+
msgid "Set location description"
|
2224 |
+
msgstr "Establecer descripción de ubicación"
|
2225 |
+
|
2226 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:49
|
2227 |
+
msgid "Location Url"
|
2228 |
+
msgstr "URL de ubicación"
|
2229 |
+
|
2230 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:50
|
2231 |
+
msgid "Set page url (Ex: http://example.com)"
|
2232 |
+
msgstr "Establecer url de página (Ej: http://ejemplo.com)"
|
2233 |
+
|
2234 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:53
|
2235 |
+
msgid "Location Image"
|
2236 |
+
msgstr "Imagen de ubicación"
|
2237 |
+
|
2238 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:54
|
2239 |
+
msgid "Add location image"
|
2240 |
+
msgstr "Añadir imagen de ubicación"
|
2241 |
+
|
2242 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:113
|
2243 |
+
msgid "No location provider specified for map shortcode"
|
2244 |
+
msgstr "No hay proveedor de ubicación especificado en el shortcode mapa"
|
2245 |
+
|
2246 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:115
|
2247 |
+
msgid "Map Placeholder"
|
2248 |
+
msgstr "Marcador (Placeholder) en mapa"
|
2249 |
+
|
2250 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:122
|
2251 |
+
#, php-format
|
2252 |
+
msgid "Unknown location provider \"%s\" specified for map shortcode"
|
2253 |
+
msgstr "Proveedor de ubicación desconocido \"%s\" especificado en shortcode mapa"
|
2254 |
+
|
2255 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:8
|
2256 |
+
msgid "Map"
|
2257 |
+
msgstr "Mapa"
|
2258 |
+
|
2259 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:9
|
2260 |
+
msgid "Add a Map"
|
2261 |
+
msgstr "Agregar un mapa"
|
2262 |
+
|
2263 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:13
|
2264 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:13
|
2265 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:214
|
2266 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:473
|
2267 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:11
|
2268 |
+
msgid "Population Method"
|
2269 |
+
msgstr "Método de agrupación"
|
2270 |
+
|
2271 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:14
|
2272 |
+
msgid "Select map population method (Ex: events, custom)"
|
2273 |
+
msgstr "Seleccione método de agrupación (Ej: eventos, personalizado)"
|
2274 |
+
|
2275 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:24
|
2276 |
+
msgid "Map Type"
|
2277 |
+
msgstr "Tipo de mapa"
|
2278 |
+
|
2279 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:25
|
2280 |
+
msgid "Select map type"
|
2281 |
+
msgstr "Seleccione tipo de mapa"
|
2282 |
+
|
2283 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:27
|
2284 |
+
msgid "Roadmap"
|
2285 |
+
msgstr "Mapa vial"
|
2286 |
+
|
2287 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:28
|
2288 |
+
msgid "Terrain"
|
2289 |
+
msgstr "Terreno"
|
2290 |
+
|
2291 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:29
|
2292 |
+
msgid "Satellite"
|
2293 |
+
msgstr "télite"
|
2294 |
+
|
2295 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:30
|
2296 |
+
msgid "Hybrid"
|
2297 |
+
msgstr "Híbrido"
|
2298 |
+
|
2299 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:34
|
2300 |
+
msgid "Map Height"
|
2301 |
+
msgstr "Alto de mapa"
|
2302 |
+
|
2303 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:35
|
2304 |
+
msgid "Set map height (Ex: 300)"
|
2305 |
+
msgstr "Establecer alto de mapa (Ej: 300)"
|
2306 |
+
|
2307 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:41
|
2308 |
+
msgid "Disable zoom on scroll"
|
2309 |
+
msgstr "Desactivar acercamiento al hacer scroll"
|
2310 |
+
|
2311 |
+
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:42
|
2312 |
+
msgid "Prevent the map from zooming when scrolling until clicking on the map"
|
2313 |
+
msgstr "Previene el acercamiento cuando hace scroll hasta que haga click en el mapa"
|
2314 |
+
|
2315 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:76
|
2316 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:65
|
2317 |
+
msgid "Column"
|
2318 |
+
msgstr "Columna"
|
2319 |
+
|
2320 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:120
|
2321 |
+
#, php-format
|
2322 |
+
msgid "Add a %s column"
|
2323 |
+
msgstr "Agregar una %s columna"
|
2324 |
+
|
2325 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:12
|
2326 |
+
msgid "Columns"
|
2327 |
+
msgstr "Columnas"
|
2328 |
+
|
2329 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:47
|
2330 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:47
|
2331 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:51
|
2332 |
+
msgid "No Templates Saved"
|
2333 |
+
msgstr "No hay plantillas guardadas"
|
2334 |
+
|
2335 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:50
|
2336 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:50
|
2337 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:54
|
2338 |
+
msgid "Load Template"
|
2339 |
+
msgstr "Cargar plantilla"
|
2340 |
+
|
2341 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:91
|
2342 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:91
|
2343 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:94
|
2344 |
+
msgid "Template Name"
|
2345 |
+
msgstr "Nombre de plantilla"
|
2346 |
+
|
2347 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:92
|
2348 |
+
msgid "Save Column"
|
2349 |
+
msgstr "Guardar columna"
|
2350 |
+
|
2351 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:93
|
2352 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:93
|
2353 |
+
msgid "Save as Template"
|
2354 |
+
msgstr "Guardar como plantilla"
|
2355 |
+
|
2356 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:174
|
2357 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:174
|
2358 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:206
|
2359 |
+
msgid "No Title"
|
2360 |
+
msgstr "Sin título"
|
2361 |
+
|
2362 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:6
|
2363 |
+
msgid "Special Heading"
|
2364 |
+
msgstr "Título de encabezado especial"
|
2365 |
+
|
2366 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:7
|
2367 |
+
msgid "Add a Special Heading"
|
2368 |
+
msgstr "Agregar un título de encabezado especial"
|
2369 |
+
|
2370 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:8
|
2371 |
+
msgid "Heading Title"
|
2372 |
+
msgstr "Título de encabezado"
|
2373 |
+
|
2374 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:9
|
2375 |
+
msgid "Write the heading title content"
|
2376 |
+
msgstr "Escriba el contenido del encabezado"
|
2377 |
+
|
2378 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:13
|
2379 |
+
msgid "Heading Subtitle"
|
2380 |
+
msgstr "Subtítulo de encabezado"
|
2381 |
+
|
2382 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:14
|
2383 |
+
msgid "Write the heading subtitle content"
|
2384 |
+
msgstr "Escriba el contenido del subtítulo de encabezado"
|
2385 |
+
|
2386 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:18
|
2387 |
+
msgid "Heading Size"
|
2388 |
+
msgstr "Tamaño de encabezado"
|
2389 |
+
|
2390 |
+
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:30
|
2391 |
+
msgid "Centered"
|
2392 |
+
msgstr "Centrado"
|
2393 |
+
|
2394 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:8
|
2395 |
+
msgid "Team Member"
|
2396 |
+
msgstr "Miembro de equipo"
|
2397 |
+
|
2398 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:9
|
2399 |
+
msgid "Add a Team Member"
|
2400 |
+
msgstr "Agregar mienbro de equipo"
|
2401 |
+
|
2402 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:7
|
2403 |
+
msgid "Team Member Image"
|
2404 |
+
msgstr "Imagen de miembro"
|
2405 |
+
|
2406 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:12
|
2407 |
+
msgid "Team Member Name"
|
2408 |
+
msgstr "Nombre de miembro"
|
2409 |
+
|
2410 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:13
|
2411 |
+
msgid "Name of the person"
|
2412 |
+
msgstr "Nombre de la persona"
|
2413 |
+
|
2414 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:18
|
2415 |
+
msgid "Team Member Job Title"
|
2416 |
+
msgstr "Cargo de miembro"
|
2417 |
+
|
2418 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:19
|
2419 |
+
msgid "Job title of the person."
|
2420 |
+
msgstr "Cargo de la persona"
|
2421 |
+
|
2422 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:24
|
2423 |
+
msgid "Team Member Description"
|
2424 |
+
msgstr "Descripción de miembro"
|
2425 |
+
|
2426 |
+
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:25
|
2427 |
+
msgid "Enter a few words that describe the person"
|
2428 |
+
msgstr "Ingrese algunas palabras para describir a la persona"
|
2429 |
+
|
2430 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:6
|
2431 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:8
|
2432 |
+
#: ../framework/extensions/megamenu/class-fw-extension-megamenu.php:115
|
2433 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:188
|
2434 |
+
msgid "Icon"
|
2435 |
+
msgstr "Icono"
|
2436 |
+
|
2437 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:7
|
2438 |
+
msgid "Add an Icon"
|
2439 |
+
msgstr "Agregar Icono"
|
2440 |
+
|
2441 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:13
|
2442 |
+
msgid "Icon title"
|
2443 |
+
msgstr "Título de icono"
|
2444 |
+
|
2445 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:6
|
2446 |
+
msgid "Icon Box"
|
2447 |
+
msgstr "Icono con caja"
|
2448 |
+
|
2449 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:7
|
2450 |
+
msgid "Add an Icon Box"
|
2451 |
+
msgstr "Agregar una caja con icono"
|
2452 |
+
|
2453 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:8
|
2454 |
+
msgid "Box Style"
|
2455 |
+
msgstr "Estilo de Caja"
|
2456 |
+
|
2457 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:10
|
2458 |
+
msgid "Icon above title"
|
2459 |
+
msgstr "Icono sobre el título"
|
2460 |
+
|
2461 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:11
|
2462 |
+
msgid "Icon in line with title"
|
2463 |
+
msgstr "Icono en línea con el título"
|
2464 |
+
|
2465 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:16
|
2466 |
+
msgid "Choose an Icon"
|
2467 |
+
msgstr "Escoger un Icono"
|
2468 |
+
|
2469 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:20
|
2470 |
+
msgid "Title of the Box"
|
2471 |
+
msgstr "Título de la caja"
|
2472 |
+
|
2473 |
+
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:25
|
2474 |
+
msgid "Enter the desired content"
|
2475 |
+
msgstr "Ingrese el contenido deseado"
|
2476 |
+
|
2477 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:9
|
2478 |
+
msgid "Add a Button"
|
2479 |
+
msgstr "Agregar botón"
|
2480 |
+
|
2481 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:7
|
2482 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:17
|
2483 |
+
msgid "Button Label"
|
2484 |
+
msgstr "Etiqueta de botón"
|
2485 |
+
|
2486 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:8
|
2487 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:18
|
2488 |
+
msgid "This is the text that appears on your button"
|
2489 |
+
msgstr "Este es el texto que aparece en su botón"
|
2490 |
+
|
2491 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:13
|
2492 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:23
|
2493 |
+
msgid "Button Link"
|
2494 |
+
msgstr "Link de botón"
|
2495 |
+
|
2496 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:14
|
2497 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:24
|
2498 |
+
msgid "Where should your button link to"
|
2499 |
+
msgstr "Lugar dónde direcciona el link de botón"
|
2500 |
+
|
2501 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:20
|
2502 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:38
|
2503 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:30
|
2504 |
+
msgid "Open Link in New Window"
|
2505 |
+
msgstr "Abrir en nueva ventana"
|
2506 |
+
|
2507 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:21
|
2508 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:39
|
2509 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:31
|
2510 |
+
msgid "Select here if you want to open the linked page in a new window"
|
2511 |
+
msgstr "Seleccione aquí si usted quiere abrir link en una nueva ventana"
|
2512 |
+
|
2513 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:32
|
2514 |
+
msgid "Button Color"
|
2515 |
+
msgstr "Color de botón"
|
2516 |
+
|
2517 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:33
|
2518 |
+
msgid "Choose a color for your button"
|
2519 |
+
msgstr "Escoger color de botón"
|
2520 |
+
|
2521 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:36
|
2522 |
+
msgid "Default"
|
2523 |
+
msgstr "Por defecto"
|
2524 |
+
|
2525 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:37
|
2526 |
+
msgid "Black"
|
2527 |
+
msgstr "Negro"
|
2528 |
+
|
2529 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:38
|
2530 |
+
msgid "Blue"
|
2531 |
+
msgstr "Azul"
|
2532 |
+
|
2533 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:39
|
2534 |
+
msgid "Green"
|
2535 |
+
msgstr "Verde"
|
2536 |
+
|
2537 |
+
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:40
|
2538 |
+
msgid "Red"
|
2539 |
+
msgstr "Rojo"
|
2540 |
+
|
2541 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:6
|
2542 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:108
|
2543 |
+
msgid "Video"
|
2544 |
+
msgstr "Video"
|
2545 |
+
|
2546 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:7
|
2547 |
+
msgid "Add a Video"
|
2548 |
+
msgstr "Agregar video"
|
2549 |
+
|
2550 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:8
|
2551 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:8
|
2552 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:10
|
2553 |
+
msgid "Media Elements"
|
2554 |
+
msgstr "Elementos multimedia"
|
2555 |
+
|
2556 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:8
|
2557 |
+
msgid "Insert Video URL"
|
2558 |
+
msgstr "Inserte URL del video"
|
2559 |
+
|
2560 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:9
|
2561 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:24
|
2562 |
+
msgid "Insert Video URL to embed this video"
|
2563 |
+
msgstr "Inserte URL para adjuntar este video"
|
2564 |
+
|
2565 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:13
|
2566 |
+
msgid "Video Width"
|
2567 |
+
msgstr "Ancho del video"
|
2568 |
+
|
2569 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:14
|
2570 |
+
msgid "Enter a value for the width"
|
2571 |
+
msgstr "Ingrese el valor del ancho"
|
2572 |
+
|
2573 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:19
|
2574 |
+
msgid "Video Height"
|
2575 |
+
msgstr "Alto del video"
|
2576 |
+
|
2577 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:20
|
2578 |
+
msgid "Enter a value for the height"
|
2579 |
+
msgstr "Ingrese el valor para el alto"
|
2580 |
+
|
2581 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:8
|
2582 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:16
|
2583 |
+
msgid "Calendar"
|
2584 |
+
msgstr "Calendario"
|
2585 |
+
|
2586 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:9
|
2587 |
+
msgid "Add a Calendar"
|
2588 |
+
msgstr "Agregar Calendario"
|
2589 |
+
|
2590 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:14
|
2591 |
+
msgid "Select calendar population method (Ex: events, custom)"
|
2592 |
+
msgstr "Seleccione método de agrupación del calendario (Ej: eventos, personalizado)"
|
2593 |
+
|
2594 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:23
|
2595 |
+
msgid "Calendar Type"
|
2596 |
+
msgstr "Tipo de calendario"
|
2597 |
+
|
2598 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:24
|
2599 |
+
msgid "Select calendar type"
|
2600 |
+
msgstr "Seleccione tipo de calendario"
|
2601 |
+
|
2602 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:27
|
2603 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:23
|
2604 |
+
msgid "Daily"
|
2605 |
+
msgstr "Diario"
|
2606 |
+
|
2607 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:28
|
2608 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:22
|
2609 |
+
msgid "Weekly"
|
2610 |
+
msgstr "Semanal"
|
2611 |
+
|
2612 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:29
|
2613 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:21
|
2614 |
+
msgid "Monthly"
|
2615 |
+
msgstr "Mensual"
|
2616 |
+
|
2617 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:33
|
2618 |
+
msgid "Start Week On"
|
2619 |
+
msgstr "La semana empieza el "
|
2620 |
+
|
2621 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:34
|
2622 |
+
msgid "Select first day of week"
|
2623 |
+
msgstr "Seleccione primer día de la semana"
|
2624 |
+
|
2625 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:37
|
2626 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:110
|
2627 |
+
msgid "Monday"
|
2628 |
+
msgstr "Lunes"
|
2629 |
+
|
2630 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:38
|
2631 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:109
|
2632 |
+
msgid "Sunday"
|
2633 |
+
msgstr "Domingo"
|
2634 |
+
|
2635 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:29
|
2636 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:56
|
2637 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:82
|
2638 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:69
|
2639 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:74
|
2640 |
+
#: ../framework/extensions/events/manifest.php:7
|
2641 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:77
|
2642 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:185
|
2643 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:180
|
2644 |
+
msgid "Events"
|
2645 |
+
msgstr "Eventos"
|
2646 |
+
|
2647 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:30
|
2648 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:59
|
2649 |
+
msgid "Add/Edit Date & Time"
|
2650 |
+
msgstr "Agregar/Editar fecha y evento"
|
2651 |
+
|
2652 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:33
|
2653 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:63
|
2654 |
+
msgid "Note: Please set start & end event datetime"
|
2655 |
+
msgstr "Nota: Por favor seleccione fecha de inicio y fin del evento"
|
2656 |
+
|
2657 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:37
|
2658 |
+
msgid "Event Title"
|
2659 |
+
msgstr "Título del evento"
|
2660 |
+
|
2661 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:38
|
2662 |
+
msgid "Enter the event title"
|
2663 |
+
msgstr "Ingrese el título del evento"
|
2664 |
+
|
2665 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:42
|
2666 |
+
msgid "Event URL"
|
2667 |
+
msgstr "URL del evento"
|
2668 |
+
|
2669 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:43
|
2670 |
+
msgid "Enter the event URL (Ex: http://your-domain.com/event)"
|
2671 |
+
msgstr "Ingrese la URL del evento (Ej: http://ejemplo.com/evento)"
|
2672 |
+
|
2673 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:47
|
2674 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:58
|
2675 |
+
msgid "Date & Time"
|
2676 |
+
msgstr "Fecha y hora"
|
2677 |
+
|
2678 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:48
|
2679 |
+
msgid "Enter the event date & time"
|
2680 |
+
msgstr "Ingrese la fecha y hora del evento"
|
2681 |
+
|
2682 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:129
|
2683 |
+
msgid "No events provider specified for calendar shortcode"
|
2684 |
+
msgstr "No existen eventos especificados para el shortcode calendario"
|
2685 |
+
|
2686 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:138
|
2687 |
+
#, php-format
|
2688 |
+
msgid "Unknown events provider \"%s\" specified for calendar shortcode"
|
2689 |
+
msgstr "Eventos desconocidos especificados \"%s\" para el shortcode calendario"
|
2690 |
+
|
2691 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:55
|
2692 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:68
|
2693 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:75
|
2694 |
+
msgid "Event"
|
2695 |
+
msgstr "Evento"
|
2696 |
+
|
2697 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:57
|
2698 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/views/view.php:23
|
2699 |
+
msgid "Today"
|
2700 |
+
msgstr "Hoy"
|
2701 |
+
|
2702 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:66
|
2703 |
+
#, php-format
|
2704 |
+
msgid "Calendar: View %s not found"
|
2705 |
+
msgstr "Calendario: No se encuentra %s"
|
2706 |
+
|
2707 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:67
|
2708 |
+
#, php-format
|
2709 |
+
msgid "Calendar: Wrong date format %s. Should be either \"now\" or \"yyyy-mm-dd\""
|
2710 |
+
msgstr "Calendario: Formato de fecha incorrecto %s. Debe ser \"ahora\" o \"aaaa-mm-dd\""
|
2711 |
+
|
2712 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:69
|
2713 |
+
msgid "Calendar: Event URL is not set"
|
2714 |
+
msgstr "Calendario: URL de evento no establecida"
|
2715 |
+
|
2716 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:70
|
2717 |
+
#, php-format
|
2718 |
+
msgid ""
|
2719 |
+
"Calendar: Wrong navigation direction %s. Can be only \"next\" or \"prev\" or"
|
2720 |
+
" \"today\""
|
2721 |
+
msgstr "Calendario: dirección de explroación incorrecta %s. Debe ser solo \"Siguiente\", \"Anterior\" u \"Hoy\""
|
2722 |
+
|
2723 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:72
|
2724 |
+
msgid ""
|
2725 |
+
"Calendar: Time split parameter should divide 60 without decimals. Something "
|
2726 |
+
"like 10, 15, 30"
|
2727 |
+
msgstr "Calendario: El parámetro de división debe dividir 60 sin decimales. Algo como 10, 15, 30"
|
2728 |
+
|
2729 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:74
|
2730 |
+
msgid "No events in this day."
|
2731 |
+
msgstr "No hay eventos este día."
|
2732 |
+
|
2733 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:77
|
2734 |
+
#, php-format
|
2735 |
+
msgid "week %s of %s"
|
2736 |
+
msgstr "semana %s de %s"
|
2737 |
+
|
2738 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:79
|
2739 |
+
msgid "Week "
|
2740 |
+
msgstr "Semana"
|
2741 |
+
|
2742 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:80
|
2743 |
+
msgid "All day"
|
2744 |
+
msgstr "Todo el día"
|
2745 |
+
|
2746 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:81
|
2747 |
+
msgid "Time"
|
2748 |
+
msgstr "Hora"
|
2749 |
+
|
2750 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:83
|
2751 |
+
msgid "Ends before timeline"
|
2752 |
+
msgstr "Termina antes de cronograma"
|
2753 |
+
|
2754 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:84
|
2755 |
+
msgid "Starts after timeline"
|
2756 |
+
msgstr "Inicia después de cronograma"
|
2757 |
+
|
2758 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:85
|
2759 |
+
msgid "January"
|
2760 |
+
msgstr "Enero"
|
2761 |
+
|
2762 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:86
|
2763 |
+
msgid "February"
|
2764 |
+
msgstr "Febrero"
|
2765 |
+
|
2766 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:87
|
2767 |
+
msgid "March"
|
2768 |
+
msgstr "Marzo"
|
2769 |
+
|
2770 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:88
|
2771 |
+
msgid "April"
|
2772 |
+
msgstr "Abril"
|
2773 |
+
|
2774 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:89
|
2775 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:101
|
2776 |
+
msgid "May"
|
2777 |
+
msgstr "Mayo"
|
2778 |
+
|
2779 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:90
|
2780 |
+
msgid "June"
|
2781 |
+
msgstr "Junio"
|
2782 |
+
|
2783 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:91
|
2784 |
+
msgid "July"
|
2785 |
+
msgstr "Julio"
|
2786 |
+
|
2787 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:92
|
2788 |
+
msgid "August"
|
2789 |
+
msgstr "Agosto"
|
2790 |
+
|
2791 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:93
|
2792 |
+
msgid "September"
|
2793 |
+
msgstr "Septiembre"
|
2794 |
+
|
2795 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:94
|
2796 |
+
msgid "October"
|
2797 |
+
msgstr "Octubre"
|
2798 |
+
|
2799 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:95
|
2800 |
+
msgid "November"
|
2801 |
+
msgstr "Noviembre"
|
2802 |
+
|
2803 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:96
|
2804 |
+
msgid "December"
|
2805 |
+
msgstr "Diciembre"
|
2806 |
+
|
2807 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:97
|
2808 |
+
msgid "Jan"
|
2809 |
+
msgstr "Ene"
|
2810 |
+
|
2811 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:98
|
2812 |
+
msgid "Feb"
|
2813 |
+
msgstr "Feb"
|
2814 |
+
|
2815 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:99
|
2816 |
+
msgid "Mar"
|
2817 |
+
msgstr "Mar"
|
2818 |
+
|
2819 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:100
|
2820 |
+
msgid "Apr"
|
2821 |
+
msgstr "Abr"
|
2822 |
+
|
2823 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:102
|
2824 |
+
msgid "Jun"
|
2825 |
+
msgstr "Jun"
|
2826 |
+
|
2827 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:103
|
2828 |
+
msgid "Jul"
|
2829 |
+
msgstr "Jul"
|
2830 |
+
|
2831 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:104
|
2832 |
+
msgid "Aug"
|
2833 |
+
msgstr "Ago"
|
2834 |
+
|
2835 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:105
|
2836 |
+
msgid "Sep"
|
2837 |
+
msgstr "Sep"
|
2838 |
+
|
2839 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:106
|
2840 |
+
msgid "Oct"
|
2841 |
+
msgstr "Oct"
|
2842 |
+
|
2843 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:107
|
2844 |
+
msgid "Nov"
|
2845 |
+
msgstr "Nov"
|
2846 |
+
|
2847 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:108
|
2848 |
+
msgid "Dec"
|
2849 |
+
msgstr "Dic"
|
2850 |
+
|
2851 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:111
|
2852 |
+
msgid "Tuesday"
|
2853 |
+
msgstr "Martes"
|
2854 |
+
|
2855 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:112
|
2856 |
+
msgid "Wednesday"
|
2857 |
+
msgstr "Miércoles"
|
2858 |
+
|
2859 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:113
|
2860 |
+
msgid "Thursday"
|
2861 |
+
msgstr "Jueves"
|
2862 |
+
|
2863 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:114
|
2864 |
+
msgid "Friday"
|
2865 |
+
msgstr "Viernes"
|
2866 |
+
|
2867 |
+
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:115
|
2868 |
+
msgid "Saturday"
|
2869 |
+
msgstr "Sábado"
|
2870 |
+
|
2871 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:7
|
2872 |
+
msgid "Add an Image"
|
2873 |
+
msgstr "Agregar Imagen"
|
2874 |
+
|
2875 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:8
|
2876 |
+
msgid "Choose Image"
|
2877 |
+
msgstr "Escoger imagen"
|
2878 |
+
|
2879 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:16
|
2880 |
+
msgid "Width"
|
2881 |
+
msgstr "Ancho"
|
2882 |
+
|
2883 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:17
|
2884 |
+
msgid "Set image width"
|
2885 |
+
msgstr "Establecer ancho de imagen"
|
2886 |
+
|
2887 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:22
|
2888 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:24
|
2889 |
+
msgid "Height"
|
2890 |
+
msgstr "Alto"
|
2891 |
+
|
2892 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:23
|
2893 |
+
msgid "Set image height"
|
2894 |
+
msgstr "Establecer alto de imagen"
|
2895 |
+
|
2896 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:33
|
2897 |
+
msgid "Image Link"
|
2898 |
+
msgstr "Link de imagen"
|
2899 |
+
|
2900 |
+
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:34
|
2901 |
+
msgid "Where should your image link to?"
|
2902 |
+
msgstr "Dónde direccionará su imagen?"
|
2903 |
+
|
2904 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:8
|
2905 |
+
msgid "Notification"
|
2906 |
+
msgstr "Notificación"
|
2907 |
+
|
2908 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:9
|
2909 |
+
msgid "Add a Notification Box"
|
2910 |
+
msgstr "Agregar caja de notificación"
|
2911 |
+
|
2912 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:7
|
2913 |
+
msgid "Message"
|
2914 |
+
msgstr "Mensaje"
|
2915 |
+
|
2916 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:8
|
2917 |
+
msgid "Notification message"
|
2918 |
+
msgstr "Notificación de mensaje"
|
2919 |
+
|
2920 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:10
|
2921 |
+
msgid "Message!"
|
2922 |
+
msgstr "Mensaje!"
|
2923 |
+
|
2924 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:13
|
2925 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:444
|
2926 |
+
msgid "Type"
|
2927 |
+
msgstr "Tipo"
|
2928 |
+
|
2929 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:14
|
2930 |
+
msgid "Notification type"
|
2931 |
+
msgstr "Tipo de notificación"
|
2932 |
+
|
2933 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:17
|
2934 |
+
msgid "Congratulations"
|
2935 |
+
msgstr "Felicitación"
|
2936 |
+
|
2937 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:18
|
2938 |
+
msgid "Information"
|
2939 |
+
msgstr "Información"
|
2940 |
+
|
2941 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:19
|
2942 |
+
msgid "Alert"
|
2943 |
+
msgstr "Alerta"
|
2944 |
+
|
2945 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:20
|
2946 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:456
|
2947 |
+
msgid "Error"
|
2948 |
+
msgstr "Error"
|
2949 |
+
|
2950 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:9
|
2951 |
+
msgid "Congratulations!"
|
2952 |
+
msgstr "Felicitaciones!"
|
2953 |
+
|
2954 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:13
|
2955 |
+
msgid "Information!"
|
2956 |
+
msgstr "Información!"
|
2957 |
+
|
2958 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:17
|
2959 |
+
msgid "Alert!"
|
2960 |
+
msgstr "Alerta!"
|
2961 |
+
|
2962 |
+
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:21
|
2963 |
+
msgid "Error!"
|
2964 |
+
msgstr "Error!"
|
2965 |
+
|
2966 |
+
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:8
|
2967 |
+
msgid "Widget Area"
|
2968 |
+
msgstr "Área de widget"
|
2969 |
+
|
2970 |
+
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:9
|
2971 |
+
msgid "Add a Widget Area"
|
2972 |
+
msgstr "Agregar área de widget"
|
2973 |
+
|
2974 |
+
#: ../framework/extensions/shortcodes/shortcodes/widget-area/options.php:5
|
2975 |
+
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:5
|
2976 |
+
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:7
|
2977 |
+
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:40
|
2978 |
+
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:91
|
2979 |
+
msgid "Sidebar"
|
2980 |
+
msgstr "Barra lateral (Sidebar)"
|
2981 |
+
|
2982 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:8
|
2983 |
+
msgid "Call To Action"
|
2984 |
+
msgstr "Llamar a la acción"
|
2985 |
+
|
2986 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:9
|
2987 |
+
msgid "Add a Call to Action"
|
2988 |
+
msgstr "Agregar llamar a la acción"
|
2989 |
+
|
2990 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:9
|
2991 |
+
msgid "This can be left blank"
|
2992 |
+
msgstr "Esto se puede dejar en blanco"
|
2993 |
+
|
2994 |
+
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:14
|
2995 |
+
msgid "Enter some content for this Info Box"
|
2996 |
+
msgstr "Ingrese algún contenido para esta caja de información"
|
2997 |
+
|
2998 |
+
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:8
|
2999 |
+
msgid "Text Block"
|
3000 |
+
msgstr "Bloque de texto"
|
3001 |
+
|
3002 |
+
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:9
|
3003 |
+
msgid "Add a Text Block"
|
3004 |
+
msgstr "Agregar bloque de texto"
|
3005 |
+
|
3006 |
+
#: ../framework/extensions/shortcodes/shortcodes/text-block/options.php:11
|
3007 |
+
msgid "Enter some content for this texblock"
|
3008 |
+
msgstr "Ingrese algún contenido para este bloque de texto"
|
3009 |
+
|
3010 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:6
|
3011 |
+
msgid "Divider"
|
3012 |
+
msgstr "Separador"
|
3013 |
+
|
3014 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:7
|
3015 |
+
msgid "Add a Divider"
|
3016 |
+
msgstr "Agregar separador"
|
3017 |
+
|
3018 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:13
|
3019 |
+
msgid "Ruler Type"
|
3020 |
+
msgstr "Tipo de regla"
|
3021 |
+
|
3022 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:14
|
3023 |
+
msgid "Here you can set the styling and size of the HR element"
|
3024 |
+
msgstr "Aquí usted puede establecer el estilo y alto de su elemento HR (separador)"
|
3025 |
+
|
3026 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:16
|
3027 |
+
msgid "Line"
|
3028 |
+
msgstr "Línea"
|
3029 |
+
|
3030 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:17
|
3031 |
+
msgid "Whitespace"
|
3032 |
+
msgstr "Espacio en blanco"
|
3033 |
+
|
3034 |
+
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:25
|
3035 |
+
msgid ""
|
3036 |
+
"How much whitespace do you need? Enter a pixel value. Positive value will "
|
3037 |
+
"increase the whitespace, negative value will reduce it. eg: '50', '-25', "
|
3038 |
+
"'200'"
|
3039 |
+
msgstr "Cuánto espacio necesita? ingrese un valor en pixeles. Valor positivo incrementa el espacio, valor negativo disminuye espacio. Ej: '50', '-25', '200'"
|
3040 |
+
|
3041 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:6
|
3042 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:23
|
3043 |
+
msgid "Section"
|
3044 |
+
msgstr "Sección"
|
3045 |
+
|
3046 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:7
|
3047 |
+
msgid "Add a Section"
|
3048 |
+
msgstr "Agregar sección"
|
3049 |
+
|
3050 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:7
|
3051 |
+
msgid "Full Width"
|
3052 |
+
msgstr "Ancho fluido "
|
3053 |
+
|
3054 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:11
|
3055 |
+
msgid "Background Color"
|
3056 |
+
msgstr "Color de fondo"
|
3057 |
+
|
3058 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:12
|
3059 |
+
msgid "Please select the background color"
|
3060 |
+
msgstr "Seleccione color de fondo"
|
3061 |
+
|
3062 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:16
|
3063 |
+
msgid "Background Image"
|
3064 |
+
msgstr "Imagen de fondo"
|
3065 |
+
|
3066 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:17
|
3067 |
+
msgid "Please select the background image"
|
3068 |
+
msgstr "Seleccione imagen de fondo"
|
3069 |
+
|
3070 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:23
|
3071 |
+
msgid "Background Video"
|
3072 |
+
msgstr "Video de fondo"
|
3073 |
+
|
3074 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:12
|
3075 |
+
msgid "Sections"
|
3076 |
+
msgstr "Secciones"
|
3077 |
+
|
3078 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:92
|
3079 |
+
msgid "Save Section"
|
3080 |
+
msgstr "Guardar sección"
|
3081 |
+
|
3082 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:24
|
3083 |
+
msgid "Creates a section"
|
3084 |
+
msgstr "Crear una sección"
|
3085 |
+
|
3086 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:9
|
3087 |
+
msgid "Add some Tabs"
|
3088 |
+
msgstr "Agregar algunas pestañas"
|
3089 |
+
|
3090 |
+
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:9
|
3091 |
+
msgid "Add/Edit Tab"
|
3092 |
+
msgstr "Agregar/Editar Pestaña"
|
3093 |
+
|
3094 |
+
#: ../framework/extensions/shortcodes/includes/class-fw-shortcode.php:194
|
3095 |
+
#, php-format
|
3096 |
+
msgid "No default view (views/view.php) found for shortcode: %s"
|
3097 |
+
msgstr "No hay vista por defecto encontrada (views/view.php) para el shortcode: %s"
|
3098 |
+
|
3099 |
+
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:203
|
3100 |
+
#, php-format
|
3101 |
+
msgid "Shortcode \"%s\" from %s was already defined at %s"
|
3102 |
+
msgstr "Shortcode \"%s\" de %s ya ha se ha definido en %s"
|
3103 |
+
|
3104 |
+
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:264
|
3105 |
+
#, php-format
|
3106 |
+
msgid "Class file found for shortcode %s but no class %s found"
|
3107 |
+
msgstr "Archivo Class encontrado para shortcode %s pero no se ha definido la class %s"
|
3108 |
+
|
3109 |
+
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:269
|
3110 |
+
#, php-format
|
3111 |
+
msgid "The class %s must extend from FW_Shortcode"
|
3112 |
+
msgstr "La class %s debe ser extendida desde FW_Shortcode"
|
3113 |
+
|
3114 |
+
#: ../framework/extensions/builder/manifest.php:5
|
3115 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:204
|
3116 |
+
msgid "Builder"
|
3117 |
+
msgstr "Constructor"
|
3118 |
+
|
3119 |
+
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:306
|
3120 |
+
msgid "Full Screen"
|
3121 |
+
msgstr "Pantalla Completa"
|
3122 |
+
|
3123 |
+
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:307
|
3124 |
+
msgid "Exit Full Screen"
|
3125 |
+
msgstr "Salir de pantalla completa"
|
3126 |
+
|
3127 |
+
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:334
|
3128 |
+
msgid "Undo"
|
3129 |
+
msgstr "Deshacer"
|
3130 |
+
|
3131 |
+
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:335
|
3132 |
+
msgid "Redo"
|
3133 |
+
msgstr "Rehacer"
|
3134 |
+
|
3135 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/fullscreen.php:81
|
3136 |
+
msgid "Preview Changes"
|
3137 |
+
msgstr "Previsualizar Cambios"
|
3138 |
+
|
3139 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/class-fw-ext-builder-templates.php:119
|
3140 |
+
msgid "Templates"
|
3141 |
+
msgstr "Plantillas"
|
3142 |
+
|
3143 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:12
|
3144 |
+
msgid "Full Templates"
|
3145 |
+
msgstr "Plantillas Completas"
|
3146 |
+
|
3147 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:61
|
3148 |
+
msgid "Save Full Template"
|
3149 |
+
msgstr "Guardar Plantilla Completa"
|
3150 |
+
|
3151 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:95
|
3152 |
+
msgid "Save Builder Template"
|
3153 |
+
msgstr "Guardar Plantilla Constructor"
|
3154 |
+
|
3155 |
+
#: ../framework/extensions/social/manifest.php:7
|
3156 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:252
|
3157 |
+
msgid "Social"
|
3158 |
+
msgstr "Social"
|
3159 |
+
|
3160 |
+
#: ../framework/extensions/social/manifest.php:8
|
3161 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:253
|
3162 |
+
msgid ""
|
3163 |
+
"Use this extension to configure all your social related APIs. Other "
|
3164 |
+
"extensions will use the Social extension to connect to your social accounts."
|
3165 |
+
msgstr "Utilice esta extensión para configurar sus APIs de redes sociales. Otras extensiones pueden ser utilizadas para conectar con sus cuentas sociales"
|
3166 |
+
|
3167 |
+
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:62
|
3168 |
+
#: ../framework/core/components/backend.php:584
|
3169 |
+
msgid "Facebook"
|
3170 |
+
msgstr "Facebook"
|
3171 |
+
|
3172 |
+
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:66
|
3173 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:33
|
3174 |
+
msgid "API Settings"
|
3175 |
+
msgstr "Configuración API"
|
3176 |
+
|
3177 |
+
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:72
|
3178 |
+
msgid "App ID/API Key:"
|
3179 |
+
msgstr "App ID/API Key:"
|
3180 |
+
|
3181 |
+
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:73
|
3182 |
+
msgid "Enter Facebook App ID / API Key."
|
3183 |
+
msgstr "Ingrese su App ID/API Key de Facebook:"
|
3184 |
+
|
3185 |
+
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:78
|
3186 |
+
msgid "App Secret:"
|
3187 |
+
msgstr "APP secreto:"
|
3188 |
+
|
3189 |
+
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:79
|
3190 |
+
msgid "Enter Facebook App Secret."
|
3191 |
+
msgstr "Ingrese su secreto de APP Facebok."
|
3192 |
+
|
3193 |
+
#: ../framework/extensions/social/extensions/social-facebook/manifest.php:7
|
3194 |
+
#: ../framework/extensions/social/extensions/social-facebook/manifest.php:8
|
3195 |
+
msgid "Social Facebook"
|
3196 |
+
msgstr "Facebook Social"
|
3197 |
+
|
3198 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:29
|
3199 |
+
#: ../framework/core/components/backend.php:592
|
3200 |
+
msgid "Twitter"
|
3201 |
+
msgstr "Twitter"
|
3202 |
+
|
3203 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:39
|
3204 |
+
msgid "Consumer Key"
|
3205 |
+
msgstr "Clave de cliente"
|
3206 |
+
|
3207 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:40
|
3208 |
+
msgid "Enter Twitter Consumer Key."
|
3209 |
+
msgstr "Ingrese su clave de cliente de Twitter."
|
3210 |
+
|
3211 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:45
|
3212 |
+
msgid "Consumer Secret"
|
3213 |
+
msgstr "Secret Cliente"
|
3214 |
+
|
3215 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:46
|
3216 |
+
msgid "Enter Twitter App Secret."
|
3217 |
+
msgstr "ingrese su APP secreto de Twitter"
|
3218 |
+
|
3219 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:51
|
3220 |
+
msgid "Access Token"
|
3221 |
+
msgstr "Token de acceso"
|
3222 |
+
|
3223 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:52
|
3224 |
+
msgid "Enter Twitter Access Token."
|
3225 |
+
msgstr "Ingrese su Token de acceso de Twitter."
|
3226 |
+
|
3227 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:57
|
3228 |
+
msgid "Access Token Secret"
|
3229 |
+
msgstr "Token de acceso secreto"
|
3230 |
+
|
3231 |
+
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:58
|
3232 |
+
msgid "Enter Twitter Access Token Secret."
|
3233 |
+
msgstr "Ingrese el token secreto de acceso ."
|
3234 |
+
|
3235 |
+
#: ../framework/extensions/social/extensions/social-twitter/manifest.php:7
|
3236 |
+
#: ../framework/extensions/social/extensions/social-twitter/manifest.php:8
|
3237 |
+
msgid "Social Twitter"
|
3238 |
+
msgstr "Twitter Social"
|
3239 |
+
|
3240 |
+
#: ../framework/extensions/forms/class-fw-extension-forms.php:112
|
3241 |
+
#: ../framework/extensions/forms/class-fw-extension-forms.php:123
|
3242 |
+
#: ../framework/extensions/forms/class-fw-extension-forms.php:131
|
3243 |
+
#: ../framework/extensions/forms/class-fw-extension-forms.php:142
|
3244 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:102
|
3245 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:114
|
3246 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:124
|
3247 |
+
msgid "Unable to process the form"
|
3248 |
+
msgstr "Incapaz de procesar este formulario"
|
3249 |
+
|
3250 |
+
#: ../framework/extensions/forms/manifest.php:5
|
3251 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:228
|
3252 |
+
msgid "Forms"
|
3253 |
+
msgstr "Formulario"
|
3254 |
+
|
3255 |
+
#: ../framework/extensions/forms/manifest.php:7
|
3256 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:229
|
3257 |
+
msgid ""
|
3258 |
+
"This extension adds the possibility to create a contact form. Use the drag &"
|
3259 |
+
" drop form builder to create any contact form you'll ever want or need."
|
3260 |
+
msgstr "Esta extensión añade la posibilidad de crear un formulario de contacto. Utilice el constructor \"arrastrar y soltar\" para crear el formulario de contacto que quiera o necesite."
|
3261 |
+
|
3262 |
+
#: ../framework/extensions/forms/extensions/contact-forms/manifest.php:5
|
3263 |
+
msgid "Contact Forms"
|
3264 |
+
msgstr "Formularios de Contacto"
|
3265 |
+
|
3266 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:134
|
3267 |
+
msgid "Invalid destination email (please contact the site administrator)"
|
3268 |
+
msgstr "Dirección de envío inválida (Contacte al administrador del sitio)"
|
3269 |
+
|
3270 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:158
|
3271 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:77
|
3272 |
+
msgid "Message sent!"
|
3273 |
+
msgstr "Mensaje enviado!"
|
3274 |
+
|
3275 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:164
|
3276 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:85
|
3277 |
+
msgid "Oops something went wrong."
|
3278 |
+
msgstr "Oops ha ocurrido algo mal."
|
3279 |
+
|
3280 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:190
|
3281 |
+
msgid "Please configure the {mailer_link} extension."
|
3282 |
+
msgstr "Por favor configure la extensión {mailer_link}."
|
3283 |
+
|
3284 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:8
|
3285 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:107
|
3286 |
+
msgid "Contact form"
|
3287 |
+
msgstr "Formulario de contacto"
|
3288 |
+
|
3289 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:9
|
3290 |
+
msgid "Build contact forms"
|
3291 |
+
msgstr "Construir formularios de contacto"
|
3292 |
+
|
3293 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:15
|
3294 |
+
msgid "Form Fields"
|
3295 |
+
msgstr "Campos de formularios"
|
3296 |
+
|
3297 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:39
|
3298 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:82
|
3299 |
+
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:31
|
3300 |
+
msgid "Settings"
|
3301 |
+
msgstr "Configuraciones"
|
3302 |
+
|
3303 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:42
|
3304 |
+
msgid "Options"
|
3305 |
+
msgstr "Opciones"
|
3306 |
+
|
3307 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:53
|
3308 |
+
msgid "Subject Message"
|
3309 |
+
msgstr "Asunto del mensaje"
|
3310 |
+
|
3311 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:54
|
3312 |
+
msgid "This text will be used as subject message for the email"
|
3313 |
+
msgstr "Este texto es utilizado como asunto del mensaje en el email"
|
3314 |
+
|
3315 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:55
|
3316 |
+
msgid "New message"
|
3317 |
+
msgstr "Nuevo mensaje"
|
3318 |
+
|
3319 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:64
|
3320 |
+
msgid "Submit Button"
|
3321 |
+
msgstr "Botón Enviar"
|
3322 |
+
|
3323 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:65
|
3324 |
+
msgid "This text will appear in submit button"
|
3325 |
+
msgstr "Este texto aparece en el botón enviar"
|
3326 |
+
|
3327 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:66
|
3328 |
+
msgid "Send"
|
3329 |
+
msgstr "Enviar"
|
3330 |
+
|
3331 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:75
|
3332 |
+
msgid "Success Message"
|
3333 |
+
msgstr "Mensaje de éxito"
|
3334 |
+
|
3335 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:76
|
3336 |
+
msgid "This text will be displayed when the form will successfully send"
|
3337 |
+
msgstr "Este texto se muestra cuando el formulario se ha enviado exitosamente"
|
3338 |
+
|
3339 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:83
|
3340 |
+
msgid "Failure Message"
|
3341 |
+
msgstr "Mensaje de fallo"
|
3342 |
+
|
3343 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:84
|
3344 |
+
msgid "This text will be displayed when the form will fail to be sent"
|
3345 |
+
msgstr "Este texto se muestra cuando el formulario no e ha enviado"
|
3346 |
+
|
3347 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:94
|
3348 |
+
msgid "Email To"
|
3349 |
+
msgstr "Email a"
|
3350 |
+
|
3351 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:95
|
3352 |
+
msgid "We recommend you to use an email that you verify often"
|
3353 |
+
msgstr "Recomendamos el uso de un correo electrónico que verifique frecuentemente"
|
3354 |
+
|
3355 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:96
|
3356 |
+
msgid "The form will be sent to this email address."
|
3357 |
+
msgstr "El formulario será enviado a esta dirección de email."
|
3358 |
+
|
3359 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:52
|
3360 |
+
msgid "Contact Form"
|
3361 |
+
msgstr "Formulario de Contacto"
|
3362 |
+
|
3363 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:54
|
3364 |
+
msgid "Configure Mailer"
|
3365 |
+
msgstr "Configurar Mailer"
|
3366 |
+
|
3367 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:108
|
3368 |
+
msgid "Add a Contact Form"
|
3369 |
+
msgstr "Agregar Formulario de Contacto"
|
3370 |
+
|
3371 |
+
#: ../framework/extensions/forms/views/backend/submit-box-add.php:9
|
3372 |
+
msgid "Note that the type can't be changed later."
|
3373 |
+
msgstr "Tenga en cuenta que el tipo no se puede cambiar más adelante."
|
3374 |
+
|
3375 |
+
#: ../framework/extensions/forms/views/backend/submit-box-add.php:11
|
3376 |
+
msgid ""
|
3377 |
+
"You will need to create a new form in order to have a different form type."
|
3378 |
+
msgstr "Usted tendrá que crear un nuevo formulario con el fin de tener un tipo diferente de formulario."
|
3379 |
+
|
3380 |
+
#: ../framework/extensions/forms/views/backend/submit-box-add.php:20
|
3381 |
+
#: ../framework/extensions/forms/views/backend/submit-box-edit.php:16
|
3382 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:14
|
3383 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:31
|
3384 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-error.php:8
|
3385 |
+
msgid "Delete Permanently"
|
3386 |
+
msgstr "Eliminar de forma permanente"
|
3387 |
+
|
3388 |
+
#: ../framework/extensions/forms/views/backend/submit-box-add.php:22
|
3389 |
+
#: ../framework/extensions/forms/views/backend/submit-box-edit.php:18
|
3390 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:16
|
3391 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:33
|
3392 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-error.php:10
|
3393 |
+
msgid "Move to Trash"
|
3394 |
+
msgstr "Mover a la papelera"
|
3395 |
+
|
3396 |
+
#: ../framework/extensions/forms/views/backend/submit-box-add.php:33
|
3397 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:35
|
3398 |
+
msgid "Create"
|
3399 |
+
msgstr "Crear"
|
3400 |
+
|
3401 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:24
|
3402 |
+
msgid "Add a Recaptcha field"
|
3403 |
+
msgstr "Agregar campo Recaptcha"
|
3404 |
+
|
3405 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:26
|
3406 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:54
|
3407 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:78
|
3408 |
+
msgid "Recaptcha"
|
3409 |
+
msgstr "Recaptcha"
|
3410 |
+
|
3411 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:59
|
3412 |
+
msgid "Set site key"
|
3413 |
+
msgstr "Establecer clave de sitio"
|
3414 |
+
|
3415 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:60
|
3416 |
+
msgid "Set secret key"
|
3417 |
+
msgstr "Establecer clave secreta"
|
3418 |
+
|
3419 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:77
|
3420 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:76
|
3421 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:78
|
3422 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:78
|
3423 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:81
|
3424 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:81
|
3425 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:78
|
3426 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:78
|
3427 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:76
|
3428 |
+
msgid "Enter field label (it will be displayed on the web site)"
|
3429 |
+
msgstr "Ingrese el valor de etiqueta (Este es mostrado en el sitio web)"
|
3430 |
+
|
3431 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:133
|
3432 |
+
msgid "Security Code"
|
3433 |
+
msgstr "Código de seguridad"
|
3434 |
+
|
3435 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:147
|
3436 |
+
msgid "Could not validate the form"
|
3437 |
+
msgstr "No es posible validar el formulario"
|
3438 |
+
|
3439 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:148
|
3440 |
+
msgid "Please fill the recaptcha"
|
3441 |
+
msgstr "Por favor complete el recaptcha"
|
3442 |
+
|
3443 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:37
|
3444 |
+
msgid "Site key"
|
3445 |
+
msgstr "Clave de sitio"
|
3446 |
+
|
3447 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:38
|
3448 |
+
msgid "Your website key. More on how to configure ReCaptcha"
|
3449 |
+
msgstr "Su clave de sitio. Mas en cómo configurar ReCaptcha"
|
3450 |
+
|
3451 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:42
|
3452 |
+
msgid "Secret key"
|
3453 |
+
msgstr "Clave secreta"
|
3454 |
+
|
3455 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:43
|
3456 |
+
msgid "Your secret key. More on how to configure ReCaptcha"
|
3457 |
+
msgstr "Su clave secreta. Mas en cómo configurar ReCaptcha"
|
3458 |
+
|
3459 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:18
|
3460 |
+
msgid "Add a Paragraph Text"
|
3461 |
+
msgstr "Agregar párrafo de texto"
|
3462 |
+
|
3463 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:20
|
3464 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:48
|
3465 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:77
|
3466 |
+
msgid "Paragraph Text"
|
3467 |
+
msgstr "Párrafo de texto"
|
3468 |
+
|
3469 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:53
|
3470 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:53
|
3471 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:51
|
3472 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:52
|
3473 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:52
|
3474 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:51
|
3475 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:51
|
3476 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:49
|
3477 |
+
msgid "Toggle mandatory field"
|
3478 |
+
msgstr "Activar campo obligatorio"
|
3479 |
+
|
3480 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:83
|
3481 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:85
|
3482 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:85
|
3483 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:88
|
3484 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:88
|
3485 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:85
|
3486 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:85
|
3487 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:83
|
3488 |
+
msgid "Mandatory Field"
|
3489 |
+
msgstr "Campo Obligatorio"
|
3490 |
+
|
3491 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:84
|
3492 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:86
|
3493 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:86
|
3494 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:89
|
3495 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:89
|
3496 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:86
|
3497 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:86
|
3498 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:84
|
3499 |
+
msgid "Make this field mandatory?"
|
3500 |
+
msgstr "Hacer este campo obligatorio?"
|
3501 |
+
|
3502 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:98
|
3503 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:100
|
3504 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:100
|
3505 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:100
|
3506 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:98
|
3507 |
+
msgid "Placeholder"
|
3508 |
+
msgstr "Marcador (Placeholder)"
|
3509 |
+
|
3510 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:99
|
3511 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:101
|
3512 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:101
|
3513 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:101
|
3514 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:99
|
3515 |
+
msgid "This text will be used as field placeholder"
|
3516 |
+
msgstr "Este texto es utilizado como marca en el campo."
|
3517 |
+
|
3518 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:105
|
3519 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:107
|
3520 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:107
|
3521 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:105
|
3522 |
+
msgid "Default Value"
|
3523 |
+
msgstr "Valor por defecto"
|
3524 |
+
|
3525 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:106
|
3526 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:108
|
3527 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:108
|
3528 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:106
|
3529 |
+
msgid "This text will be used as field default value"
|
3530 |
+
msgstr "Este texto es utilizado como valor por defecto"
|
3531 |
+
|
3532 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:126
|
3533 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:128
|
3534 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:126
|
3535 |
+
msgid "Restrictions"
|
3536 |
+
msgstr "Restricciones"
|
3537 |
+
|
3538 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:127
|
3539 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:127
|
3540 |
+
msgid "Set characters or words restrictions for this field"
|
3541 |
+
msgstr "Establecer caracteres o palabras restringidas en este campo"
|
3542 |
+
|
3543 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:131
|
3544 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:131
|
3545 |
+
msgid "Characters"
|
3546 |
+
msgstr "Caracteres"
|
3547 |
+
|
3548 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:132
|
3549 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:132
|
3550 |
+
msgid "Words"
|
3551 |
+
msgstr "Palabras"
|
3552 |
+
|
3553 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:140
|
3554 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:154
|
3555 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:142
|
3556 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:156
|
3557 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:140
|
3558 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:154
|
3559 |
+
msgid "Min"
|
3560 |
+
msgstr "Min"
|
3561 |
+
|
3562 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:141
|
3563 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:155
|
3564 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:143
|
3565 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:157
|
3566 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:141
|
3567 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:155
|
3568 |
+
msgid "Minim value"
|
3569 |
+
msgstr "Valor Mínimo"
|
3570 |
+
|
3571 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:146
|
3572 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:160
|
3573 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:148
|
3574 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:162
|
3575 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:146
|
3576 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:160
|
3577 |
+
msgid "Max"
|
3578 |
+
msgstr "Max"
|
3579 |
+
|
3580 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:147
|
3581 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:161
|
3582 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:149
|
3583 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:163
|
3584 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:147
|
3585 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:161
|
3586 |
+
msgid "Maxim value"
|
3587 |
+
msgstr "Valor Máximo"
|
3588 |
+
|
3589 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:178
|
3590 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:180
|
3591 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:121
|
3592 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:137
|
3593 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:137
|
3594 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:114
|
3595 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:121
|
3596 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:178
|
3597 |
+
msgid "Instructions for Users"
|
3598 |
+
msgstr "Instrucciones para usuarios"
|
3599 |
+
|
3600 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:179
|
3601 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:181
|
3602 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:122
|
3603 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:138
|
3604 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:138
|
3605 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:115
|
3606 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:122
|
3607 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:179
|
3608 |
+
msgid "The users will see these instructions in the tooltip near the field"
|
3609 |
+
msgstr "Los usuarios verán estas instrucciones en el tooltip junto al campo"
|
3610 |
+
|
3611 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:331
|
3612 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:368
|
3613 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:230
|
3614 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:244
|
3615 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:244
|
3616 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:210
|
3617 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:217
|
3618 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:332
|
3619 |
+
msgid "The {label} field is required"
|
3620 |
+
msgstr "El campo {label} es requerido"
|
3621 |
+
|
3622 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:336
|
3623 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:337
|
3624 |
+
#, php-format
|
3625 |
+
msgid "The {label} field must contain minimum %d character"
|
3626 |
+
msgstr "El campo {label} debe contener mínimo %d caracter"
|
3627 |
+
|
3628 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:341
|
3629 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:342
|
3630 |
+
#, php-format
|
3631 |
+
msgid "The {label} field must contain minimum %d characters"
|
3632 |
+
msgstr "El campo {label} debe contener mínimo %d caracteres"
|
3633 |
+
|
3634 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:346
|
3635 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:347
|
3636 |
+
#, php-format
|
3637 |
+
msgid "The {label} field must contain maximum %d character"
|
3638 |
+
msgstr "El campo {label} debe contener máximo %d caracter"
|
3639 |
+
|
3640 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:351
|
3641 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:352
|
3642 |
+
#, php-format
|
3643 |
+
msgid "The {label} field must contain maximum %d characters"
|
3644 |
+
msgstr "El campo {label} debe contener máximo %d caracteres"
|
3645 |
+
|
3646 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:356
|
3647 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:357
|
3648 |
+
#, php-format
|
3649 |
+
msgid "The {label} field must contain minimum %d word"
|
3650 |
+
msgstr "El campo {label} debe contener mínimo %d palabra"
|
3651 |
+
|
3652 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:361
|
3653 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:362
|
3654 |
+
#, php-format
|
3655 |
+
msgid "The {label} field must contain minimum %d words"
|
3656 |
+
msgstr "El campo {label} debe contener mínimo %d palabras"
|
3657 |
+
|
3658 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:366
|
3659 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:367
|
3660 |
+
#, php-format
|
3661 |
+
msgid "The {label} field must contain maximum %d word"
|
3662 |
+
msgstr "El campo {label} debe contener máximo %d palabra"
|
3663 |
+
|
3664 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:371
|
3665 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:372
|
3666 |
+
#, php-format
|
3667 |
+
msgid "The {label} field must contain maximum %d words"
|
3668 |
+
msgstr "El campo {label} debe contener máximo %d palabras"
|
3669 |
+
|
3670 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:20
|
3671 |
+
msgid "Add a Number field"
|
3672 |
+
msgstr "Agregar campo numérico"
|
3673 |
+
|
3674 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:22
|
3675 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:50
|
3676 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:79
|
3677 |
+
msgid "Number"
|
3678 |
+
msgstr "Número"
|
3679 |
+
|
3680 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:129
|
3681 |
+
msgid "Set digits or values restrictions of this field"
|
3682 |
+
msgstr "Establecer dígitos o valores restringidos en este campo"
|
3683 |
+
|
3684 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:133
|
3685 |
+
msgid "Digits"
|
3686 |
+
msgstr "Digitos"
|
3687 |
+
|
3688 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:134
|
3689 |
+
msgid "Value"
|
3690 |
+
msgstr "Valores"
|
3691 |
+
|
3692 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:363
|
3693 |
+
msgid "The {label} field must be a valid number"
|
3694 |
+
msgstr "El campo {label} debe ser un número válido"
|
3695 |
+
|
3696 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:373
|
3697 |
+
#, php-format
|
3698 |
+
msgid "The {label} field must have minimum %d digit"
|
3699 |
+
msgstr "El campo {label} debe contener mínimo %d dígito"
|
3700 |
+
|
3701 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:378
|
3702 |
+
#, php-format
|
3703 |
+
msgid "The {label} field must have minimum %d digits"
|
3704 |
+
msgstr "El campo {label} debe contener mínimo %d dígitos"
|
3705 |
+
|
3706 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:383
|
3707 |
+
#, php-format
|
3708 |
+
msgid "The {label} field must have maximum %d digit"
|
3709 |
+
msgstr "El campo {label} debe contener máximo %d dígito"
|
3710 |
+
|
3711 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:388
|
3712 |
+
#, php-format
|
3713 |
+
msgid "The {label} field must have maximum %d digits"
|
3714 |
+
msgstr "El campo {label} debe contener máximo %d dígitos"
|
3715 |
+
|
3716 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:393
|
3717 |
+
#, php-format
|
3718 |
+
msgid "The {label} field minimum value must be %s"
|
3719 |
+
msgstr "El campo {label} debe ser valor mínimo de %s"
|
3720 |
+
|
3721 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:398
|
3722 |
+
#, php-format
|
3723 |
+
msgid "The {label} field maximum value must be %s"
|
3724 |
+
msgstr "El campo {label} debe ser valor máximo de %s"
|
3725 |
+
|
3726 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:18
|
3727 |
+
msgid "Add a Dropdown"
|
3728 |
+
msgstr "Agregar Lista (Dropdown)"
|
3729 |
+
|
3730 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:22
|
3731 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:49
|
3732 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:79
|
3733 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:164
|
3734 |
+
msgid "Dropdown"
|
3735 |
+
msgstr "Lista (Dropdown)"
|
3736 |
+
|
3737 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:100
|
3738 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:103
|
3739 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:103
|
3740 |
+
msgid "Choices"
|
3741 |
+
msgstr "Opciones"
|
3742 |
+
|
3743 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:101
|
3744 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:104
|
3745 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:104
|
3746 |
+
msgid "Add choice"
|
3747 |
+
msgstr "Agregar opción"
|
3748 |
+
|
3749 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:110
|
3750 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:113
|
3751 |
+
msgid "Randomize"
|
3752 |
+
msgstr "Aleatorio"
|
3753 |
+
|
3754 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:111
|
3755 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:114
|
3756 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:114
|
3757 |
+
msgid "Do you want choices to be displayed in random order?"
|
3758 |
+
msgstr "Quiere que las opciones sean mostradas en orden aleatorio?"
|
3759 |
+
|
3760 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:235
|
3761 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:249
|
3762 |
+
msgid "{label}: Submitted data contains not existing choice"
|
3763 |
+
msgstr "{label}: Datos enviados contienen opción inexistente"
|
3764 |
+
|
3765 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:38
|
3766 |
+
msgid "Edit Title"
|
3767 |
+
msgstr "Editar título"
|
3768 |
+
|
3769 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:39
|
3770 |
+
msgid "Edit Subtitle"
|
3771 |
+
msgstr "Editar Subtítulo"
|
3772 |
+
|
3773 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:57
|
3774 |
+
msgid "The title will be displayed on contact form header"
|
3775 |
+
msgstr "Este título es mostrado en el encabezado de formulario"
|
3776 |
+
|
3777 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:62
|
3778 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:7
|
3779 |
+
msgid "Subtitle"
|
3780 |
+
msgstr "Subtítulo"
|
3781 |
+
|
3782 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:63
|
3783 |
+
msgid "The form header subtitle text"
|
3784 |
+
msgstr "Subtítulo en encabezado de formulario"
|
3785 |
+
|
3786 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:18
|
3787 |
+
msgid "Add a Single Choice field"
|
3788 |
+
msgstr "Agregar un campo de elección única"
|
3789 |
+
|
3790 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:56
|
3791 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:56
|
3792 |
+
msgid "{x} More"
|
3793 |
+
msgstr "{x} Más"
|
3794 |
+
|
3795 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:113
|
3796 |
+
msgid "Randomize?"
|
3797 |
+
msgstr "Aleatorio?"
|
3798 |
+
|
3799 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:124
|
3800 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:124
|
3801 |
+
msgid "Field Layout"
|
3802 |
+
msgstr "Diseño de campo"
|
3803 |
+
|
3804 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:125
|
3805 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:125
|
3806 |
+
msgid "Select choice display layout"
|
3807 |
+
msgstr "Seleccione opción de diseño"
|
3808 |
+
|
3809 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:127
|
3810 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:127
|
3811 |
+
msgid "One column"
|
3812 |
+
msgstr "Una columna"
|
3813 |
+
|
3814 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:128
|
3815 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:128
|
3816 |
+
msgid "Two columns"
|
3817 |
+
msgstr "Dos columnas"
|
3818 |
+
|
3819 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:129
|
3820 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:129
|
3821 |
+
msgid "Three columns"
|
3822 |
+
msgstr "Tres columnas"
|
3823 |
+
|
3824 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:130
|
3825 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:130
|
3826 |
+
msgid "Side by side"
|
3827 |
+
msgstr "Lado a lado"
|
3828 |
+
|
3829 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:18
|
3830 |
+
msgid "Add a Multiple Choices field"
|
3831 |
+
msgstr "Agregar campo de elecciones múltiples"
|
3832 |
+
|
3833 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:249
|
3834 |
+
msgid "{label}: Submitted data contains not existing choices"
|
3835 |
+
msgstr "{label}: Datos enviados contienen opciones inexistentes"
|
3836 |
+
|
3837 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:18
|
3838 |
+
msgid "Add an Email field"
|
3839 |
+
msgstr "Agregar campo de Email"
|
3840 |
+
|
3841 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:22
|
3842 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:49
|
3843 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:79
|
3844 |
+
msgid "Email"
|
3845 |
+
msgstr "Email"
|
3846 |
+
|
3847 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:215
|
3848 |
+
msgid "The {label} field must contain a valid email"
|
3849 |
+
msgstr "Campo {label} debe contener una dirección de email válida"
|
3850 |
+
|
3851 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:18
|
3852 |
+
msgid "Add a Website field"
|
3853 |
+
msgstr "Agregar campo sitio web"
|
3854 |
+
|
3855 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:22
|
3856 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:49
|
3857 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:79
|
3858 |
+
msgid "Website"
|
3859 |
+
msgstr "Sitio Web"
|
3860 |
+
|
3861 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:222
|
3862 |
+
msgid "The {label} field must be a valid website name"
|
3863 |
+
msgstr "Campo {label} debe tener un sitio web válido"
|
3864 |
+
|
3865 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:18
|
3866 |
+
msgid "Add a Single Line Text"
|
3867 |
+
msgstr "Agregar campo de texto de una línea"
|
3868 |
+
|
3869 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:20
|
3870 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:47
|
3871 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:77
|
3872 |
+
msgid "Single Line Text"
|
3873 |
+
msgstr "Campo de Texto de una línea"
|
3874 |
+
|
3875 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:17
|
3876 |
+
msgid "Text for Homepage"
|
3877 |
+
msgstr "Texto para página de inicio"
|
3878 |
+
|
3879 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:18
|
3880 |
+
msgid "The homepage anchor will have this text"
|
3881 |
+
msgstr "La etiqueta de página de inicio tendrá este texto"
|
3882 |
+
|
3883 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:23
|
3884 |
+
msgid "Text for Blog Page"
|
3885 |
+
msgstr "Texto para página de blog"
|
3886 |
+
|
3887 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:24
|
3888 |
+
msgid ""
|
3889 |
+
"The blog page anchor will have this text. In case homepage will be set as "
|
3890 |
+
"blog page, will be taken the homepage text"
|
3891 |
+
msgstr "La etiqueta de página de blog tendrá este texto. En caso de que la página de inicio esté configurada como página de blog (entradas), tomará el texto de página de inicio"
|
3892 |
+
|
3893 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:29
|
3894 |
+
msgid "Text for 404 Page"
|
3895 |
+
msgstr "Texto para página 404"
|
3896 |
+
|
3897 |
+
#: ../framework/extensions/breadcrumbs/settings-options.php:30
|
3898 |
+
msgid "The 404 anchor will have this text"
|
3899 |
+
msgstr "La etiqueta de página de error 404 tendrá este texto"
|
3900 |
+
|
3901 |
+
#: ../framework/extensions/breadcrumbs/manifest.php:7
|
3902 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:108
|
3903 |
+
msgid "Breadcrumbs"
|
3904 |
+
msgstr "Migas de pan (Breadcrumbs)"
|
3905 |
+
|
3906 |
+
#: ../framework/extensions/breadcrumbs/manifest.php:9
|
3907 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:109
|
3908 |
+
msgid ""
|
3909 |
+
"Creates a simplified navigation menu for the pages that can be placed "
|
3910 |
+
"anywhere in the theme. This will make navigating the website much easier."
|
3911 |
+
msgstr "Crea un menu de navegación simplificado para páginas que puede ser ubicado en cualquier lugar de un tema. Esto conlleva a una navegación mas sencilla."
|
3912 |
+
|
3913 |
+
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:11
|
3914 |
+
msgid "404 Not found"
|
3915 |
+
msgstr "404 No se encuentra"
|
3916 |
+
|
3917 |
+
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:124
|
3918 |
+
msgid "Searching for:"
|
3919 |
+
msgstr "Búsqueda para: "
|
3920 |
+
|
3921 |
+
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:248
|
3922 |
+
#: ../framework/includes/option-types/multi-select/class-fw-option-type-multi-select.php:472
|
3923 |
+
msgid "No title"
|
3924 |
+
msgstr "(sin título)"
|
3925 |
+
|
3926 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:89
|
3927 |
+
msgid "Create a event item"
|
3928 |
+
msgstr "Crear un item evento"
|
3929 |
+
|
3930 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:186
|
3931 |
+
msgid "Date"
|
3932 |
+
msgstr "Fecha"
|
3933 |
+
|
3934 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:204
|
3935 |
+
msgid "Event Options"
|
3936 |
+
msgstr "Opciones de eventp"
|
3937 |
+
|
3938 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:310
|
3939 |
+
msgid "Multi Interval Event"
|
3940 |
+
msgstr "Evento Multi Intervalo"
|
3941 |
+
|
3942 |
+
#: ../framework/extensions/events/manifest.php:8
|
3943 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:181
|
3944 |
+
msgid ""
|
3945 |
+
"This extension adds a fully fledged Events module to your theme. It comes "
|
3946 |
+
"with built in pages that contain a calendar where events can be added."
|
3947 |
+
msgstr "Esta extensión añade un completo módulo para gestionar Eventos en su tema. Viene con páginas elaboradas que contienen calendario en donde cada evento es agregado."
|
3948 |
+
|
3949 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:81
|
3950 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:189
|
3951 |
+
msgid "Event Categories"
|
3952 |
+
msgstr "Categorías de Evento"
|
3953 |
+
|
3954 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:82
|
3955 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:190
|
3956 |
+
msgid "Select an event category"
|
3957 |
+
msgstr "Seleccione una categoría de evento"
|
3958 |
+
|
3959 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:84
|
3960 |
+
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:192
|
3961 |
+
msgid "All Events"
|
3962 |
+
msgstr "Todos Los Eventos"
|
3963 |
+
|
3964 |
+
#: ../framework/extensions/events/extensions/events-tags/manifest.php:7
|
3965 |
+
msgid "Event-search-tags"
|
3966 |
+
msgstr "buscar-etiquetas-evento"
|
3967 |
+
|
3968 |
+
#: ../framework/extensions/events/extensions/events-tags/manifest.php:8
|
3969 |
+
msgid "Connect extension event with shortcodes map & calendar"
|
3970 |
+
msgstr "Conectar extensión con shortcode mapa y calendario"
|
3971 |
+
|
3972 |
+
#: ../framework/extensions/events/views/content.php:16
|
3973 |
+
msgid "Google Calendar"
|
3974 |
+
msgstr "Calendario Google"
|
3975 |
+
|
3976 |
+
#: ../framework/extensions/events/views/content.php:17
|
3977 |
+
msgid "Ical Export"
|
3978 |
+
msgstr "Exportar Ical"
|
3979 |
+
|
3980 |
+
#: ../framework/extensions/events/views/content.php:20
|
3981 |
+
msgid "Start"
|
3982 |
+
msgstr "Comienza"
|
3983 |
+
|
3984 |
+
#: ../framework/extensions/events/views/content.php:21
|
3985 |
+
msgid "End"
|
3986 |
+
msgstr "Finaliza"
|
3987 |
+
|
3988 |
+
#: ../framework/extensions/events/views/content.php:25
|
3989 |
+
msgid "Speakers"
|
3990 |
+
msgstr "Presentantes"
|
3991 |
+
|
3992 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:37
|
3993 |
+
msgid "Event Location"
|
3994 |
+
msgstr "Ubicación de evento"
|
3995 |
+
|
3996 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:39
|
3997 |
+
msgid "Where does the event take place?"
|
3998 |
+
msgstr "Dónde tendrá lugar el evento?"
|
3999 |
+
|
4000 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:43
|
4001 |
+
msgid "All Day Event?"
|
4002 |
+
msgstr "Evento todo el día?"
|
4003 |
+
|
4004 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:44
|
4005 |
+
msgid "Is your event an all day event?"
|
4006 |
+
msgstr "Su evento dura todo el día?"
|
4007 |
+
|
4008 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:67
|
4009 |
+
msgid "Start & End of Event"
|
4010 |
+
msgstr "Comienzo y Fin de Evento"
|
4011 |
+
|
4012 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:68
|
4013 |
+
msgid "Set start and end events datetime"
|
4014 |
+
msgstr "Establecer fecha comienzo y fin de evento"
|
4015 |
+
|
4016 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:97
|
4017 |
+
msgid "Associated User"
|
4018 |
+
msgstr "Usuario asociado"
|
4019 |
+
|
4020 |
+
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:99
|
4021 |
+
msgid "Link this event to a specific user"
|
4022 |
+
msgstr "Asociar este evento a usuario específico"
|
4023 |
+
|
4024 |
+
#: ../framework/extensions/sidebars/manifest.php:7
|
4025 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:132
|
4026 |
+
msgid "Sidebars"
|
4027 |
+
msgstr "Barras Laterales (Sidebars)"
|
4028 |
+
|
4029 |
+
#: ../framework/extensions/sidebars/manifest.php:9
|
4030 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:133
|
4031 |
+
msgid ""
|
4032 |
+
"Brings a new layer of customization freedom to your website by letting you "
|
4033 |
+
"add more than one sidebar to a page, or different sidebars on different "
|
4034 |
+
"pages."
|
4035 |
+
msgstr "Aporta una nueva capa de personalización libre para su sitio web permitiendo agregar mas de una barra lateral (Sidebar) a su página o diferentes barras laterales en diferentes páginas."
|
4036 |
+
|
4037 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:131
|
4038 |
+
msgid "No matches found"
|
4039 |
+
msgstr "No hay resultados coincidentes"
|
4040 |
+
|
4041 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:139
|
4042 |
+
msgid "Do you realy want to change without saving?"
|
4043 |
+
msgstr "Realmente quiere realizar cambios sin guardar?"
|
4044 |
+
|
4045 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:141
|
4046 |
+
msgid "Missing ID. Check that you provided all mandatory data."
|
4047 |
+
msgstr "ID Incorrecto. Revise que ha ingresado todos los datos requeridos"
|
4048 |
+
|
4049 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:142
|
4050 |
+
#: ../framework/extensions/sidebars/views/backend-main-view.php:27
|
4051 |
+
msgid "Created"
|
4052 |
+
msgstr "Creado"
|
4053 |
+
|
4054 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:143
|
4055 |
+
msgid "(For Grouped Pages)"
|
4056 |
+
msgstr "(Para Páginas Agrupadas)"
|
4057 |
+
|
4058 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:144
|
4059 |
+
msgid "(For Specific Pages)"
|
4060 |
+
msgstr "(Para Páginas Específicas)"
|
4061 |
+
|
4062 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:145
|
4063 |
+
msgid "No sidebar name specified"
|
4064 |
+
msgstr "Nombre de barra lateral no especificado"
|
4065 |
+
|
4066 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:146
|
4067 |
+
msgid "Sidebar Name"
|
4068 |
+
msgstr "Nombre de barra lateral"
|
4069 |
+
|
4070 |
+
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:147
|
4071 |
+
msgid "New Sidebar"
|
4072 |
+
msgstr "Nueva barra lateral"
|
4073 |
+
|
4074 |
+
#: ../framework/extensions/sidebars/views/frontend-no-widgets.php:5
|
4075 |
+
msgid "Widgets Page"
|
4076 |
+
msgstr "Página de widgets"
|
4077 |
+
|
4078 |
+
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:5
|
4079 |
+
msgid "For specific"
|
4080 |
+
msgstr "Para específica"
|
4081 |
+
|
4082 |
+
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:23
|
4083 |
+
msgid "Type to search ..."
|
4084 |
+
msgstr "Escriba aquí para buscar ..."
|
4085 |
+
|
4086 |
+
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:30
|
4087 |
+
msgid "Search for a specific page you want to set a sidebar for"
|
4088 |
+
msgstr "Búsqueda para una página específica para la cual quiere establecer una barra lateral"
|
4089 |
+
|
4090 |
+
#: ../framework/extensions/sidebars/views/backend-tab-grouped.php:6
|
4091 |
+
msgid "For group"
|
4092 |
+
msgstr "Para un grupo"
|
4093 |
+
|
4094 |
+
#: ../framework/extensions/sidebars/views/backend-tab-grouped.php:25
|
4095 |
+
msgid "Select group of pages you want to set a sidebar for."
|
4096 |
+
msgstr "Seleccione un grupo de páginas para las cuales quiere establecer su barra lateral."
|
4097 |
+
|
4098 |
+
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:18
|
4099 |
+
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:60
|
4100 |
+
msgid "Choose the position for your sidebar(s)"
|
4101 |
+
msgstr "Escoja la posición de su(s) barra(s) lateral(es)"
|
4102 |
+
|
4103 |
+
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:43
|
4104 |
+
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:40
|
4105 |
+
msgid "Add Sidebar"
|
4106 |
+
msgstr "Agregar Barra Lateral"
|
4107 |
+
|
4108 |
+
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:4
|
4109 |
+
msgid "Sidebars for"
|
4110 |
+
msgstr "Barras Laterales para"
|
4111 |
+
|
4112 |
+
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4113 |
+
msgid "For Specific Page"
|
4114 |
+
msgstr "Para página específica"
|
4115 |
+
|
4116 |
+
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4117 |
+
msgid "For Grouped Page"
|
4118 |
+
msgstr "Para grupo de páginas"
|
4119 |
+
|
4120 |
+
#: ../framework/extensions/sidebars/views/backend-main-view.php:11
|
4121 |
+
#: ../framework/extensions/sidebars/views/backend-main-view.php:15
|
4122 |
+
msgid "Manage Sidebars"
|
4123 |
+
msgstr "Gestionar Barras Laterales"
|
4124 |
+
|
4125 |
+
#: ../framework/extensions/sidebars/views/backend-main-view.php:18
|
4126 |
+
msgid ""
|
4127 |
+
"Use this section to create and/or set different sidebar(s) for different "
|
4128 |
+
"page(s)"
|
4129 |
+
msgstr "Utilice esta sección para crear y/o establecer diferentes barras laterales para diferentes páginas"
|
4130 |
+
|
4131 |
+
#: ../framework/extensions/sidebars/views/backend-main-view.php:24
|
4132 |
+
msgid "For Grouped Pages"
|
4133 |
+
msgstr "Para grupo de páginas"
|
4134 |
+
|
4135 |
+
#: ../framework/extensions/sidebars/views/backend-main-view.php:25
|
4136 |
+
msgid "For Specific Pages"
|
4137 |
+
msgstr "Para página específica"
|
4138 |
+
|
4139 |
+
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:32
|
4140 |
+
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:121
|
4141 |
+
msgid "Select sidebar you wish to replace."
|
4142 |
+
msgstr "Seleccione barra lateral que quiere reemplazar"
|
4143 |
+
|
4144 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:241
|
4145 |
+
msgid "No sidebar name specified."
|
4146 |
+
msgstr "Nombre de barra lateral no especificado"
|
4147 |
+
|
4148 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:270
|
4149 |
+
msgid "Dynamic sidebar doesn't exixt"
|
4150 |
+
msgstr "Barra lateral dinámica no existe"
|
4151 |
+
|
4152 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:277
|
4153 |
+
msgid ""
|
4154 |
+
"The placeholder can't be deleted because it is used in one of sidebars "
|
4155 |
+
"below."
|
4156 |
+
msgstr "El marcador no puede ser eliminado porque es utilizado en una de las barras laterales de abajo."
|
4157 |
+
|
4158 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:280
|
4159 |
+
msgid ""
|
4160 |
+
"Please replace it first so that you will not have visual gaps in your "
|
4161 |
+
"layout."
|
4162 |
+
msgstr "Por favor primero reemplace y de este modo usted no tendrá deficiencias visuales en su diseño."
|
4163 |
+
|
4164 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:293
|
4165 |
+
msgid "Successfully removed"
|
4166 |
+
msgstr "Eliminado exitosamente"
|
4167 |
+
|
4168 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:543
|
4169 |
+
msgid "Default for all pages"
|
4170 |
+
msgstr "Por defecto para todas las páginas"
|
4171 |
+
|
4172 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:613
|
4173 |
+
msgid " (no title)"
|
4174 |
+
msgstr "(sin título)"
|
4175 |
+
|
4176 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:780
|
4177 |
+
msgid "Error: Type or sub_type error"
|
4178 |
+
msgstr "Error: Error en tipo o subtipo"
|
4179 |
+
|
4180 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:838
|
4181 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:869
|
4182 |
+
msgid "Error: Sidebars not set"
|
4183 |
+
msgstr "Error: Barras laterales no establecidas"
|
4184 |
+
|
4185 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:865
|
4186 |
+
msgid "Error: Position doesn't exists. Please check config file."
|
4187 |
+
msgstr "Error: Posición inexistente. Por favor revise el archivo de configuración."
|
4188 |
+
|
4189 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:55
|
4190 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:253
|
4191 |
+
msgid "Page"
|
4192 |
+
msgstr "Página"
|
4193 |
+
|
4194 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:56
|
4195 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:153
|
4196 |
+
msgid "Pages"
|
4197 |
+
msgstr "Páginas"
|
4198 |
+
|
4199 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:61
|
4200 |
+
msgid "Portfolio Project"
|
4201 |
+
msgstr "Proyecto en Portafolios"
|
4202 |
+
|
4203 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:62
|
4204 |
+
msgid "Portfolio Projects"
|
4205 |
+
msgstr "Proyectos en Portafolios"
|
4206 |
+
|
4207 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:73
|
4208 |
+
msgid "Blog Category"
|
4209 |
+
msgstr "Categoría del Blog"
|
4210 |
+
|
4211 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:79
|
4212 |
+
msgid "Portfolio Category"
|
4213 |
+
msgstr "Categoría de Portafolios"
|
4214 |
+
|
4215 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:85
|
4216 |
+
msgid "Home Page"
|
4217 |
+
msgstr "Página de Inicio"
|
4218 |
+
|
4219 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:90
|
4220 |
+
msgid "Search Page"
|
4221 |
+
msgstr "Página de Búsqueda"
|
4222 |
+
|
4223 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:95
|
4224 |
+
msgid "404 Page"
|
4225 |
+
msgstr "Página 404"
|
4226 |
+
|
4227 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:100
|
4228 |
+
msgid "Author Page"
|
4229 |
+
msgstr "Página de Autor"
|
4230 |
+
|
4231 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:105
|
4232 |
+
msgid "Archive Page"
|
4233 |
+
msgstr "Página de Archivo"
|
4234 |
+
|
4235 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:149
|
4236 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:308
|
4237 |
+
msgid "All Pages"
|
4238 |
+
msgstr "Todas las Páginas"
|
4239 |
+
|
4240 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:184
|
4241 |
+
msgid "Others"
|
4242 |
+
msgstr "Otras"
|
4243 |
+
|
4244 |
+
#: ../framework/extensions/megamenu/manifest.php:7
|
4245 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:64
|
4246 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:60
|
4247 |
+
msgid "Mega Menu"
|
4248 |
+
msgstr "Mega Menú"
|
4249 |
+
|
4250 |
+
#: ../framework/extensions/megamenu/manifest.php:8
|
4251 |
+
#: ../framework/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 "La extensión Mega Menú añade un menú desplegable fácil de utilizar que le permitirá crear de manera fácil configuraciones altamente personalizadas de menú."
|
4256 |
+
|
4257 |
+
#: ../framework/extensions/megamenu/class-fw-extension-megamenu.php:58
|
4258 |
+
msgid "Select Icon"
|
4259 |
+
msgstr "Seleccionar Icono"
|
4260 |
+
|
4261 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:44
|
4262 |
+
#, php-format
|
4263 |
+
msgid "%s (Invalid)"
|
4264 |
+
msgstr "%s (No válido)"
|
4265 |
+
|
4266 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:48
|
4267 |
+
#, php-format
|
4268 |
+
msgid "%s (Pending)"
|
4269 |
+
msgstr "%s (Pendiente)"
|
4270 |
+
|
4271 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:61
|
4272 |
+
msgid "sub item"
|
4273 |
+
msgstr "sub item"
|
4274 |
+
|
4275 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:97
|
4276 |
+
msgid "Edit Menu Item"
|
4277 |
+
msgstr "Editar Item de Menú"
|
4278 |
+
|
4279 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:108
|
4280 |
+
msgid "URL"
|
4281 |
+
msgstr "URL"
|
4282 |
+
|
4283 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:117
|
4284 |
+
msgid "Navigation Label"
|
4285 |
+
msgstr "Etiqueta de navegación"
|
4286 |
+
|
4287 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:125
|
4288 |
+
msgid "Title Attribute"
|
4289 |
+
msgstr "Atributo de título"
|
4290 |
+
|
4291 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:134
|
4292 |
+
msgid "Open link in a new window/tab"
|
4293 |
+
msgstr "Abrir link en nueva ventana/pestaña"
|
4294 |
+
|
4295 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:141
|
4296 |
+
msgid "CSS Classes (optional)"
|
4297 |
+
msgstr "Clases CSS (Opcional)"
|
4298 |
+
|
4299 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:149
|
4300 |
+
msgid "Link Relationship (XFN)"
|
4301 |
+
msgstr "Relación del enlace (XFN)"
|
4302 |
+
|
4303 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:157
|
4304 |
+
msgid "Mega Menu Column Title"
|
4305 |
+
msgstr "Título de Columna Mega Menú"
|
4306 |
+
|
4307 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:158
|
4308 |
+
msgid "Item Title"
|
4309 |
+
msgstr "Título de Item"
|
4310 |
+
|
4311 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:166
|
4312 |
+
msgid "Hide"
|
4313 |
+
msgstr "Ocultar"
|
4314 |
+
|
4315 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:172
|
4316 |
+
msgid "This column should start a new row"
|
4317 |
+
msgstr "Esta columna debe comenzar en una nueva fila"
|
4318 |
+
|
4319 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:178
|
4320 |
+
msgid "Description (HTML)"
|
4321 |
+
msgstr "Descripción (HTML)"
|
4322 |
+
|
4323 |
+
#: ../framework/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 "La descripción es mostrada en el menú si el actual tema tiene soporte para esta."
|
4328 |
+
|
4329 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:190
|
4330 |
+
msgid "Add Icon"
|
4331 |
+
msgstr "Agregar Icono"
|
4332 |
+
|
4333 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:191
|
4334 |
+
msgid "Edit Icon"
|
4335 |
+
msgstr "Editar Icono"
|
4336 |
+
|
4337 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:205
|
4338 |
+
msgid "Use as Mega Menu"
|
4339 |
+
msgstr "Utilizar como Mega Menú"
|
4340 |
+
|
4341 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:211
|
4342 |
+
msgid "Move"
|
4343 |
+
msgstr "Mover"
|
4344 |
+
|
4345 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:212
|
4346 |
+
msgid "Up one"
|
4347 |
+
msgstr "Uno arriba"
|
4348 |
+
|
4349 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:213
|
4350 |
+
msgid "Down one"
|
4351 |
+
msgstr "Uno abajo"
|
4352 |
+
|
4353 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:216
|
4354 |
+
msgid "To the top"
|
4355 |
+
msgstr "Al principio"
|
4356 |
+
|
4357 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:225
|
4358 |
+
#, php-format
|
4359 |
+
msgid "Original: %s"
|
4360 |
+
msgstr "Original: %s"
|
4361 |
+
|
4362 |
+
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:239
|
4363 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:60
|
4364 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2282
|
4365 |
+
msgid "Cancel"
|
4366 |
+
msgstr "Cancelar"
|
4367 |
+
|
4368 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:299
|
4369 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:366
|
4370 |
+
msgid "File not specified"
|
4371 |
+
msgstr "Archivo no especificado"
|
4372 |
+
|
4373 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:399
|
4374 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:400
|
4375 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:156
|
4376 |
+
msgid "Backup"
|
4377 |
+
msgstr "Respaldar"
|
4378 |
+
|
4379 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:554
|
4380 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:568
|
4381 |
+
msgid "Access Denied"
|
4382 |
+
msgstr "Acceso Denegado"
|
4383 |
+
|
4384 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:561
|
4385 |
+
msgid "Archive not found"
|
4386 |
+
msgstr "Archivo no encontrado"
|
4387 |
+
|
4388 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:575
|
4389 |
+
#: ../framework/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 "Ha fallado abrir el archivo"
|
4392 |
+
|
4393 |
+
#: ../framework/extensions/backups/helpers.php:37
|
4394 |
+
msgid "Invalid JSON response"
|
4395 |
+
msgstr "Respuesta JSON no válida"
|
4396 |
+
|
4397 |
+
#: ../framework/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 "Conexiones de bucle invertido HTTP no están activadas en este servidor. \nSi necesita ponerse en contacto con su proveedor de alojamiento web, dígales que cuando PHP intenta conectarse de nuevo al sitio en la URL `{url}` este obtiene el error `{error}`. Puede haber un problema con la configuración del servidor (Ej: problemas en DNS local, mod_security, etc) previniendo que las conecciones funcionen apropiadamente."
|
4405 |
+
|
4406 |
+
#: ../framework/extensions/backups/helpers.php:123
|
4407 |
+
#: ../framework/extensions/backups/helpers.php:145
|
4408 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:363
|
4409 |
+
#: ../framework/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 "Falla al crear directorio: %s"
|
4413 |
+
|
4414 |
+
#: ../framework/extensions/backups/helpers.php:152
|
4415 |
+
#: ../framework/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 "Falla al copiar: %s"
|
4419 |
+
|
4420 |
+
#: ../framework/extensions/backups/manifest.php:7
|
4421 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:168
|
4422 |
+
msgid "Backup & Demo Content"
|
4423 |
+
msgstr "Respaldo & Contenido Demostrativo"
|
4424 |
+
|
4425 |
+
#: ../framework/extensions/backups/manifest.php:9
|
4426 |
+
#: ../framework/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 "Esta extensión le permite crear respaldos programados automáticamente, importar contenido demostrativo o incluso crear un archivo de contenido demostrativo para propósitos de migración."
|
4431 |
+
|
4432 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:97
|
4433 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:98
|
4434 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:385
|
4435 |
+
msgid "Demo Content Install"
|
4436 |
+
msgstr "Instalar Contenido Demostrativo"
|
4437 |
+
|
4438 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:282
|
4439 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:329
|
4440 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:362
|
4441 |
+
msgid "Forbidden"
|
4442 |
+
msgstr "Prohibido"
|
4443 |
+
|
4444 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:342
|
4445 |
+
msgid "Invalid demo"
|
4446 |
+
msgstr "Demostración Inválida"
|
4447 |
+
|
4448 |
+
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:349
|
4449 |
+
msgid "A content install is currently running"
|
4450 |
+
msgstr "Un contenido de instalación se está ejecutando actualmente"
|
4451 |
+
|
4452 |
+
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:28
|
4453 |
+
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:39
|
4454 |
+
#: ../framework/extensions/backups/views/page.php:17
|
4455 |
+
#: ../framework/extensions/backups/views/page.php:28
|
4456 |
+
msgid "Important"
|
4457 |
+
msgstr "Importante"
|
4458 |
+
|
4459 |
+
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:30
|
4460 |
+
#: ../framework/extensions/backups/views/page.php:19
|
4461 |
+
#, php-format
|
4462 |
+
msgid "You need to activate %s."
|
4463 |
+
msgstr "Usted necesita activar %s."
|
4464 |
+
|
4465 |
+
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:31
|
4466 |
+
#: ../framework/extensions/backups/views/page.php:20
|
4467 |
+
msgid "zip extension"
|
4468 |
+
msgstr "extensión zip"
|
4469 |
+
|
4470 |
+
#: ../framework/extensions/backups/views/page.php:70
|
4471 |
+
msgid "Archives"
|
4472 |
+
msgstr "Archivos"
|
4473 |
+
|
4474 |
+
#: ../framework/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4475 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:76
|
4476 |
+
msgid "Full Backup"
|
4477 |
+
msgstr "Respaldo Total"
|
4478 |
+
|
4479 |
+
#: ../framework/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4480 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:85
|
4481 |
+
msgid "Content Backup"
|
4482 |
+
msgstr "Respaldo de Contenido"
|
4483 |
+
|
4484 |
+
#: ../framework/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 "Advertencia! \nUsted está eliminando un respaldo, este se perderá completamente. \nEstá seguro (a)?"
|
4490 |
+
|
4491 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:16
|
4492 |
+
msgid "Interval"
|
4493 |
+
msgstr "Intervalo"
|
4494 |
+
|
4495 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:20
|
4496 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:180
|
4497 |
+
msgid "Disabled"
|
4498 |
+
msgstr "Deshabilitado"
|
4499 |
+
|
4500 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:25
|
4501 |
+
msgid "Select how often do you want to backup your website."
|
4502 |
+
msgstr "Seleccione la frecuencia con qué quiere hacer copias de seguridad de su sitio web."
|
4503 |
+
|
4504 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:32
|
4505 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:45
|
4506 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:58
|
4507 |
+
msgid "Age Limit"
|
4508 |
+
msgstr "Límite de Antigüedad"
|
4509 |
+
|
4510 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:33
|
4511 |
+
msgid "Age limit of backups in months"
|
4512 |
+
msgstr "Límite de Antigüedad de respaldo en meses"
|
4513 |
+
|
4514 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:46
|
4515 |
+
msgid "Age limit of backups in weeks"
|
4516 |
+
msgstr "Límite de Antigüedad de respaldo en semanas"
|
4517 |
+
|
4518 |
+
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:59
|
4519 |
+
msgid "Age limit of backups in days"
|
4520 |
+
msgstr "Límite de Antigüedad de respaldo en días"
|
4521 |
+
|
4522 |
+
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:186
|
4523 |
+
msgid "Backup Schedule"
|
4524 |
+
msgstr "Respaldo Programado"
|
4525 |
+
|
4526 |
+
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:288
|
4527 |
+
msgid "Once Weekly"
|
4528 |
+
msgstr "Una vez a la semana"
|
4529 |
+
|
4530 |
+
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:292
|
4531 |
+
msgid "Once a month"
|
4532 |
+
msgstr "Una vez al mes"
|
4533 |
+
|
4534 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:139
|
4535 |
+
msgid "undefined"
|
4536 |
+
msgstr "indefinido"
|
4537 |
+
|
4538 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:279
|
4539 |
+
msgid "Task type not registered"
|
4540 |
+
msgstr "Tipo de tarea no registrada"
|
4541 |
+
|
4542 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:286
|
4543 |
+
msgid "Execution stopped (next step did not started)"
|
4544 |
+
msgstr "Ejecución detenida (siguiente paso no inicia)"
|
4545 |
+
|
4546 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:306
|
4547 |
+
msgid "Timed out"
|
4548 |
+
msgstr "Se agotó el tiempo"
|
4549 |
+
|
4550 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:366
|
4551 |
+
msgid "Invalid execution end time"
|
4552 |
+
msgstr "Tiempo del fin de ejecución no válido"
|
4553 |
+
|
4554 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:537
|
4555 |
+
msgid "Invalid execution result"
|
4556 |
+
msgstr "Resultado de la ejecución no válido"
|
4557 |
+
|
4558 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:639
|
4559 |
+
msgid "Invalid token"
|
4560 |
+
msgstr "Token inválido"
|
4561 |
+
|
4562 |
+
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:658
|
4563 |
+
msgid "Invalid tasks hash"
|
4564 |
+
msgstr "Hash de tareas inválido"
|
4565 |
+
|
4566 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-restore.php:9
|
4567 |
+
msgid "Image Sizes Restore"
|
4568 |
+
msgstr "Restablecer Tamaños de Imagen"
|
4569 |
+
|
4570 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:12
|
4571 |
+
msgid "Archive Unzip"
|
4572 |
+
msgstr "Descomprimir Archivo"
|
4573 |
+
|
4574 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:39
|
4575 |
+
msgid "Zip file not specified"
|
4576 |
+
msgstr "Archivo zip no especificado"
|
4577 |
+
|
4578 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:47
|
4579 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:50
|
4580 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:49
|
4581 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:114
|
4582 |
+
msgid "Destination dir not specified"
|
4583 |
+
msgstr "Directorio de destino no especificado"
|
4584 |
+
|
4585 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:56
|
4586 |
+
msgid "Destination dir is not empty"
|
4587 |
+
msgstr "Directorio de destino no está vacío"
|
4588 |
+
|
4589 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:63
|
4590 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:59
|
4591 |
+
#: ../framework/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 "Falta la extensión zip"
|
4594 |
+
|
4595 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:71
|
4596 |
+
#: ../framework/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 "No es posible abrir zip (Código de error: %s)"
|
4600 |
+
|
4601 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:38
|
4602 |
+
msgid "Database export"
|
4603 |
+
msgstr "Exportar Base de datos"
|
4604 |
+
|
4605 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:71
|
4606 |
+
msgid "Database table disappeared"
|
4607 |
+
msgstr "Tabla de la base desaparecida"
|
4608 |
+
|
4609 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:91
|
4610 |
+
msgid "Cannot create file"
|
4611 |
+
msgstr "No es posible crear archivo"
|
4612 |
+
|
4613 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:97
|
4614 |
+
msgid "Cannot reopen file"
|
4615 |
+
msgstr "No es posible re-abrir archivo"
|
4616 |
+
|
4617 |
+
#: ../framework/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 "No es posible exportar sql CREATE TABLE"
|
4620 |
+
|
4621 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:211
|
4622 |
+
#: ../framework/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 "No es posible obtener la siguiente tabla de la base de datos"
|
4625 |
+
|
4626 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:9
|
4627 |
+
msgid "Files Restore"
|
4628 |
+
msgstr "Restaurar Archivos"
|
4629 |
+
|
4630 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:32
|
4631 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:41
|
4632 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:45
|
4633 |
+
msgid "Source dir not specified"
|
4634 |
+
msgstr "Directorio de origen no especificado"
|
4635 |
+
|
4636 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:39
|
4637 |
+
msgid "Invalid source dir"
|
4638 |
+
msgstr "Directorio de origen no válido"
|
4639 |
+
|
4640 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:46
|
4641 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:25
|
4642 |
+
msgid "Source dirs not specified"
|
4643 |
+
msgstr "Directorios de origen no especificados"
|
4644 |
+
|
4645 |
+
#: ../framework/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 "Sin acceso al sistema de archivos, se requieren credenciales"
|
4648 |
+
|
4649 |
+
#: ../framework/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 "Sin acceso al sistema de archivos, credenciales inválidas"
|
4652 |
+
|
4653 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:126
|
4654 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:135
|
4655 |
+
msgid "Filesystem init failed"
|
4656 |
+
msgstr "Inicio del sistema de archivos incorrecto"
|
4657 |
+
|
4658 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:192
|
4659 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:317
|
4660 |
+
#: ../framework/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 "No se puede convertir ruta del sistema de archivo: %s"
|
4664 |
+
|
4665 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:197
|
4666 |
+
#: ../framework/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 "Falla al listar directorio: %s"
|
4670 |
+
|
4671 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:227
|
4672 |
+
#: ../framework/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 "Falla al remover directorio: %s"
|
4676 |
+
|
4677 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:234
|
4678 |
+
#: ../framework/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 "Falla al remover archivo: %s"
|
4682 |
+
|
4683 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:376
|
4684 |
+
#: ../framework/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 "Falla al copiar archivo: %s"
|
4688 |
+
|
4689 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:12
|
4690 |
+
msgid "Archive Zip"
|
4691 |
+
msgstr "Archivo Zip"
|
4692 |
+
|
4693 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:97
|
4694 |
+
msgid "Cannot close the zip file"
|
4695 |
+
msgstr "No es posible cerrar archivo zip"
|
4696 |
+
|
4697 |
+
#: ../framework/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 "No es posible mover zip a directorio de destino"
|
4700 |
+
|
4701 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:9
|
4702 |
+
msgid "Files Export"
|
4703 |
+
msgstr "Exportar Archivos"
|
4704 |
+
|
4705 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:33
|
4706 |
+
msgid "Destination not specified"
|
4707 |
+
msgstr "Destino no especificado"
|
4708 |
+
|
4709 |
+
#: ../framework/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 "Directorio de origen %s está vacío"
|
4713 |
+
|
4714 |
+
#: ../framework/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 "Falla al obtener chmod del directorio"
|
4717 |
+
|
4718 |
+
#: ../framework/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 "Falla al crear directorio de destino"
|
4721 |
+
|
4722 |
+
#: ../framework/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 "Falla al restablecer la lista del directorio: %s"
|
4726 |
+
|
4727 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:12
|
4728 |
+
msgid "Database restore"
|
4729 |
+
msgstr "Restaurar Base de Datos"
|
4730 |
+
|
4731 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:63
|
4732 |
+
msgid "Database file not found"
|
4733 |
+
msgstr "Archivo de base de datos no encontrado"
|
4734 |
+
|
4735 |
+
#: ../framework/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 "No es posible colocar la tabla temporal: %s"
|
4739 |
+
|
4740 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:129
|
4741 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:285
|
4742 |
+
msgid "Cannot open db file"
|
4743 |
+
msgstr "No es posible abrir archivo de base de datos"
|
4744 |
+
|
4745 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:138
|
4746 |
+
#: ../framework/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 "No es posible mover cursor en archivo de base de datos"
|
4749 |
+
|
4750 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:154
|
4751 |
+
#: ../framework/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 "Falla al decodificar línea %d del archivo de base de datos."
|
4755 |
+
|
4756 |
+
#: ../framework/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 "No es posible leer línea %d del archivo de base de datos"
|
4760 |
+
|
4761 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:195
|
4762 |
+
msgid "Required params not found"
|
4763 |
+
msgstr "Parámetros requeridos no encontrados"
|
4764 |
+
|
4765 |
+
#: ../framework/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 "No es posible realizar la restauración total de base de datos porque al respaldo le faltan algunas tablas"
|
4768 |
+
|
4769 |
+
#: ../framework/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 "Falla al colocar tabla tmp %s"
|
4773 |
+
|
4774 |
+
#: ../framework/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 "Falla al crear tabla tmp %s"
|
4778 |
+
|
4779 |
+
#: ../framework/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 "Intento de insertar datos en tabla que no se importó %s"
|
4783 |
+
|
4784 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:606
|
4785 |
+
#: ../framework/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 "Falló insertar fila de línea %d"
|
4789 |
+
|
4790 |
+
#: ../framework/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 "Tipo de json %s no válido en archivo de base de datos"
|
4794 |
+
|
4795 |
+
#: ../framework/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 "No es posible leer línea de archivo de base de datos"
|
4798 |
+
|
4799 |
+
#: ../framework/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 "Falla al restaurar la etapa opciones de mantenimiento"
|
4802 |
+
|
4803 |
+
#: ../framework/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 "Falla al mantener la opción: %s"
|
4807 |
+
|
4808 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:774
|
4809 |
+
msgid "Tables drop failed"
|
4810 |
+
msgstr "Colocar tablas ha fallado"
|
4811 |
+
|
4812 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:787
|
4813 |
+
msgid "Tables rename failed."
|
4814 |
+
msgstr "Renombrar tablas ha fallado"
|
4815 |
+
|
4816 |
+
#: ../framework/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 "Sub tarea %s no válida"
|
4820 |
+
|
4821 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:12
|
4822 |
+
msgid "Directory Cleanup"
|
4823 |
+
msgstr "Limpieza de Directorio"
|
4824 |
+
|
4825 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:21
|
4826 |
+
msgid "Dir not specified"
|
4827 |
+
msgstr "Directorio no especificado"
|
4828 |
+
|
4829 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:30
|
4830 |
+
msgid "Cannot remove directory"
|
4831 |
+
msgstr "No es posible remover el directorio"
|
4832 |
+
|
4833 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:37
|
4834 |
+
msgid "Cannot create directory"
|
4835 |
+
msgstr "No es posible crear el directorio"
|
4836 |
+
|
4837 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:55
|
4838 |
+
#: ../framework/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 "No es posible crear archivo: %s"
|
4842 |
+
|
4843 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:9
|
4844 |
+
msgid "Image Sizes Remove"
|
4845 |
+
msgstr "Remover tamaños de imagen"
|
4846 |
+
|
4847 |
+
#: ../framework/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 "Directorio de subidas no especificado"
|
4850 |
+
|
4851 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:18
|
4852 |
+
msgid "Download"
|
4853 |
+
msgstr "Descargar"
|
4854 |
+
|
4855 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:119
|
4856 |
+
msgid "Invalid destination dir"
|
4857 |
+
msgstr "Directorio de destino no válido"
|
4858 |
+
|
4859 |
+
#: ../framework/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 "Tipo no válido: %s"
|
4863 |
+
|
4864 |
+
#: ../framework/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 "Argumentos no especificados para tipo: %s"
|
4868 |
+
|
4869 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:9
|
4870 |
+
msgid "Local Download"
|
4871 |
+
msgstr "Descarga Local"
|
4872 |
+
|
4873 |
+
#: ../framework/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 "Origen no especificado"
|
4876 |
+
|
4877 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:29
|
4878 |
+
msgid "Invalid source"
|
4879 |
+
msgstr "Origen no válido"
|
4880 |
+
|
4881 |
+
#: ../framework/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 "Tipo de origen no válido"
|
4884 |
+
|
4885 |
+
#: ../framework/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 "No es posible abrir zip: %s"
|
4889 |
+
|
4890 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:70
|
4891 |
+
msgid "Unhandled type"
|
4892 |
+
msgstr "Tipo no controlado"
|
4893 |
+
|
4894 |
+
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:13
|
4895 |
+
msgid "Downloading..."
|
4896 |
+
msgstr "Descargando..."
|
4897 |
+
|
4898 |
+
#: ../framework/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 "Descarga finalizada. Realizando descompresión..."
|
4901 |
+
|
4902 |
+
#: ../framework/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 "Descargando... %s de %s"
|
4906 |
+
|
4907 |
+
#: ../framework/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 "Descargando... %s"
|
4911 |
+
|
4912 |
+
#: ../framework/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 "Url no especificada"
|
4915 |
+
|
4916 |
+
#: ../framework/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 "Url no válida"
|
4919 |
+
|
4920 |
+
#: ../framework/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 "Id de archivo no especificado"
|
4923 |
+
|
4924 |
+
#: ../framework/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 "Id de archivo no válido"
|
4927 |
+
|
4928 |
+
#: ../framework/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 "Falla al abrir zip (código %d). Por favor intente nuevamente"
|
4932 |
+
|
4933 |
+
#: ../framework/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 "Extracción zip ha fallado"
|
4936 |
+
|
4937 |
+
#: ../framework/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 "Falla al cerrar el zip después de extraer"
|
4940 |
+
|
4941 |
+
#: ../framework/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 "Solicitud ha fallado. Código de error: %d"
|
4945 |
+
|
4946 |
+
#: ../framework/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 "Posición de byte inválida"
|
4949 |
+
|
4950 |
+
#: ../framework/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 "Estructura de la respuesta vacía"
|
4953 |
+
|
4954 |
+
#: ../framework/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 "Termino de archivo sin contenido"
|
4957 |
+
|
4958 |
+
#: ../framework/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 "Falla al escribir datos al archivo"
|
4961 |
+
|
4962 |
+
#: ../framework/extensions/translation/settings-options.php:11
|
4963 |
+
msgid "Default Language"
|
4964 |
+
msgstr "Idioma Predeterminado"
|
4965 |
+
|
4966 |
+
#: ../framework/extensions/translation/settings-options.php:12
|
4967 |
+
msgid "This is the default language of your website."
|
4968 |
+
msgstr "Este es el idioma predeterminado de su sitio web."
|
4969 |
+
|
4970 |
+
#: ../framework/extensions/translation/settings-options.php:19
|
4971 |
+
msgid "Translate to"
|
4972 |
+
msgstr "Traducir a "
|
4973 |
+
|
4974 |
+
#: ../framework/extensions/translation/settings-options.php:20
|
4975 |
+
msgid "Choose the languages you want your website translated to."
|
4976 |
+
msgstr "Escoja el idioma al cual quiere que su sitio sea traducido."
|
4977 |
+
|
4978 |
+
#: ../framework/extensions/translation/settings-options.php:27
|
4979 |
+
msgid "Convert data"
|
4980 |
+
msgstr "Convertir datos"
|
4981 |
+
|
4982 |
+
#: ../framework/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 "Establecer idioma predeterminado para publicaciones, páginas, categorías o etiquetas que no tengan idioma establecido?"
|
4987 |
+
|
4988 |
+
#: ../framework/extensions/translation/manifest.php:7
|
4989 |
+
#: ../framework/extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:336
|
4990 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:264
|
4991 |
+
msgid "Translations"
|
4992 |
+
msgstr "Traducciones"
|
4993 |
+
|
4994 |
+
#: ../framework/extensions/translation/manifest.php:8
|
4995 |
+
#: ../framework/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-"
|
4999 |
+
"end."
|
5000 |
+
msgstr "Esta extensión le permite traducir su sitio web a cualquier idioma o incluso añadir múltiples idiomas para que sus usuarios cambien a su elección desde el front-end."
|
5001 |
+
|
5002 |
+
#: ../framework/extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:114
|
5003 |
+
msgid "All Languages"
|
5004 |
+
msgstr "Todos los idiomas"
|
5005 |
+
|
5006 |
+
#: ../framework/extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:332
|
5007 |
+
msgid "The term translation does already exists.ACTION +++ "
|
5008 |
+
msgstr "La traducción del término ya existe. ACCIÓN +++"
|
5009 |
+
|
5010 |
+
#: ../framework/extensions/translation/extensions/translate-terms/manifest.php:7
|
5011 |
+
msgid "Translate Terms"
|
5012 |
+
msgstr "Traducir términos"
|
5013 |
+
|
5014 |
+
#: ../framework/extensions/translation/extensions/translate-terms/manifest.php:8
|
5015 |
+
msgid "This extension translate terms"
|
5016 |
+
msgstr "Esta extensión traduce términos"
|
5017 |
+
|
5018 |
+
#: ../framework/extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:341
|
5019 |
+
msgid "Language of this post"
|
5020 |
+
msgstr "Idioma de esta publicación"
|
5021 |
+
|
5022 |
+
#: ../framework/extensions/translation/extensions/translate-posts/manifest.php:7
|
5023 |
+
msgid "Translate Posts"
|
5024 |
+
msgstr "Traducir Publicaciones"
|
5025 |
+
|
5026 |
+
#: ../framework/extensions/translation/extensions/translate-posts/manifest.php:8
|
5027 |
+
msgid "This extension translate posts"
|
5028 |
+
msgstr "Esta extensión traduce publicaciones"
|
5029 |
+
|
5030 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/manifest.php:7
|
5031 |
+
msgid "Translate Widgets"
|
5032 |
+
msgstr "Traducir Widgets"
|
5033 |
+
|
5034 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/manifest.php:8
|
5035 |
+
msgid "This extension translate Widgets"
|
5036 |
+
msgstr "Esta extensión traduce Widgets"
|
5037 |
+
|
5038 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:10
|
5039 |
+
msgid "Language Switcher"
|
5040 |
+
msgstr "Alternar Idioma"
|
5041 |
+
|
5042 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:11
|
5043 |
+
msgid "A Language Switcher Widget"
|
5044 |
+
msgstr "Un widget alternador de idioma"
|
5045 |
+
|
5046 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:42
|
5047 |
+
msgid "New title"
|
5048 |
+
msgstr "Nuevo título"
|
5049 |
+
|
5050 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:45
|
5051 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:49
|
5052 |
+
msgid "Title:"
|
5053 |
+
msgstr "Título:"
|
5054 |
+
|
5055 |
+
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:14
|
5056 |
+
msgid "A calendar of your site’s Posts."
|
5057 |
+
msgstr "Un calendario de publicaciones en su sitio."
|
5058 |
+
|
5059 |
+
#: ../framework/extensions/translation/extensions/translate-menus/manifest.php:7
|
5060 |
+
msgid "Translate Menus"
|
5061 |
+
msgstr "Traducir menus"
|
5062 |
+
|
5063 |
+
#: ../framework/extensions/translation/extensions/translate-menus/manifest.php:8
|
5064 |
+
msgid "This extension translate menus"
|
5065 |
+
msgstr "Esta extensión traduce menus"
|
5066 |
+
|
5067 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:211
|
5068 |
+
msgid "Slider Design"
|
5069 |
+
msgstr "Diseñor del Deslizador"
|
5070 |
+
|
5071 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:213
|
5072 |
+
msgid "Number of Images"
|
5073 |
+
msgstr "Número de imágenes"
|
5074 |
+
|
5075 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:231
|
5076 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:234
|
5077 |
+
#, php-format
|
5078 |
+
msgid "%s updated."
|
5079 |
+
msgstr "%s actualizado."
|
5080 |
+
|
5081 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:232
|
5082 |
+
msgid "Custom field updated."
|
5083 |
+
msgstr "Campo personalizado actualizado."
|
5084 |
+
|
5085 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:233
|
5086 |
+
msgid "Custom field deleted."
|
5087 |
+
msgstr "Campo personalizado eliminado."
|
5088 |
+
|
5089 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:235
|
5090 |
+
#, php-format
|
5091 |
+
msgid "%s restored to revision from %s"
|
5092 |
+
msgstr "%s se restablece a la revisión del %s"
|
5093 |
+
|
5094 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:237
|
5095 |
+
#, php-format
|
5096 |
+
msgid "%s published."
|
5097 |
+
msgstr "%s publicado."
|
5098 |
+
|
5099 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:238
|
5100 |
+
msgid "Page saved."
|
5101 |
+
msgstr "Página guardada."
|
5102 |
+
|
5103 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:239
|
5104 |
+
#, php-format
|
5105 |
+
msgid "%s submitted."
|
5106 |
+
msgstr "%s se ha enviado."
|
5107 |
+
|
5108 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:240
|
5109 |
+
#, php-format
|
5110 |
+
msgid "%s scheduled for: %s."
|
5111 |
+
msgstr "%s programada para: %s."
|
5112 |
+
|
5113 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:242
|
5114 |
+
#, php-format
|
5115 |
+
msgid "%s draft updated."
|
5116 |
+
msgstr "%s borrador actualizado."
|
5117 |
+
|
5118 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:272
|
5119 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:52
|
5120 |
+
msgid "Publish"
|
5121 |
+
msgstr "Publicar"
|
5122 |
+
|
5123 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:342
|
5124 |
+
msgid ""
|
5125 |
+
"This slider was created correctly, but the code implementation was delete "
|
5126 |
+
"from source code or blocked from filter.Delete this post or recovery slider "
|
5127 |
+
"implementation"
|
5128 |
+
msgstr "Este deslizador se ha creado correctamente, pero el código de implementación fue eliminado del código fuente o bloqueado desde el filtro. Elimine esta publicación o recupere la implementación del deslizador."
|
5129 |
+
|
5130 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:351
|
5131 |
+
msgid ""
|
5132 |
+
"This slider was created correctly, but the multimedia_types from config.php "
|
5133 |
+
"file was deleted, please set multimedia_types for this slider type."
|
5134 |
+
msgstr "Este deslizador se ha creado correctamente, pero los tipos_multimedia del archivo config.php fueron eliminados, por favor establezca tipos_multimedia (multimedia_types) para este tipo de deslizador."
|
5135 |
+
|
5136 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:361
|
5137 |
+
msgid "Slider Configuration"
|
5138 |
+
msgstr "Configuración del Deslizador"
|
5139 |
+
|
5140 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:375
|
5141 |
+
msgid "Slider Title"
|
5142 |
+
msgstr "Título de deslizador"
|
5143 |
+
|
5144 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:377
|
5145 |
+
msgid "Choose a title for your slider only for internal use: Ex: \"Homepage\"."
|
5146 |
+
msgstr "Escoja un título para su deslizador solo para uso interno: Ej: \"Página de inicio\"."
|
5147 |
+
|
5148 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:433
|
5149 |
+
msgid "Slider Settings"
|
5150 |
+
msgstr "Opciones del Deslizador"
|
5151 |
+
|
5152 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:461
|
5153 |
+
msgid ""
|
5154 |
+
"You don't have slider extensions, please create at least one extension for "
|
5155 |
+
"properly work"
|
5156 |
+
msgstr "Usted no tiene extensiones para deslizador, por favor cree al menos una extensión para su correcto funcionamiento."
|
5157 |
+
|
5158 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:474
|
5159 |
+
msgid "Choose the population method for your slider"
|
5160 |
+
msgstr "Escoja el método para agrupación de su deslizador"
|
5161 |
+
|
5162 |
+
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:542
|
5163 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:94
|
5164 |
+
msgid "(no title)"
|
5165 |
+
msgstr "(sin título)"
|
5166 |
+
|
5167 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:6
|
5168 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:12
|
5169 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:18
|
5170 |
+
#: ../framework/extensions/media/extensions/slider/manifest.php:5
|
5171 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:12
|
5172 |
+
msgid "Sliders"
|
5173 |
+
msgstr "Deslizadores"
|
5174 |
+
|
5175 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:7
|
5176 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:8
|
5177 |
+
msgid "Slider"
|
5178 |
+
msgstr "Deslizador"
|
5179 |
+
|
5180 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:9
|
5181 |
+
msgid "Add New Slider"
|
5182 |
+
msgstr "Agregar Nuevo Deslizador"
|
5183 |
+
|
5184 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:10
|
5185 |
+
msgid "Edit Slider"
|
5186 |
+
msgstr "Editar Deslizador"
|
5187 |
+
|
5188 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:11
|
5189 |
+
msgid "New Slider"
|
5190 |
+
msgstr "Nuevo Deslizador"
|
5191 |
+
|
5192 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:13
|
5193 |
+
msgid "View Slider"
|
5194 |
+
msgstr "Ver Deslizador"
|
5195 |
+
|
5196 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:14
|
5197 |
+
msgid "Search Sliders"
|
5198 |
+
msgstr "Buscar Deslizadores"
|
5199 |
+
|
5200 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:15
|
5201 |
+
msgid "No Sliders found"
|
5202 |
+
msgstr "No se encuentran deslizadores"
|
5203 |
+
|
5204 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:16
|
5205 |
+
msgid "No Sliders found in Trash"
|
5206 |
+
msgstr "No se encuentran deslizadores en la papelera"
|
5207 |
+
|
5208 |
+
#: ../framework/extensions/media/extensions/slider/manifest.php:6
|
5209 |
+
msgid ""
|
5210 |
+
"Adds the Sliders extension to your website. You'll be able to create "
|
5211 |
+
"different built in jQuery sliders for your homepage and all the other "
|
5212 |
+
"website pages."
|
5213 |
+
msgstr "Añade la extensión deslizadores (Sliders) a su sitio web. Usted podrá crear diferentes deslizadores jQuery integrados para su página de inicio y otras páginas del sitio web."
|
5214 |
+
|
5215 |
+
#: ../framework/extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:5
|
5216 |
+
#: ../framework/extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:6
|
5217 |
+
msgid "Nivo Slider"
|
5218 |
+
msgstr "Deslizador Nivo"
|
5219 |
+
|
5220 |
+
#: ../framework/extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:5
|
5221 |
+
#: ../framework/extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:6
|
5222 |
+
msgid "Owl Slider"
|
5223 |
+
msgstr "Deslizador Owl"
|
5224 |
+
|
5225 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/manifest.php:5
|
5226 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/manifest.php:6
|
5227 |
+
msgid "Bx-Slider"
|
5228 |
+
msgstr "Deslizador Bx"
|
5229 |
+
|
5230 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:4
|
5231 |
+
msgid "Population Method Categories opt 1"
|
5232 |
+
msgstr "Categorías del método de agrupación opc 1"
|
5233 |
+
|
5234 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:5
|
5235 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:11
|
5236 |
+
msgid "Option description"
|
5237 |
+
msgstr "Descripción de opción"
|
5238 |
+
|
5239 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:10
|
5240 |
+
msgid "Population Method Categories opt 2"
|
5241 |
+
msgstr "Categorías del método de agrupación opc 2"
|
5242 |
+
|
5243 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:5
|
5244 |
+
msgid "Type of Transition"
|
5245 |
+
msgstr "Tipo de transición"
|
5246 |
+
|
5247 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:6
|
5248 |
+
msgid "Type of transition between slides"
|
5249 |
+
msgstr "Tipo de transición entre diapositivas"
|
5250 |
+
|
5251 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:9
|
5252 |
+
msgid "Horizontal"
|
5253 |
+
msgstr "Horizontal"
|
5254 |
+
|
5255 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:10
|
5256 |
+
msgid "Vertical"
|
5257 |
+
msgstr "Vertical"
|
5258 |
+
|
5259 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:11
|
5260 |
+
msgid "Fade"
|
5261 |
+
msgstr "Desvanecer"
|
5262 |
+
|
5263 |
+
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:9
|
5264 |
+
msgid "Choose a subtitle for your slide."
|
5265 |
+
msgstr "Escoja un subtítulo para su diapositiva."
|
5266 |
+
|
5267 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:9
|
5268 |
+
msgid "Add a Slider"
|
5269 |
+
msgstr "Añadir un slider"
|
5270 |
+
|
5271 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:9
|
5272 |
+
msgid "Select Slider"
|
5273 |
+
msgstr "Seleccione Deslizador"
|
5274 |
+
|
5275 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:14
|
5276 |
+
msgid "Set width"
|
5277 |
+
msgstr "Establecer ancho"
|
5278 |
+
|
5279 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:19
|
5280 |
+
msgid "Set height"
|
5281 |
+
msgstr "Establecer alto"
|
5282 |
+
|
5283 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:34
|
5284 |
+
msgid "No Sliders Available"
|
5285 |
+
msgstr "No hay deslizadores disponibles"
|
5286 |
+
|
5287 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:47
|
5288 |
+
msgid "create a new Slider"
|
5289 |
+
msgstr "crear un nuevo deslizador"
|
5290 |
+
|
5291 |
+
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:49
|
5292 |
+
msgid ""
|
5293 |
+
"No Sliders created yet. Please go to the {br}Sliders page and "
|
5294 |
+
"{add_slider_link}."
|
5295 |
+
msgstr "No hay deslizadores creados aún. Por favor vaya a la {br} Página Deslizadores y {add_slider_link}."
|
5296 |
+
|
5297 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:5
|
5298 |
+
msgid ""
|
5299 |
+
"Note that the type and population can't be changed later. You'll need to "
|
5300 |
+
"create a new slider to have a different slider type or population method."
|
5301 |
+
msgstr "Note que el tipo y agrupación no podrá ser modificado después. Usted necesitará crear un nuevo deslizador para tener un tipo distinto de deslizador o método de agrupación."
|
5302 |
+
|
5303 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:31
|
5304 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:48
|
5305 |
+
msgid "Schedule"
|
5306 |
+
msgstr "Programado"
|
5307 |
+
|
5308 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:40
|
5309 |
+
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:57
|
5310 |
+
msgid "Submit for Review"
|
5311 |
+
msgstr "Enviar para revisión"
|
5312 |
+
|
5313 |
+
#: ../framework/extensions/media/extensions/population-method/class-fw-extension-population-method.php:36
|
5314 |
+
#, php-format
|
5315 |
+
msgid "Specified population method does not exists: %s"
|
5316 |
+
msgstr "Método de agrupación especificado no existe: %s"
|
5317 |
+
|
5318 |
+
#: ../framework/extensions/media/extensions/population-method/class-fw-extension-population-method.php:55
|
5319 |
+
#, php-format
|
5320 |
+
msgid "Population method %s does not exist"
|
5321 |
+
msgstr "Método de agrupación %s no existe"
|
5322 |
+
|
5323 |
+
#: ../framework/extensions/media/extensions/population-method/manifest.php:3
|
5324 |
+
msgid "Population Methods"
|
5325 |
+
msgstr "Métodos de Agrupación"
|
5326 |
+
|
5327 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:21
|
5328 |
+
msgid "Automatically, fetch images from categories"
|
5329 |
+
msgstr "Automáticamente, extrae imágenes desde categorías"
|
5330 |
+
|
5331 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:29
|
5332 |
+
#, php-format
|
5333 |
+
msgid "%s extension needs configured categories in post types"
|
5334 |
+
msgstr "extensión %s necesita ser categorías configuradas en tipos de entradas (post types)"
|
5335 |
+
|
5336 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:34
|
5337 |
+
msgid "Categories Population Method"
|
5338 |
+
msgstr "Categorías del Método de Agrupación"
|
5339 |
+
|
5340 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:44
|
5341 |
+
msgid "Choose Category"
|
5342 |
+
msgstr "Escoger Categoría"
|
5343 |
+
|
5344 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:53
|
5345 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:53
|
5346 |
+
msgid "Number of Images in the slider"
|
5347 |
+
msgstr "Número de imágenes en el deslizador"
|
5348 |
+
|
5349 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:107
|
5350 |
+
msgid "Select Specific Categories"
|
5351 |
+
msgstr "Seleccionar Categorías Específicas"
|
5352 |
+
|
5353 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:3
|
5354 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:4
|
5355 |
+
msgid "Population Method - Categories"
|
5356 |
+
msgstr "Método de Agrupación - Categorías"
|
5357 |
+
|
5358 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:21
|
5359 |
+
msgid "Automatically, fetch images from tags"
|
5360 |
+
msgstr "Automáticamente, extrae imágenes desde etiquetas"
|
5361 |
+
|
5362 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:29
|
5363 |
+
#, php-format
|
5364 |
+
msgid "%s extension needs configured tags in post types"
|
5365 |
+
msgstr "Extensión %s necesita ser etiquetas configuradas en tipos de entradas (post types)"
|
5366 |
+
|
5367 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:34
|
5368 |
+
msgid "Tags Population Method"
|
5369 |
+
msgstr "Método de Agrupación de Etiquetas"
|
5370 |
+
|
5371 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:44
|
5372 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:44
|
5373 |
+
msgid "Choose Tag"
|
5374 |
+
msgstr "Escoger Etiqueta"
|
5375 |
+
|
5376 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:107
|
5377 |
+
msgid "Select Specific tags"
|
5378 |
+
msgstr "Seleccionar etiquetas específicas"
|
5379 |
+
|
5380 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:3
|
5381 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:4
|
5382 |
+
msgid "Population Method - Tags"
|
5383 |
+
msgstr "Método de Agrupación - Etiquetas"
|
5384 |
+
|
5385 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:21
|
5386 |
+
msgid "Automatically, fetch images from posts"
|
5387 |
+
msgstr "Automáticamente, extrae imágenes desde entradas"
|
5388 |
+
|
5389 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:29
|
5390 |
+
#, php-format
|
5391 |
+
msgid "%s extension needs configured post categories in post types"
|
5392 |
+
msgstr "Extensión %s necesita ser entradas configuradas en tipos de entradas (post types)"
|
5393 |
+
|
5394 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:34
|
5395 |
+
msgid "Posts Population Method"
|
5396 |
+
msgstr "Método de Agrupación de Entradas"
|
5397 |
+
|
5398 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:101
|
5399 |
+
msgid "Select Specific posts"
|
5400 |
+
msgstr "Seleccionar entradas específicas"
|
5401 |
+
|
5402 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:3
|
5403 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:4
|
5404 |
+
msgid "Population Method - Posts"
|
5405 |
+
msgstr "Método de Argupación - Entradas"
|
5406 |
+
|
5407 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:22
|
5408 |
+
msgid "Manually, I'll upload the images myself"
|
5409 |
+
msgstr "Manualmente, subiré las imágenes por mi cuenta"
|
5410 |
+
|
5411 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:33
|
5412 |
+
msgid "Click to edit / Drag to reorder"
|
5413 |
+
msgstr "Click para editar / Arrastrar para reordenar"
|
5414 |
+
|
5415 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:54
|
5416 |
+
msgid "Choose"
|
5417 |
+
msgstr "Escoger"
|
5418 |
+
|
5419 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:3
|
5420 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:4
|
5421 |
+
msgid "Population Method - Custom"
|
5422 |
+
msgstr "Método de Agrupación - Personalizado"
|
5423 |
+
|
5424 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:57
|
5425 |
+
msgid "Add Slide"
|
5426 |
+
msgstr "Agregar Diapositiva"
|
5427 |
+
|
5428 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:59
|
5429 |
+
#: ../framework/views/backend-settings-form.php:47
|
5430 |
+
msgid "Save Changes"
|
5431 |
+
msgstr "Guardar Cambios"
|
5432 |
+
|
5433 |
+
#: ../framework/core/Fw.php:73
|
5434 |
+
msgid "Framework requirements not met:"
|
5435 |
+
msgstr "No se cumplen los requisitos del Framework: "
|
5436 |
+
|
5437 |
+
#: ../framework/core/class-fw-manifest.php:293
|
5438 |
+
msgid "minimum required version is"
|
5439 |
+
msgstr "Versión mínima requerida es "
|
5440 |
+
|
5441 |
+
#: ../framework/core/class-fw-manifest.php:296
|
5442 |
+
msgid "maximum required version is"
|
5443 |
+
msgstr "Versión máxima requerida es "
|
5444 |
+
|
5445 |
+
#: ../framework/core/class-fw-manifest.php:301
|
5446 |
+
msgid "and"
|
5447 |
+
msgstr "y"
|
5448 |
+
|
5449 |
+
#: ../framework/core/class-fw-manifest.php:308
|
5450 |
+
#, php-format
|
5451 |
+
msgid "Current WordPress version is %s, %s"
|
5452 |
+
msgstr "Versión actual de Wordpress es %s, %s"
|
5453 |
+
|
5454 |
+
#: ../framework/core/class-fw-manifest.php:314
|
5455 |
+
#, php-format
|
5456 |
+
msgid "Current Framework version is %s, %s"
|
5457 |
+
msgstr "Versión actual del Framework es %s, %s"
|
5458 |
+
|
5459 |
+
#: ../framework/core/class-fw-manifest.php:323
|
5460 |
+
#, php-format
|
5461 |
+
msgid "Current version of the %s extension is %s, %s"
|
5462 |
+
msgstr "Versión actual de la extensión %s es %s, %s"
|
5463 |
+
|
5464 |
+
#: ../framework/core/class-fw-manifest.php:329
|
5465 |
+
#, php-format
|
5466 |
+
msgid "%s extension is required"
|
5467 |
+
msgstr "Extensión %s es requerida"
|
5468 |
+
|
5469 |
+
#: ../framework/core/class-fw-manifest.php:334
|
5470 |
+
#, php-format
|
5471 |
+
msgid "%s extension is required (%s)"
|
5472 |
+
msgstr "Extensión %s es requerida (%s)"
|
5473 |
+
|
5474 |
+
#: ../framework/core/extends/class-fw-option-type.php:283
|
5475 |
+
#, php-format
|
5476 |
+
msgid "Option type %s has no default value"
|
5477 |
+
msgstr "Tipo de opción %s no tiene un valor por defecto"
|
5478 |
+
|
5479 |
+
#: ../framework/core/components/backend.php:355
|
5480 |
+
msgid "Done"
|
5481 |
+
msgstr "Realizado"
|
5482 |
+
|
5483 |
+
#: ../framework/core/components/backend.php:356
|
5484 |
+
msgid "Ah, Sorry"
|
5485 |
+
msgstr "Ah, Disculpas"
|
5486 |
+
|
5487 |
+
#: ../framework/core/components/backend.php:358
|
5488 |
+
#: ../framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:39
|
5489 |
+
#: ../framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:40
|
5490 |
+
#: ../framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:41
|
5491 |
+
#: ../framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:42
|
5492 |
+
msgid "Reset"
|
5493 |
+
msgstr "Restablecer"
|
5494 |
+
|
5495 |
+
#: ../framework/core/components/backend.php:541
|
5496 |
+
#: ../framework/core/components/backend.php:542
|
5497 |
+
#: ../framework/core/components/backend.php:650
|
5498 |
+
msgid "Theme Settings"
|
5499 |
+
msgstr "Configuración del Tema"
|
5500 |
+
|
5501 |
+
#: ../framework/core/components/backend.php:577
|
5502 |
+
msgid "leave a review"
|
5503 |
+
msgstr "dejar una opinión"
|
5504 |
+
|
5505 |
+
#: ../framework/core/components/backend.php:588
|
5506 |
+
msgid ""
|
5507 |
+
"Unyson WordPress Framework is the fastest and easiest way to develop a "
|
5508 |
+
"premium theme. I highly recommend it"
|
5509 |
+
msgstr "Framework Unyson Wordpress es el más rápido y fácil camino para desarrollar un tema premium. Recomiendo altamente éste"
|
5510 |
+
|
5511 |
+
#: ../framework/core/components/backend.php:594
|
5512 |
+
msgid ""
|
5513 |
+
"If you like Unyson, {wp_review_link}, share on {facebook_share_link} or "
|
5514 |
+
"{twitter_share_link}."
|
5515 |
+
msgstr "Si a usted le gusta Unyson, {wp_review_link}, comparta en {facebook_share_link} o {twitter_share_link}"
|
5516 |
+
|
5517 |
+
#: ../framework/core/components/backend.php:1303
|
5518 |
+
msgid "You have no permissions to change settings options"
|
5519 |
+
msgstr "Usted no tiene autorización para cambiar opciones de configuración"
|
5520 |
+
|
5521 |
+
#: ../framework/core/components/backend.php:1316
|
5522 |
+
msgid "The options were successfully reset"
|
5523 |
+
msgstr "Las opciones se han restablecido exitosamente"
|
5524 |
+
|
5525 |
+
#: ../framework/core/components/backend.php:1327
|
5526 |
+
msgid "The options were successfully saved"
|
5527 |
+
msgstr "Las opciones se han guardado exitosamente"
|
5528 |
+
|
5529 |
+
#: ../framework/core/components/backend.php:1440
|
5530 |
+
msgid "Unknown collected group"
|
5531 |
+
msgstr "Grupo recogido desconocido"
|
5532 |
+
|
5533 |
+
#: ../framework/core/components/backend.php:1779
|
5534 |
+
#, php-format
|
5535 |
+
msgid "Undefined option type: %s"
|
5536 |
+
msgstr "Tipo de opción no definido: %s"
|
5537 |
+
|
5538 |
+
#: ../framework/core/components/backend.php:1826
|
5539 |
+
#, php-format
|
5540 |
+
msgid "Undefined container type: %s"
|
5541 |
+
msgstr "Tipo de contenedor no definido: %s"
|
5542 |
+
|
5543 |
+
#: ../framework/core/components/extensions.php:447
|
5544 |
+
#: ../framework/core/components/extensions.php:525
|
5545 |
+
#, php-format
|
5546 |
+
msgid "Extension %s is invalid."
|
5547 |
+
msgstr "Extensión %s no es válida"
|
5548 |
+
|
5549 |
+
#: ../framework/core/components/theme.php:206
|
5550 |
+
msgid "Theme requirements not met:"
|
5551 |
+
msgstr "No se cumplen los requisitos del Tema: "
|
5552 |
+
|
5553 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:351
|
5554 |
+
msgid "Cannot remove the old extensions backup dir"
|
5555 |
+
msgstr "No es posible remover el directorio antiguo del respaldo de extensiones"
|
5556 |
+
|
5557 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:357
|
5558 |
+
msgid "Cannot create the extensions backup dir"
|
5559 |
+
msgstr "No es posible crear el directorio del respaldo de extensiones"
|
5560 |
+
|
5561 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:362
|
5562 |
+
msgid "Cannot backup the extensions"
|
5563 |
+
msgstr "No es posible respaldar extensiones"
|
5564 |
+
|
5565 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:408
|
5566 |
+
msgid "Cannot clear the extensions directory"
|
5567 |
+
msgstr "No es posible vaciar el directorio de extensiones"
|
5568 |
+
|
5569 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:413
|
5570 |
+
msgid "Cannot recreate the extensions directory"
|
5571 |
+
msgstr "No es posible recrear el directorio de extensiones"
|
5572 |
+
|
5573 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:419
|
5574 |
+
msgid "Cannot recover the extensions"
|
5575 |
+
msgstr "No es posible recuperar extensiones"
|
5576 |
+
|
5577 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:645
|
5578 |
+
#, php-format
|
5579 |
+
msgid "Cannot activate hidden standalone extension %s"
|
5580 |
+
msgstr "No es posible activar extensión oculta autonóma %s "
|
5581 |
+
|
5582 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:874
|
5583 |
+
msgid "You are not allowed to install extensions."
|
5584 |
+
msgstr "Usted no está autorizado para instalar extensiones."
|
5585 |
+
|
5586 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:891
|
5587 |
+
msgid "All supported extensions are already installed."
|
5588 |
+
msgstr "Todas las extensiones soportadas ya se encuentran instaladas."
|
5589 |
+
|
5590 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:967
|
5591 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2384
|
5592 |
+
#, php-format
|
5593 |
+
msgid "Cannot remove temporary directory: %s"
|
5594 |
+
msgstr "No se puede remover el directorio temporal %s."
|
5595 |
+
|
5596 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1037
|
5597 |
+
msgid "You have no permissions to install extensions"
|
5598 |
+
msgstr "Usted no tiene permisos para instalar extensiones"
|
5599 |
+
|
5600 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1044
|
5601 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1517
|
5602 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1901
|
5603 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2116
|
5604 |
+
msgid "No extensions provided"
|
5605 |
+
msgstr "No hay extensiones proveídas"
|
5606 |
+
|
5607 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1053
|
5608 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1527
|
5609 |
+
msgid "WP Filesystem is not initialized"
|
5610 |
+
msgstr "Sistema de archivos WP no está inicializado"
|
5611 |
+
|
5612 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1079
|
5613 |
+
#, php-format
|
5614 |
+
msgid "Extension \"%s\" is already installed."
|
5615 |
+
msgstr "Extensión \"%s\" ya se encuentra instalada."
|
5616 |
+
|
5617 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1094
|
5618 |
+
#, php-format
|
5619 |
+
msgid "Extension \"%s\" is not available for install."
|
5620 |
+
msgstr "Extensión \"%s\" no está disponible para instalación."
|
5621 |
+
|
5622 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1122
|
5623 |
+
#, php-format
|
5624 |
+
msgid "Parent extension \"%s\" not available."
|
5625 |
+
msgstr "Extensión principal \"%s\" no disponible"
|
5626 |
+
|
5627 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1156
|
5628 |
+
#, php-format
|
5629 |
+
msgid "Downloading the \"%s\" extension..."
|
5630 |
+
msgstr "Descargando la extensión \"%s\" ..."
|
5631 |
+
|
5632 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1200
|
5633 |
+
#, php-format
|
5634 |
+
msgid "Installing the \"%s\" extension..."
|
5635 |
+
msgstr "Instalando la extensión \"%s\" ..."
|
5636 |
+
|
5637 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1238
|
5638 |
+
#, php-format
|
5639 |
+
msgid "The %s extension has been successfully installed."
|
5640 |
+
msgstr "La extensión %s se ha instalado correctamente."
|
5641 |
+
|
5642 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1399
|
5643 |
+
msgid "You are not allowed to delete extensions."
|
5644 |
+
msgstr "Usted no tiene autorización para eliminar extensiones."
|
5645 |
+
|
5646 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1510
|
5647 |
+
msgid "You have no permissions to uninstall extensions"
|
5648 |
+
msgstr "Usted no tiene autorización para desinstalar extensiones."
|
5649 |
+
|
5650 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1578
|
5651 |
+
#, php-format
|
5652 |
+
msgid "Deleting the \"%s\" extension..."
|
5653 |
+
msgstr "Eliminando la extensión \"%s\" ..."
|
5654 |
+
|
5655 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1590
|
5656 |
+
#, php-format
|
5657 |
+
msgid "Cannot delete the \"%s\" extension."
|
5658 |
+
msgstr "No es posible eliminar la extensión \"%s\"."
|
5659 |
+
|
5660 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1602
|
5661 |
+
#, php-format
|
5662 |
+
msgid "The %s extension has been successfully deleted."
|
5663 |
+
msgstr "La extensión %s se ha eliminado exitosamente."
|
5664 |
+
|
5665 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1703
|
5666 |
+
msgid "Extension not specified."
|
5667 |
+
msgstr "Extensión no especificada."
|
5668 |
+
|
5669 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1708
|
5670 |
+
#, php-format
|
5671 |
+
msgid "Extension \"%s\" is not installed."
|
5672 |
+
msgstr "Extensión \"%s\" no está instalada."
|
5673 |
+
|
5674 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1776
|
5675 |
+
#, php-format
|
5676 |
+
msgid "Extension \"%s\" does not exist or is not active."
|
5677 |
+
msgstr "Extensión \"%s\" no existe o no está activa."
|
5678 |
+
|
5679 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1785
|
5680 |
+
#, php-format
|
5681 |
+
msgid "%s extension does not have settings."
|
5682 |
+
msgstr "Extensión %s no tiene configuraciones."
|
5683 |
+
|
5684 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1806
|
5685 |
+
msgid "Extension has no Install Instructions"
|
5686 |
+
msgstr "Extensión no tiene instrucciones de instalación"
|
5687 |
+
|
5688 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1830
|
5689 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2047
|
5690 |
+
msgid "Invalid request method."
|
5691 |
+
msgstr "Método de solicitud inválido."
|
5692 |
+
|
5693 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1842
|
5694 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2059
|
5695 |
+
msgid "No extension specified."
|
5696 |
+
msgstr "Extensión no especificada."
|
5697 |
+
|
5698 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1894
|
5699 |
+
msgid "You have no permissions to activate extensions"
|
5700 |
+
msgstr "Usted no tiene permisos para activar extensiones"
|
5701 |
+
|
5702 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1914
|
5703 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2132
|
5704 |
+
#, php-format
|
5705 |
+
msgid "Extension \"%s\" does not exist."
|
5706 |
+
msgstr "Extensión \"%s\" no existe."
|
5707 |
+
|
5708 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2109
|
5709 |
+
msgid "You have no permissions to deactivate extensions"
|
5710 |
+
msgstr "Usted no tiene permisos para desactivar extensiones"
|
5711 |
+
|
5712 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2297
|
5713 |
+
msgid "You are not allowed to save extensions settings."
|
5714 |
+
msgstr "Usted no tiene autorización para guardar configuraciones de extensiones."
|
5715 |
+
|
5716 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2304
|
5717 |
+
msgid "Invalid extension."
|
5718 |
+
msgstr "Extensión inválida."
|
5719 |
+
|
5720 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2309
|
5721 |
+
msgid "Extension does not have settings options."
|
5722 |
+
msgstr "Extensión no tiene opciones de configuración."
|
5723 |
+
|
5724 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2341
|
5725 |
+
msgid "Extensions settings successfully saved."
|
5726 |
+
msgstr "Configuraciones de extensiones guardadas exitosamente."
|
5727 |
+
|
5728 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2368
|
5729 |
+
#, php-format
|
5730 |
+
msgid "Extension \"%s\" has no download sources."
|
5731 |
+
msgstr "Extensión \"%s\" no tiene origen de descarga."
|
5732 |
+
|
5733 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2392
|
5734 |
+
#, php-format
|
5735 |
+
msgid "Cannot create temporary directory: %s"
|
5736 |
+
msgstr "No se puede crear el directorio temporal: %s"
|
5737 |
+
|
5738 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2403
|
5739 |
+
#, php-format
|
5740 |
+
msgid "\"%s\" extension github source \"user_repo\" parameter is required"
|
5741 |
+
msgstr "Recurso Github de extensión \"%s\" requiere el parámetro \"user_repo\""
|
5742 |
+
|
5743 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2454
|
5744 |
+
#, php-format
|
5745 |
+
msgid "Failed to access Github repository \"%s\" releases. (%s)"
|
5746 |
+
msgstr "Falló acceso al repositorio de publicaciones Github \"%s\". (%s)"
|
5747 |
+
|
5748 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2477
|
5749 |
+
#, php-format
|
5750 |
+
msgid "\"%s\" extension github repository \"%s\" has no releases."
|
5751 |
+
msgstr "Repositorio de extensión \"%s\" no tiene publicaciones \"%s\"."
|
5752 |
+
|
5753 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2510
|
5754 |
+
#, php-format
|
5755 |
+
msgid "Cannot download the \"%s\" extension zip. (Response code: %d)"
|
5756 |
+
msgstr "No es posible descargar zip de extensión \"%s\". (Código de respuesta: %d)"
|
5757 |
+
|
5758 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2517
|
5759 |
+
#, php-format
|
5760 |
+
msgid "Cannot download the \"%s\" extension zip. %s"
|
5761 |
+
msgstr "No es posible descargar zip de extensión \"%s\". %s"
|
5762 |
+
|
5763 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2525
|
5764 |
+
#, php-format
|
5765 |
+
msgid "Cannot download the \"%s\" extension zip."
|
5766 |
+
msgstr "No es posible descargar zip de extensión \"%s\"."
|
5767 |
+
|
5768 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2538
|
5769 |
+
#, php-format
|
5770 |
+
msgid "Cannot save the \"%s\" extension zip."
|
5771 |
+
msgstr "No es posible guardar zip de extensión \"%s\"."
|
5772 |
+
|
5773 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2557
|
5774 |
+
#, php-format
|
5775 |
+
msgid "Cannot remove the \"%s\" extension downloaded zip."
|
5776 |
+
msgstr "No es posible remover zip descargado de extensión \"%s\""
|
5777 |
+
|
5778 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2582
|
5779 |
+
#, php-format
|
5780 |
+
msgid "The unzipped \"%s\" extension directory not found."
|
5781 |
+
msgstr "Directorio descomprimido de extensión \"%s\" no encontrado."
|
5782 |
+
|
5783 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2589
|
5784 |
+
#, php-format
|
5785 |
+
msgid "Unknown \"%s\" extension download source \"%s\""
|
5786 |
+
msgstr "Desconocido \"%s\" origen de descarga extensión \"%s\""
|
5787 |
+
|
5788 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2615
|
5789 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2634
|
5790 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2697
|
5791 |
+
#, php-format
|
5792 |
+
msgid "Cannot read directory \"%s\"."
|
5793 |
+
msgstr "No es posible leer el directorio \"%s\"."
|
5794 |
+
|
5795 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2649
|
5796 |
+
#, php-format
|
5797 |
+
msgid "Cannot delete \"%s\"."
|
5798 |
+
msgstr "No es posible eliminar \"%s\"."
|
5799 |
+
|
5800 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2660
|
5801 |
+
#, php-format
|
5802 |
+
msgid "Cannot create the \"%s\" directory."
|
5803 |
+
msgstr "No es posible crear el directorio \"%s\"."
|
5804 |
+
|
5805 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2678
|
5806 |
+
#, php-format
|
5807 |
+
msgid "Cannot move \"%s\" to \"%s\"."
|
5808 |
+
msgstr "No es posible mover \"%s\" a \"%s\"."
|
5809 |
+
|
5810 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3103
|
5811 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3150
|
5812 |
+
#, php-format
|
5813 |
+
msgid "Cannot activate the %s extension because it is not installed. %s"
|
5814 |
+
msgstr "No es posible activar la extensión %s porque esta no está instalada. %s"
|
5815 |
+
|
5816 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3107
|
5817 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3154
|
5818 |
+
msgid "Install"
|
5819 |
+
msgstr "Instalar"
|
5820 |
+
|
5821 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3197
|
5822 |
+
msgid "Install theme compatible extensions"
|
5823 |
+
msgstr "Instalar extensiones compatibles con el tema"
|
5824 |
+
|
5825 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:13
|
5826 |
+
msgid ""
|
5827 |
+
"Adds a sliders module to your website from where you'll be able to create "
|
5828 |
+
"different built in jQuery sliders for your homepage and rest of the pages."
|
5829 |
+
msgstr "Añade módulo deslizadores (Sliders) a su sitio web, donde usted podrá crear diferentes deslizadores jQuery integrados para su página de inicio y otras páginas del sitio web."
|
5830 |
+
|
5831 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:24
|
5832 |
+
msgid "Media"
|
5833 |
+
msgstr "Medios"
|
5834 |
+
|
5835 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:36
|
5836 |
+
msgid "Population method"
|
5837 |
+
msgstr "Método de agrupación"
|
5838 |
+
|
5839 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:85
|
5840 |
+
msgid ""
|
5841 |
+
"Let's you easily build countless pages with the help of the drag and drop "
|
5842 |
+
"visual page builder that comes with a lot of already created shortcodes."
|
5843 |
+
msgstr "Permite construir de manera sencilla innumerables páginas con la ayuda del constructor visual \"arrastre y suelte\" que viene con un grupo de shortcodes listos para utilizar."
|
5844 |
+
|
5845 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:96
|
5846 |
+
msgid "Shortcodes"
|
5847 |
+
msgstr "Shortcodes"
|
5848 |
+
|
5849 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:157
|
5850 |
+
msgid ""
|
5851 |
+
"This extension lets you set up daily, weekly or monthly backup schedule. You"
|
5852 |
+
" can choose between a full backup or a data base only backup."
|
5853 |
+
msgstr "Esta extensión le permite establecer tareas de respaldo diario, semanal o mensual. Usted puede escoger entre un respaldo total o solo un respaldo de base de datos."
|
5854 |
+
|
5855 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:89
|
5856 |
+
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:25
|
5857 |
+
msgid "Install Instructions"
|
5858 |
+
msgstr "Instrucciones de instalación"
|
5859 |
+
|
5860 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:102
|
5861 |
+
msgid "Compatible"
|
5862 |
+
msgstr "Compatible"
|
5863 |
+
|
5864 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:102
|
5865 |
+
msgid "with your current theme"
|
5866 |
+
msgstr "con su actual tema"
|
5867 |
+
|
5868 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:174
|
5869 |
+
#, php-format
|
5870 |
+
msgid "Parent extension \"%s\" is disabled"
|
5871 |
+
msgstr "Extensión principal \"%s\" está deshabilitada."
|
5872 |
+
|
5873 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:199
|
5874 |
+
#, php-format
|
5875 |
+
msgid "You need to update WordPress to %s: %s"
|
5876 |
+
msgstr "Usted necesita actualizar Wordpress a %s: %s"
|
5877 |
+
|
5878 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:201
|
5879 |
+
msgid "Update WordPress"
|
5880 |
+
msgstr "Actualizar Wordpress"
|
5881 |
+
|
5882 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:205
|
5883 |
+
#, php-format
|
5884 |
+
msgid "WordPress needs to be updated to %s"
|
5885 |
+
msgstr "Wordpress necesita ser actualizado a %s"
|
5886 |
+
|
5887 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:215
|
5888 |
+
#, php-format
|
5889 |
+
msgid "Maximum supported WordPress version is %s"
|
5890 |
+
msgstr "Versión máxima de Wordpress soportada es %s"
|
5891 |
+
|
5892 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:230
|
5893 |
+
#, php-format
|
5894 |
+
msgid "You need to update %s to %s: %s"
|
5895 |
+
msgstr "Usted necesita actualizar %s a %s: %s"
|
5896 |
+
|
5897 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:239
|
5898 |
+
#, php-format
|
5899 |
+
msgid "%s needs to be updated to %s"
|
5900 |
+
msgstr "%s necesita actualizarse a %s"
|
5901 |
+
|
5902 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:250
|
5903 |
+
#, php-format
|
5904 |
+
msgid "Maximum supported %s version is %s"
|
5905 |
+
msgstr "Versión máxima soportada %s y es %s"
|
5906 |
+
|
5907 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:268
|
5908 |
+
#, php-format
|
5909 |
+
msgid "You need to update the %s extension to %s: %s"
|
5910 |
+
msgstr "Usted necesita actualizar la extensión %s a %s: %s"
|
5911 |
+
|
5912 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:277
|
5913 |
+
#, php-format
|
5914 |
+
msgid "The %s extension needs to be updated to %s"
|
5915 |
+
msgstr "La extensión %s necesita actualizarse a %s"
|
5916 |
+
|
5917 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:288
|
5918 |
+
#, php-format
|
5919 |
+
msgid "Maximum supported %s extension version is %s"
|
5920 |
+
msgstr "Versión máxima soportada de extensión %s y es %s"
|
5921 |
+
|
5922 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:303
|
5923 |
+
#, php-format
|
5924 |
+
msgid "The %s extension is disabled"
|
5925 |
+
msgstr "La extensión %s está deshabilitada"
|
5926 |
+
|
5927 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:304
|
5928 |
+
#, php-format
|
5929 |
+
msgid "Activate %s"
|
5930 |
+
msgstr "Activar %s"
|
5931 |
+
|
5932 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:313
|
5933 |
+
#, php-format
|
5934 |
+
msgid "The %s extension is not installed: %s"
|
5935 |
+
msgstr "Extensión \"%s\" no está instalada: %s"
|
5936 |
+
|
5937 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:316
|
5938 |
+
#, php-format
|
5939 |
+
msgid "Install %s"
|
5940 |
+
msgstr "Instalar %s"
|
5941 |
+
|
5942 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:321
|
5943 |
+
#, php-format
|
5944 |
+
msgid "The %s extension is not installed"
|
5945 |
+
msgstr "Extensión \"%s\" no está instalada"
|
5946 |
+
|
5947 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:342
|
5948 |
+
msgid "View Requirements"
|
5949 |
+
msgstr "Ver requerimientos"
|
5950 |
+
|
5951 |
+
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:40
|
5952 |
+
#, php-format
|
5953 |
+
msgid "%s Settings"
|
5954 |
+
msgstr "%s Configuraciones"
|
5955 |
+
|
5956 |
+
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:43
|
5957 |
+
#, php-format
|
5958 |
+
msgid "%s Install Instructions"
|
5959 |
+
msgstr "%s Instrucciones de instalación"
|
5960 |
+
|
5961 |
+
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:46
|
5962 |
+
msgid "Unknown tab:"
|
5963 |
+
msgstr "Pestaña desconocida: "
|
5964 |
+
|
5965 |
+
#: ../framework/core/components/extensions/manager/views/delete-form.php:42
|
5966 |
+
#: ../framework/core/components/extensions/manager/views/install-form.php:51
|
5967 |
+
msgid "No, Return me to the extension list"
|
5968 |
+
msgstr "No, Regrese a a la lista de extensiones"
|
5969 |
+
|
5970 |
+
#: ../framework/core/components/extensions/manager/views/delete-form.php:45
|
5971 |
+
msgid "Click to view entire list of directories which will be deleted"
|
5972 |
+
msgstr "Click para ver lista completa de directorios serán eliminados"
|
5973 |
+
|
5974 |
+
#: ../framework/core/components/extensions/manager/views/extensions-page.php:17
|
5975 |
+
msgid "Active Extensions"
|
5976 |
+
msgstr "Extensiones Activas"
|
5977 |
+
|
5978 |
+
#: ../framework/core/components/extensions/manager/views/extensions-page.php:33
|
5979 |
+
msgid "No extensions activated yet"
|
5980 |
+
msgstr "No hay extensiones activas aún"
|
5981 |
+
|
5982 |
+
#: ../framework/core/components/extensions/manager/views/extensions-page.php:33
|
5983 |
+
msgid "Check the available extensions below"
|
5984 |
+
msgstr "Revisar abajo extensiones disponibles"
|
5985 |
+
|
5986 |
+
#: ../framework/core/components/extensions/manager/views/extensions-page.php:59
|
5987 |
+
msgid "Available Extensions"
|
5988 |
+
msgstr "Extensiones Disponibles"
|
5989 |
+
|
5990 |
+
#: ../framework/core/components/extensions/manager/views/extensions-page.php:184
|
5991 |
+
msgid "Show other extensions"
|
5992 |
+
msgstr "Mostrar otras extensiones"
|
5993 |
+
|
5994 |
+
#: ../framework/core/components/extensions/manager/views/extensions-page.php:185
|
5995 |
+
msgid "Hide other extensions"
|
5996 |
+
msgstr "Ocultar otras extensiones"
|
5997 |
+
|
5998 |
+
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:14
|
5999 |
+
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:14
|
6000 |
+
msgid "Go to extensions page"
|
6001 |
+
msgstr "Ir a la página de extensiones"
|
6002 |
+
|
6003 |
+
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:17
|
6004 |
+
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:17
|
6005 |
+
msgid "Return to Extensions page"
|
6006 |
+
msgstr "Volver a la página de extensiones"
|
6007 |
+
|
6008 |
+
#: ../framework/views/backend-settings-form.php:48
|
6009 |
+
msgid "Reset Options"
|
6010 |
+
msgstr "Restablecer Opciones"
|
6011 |
+
|
6012 |
+
#: ../framework/views/backend-settings-form.php:62
|
6013 |
+
msgid "by"
|
6014 |
+
msgstr "por"
|
6015 |
+
|
6016 |
+
#: ../framework/views/backend-settings-form.php:155
|
6017 |
+
msgid ""
|
6018 |
+
"Click OK to reset.\n"
|
6019 |
+
"All settings will be lost and replaced with default settings!"
|
6020 |
+
msgstr "Click OK para restablecer.\nTodas las configuraciones de perderán y reemplazadas a las configuraciones predeterminadas!"
|
6021 |
+
|
6022 |
+
#: ../framework/views/backend-settings-form.php:202
|
6023 |
+
msgid "Resetting"
|
6024 |
+
msgstr "Restableciendo"
|
6025 |
+
|
6026 |
+
#: ../framework/views/backend-settings-form.php:204
|
6027 |
+
msgid "We are currently resetting your settings."
|
6028 |
+
msgstr "Estamos actualmente restableciendo sus configuraciones."
|
6029 |
+
|
6030 |
+
#: ../framework/views/backend-settings-form.php:206
|
6031 |
+
#: ../framework/views/backend-settings-form.php:212
|
6032 |
+
msgid "This may take a few moments."
|
6033 |
+
msgstr "Esto podría tomar unos momentos."
|
6034 |
+
|
6035 |
+
#: ../framework/views/backend-settings-form.php:208
|
6036 |
+
msgid "Saving"
|
6037 |
+
msgstr "Guardando"
|
6038 |
+
|
6039 |
+
#: ../framework/views/backend-settings-form.php:210
|
6040 |
+
msgid "We are currently saving your settings."
|
6041 |
+
msgstr "Estamos actualmente guardando sus configuraciones."
|
6042 |
+
|
6043 |
+
#: ../framework/includes/option-types/class-fw-option-type-undefined.php:25
|
6044 |
+
msgid "UNDEFINED OPTION TYPE"
|
6045 |
+
msgstr "TIPO DE OPCIÓN NO DEFINIDA"
|
6046 |
+
|
6047 |
+
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:22
|
6048 |
+
msgid "25%"
|
6049 |
+
msgstr "25%"
|
6050 |
+
|
6051 |
+
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:23
|
6052 |
+
msgid "50%"
|
6053 |
+
msgstr "50%"
|
6054 |
+
|
6055 |
+
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:24
|
6056 |
+
msgid "100%"
|
6057 |
+
msgstr "100%"
|
6058 |
+
|
6059 |
+
#: ../framework/includes/option-types/map/views/view.php:12
|
6060 |
+
msgid "Specify location"
|
6061 |
+
msgstr "Especificar ubicación"
|
6062 |
+
|
6063 |
+
#: ../framework/includes/option-types/map/views/view.php:27
|
6064 |
+
msgid "Location Venue"
|
6065 |
+
msgstr "Lugar de ubicación"
|
6066 |
+
|
6067 |
+
#: ../framework/includes/option-types/map/views/view.php:42
|
6068 |
+
msgid "Address"
|
6069 |
+
msgstr "Dirección"
|
6070 |
+
|
6071 |
+
#: ../framework/includes/option-types/map/views/view.php:57
|
6072 |
+
msgid "City"
|
6073 |
+
msgstr "Ciudad"
|
6074 |
+
|
6075 |
+
#: ../framework/includes/option-types/map/views/view.php:72
|
6076 |
+
msgid "Country"
|
6077 |
+
msgstr "País"
|
6078 |
+
|
6079 |
+
#: ../framework/includes/option-types/map/views/view.php:87
|
6080 |
+
msgid "State"
|
6081 |
+
msgstr "Región o Estado"
|
6082 |
+
|
6083 |
+
#: ../framework/includes/option-types/map/views/view.php:103
|
6084 |
+
msgid "Zip Code"
|
6085 |
+
msgstr "Código Zip"
|
6086 |
+
|
6087 |
+
#: ../framework/includes/option-types/map/views/view.php:138
|
6088 |
+
msgid "Cannot find the location?"
|
6089 |
+
msgstr "No encuentra la ubicación?"
|
6090 |
+
|
6091 |
+
#: ../framework/includes/option-types/map/views/view.php:150
|
6092 |
+
msgid "Reset location"
|
6093 |
+
msgstr "Restablecer ubicación"
|
6094 |
+
|
6095 |
+
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:150
|
6096 |
+
msgid "Add Image"
|
6097 |
+
msgstr "Agregar Imagen"
|
6098 |
+
|
6099 |
+
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:176
|
6100 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:186
|
6101 |
+
msgid "Upload"
|
6102 |
+
msgstr "Subir"
|
6103 |
+
|
6104 |
+
#: ../framework/includes/option-types/typography-v2/view.php:39
|
6105 |
+
msgid "Font face"
|
6106 |
+
msgstr "Tipo de fuente"
|
6107 |
+
|
6108 |
+
#: ../framework/includes/option-types/typography-v2/view.php:48
|
6109 |
+
msgid "Normal"
|
6110 |
+
msgstr "Normal"
|
6111 |
+
|
6112 |
+
#: ../framework/includes/option-types/typography-v2/view.php:49
|
6113 |
+
msgid "Italic"
|
6114 |
+
msgstr "Itálica"
|
6115 |
+
|
6116 |
+
#: ../framework/includes/option-types/typography-v2/view.php:50
|
6117 |
+
msgid "Oblique"
|
6118 |
+
msgstr "Oblicua"
|
6119 |
+
|
6120 |
+
#: ../framework/includes/option-types/typography-v2/view.php:59
|
6121 |
+
#: ../framework/includes/option-types/typography-v2/view.php:118
|
6122 |
+
msgid "Style"
|
6123 |
+
msgstr "Estilo"
|
6124 |
+
|
6125 |
+
#: ../framework/includes/option-types/typography-v2/view.php:85
|
6126 |
+
msgid "Weight"
|
6127 |
+
msgstr "Espesor"
|
6128 |
+
|
6129 |
+
#: ../framework/includes/option-types/typography-v2/view.php:101
|
6130 |
+
msgid "Script"
|
6131 |
+
msgstr "Script"
|
6132 |
+
|
6133 |
+
#: ../framework/includes/option-types/typography-v2/view.php:128
|
6134 |
+
msgid "Size"
|
6135 |
+
msgstr "Tamaño"
|
6136 |
+
|
6137 |
+
#: ../framework/includes/option-types/typography-v2/view.php:139
|
6138 |
+
msgid "Line height"
|
6139 |
+
msgstr "Alto de línea"
|
6140 |
+
|
6141 |
+
#: ../framework/includes/option-types/typography-v2/view.php:150
|
6142 |
+
msgid "Letter spacing"
|
6143 |
+
msgstr "Espacio entre letras"
|
6144 |
+
|
6145 |
+
#: ../framework/includes/option-types/typography-v2/view.php:173
|
6146 |
+
msgid "Color"
|
6147 |
+
msgstr "Color"
|
6148 |
+
|
6149 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:156
|
6150 |
+
msgid "Unknown Set"
|
6151 |
+
msgstr "Configruación Desconocida"
|
6152 |
+
|
6153 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:186
|
6154 |
+
msgid "Web Application Icons"
|
6155 |
+
msgstr "Iconos Aplicaciones Web"
|
6156 |
+
|
6157 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:187
|
6158 |
+
msgid "Hand Icons"
|
6159 |
+
msgstr "Iconos Manos"
|
6160 |
+
|
6161 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:188
|
6162 |
+
msgid "Transportation Icons"
|
6163 |
+
msgstr "Iconos Transportes"
|
6164 |
+
|
6165 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:189
|
6166 |
+
msgid "Gender Icons"
|
6167 |
+
msgstr "Iconos Géneros"
|
6168 |
+
|
6169 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:190
|
6170 |
+
msgid "File Type Icons"
|
6171 |
+
msgstr "Iconos Tipos de Archivos"
|
6172 |
+
|
6173 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:193
|
6174 |
+
msgid "Payment Icons"
|
6175 |
+
msgstr "Iconos de Pago"
|
6176 |
+
|
6177 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:195
|
6178 |
+
msgid "Currency Icons"
|
6179 |
+
msgstr "Iconos de Monedas"
|
6180 |
+
|
6181 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:196
|
6182 |
+
msgid "Text Editor Icons"
|
6183 |
+
msgstr "Iconos Editor de Texto"
|
6184 |
+
|
6185 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:197
|
6186 |
+
msgid "Directional Icons"
|
6187 |
+
msgstr "Iconos Direcciones"
|
6188 |
+
|
6189 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:198
|
6190 |
+
msgid "Video Player Icons"
|
6191 |
+
msgstr "Iconos Reproductor de Video"
|
6192 |
+
|
6193 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:199
|
6194 |
+
msgid "Brand Icons"
|
6195 |
+
msgstr "Iconos de Marcas"
|
6196 |
+
|
6197 |
+
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:200
|
6198 |
+
msgid "Medical Icons"
|
6199 |
+
msgstr "Iconos Médicos"
|
6200 |
+
|
6201 |
+
#: ../framework/includes/option-types/icon/view.php:39
|
6202 |
+
msgid "All Categories"
|
6203 |
+
msgstr "Todas las Categorías"
|
6204 |
+
|
6205 |
+
#: ../framework/includes/option-types/datetime-range/view.php:41
|
6206 |
+
#: ../framework/includes/option-types/gradient/view.php:46
|
6207 |
+
msgid "to"
|
6208 |
+
msgstr "a"
|
6209 |
+
|
6210 |
+
#: ../framework/includes/option-types/multi-picker/class-fw-option-type-multi-picker.php:179
|
6211 |
+
#, php-format
|
6212 |
+
msgid "No 'picker' key set for multi-picker option: %s"
|
6213 |
+
msgstr "No establecida clave 'picker' (selector) para opción multi-selección: %s"
|
6214 |
+
|
6215 |
+
#: ../framework/includes/option-types/background-image/view.php:37
|
6216 |
+
msgid "Predefined images"
|
6217 |
+
msgstr "Imágenes predefinidas"
|
6218 |
+
|
6219 |
+
#: ../framework/includes/option-types/background-image/view.php:38
|
6220 |
+
msgid "Custom image"
|
6221 |
+
msgstr "Imagen personalizada"
|
6222 |
+
|
6223 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:160
|
6224 |
+
msgid "Add Images"
|
6225 |
+
msgstr "Agregar imágenes"
|
6226 |
+
|
6227 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:188
|
6228 |
+
msgid "1 File"
|
6229 |
+
msgstr "1 Archivo"
|
6230 |
+
|
6231 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:189
|
6232 |
+
#, php-format
|
6233 |
+
msgid "%u Files"
|
6234 |
+
msgstr "%u Archivos"
|
framework/languages/fw-nl_NL.po
CHANGED
@@ -1,6237 +1,6237 @@
|
|
1 |
-
#
|
2 |
-
# Translators:
|
3 |
-
# Lynn <lynn_girl@live.nl>, 2015
|
4 |
-
# Patrick Catthoor <pcatthoor@gmail.com>, 2015
|
5 |
-
# Ruud Evers <ruud@yakhosting.com>, 2016
|
6 |
-
# Steven Vermeersch, 2016
|
7 |
-
msgid ""
|
8 |
-
msgstr ""
|
9 |
-
"Project-Id-Version: Unyson\n"
|
10 |
-
"POT-Creation-Date: 2016-02-02 15:48+0300\n"
|
11 |
-
"PO-Revision-Date: 2016-04-08 04:43+0000\n"
|
12 |
-
"Last-Translator: Ruud Evers <ruud@yakhosting.com>\n"
|
13 |
-
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/themefuse/unyson/language/nl_NL/)\n"
|
14 |
-
"MIME-Version: 1.0\n"
|
15 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
-
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"Language: nl_NL\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"X-Generator: Poedit 1.5.4\n"
|
20 |
-
"X-Poedit-Basepath: .\n"
|
21 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
-
"X-Poedit-SearchPath-0: ..\n"
|
23 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
-
|
25 |
-
#: ../framework/manifest.php:5
|
26 |
-
msgid "Unyson"
|
27 |
-
msgstr "Unyson"
|
28 |
-
|
29 |
-
#: ../framework/helpers/class-fw-wp-filesystem.php:43
|
30 |
-
msgid "Cannot connect to Filesystem directly"
|
31 |
-
msgstr "Kan geen directe verbinding maken met het bestandssyteem"
|
32 |
-
|
33 |
-
#: ../framework/helpers/class-fw-wp-filesystem.php:271
|
34 |
-
#, php-format
|
35 |
-
msgid "Cannot create directory \"%s\". It must be inside \"%s\""
|
36 |
-
msgstr "Kan de map \"%s\" niet aanmaken. Deze map moet aangemaakt worden in \"%s\""
|
37 |
-
|
38 |
-
#: ../framework/helpers/class-fw-wp-filesystem.php:273
|
39 |
-
msgid "\" or \""
|
40 |
-
msgstr "\" of \""
|
41 |
-
|
42 |
-
#: ../framework/helpers/class-fw-flash-messages.php:95
|
43 |
-
#, php-format
|
44 |
-
msgid "Invalid flash message type: %s"
|
45 |
-
msgstr "Ongeldig flitsbericht type: %s"
|
46 |
-
|
47 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:185
|
48 |
-
msgid "No items found."
|
49 |
-
msgstr "Geen items gevonden"
|
50 |
-
|
51 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:309
|
52 |
-
msgid "Bulk Actions"
|
53 |
-
msgstr "Bulk acties"
|
54 |
-
|
55 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:319
|
56 |
-
msgid "Apply"
|
57 |
-
msgstr "Toepassen"
|
58 |
-
|
59 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:403
|
60 |
-
msgid "All dates"
|
61 |
-
msgstr "Alle datums"
|
62 |
-
|
63 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:416
|
64 |
-
#, php-format
|
65 |
-
msgid "%1$s %2$d"
|
66 |
-
msgstr "%1$s %2$d"
|
67 |
-
|
68 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:432
|
69 |
-
msgid "List View"
|
70 |
-
msgstr "Lijstweergave"
|
71 |
-
|
72 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:433
|
73 |
-
msgid "Excerpt View"
|
74 |
-
msgstr "Detailweergave"
|
75 |
-
|
76 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:459
|
77 |
-
#, php-format
|
78 |
-
msgid "%s pending"
|
79 |
-
msgstr "%s wachtend"
|
80 |
-
|
81 |
-
#: ../framework/helpers/class-fw-wp-list-table.php:714
|
82 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:33
|
83 |
-
msgid "Select All"
|
84 |
-
msgstr "Alles Selecteren"
|
85 |
-
|
86 |
-
#: ../framework/helpers/general.php:1150
|
87 |
-
msgid "year"
|
88 |
-
msgstr "jaar"
|
89 |
-
|
90 |
-
#: ../framework/helpers/general.php:1151
|
91 |
-
msgid "years"
|
92 |
-
msgstr "jaren"
|
93 |
-
|
94 |
-
#: ../framework/helpers/general.php:1153
|
95 |
-
msgid "month"
|
96 |
-
msgstr "maand"
|
97 |
-
|
98 |
-
#: ../framework/helpers/general.php:1154
|
99 |
-
msgid "months"
|
100 |
-
msgstr "maanden"
|
101 |
-
|
102 |
-
#: ../framework/helpers/general.php:1156
|
103 |
-
msgid "week"
|
104 |
-
msgstr "week"
|
105 |
-
|
106 |
-
#: ../framework/helpers/general.php:1157
|
107 |
-
msgid "weeks"
|
108 |
-
msgstr "weken"
|
109 |
-
|
110 |
-
#: ../framework/helpers/general.php:1159
|
111 |
-
msgid "day"
|
112 |
-
msgstr "dag"
|
113 |
-
|
114 |
-
#: ../framework/helpers/general.php:1160
|
115 |
-
msgid "days"
|
116 |
-
msgstr "dagen"
|
117 |
-
|
118 |
-
#: ../framework/helpers/general.php:1162
|
119 |
-
msgid "hour"
|
120 |
-
msgstr "uur"
|
121 |
-
|
122 |
-
#: ../framework/helpers/general.php:1163
|
123 |
-
msgid "hours"
|
124 |
-
msgstr "uren"
|
125 |
-
|
126 |
-
#: ../framework/helpers/general.php:1165
|
127 |
-
msgid "minute"
|
128 |
-
msgstr "minuut"
|
129 |
-
|
130 |
-
#: ../framework/helpers/general.php:1166
|
131 |
-
msgid "minutes"
|
132 |
-
msgstr "minuten"
|
133 |
-
|
134 |
-
#: ../framework/helpers/general.php:1168
|
135 |
-
msgid "second"
|
136 |
-
msgstr "seconde"
|
137 |
-
|
138 |
-
#: ../framework/helpers/general.php:1169
|
139 |
-
msgid "seconds"
|
140 |
-
msgstr "seconden"
|
141 |
-
|
142 |
-
#: ../framework/helpers/general.php:1558
|
143 |
-
msgid "Maximum stack depth exceeded"
|
144 |
-
msgstr "Maximale stack diepte overschreden"
|
145 |
-
|
146 |
-
#: ../framework/helpers/general.php:1561
|
147 |
-
msgid "Underflow or the modes mismatch"
|
148 |
-
msgstr "Underflow or the modes mismatch"
|
149 |
-
|
150 |
-
#: ../framework/helpers/general.php:1564
|
151 |
-
msgid "Unexpected control character found"
|
152 |
-
msgstr "Onverwacht controleteken gevonden"
|
153 |
-
|
154 |
-
#: ../framework/helpers/general.php:1567
|
155 |
-
msgid "Syntax error, malformed JSON"
|
156 |
-
msgstr "Syntaxisfout, onjuist geformateerde JSON"
|
157 |
-
|
158 |
-
#: ../framework/helpers/general.php:1570
|
159 |
-
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
160 |
-
msgstr "Onjuist geformateerd UTF-8 karakters, mogelijk onjuist versleuteld"
|
161 |
-
|
162 |
-
#: ../framework/helpers/general.php:1573
|
163 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:550
|
164 |
-
msgid "Unknown error"
|
165 |
-
msgstr "Onbekende fout"
|
166 |
-
|
167 |
-
#: ../framework/helpers/class-fw-form.php:80
|
168 |
-
#, php-format
|
169 |
-
msgid "Form with id \"%s\" was already defined"
|
170 |
-
msgstr "Formulier met id \"%s\" was al gedefinieerd"
|
171 |
-
|
172 |
-
#: ../framework/helpers/class-fw-form.php:168
|
173 |
-
msgid "Nonce verification failed"
|
174 |
-
msgstr "Nonce verificatie mislukt"
|
175 |
-
|
176 |
-
#: ../framework/helpers/class-fw-form.php:331
|
177 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/views/form.php:13
|
178 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:66
|
179 |
-
msgid "Submit"
|
180 |
-
msgstr "Verzenden"
|
181 |
-
|
182 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:285
|
183 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:602
|
184 |
-
msgid "Cannot delete: "
|
185 |
-
msgstr "Kan niet verwijderen:"
|
186 |
-
|
187 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:292
|
188 |
-
msgid "Cannot create: "
|
189 |
-
msgstr "Kan niet aanmaken:"
|
190 |
-
|
191 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:370
|
192 |
-
msgid "Cannot remove old temporary directory: "
|
193 |
-
msgstr "Kan oude tijdelijke map niet verwijderen:"
|
194 |
-
|
195 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:376
|
196 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:572
|
197 |
-
msgid "Cannot create directory: "
|
198 |
-
msgstr "Kan map niet aanmaken: "
|
199 |
-
|
200 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:381
|
201 |
-
#, php-format
|
202 |
-
msgid "Downloading the %s..."
|
203 |
-
msgstr "Bezig met downloaden van de %s..."
|
204 |
-
|
205 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:386
|
206 |
-
#, php-format
|
207 |
-
msgid "Cannot download the %s."
|
208 |
-
msgstr "Kan de %s niet downloaden. "
|
209 |
-
|
210 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:396
|
211 |
-
#, php-format
|
212 |
-
msgid "Installing the %s..."
|
213 |
-
msgstr "Bezig met installeren van de %s..."
|
214 |
-
|
215 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:402
|
216 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:431
|
217 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:531
|
218 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:552
|
219 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:582
|
220 |
-
msgid "Cannot access directory: "
|
221 |
-
msgstr "Kan geen toegang krijgen tot map:"
|
222 |
-
|
223 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:421
|
224 |
-
msgid "Cannot remove: "
|
225 |
-
msgstr "Kan niet verwijderen:"
|
226 |
-
|
227 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:456
|
228 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:522
|
229 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:628
|
230 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:652
|
231 |
-
#, php-format
|
232 |
-
msgid "Cannot move \"%s\" to \"%s\""
|
233 |
-
msgstr "Kan \"%s\" niet naar \"%s\" verplaatsen"
|
234 |
-
|
235 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:472
|
236 |
-
#, php-format
|
237 |
-
msgid "Cannot merge \"%s\" with \"%s\""
|
238 |
-
msgstr "Kan \"%s\" niet samenvoegen met \"%s\""
|
239 |
-
|
240 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:485
|
241 |
-
#, php-format
|
242 |
-
msgid "The %s has been successfully updated."
|
243 |
-
msgstr "De %s is succesvol bijgewerkt. "
|
244 |
-
|
245 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:492
|
246 |
-
#, php-format
|
247 |
-
msgid "Cannot remove temporary directory \"%s\"."
|
248 |
-
msgstr "Kan tijdelijke map \"%s\" niet verwijderen."
|
249 |
-
|
250 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:672
|
251 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:740
|
252 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:808
|
253 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:930
|
254 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1427
|
255 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1837
|
256 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2054
|
257 |
-
msgid "Invalid nonce."
|
258 |
-
msgstr "Ongeldige nonce."
|
259 |
-
|
260 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:683
|
261 |
-
msgid "Framework Update"
|
262 |
-
msgstr "Framework Update"
|
263 |
-
|
264 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:699
|
265 |
-
msgid "Failed to get framework latest version."
|
266 |
-
msgstr "Niet gelukt om laatste versie van framework te verkrijgen. "
|
267 |
-
|
268 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:716
|
269 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:360
|
270 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:374
|
271 |
-
#: ../framework/extensions/update/views/updates-list.php:10
|
272 |
-
#: ../framework/core/class-fw-manifest.php:353
|
273 |
-
msgid "Framework"
|
274 |
-
msgstr "Framework"
|
275 |
-
|
276 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:751
|
277 |
-
msgid "Theme Update"
|
278 |
-
msgstr "Thema Update"
|
279 |
-
|
280 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:767
|
281 |
-
msgid "Failed to get theme latest version."
|
282 |
-
msgstr "Niet gelukt om de laatste versie van thema te verkrijgen. "
|
283 |
-
|
284 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:784
|
285 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:393
|
286 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:407
|
287 |
-
msgid "Theme"
|
288 |
-
msgstr "Thema"
|
289 |
-
|
290 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:817
|
291 |
-
msgid "Please check the extensions you want to update."
|
292 |
-
msgstr "Controleer de uitbreidingen die je wilt bijwerken."
|
293 |
-
|
294 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:841
|
295 |
-
msgid "Extensions Update"
|
296 |
-
msgstr "Uitbreidingen Update"
|
297 |
-
|
298 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:879
|
299 |
-
msgid "No extensions updates found."
|
300 |
-
msgstr "Geen updates van uitbreidingen gevonden. "
|
301 |
-
|
302 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:886
|
303 |
-
#, php-format
|
304 |
-
msgid "Extension \"%s\" does not exist or is disabled."
|
305 |
-
msgstr "Uitbreiding \"%s\" bestaat niet of is uitgeschakeld."
|
306 |
-
|
307 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:893
|
308 |
-
#, php-format
|
309 |
-
msgid "No update found for the \"%s\" extension."
|
310 |
-
msgstr "Geen update gevonden voor de \"%s\" uitbreiding."
|
311 |
-
|
312 |
-
#: ../framework/extensions/update/class-fw-extension-update.php:915
|
313 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:426
|
314 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:440
|
315 |
-
#, php-format
|
316 |
-
msgid "%s extension"
|
317 |
-
msgstr "%s uitbreiding"
|
318 |
-
|
319 |
-
#: ../framework/extensions/update/manifest.php:5
|
320 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/fullscreen.php:82
|
321 |
-
msgid "Update"
|
322 |
-
msgstr "Bijwerken"
|
323 |
-
|
324 |
-
#: ../framework/extensions/update/manifest.php:6
|
325 |
-
msgid "Keep you framework, extensions and theme up to date."
|
326 |
-
msgstr "Houd je framework, uitbreidingen en thema up-to-date."
|
327 |
-
|
328 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:91
|
329 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:232
|
330 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2439
|
331 |
-
msgid "Github error:"
|
332 |
-
msgstr "Github fout:"
|
333 |
-
|
334 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:100
|
335 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:241
|
336 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2446
|
337 |
-
#, php-format
|
338 |
-
msgid "Failed to access Github repository \"%s\" releases. (Response code: %d)"
|
339 |
-
msgstr "Toegang tot Github repository \"%s\" releases mislukt. (Response code: %d)"
|
340 |
-
|
341 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:108
|
342 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:249
|
343 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2462
|
344 |
-
#, php-format
|
345 |
-
msgid "Failed to access Github repository \"%s\" releases."
|
346 |
-
msgstr "Toegang tot Github repository \"%s\" releases mislukt."
|
347 |
-
|
348 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:122
|
349 |
-
#, php-format
|
350 |
-
msgid "No releases found in repository \"%s\"."
|
351 |
-
msgstr "Geen releases gevonden in repository: \"%s\"."
|
352 |
-
|
353 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:143
|
354 |
-
#, php-format
|
355 |
-
msgid ""
|
356 |
-
"%s manifest has invalid \"github_update\" parameter. Please use "
|
357 |
-
"\"user/repo\" format."
|
358 |
-
msgstr "%s manifest heeft ongeldige \"github_update\" parameter. Gebruik de \"user/repo\" indeling."
|
359 |
-
|
360 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:171
|
361 |
-
#, php-format
|
362 |
-
msgid "Failed to fetch %s latest version from github \"%s\"."
|
363 |
-
msgstr "Niet gelukt om laatste %s versie van github \"%s\" te verkrijgen. "
|
364 |
-
|
365 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:264
|
366 |
-
#, php-format
|
367 |
-
msgid "%s github repository \"%s\" does not have the \"%s\" release."
|
368 |
-
msgstr "%s github repository \"%s\" beschikt niet over de \"%s\" release."
|
369 |
-
|
370 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:284
|
371 |
-
#, php-format
|
372 |
-
msgid "Cannot download %s zip."
|
373 |
-
msgstr "Kan %s zip niet downloaden. "
|
374 |
-
|
375 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:297
|
376 |
-
#, php-format
|
377 |
-
msgid "Cannot save %s zip."
|
378 |
-
msgstr "Kan %s zip niet opslaan."
|
379 |
-
|
380 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:316
|
381 |
-
#, php-format
|
382 |
-
msgid "Cannot remove %s zip."
|
383 |
-
msgstr "Kan %s zip niet verwijderen."
|
384 |
-
|
385 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:325
|
386 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2566
|
387 |
-
msgid "Cannot access the unzipped directory files."
|
388 |
-
msgstr "Kan de bestanden van de uitgepakte map niet benaderen."
|
389 |
-
|
390 |
-
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:341
|
391 |
-
#, php-format
|
392 |
-
msgid "The unzipped %s directory not found."
|
393 |
-
msgstr "De uitgepakte %s map kan niet worden gevonden. "
|
394 |
-
|
395 |
-
#: ../framework/extensions/update/views/updates-list.php:12
|
396 |
-
#, php-format
|
397 |
-
msgid "You have the latest version of %s."
|
398 |
-
msgstr "Je hebt de laatste versie van %s."
|
399 |
-
|
400 |
-
#: ../framework/extensions/update/views/updates-list.php:25
|
401 |
-
msgid "Update Framework"
|
402 |
-
msgstr "Framework Bijwerken"
|
403 |
-
|
404 |
-
#: ../framework/extensions/update/views/updates-list.php:37
|
405 |
-
msgid "Your theme is up to date."
|
406 |
-
msgstr "Je thema is up-to-date."
|
407 |
-
|
408 |
-
#: ../framework/extensions/update/views/updates-list.php:50
|
409 |
-
msgid "Update Theme"
|
410 |
-
msgstr "Thema Bijwerken"
|
411 |
-
|
412 |
-
#: ../framework/extensions/update/views/updates-list.php:60
|
413 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:844
|
414 |
-
#, php-format
|
415 |
-
msgid "%s Extensions"
|
416 |
-
msgstr "%s Uitbreidingen"
|
417 |
-
|
418 |
-
#: ../framework/extensions/update/views/updates-list.php:62
|
419 |
-
#, php-format
|
420 |
-
msgid "You have the latest version of %s Extensions."
|
421 |
-
msgstr "Je hebt de laatste versie van %s Uitbreidingen."
|
422 |
-
|
423 |
-
#: ../framework/extensions/update/views/updates-list.php:80
|
424 |
-
#: ../framework/extensions/update/views/updates-list.php:95
|
425 |
-
#: ../framework/extensions/update/views/updates-list.php:100
|
426 |
-
msgid "Update Extensions"
|
427 |
-
msgstr "Uitbreidingen Bijwerken"
|
428 |
-
|
429 |
-
#: ../framework/extensions/update/views/updates-list.php:99
|
430 |
-
msgid "New extensions updates available."
|
431 |
-
msgstr "Nieuwe uitbreidingen beschikbaar."
|
432 |
-
|
433 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:16
|
434 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:14
|
435 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:16
|
436 |
-
msgid "Go to updates page"
|
437 |
-
msgstr "Ga naar updates pagina"
|
438 |
-
|
439 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:19
|
440 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:17
|
441 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:19
|
442 |
-
msgid "Return to Updates page"
|
443 |
-
msgstr "Keer terug naar Updates pagina. "
|
444 |
-
|
445 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:84
|
446 |
-
#, php-format
|
447 |
-
msgid "You have version %s installed. Update to %s."
|
448 |
-
msgstr "Je hebt versie %s geïnstalleerd. Werk bij naar %s."
|
449 |
-
|
450 |
-
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:126
|
451 |
-
msgid "No Extensions for update."
|
452 |
-
msgstr "Geen Uitbreidingen voor de update."
|
453 |
-
|
454 |
-
#: ../framework/extensions/portfolio/manifest.php:7
|
455 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:260
|
456 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:72
|
457 |
-
msgid "Portfolio"
|
458 |
-
msgstr "Portfolio"
|
459 |
-
|
460 |
-
#: ../framework/extensions/portfolio/manifest.php:9
|
461 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:73
|
462 |
-
msgid ""
|
463 |
-
"This extension will add a fully fledged portfolio module that will let you "
|
464 |
-
"display your projects using the built in portfolio pages."
|
465 |
-
msgstr "Deze uitbreiding voegt een volledig uitgeruste portfolio module toe, die het mogelijk maakt om je projecten te tonen door middel van de ingebouwde portfolio pagina's."
|
466 |
-
|
467 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:115
|
468 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
469 |
-
msgid "Project"
|
470 |
-
msgstr "Project"
|
471 |
-
|
472 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:116
|
473 |
-
msgid "Projects"
|
474 |
-
msgstr "Projecten"
|
475 |
-
|
476 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:123
|
477 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:63
|
478 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:127
|
479 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:57
|
480 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:58
|
481 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:76
|
482 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:8
|
483 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:32
|
484 |
-
msgid "Add New"
|
485 |
-
msgstr "Nieuwe Toevoegen"
|
486 |
-
|
487 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:124
|
488 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:198
|
489 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:64
|
490 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:128
|
491 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:77
|
492 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:131
|
493 |
-
#, php-format
|
494 |
-
msgid "Add New %s"
|
495 |
-
msgstr "Nieuwe %s toevoegen"
|
496 |
-
|
497 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:125
|
498 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:129
|
499 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:89
|
500 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:76
|
501 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:88
|
502 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:86
|
503 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:68
|
504 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:34
|
505 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:50
|
506 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:110
|
507 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:45
|
508 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:37
|
509 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:73
|
510 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:81
|
511 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:55
|
512 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:57
|
513 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:50
|
514 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:54
|
515 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:52
|
516 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:53
|
517 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:53
|
518 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:52
|
519 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:52
|
520 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:50
|
521 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:78
|
522 |
-
#: ../framework/includes/option-types/popup/class-fw-option-type-popup.php:158
|
523 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:151
|
524 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:177
|
525 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:161
|
526 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:187
|
527 |
-
msgid "Edit"
|
528 |
-
msgstr "Bewerk"
|
529 |
-
|
530 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:126
|
531 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:196
|
532 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:65
|
533 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:66
|
534 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:130
|
535 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:192
|
536 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:59
|
537 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:60
|
538 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:79
|
539 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:129
|
540 |
-
#, php-format
|
541 |
-
msgid "Edit %s"
|
542 |
-
msgstr "Bewerk %s"
|
543 |
-
|
544 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:127
|
545 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:67
|
546 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:131
|
547 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:61
|
548 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:80
|
549 |
-
#, php-format
|
550 |
-
msgid "New %s"
|
551 |
-
msgstr "Nieuw %s"
|
552 |
-
|
553 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:128
|
554 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:193
|
555 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:68
|
556 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:132
|
557 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:189
|
558 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:62
|
559 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:81
|
560 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:126
|
561 |
-
#, php-format
|
562 |
-
msgid "All %s"
|
563 |
-
msgstr "Alle %s"
|
564 |
-
|
565 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:129
|
566 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:130
|
567 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:69
|
568 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:70
|
569 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:133
|
570 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:134
|
571 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:63
|
572 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:64
|
573 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:82
|
574 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:83
|
575 |
-
#, php-format
|
576 |
-
msgid "View %s"
|
577 |
-
msgstr "Bekijk %s"
|
578 |
-
|
579 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:131
|
580 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:192
|
581 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:71
|
582 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:135
|
583 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:65
|
584 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:84
|
585 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:125
|
586 |
-
#, php-format
|
587 |
-
msgid "Search %s"
|
588 |
-
msgstr "Zoek %s"
|
589 |
-
|
590 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:132
|
591 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:72
|
592 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:136
|
593 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:66
|
594 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:85
|
595 |
-
#, php-format
|
596 |
-
msgid "No %s Found"
|
597 |
-
msgstr "Geen %s Gevonden"
|
598 |
-
|
599 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:133
|
600 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:73
|
601 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:137
|
602 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:67
|
603 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:86
|
604 |
-
#, php-format
|
605 |
-
msgid "No %s Found In Trash"
|
606 |
-
msgstr "Geen %s Gevonden In Prullenbak"
|
607 |
-
|
608 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:136
|
609 |
-
msgid "Create a portfolio item"
|
610 |
-
msgstr "Maak een portfolio onderdeel aan"
|
611 |
-
|
612 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:183
|
613 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:116
|
614 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:268
|
615 |
-
msgid "Category"
|
616 |
-
msgstr "Categorie"
|
617 |
-
|
618 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:184
|
619 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:117
|
620 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:168
|
621 |
-
msgid "Categories"
|
622 |
-
msgstr "Categorieën"
|
623 |
-
|
624 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:194
|
625 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:190
|
626 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:127
|
627 |
-
#, php-format
|
628 |
-
msgid "Parent %s"
|
629 |
-
msgstr "Ouder %s"
|
630 |
-
|
631 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:195
|
632 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:191
|
633 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:128
|
634 |
-
#, php-format
|
635 |
-
msgid "Parent %s:"
|
636 |
-
msgstr "Ouder %s:"
|
637 |
-
|
638 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:197
|
639 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:193
|
640 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:130
|
641 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:234
|
642 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:272
|
643 |
-
#, php-format
|
644 |
-
msgid "Update %s"
|
645 |
-
msgstr "Bijwerken %s"
|
646 |
-
|
647 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:199
|
648 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:195
|
649 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:132
|
650 |
-
#, php-format
|
651 |
-
msgid "New %s Name"
|
652 |
-
msgstr "Nieuwe %s Naam"
|
653 |
-
|
654 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:200
|
655 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:196
|
656 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:133
|
657 |
-
#, php-format
|
658 |
-
msgid "%s"
|
659 |
-
msgstr "%s"
|
660 |
-
|
661 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
662 |
-
msgid "Gallery"
|
663 |
-
msgstr "Galerij"
|
664 |
-
|
665 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:240
|
666 |
-
msgid
|
667 |
-
msgstr "Stel project galerij in"
|
668 |
-
|
669 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:241
|
670 |
-
msgid "Edit project gallery"
|
671 |
-
msgstr "Bewerk project gallerij"
|
672 |
-
|
673 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:271
|
674 |
-
msgid "Project Cover Image"
|
675 |
-
msgstr "Project Cover Foto"
|
676 |
-
|
677 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:287
|
678 |
-
msgid "Edit this item"
|
679 |
-
msgstr "Bewerk dit onderdeel"
|
680 |
-
|
681 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:348
|
682 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:361
|
683 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:320
|
684 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:333
|
685 |
-
msgid "View all categories"
|
686 |
-
msgstr "Bekijk alle categorieën"
|
687 |
-
|
688 |
-
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:381
|
689 |
-
msgid "Cover Image"
|
690 |
-
msgstr "Cover Afbeelding"
|
691 |
-
|
692 |
-
#: ../framework/extensions/seo/settings-options.php:17
|
693 |
-
#: ../framework/extensions/social/settings-options.php:11
|
694 |
-
msgid "General"
|
695 |
-
msgstr "Algemeen"
|
696 |
-
|
697 |
-
#: ../framework/extensions/seo/settings-options.php:21
|
698 |
-
#: ../framework/extensions/social/settings-options.php:15
|
699 |
-
msgid "General Settings"
|
700 |
-
msgstr "Algemene Instellingen"
|
701 |
-
|
702 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:89
|
703 |
-
msgid "Site name"
|
704 |
-
msgstr "Site naam"
|
705 |
-
|
706 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:95
|
707 |
-
msgid "Site description"
|
708 |
-
msgstr "Site omschrijving"
|
709 |
-
|
710 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:101
|
711 |
-
msgid "Current time"
|
712 |
-
msgstr "Huidige tijd"
|
713 |
-
|
714 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:107
|
715 |
-
msgid "Current date"
|
716 |
-
msgstr "Huidige datum"
|
717 |
-
|
718 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:113
|
719 |
-
msgid "Current month"
|
720 |
-
msgstr "Huidige maand"
|
721 |
-
|
722 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:119
|
723 |
-
msgid "Current year"
|
724 |
-
msgstr "Huidig jaar"
|
725 |
-
|
726 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:125
|
727 |
-
msgid "Date of the post/page"
|
728 |
-
msgstr "Datum van bericht/pagina"
|
729 |
-
|
730 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:131
|
731 |
-
msgid "Title of the post/page/term"
|
732 |
-
msgstr "Titel van bericht/pagina/term"
|
733 |
-
|
734 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:137
|
735 |
-
msgid "Excerpt of the current post, of auto-generate if it is not set"
|
736 |
-
msgstr "Samenvatting van het huidige bericht, of auto-genereren indien niet ingesteld"
|
737 |
-
|
738 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:143
|
739 |
-
msgid "Excerpt of the current post, without auto-generation"
|
740 |
-
msgstr "Samenvatting van het huidige bericht, zonder auto-generatie"
|
741 |
-
|
742 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:149
|
743 |
-
msgid "Post tags, separated by coma"
|
744 |
-
msgstr "Bericht tags, gescheiden door komma's"
|
745 |
-
|
746 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:155
|
747 |
-
msgid "Post categories, separated by coma"
|
748 |
-
msgstr "Bericht categorieën, gescheiden door komma's"
|
749 |
-
|
750 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:161
|
751 |
-
msgid "Category/tag/term description"
|
752 |
-
msgstr "Categorie/tag/term beschrijving"
|
753 |
-
|
754 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:167
|
755 |
-
msgid "Term title"
|
756 |
-
msgstr "Term titel"
|
757 |
-
|
758 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:173
|
759 |
-
msgid "Post modified time"
|
760 |
-
msgstr "Aangepaste tijd van bericht"
|
761 |
-
|
762 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:179
|
763 |
-
msgid "Post/page id"
|
764 |
-
msgstr "Bericht/pagina id"
|
765 |
-
|
766 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:185
|
767 |
-
msgid "Post/page author \"nicename\""
|
768 |
-
msgstr "Bericht/pagina auteur \"bijnaam\""
|
769 |
-
|
770 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:191
|
771 |
-
msgid "Post/page author id"
|
772 |
-
msgstr "Bericht/pagina auteur id"
|
773 |
-
|
774 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:197
|
775 |
-
msgid "Search phrase in search page"
|
776 |
-
msgstr "Zoek zin in zoek pagina"
|
777 |
-
|
778 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:203
|
779 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:209
|
780 |
-
msgid "Page number"
|
781 |
-
msgstr "Paginanummer"
|
782 |
-
|
783 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:215
|
784 |
-
msgid "Attachment caption"
|
785 |
-
msgstr "Onderschrift voor bijlage"
|
786 |
-
|
787 |
-
#: ../framework/extensions/seo/class-fw-extension-seo.php:435
|
788 |
-
#: ../framework/extensions/seo/manifest.php:7
|
789 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:120
|
790 |
-
msgid "SEO"
|
791 |
-
msgstr "SEO"
|
792 |
-
|
793 |
-
#: ../framework/extensions/seo/manifest.php:9
|
794 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:121
|
795 |
-
msgid ""
|
796 |
-
"This extension will enable you to have a fully optimized WordPress website "
|
797 |
-
"by adding optimized meta titles, keywords and descriptions."
|
798 |
-
msgstr "Deze uitbreiding helpt je een volledig geoptimaliseerde WordPress website te krijgen, door het toevoegen van geoptimaliseerde meta titels, sleutelwoorden en beschrijvingen. "
|
799 |
-
|
800 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:22
|
801 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:310
|
802 |
-
msgid "Titles & Meta"
|
803 |
-
msgstr "TItels & Meta"
|
804 |
-
|
805 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:26
|
806 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:6
|
807 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:9
|
808 |
-
msgid "Homepage"
|
809 |
-
msgstr "Homepage"
|
810 |
-
|
811 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:30
|
812 |
-
msgid "Homepage Title"
|
813 |
-
msgstr "Homepage Titel"
|
814 |
-
|
815 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:31
|
816 |
-
msgid "Set homepage title format"
|
817 |
-
msgstr "Stel de titel indeling voor de homepage in"
|
818 |
-
|
819 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:36
|
820 |
-
msgid "Homepage Description"
|
821 |
-
msgstr "Homepage Beschrijving"
|
822 |
-
|
823 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:37
|
824 |
-
msgid "Set homepage description"
|
825 |
-
msgstr "Stel de beschrijving voor de homepage in"
|
826 |
-
|
827 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:44
|
828 |
-
msgid "Homepage Meta Keywords"
|
829 |
-
msgstr "Homepage Meta Trefwoorden"
|
830 |
-
|
831 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:45
|
832 |
-
msgid "Set homepage meta keywords"
|
833 |
-
msgstr "Stel de meta trefwoorden voor de homepage in"
|
834 |
-
|
835 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:54
|
836 |
-
msgid "Custom Posts"
|
837 |
-
msgstr "Custom Posts"
|
838 |
-
|
839 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:59
|
840 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:111
|
841 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:120
|
842 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:7
|
843 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:15
|
844 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:12
|
845 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:8
|
846 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:15
|
847 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:56
|
848 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:480
|
849 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:62
|
850 |
-
msgid "Title"
|
851 |
-
msgstr "Titel"
|
852 |
-
|
853 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:60
|
854 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:112
|
855 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:287
|
856 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:315
|
857 |
-
msgid "Set title format"
|
858 |
-
msgstr "Stel titel indeling in"
|
859 |
-
|
860 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:63
|
861 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:74
|
862 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:87
|
863 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:115
|
864 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:126
|
865 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:139
|
866 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:247
|
867 |
-
msgid "Here are some tags examples:"
|
868 |
-
msgstr "Hier zijn enkele voorbeelden van tags:"
|
869 |
-
|
870 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:70
|
871 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:122
|
872 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:320
|
873 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:66
|
874 |
-
msgid "Description"
|
875 |
-
msgstr "Beschrijving"
|
876 |
-
|
877 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:71
|
878 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:123
|
879 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:293
|
880 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:321
|
881 |
-
msgid "Set description format"
|
882 |
-
msgstr "Stel beschrijving indeling in"
|
883 |
-
|
884 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:83
|
885 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:135
|
886 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:328
|
887 |
-
msgid "Meta Keywords"
|
888 |
-
msgstr "Meta Sleutelwoorden"
|
889 |
-
|
890 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:84
|
891 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:136
|
892 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:329
|
893 |
-
msgid "Set meta keywords"
|
894 |
-
msgstr "Stel meta trefwoorden in"
|
895 |
-
|
896 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:96
|
897 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:148
|
898 |
-
msgid "Meta Robots"
|
899 |
-
msgstr "Meta Robots"
|
900 |
-
|
901 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:97
|
902 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:149
|
903 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:188
|
904 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:227
|
905 |
-
msgid "noindex, follow"
|
906 |
-
msgstr "noindex, follow"
|
907 |
-
|
908 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:105
|
909 |
-
msgid "Taxonomies"
|
910 |
-
msgstr "Taxonomieën"
|
911 |
-
|
912 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:158
|
913 |
-
msgid "Other"
|
914 |
-
msgstr "Andere"
|
915 |
-
|
916 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:165
|
917 |
-
msgid "Author Page Title"
|
918 |
-
msgstr "Auteurspagina Titel"
|
919 |
-
|
920 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:166
|
921 |
-
msgid "Set author page title format"
|
922 |
-
msgstr "Stel de titel indeling voor de auteurspagina in"
|
923 |
-
|
924 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:171
|
925 |
-
msgid "Author Page Description"
|
926 |
-
msgstr "Auteurspagina Beschrijving"
|
927 |
-
|
928 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:172
|
929 |
-
msgid "Set author page description"
|
930 |
-
msgstr "Stel de omschrijving voor de auteurspagina in"
|
931 |
-
|
932 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:179
|
933 |
-
msgid "Author Meta Keywords"
|
934 |
-
msgstr "Auteur Meta Trefwoorden"
|
935 |
-
|
936 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:180
|
937 |
-
msgid "Set author page meta keywords"
|
938 |
-
msgstr "Stel de meta trefwoorden voor de auteurspagina in"
|
939 |
-
|
940 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:187
|
941 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:226
|
942 |
-
msgid "Metarobots"
|
943 |
-
msgstr "Metarobots"
|
944 |
-
|
945 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:193
|
946 |
-
msgid "Disable Author Archives"
|
947 |
-
msgstr "Auteursarchieven Uitschakelen"
|
948 |
-
|
949 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:194
|
950 |
-
msgid "Disable Author archives SEO settings"
|
951 |
-
msgstr "Schakel SEO instellingen voor Auteursarchieven uit"
|
952 |
-
|
953 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:204
|
954 |
-
msgid "Date Achieves Title"
|
955 |
-
msgstr "Datumarchieven Titel"
|
956 |
-
|
957 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:205
|
958 |
-
msgid "Set date achieves title format"
|
959 |
-
msgstr "Stel de titel indeling voor de datumarchieven in"
|
960 |
-
|
961 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:210
|
962 |
-
msgid "Date Achieves Description"
|
963 |
-
msgstr "Datumarchieven Beschrijving"
|
964 |
-
|
965 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:211
|
966 |
-
msgid "Set date achieves description"
|
967 |
-
msgstr "Stel de beschrijving voor de datumarchieven in"
|
968 |
-
|
969 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:218
|
970 |
-
msgid "Date achieves Meta Keywords"
|
971 |
-
msgstr "Datumarchieven Meta Trefwoordden"
|
972 |
-
|
973 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:219
|
974 |
-
msgid "Set date achieves meta keywords"
|
975 |
-
msgstr "Stel de meta trefwoorden voor de datumarchieven in"
|
976 |
-
|
977 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:232
|
978 |
-
msgid "Disable Date Archives"
|
979 |
-
msgstr "Datumarchieven Uitschakelen"
|
980 |
-
|
981 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:233
|
982 |
-
msgid "Disable date archives SEO settings"
|
983 |
-
msgstr "Schakel SEO instellingen voor datumarchieven uit"
|
984 |
-
|
985 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:243
|
986 |
-
msgid "Search Page Title"
|
987 |
-
msgstr "Zoekpagina Titel"
|
988 |
-
|
989 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:244
|
990 |
-
msgid "Set search page title format"
|
991 |
-
msgstr "Stel de titel indeling voor de zoekpagina in"
|
992 |
-
|
993 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:259
|
994 |
-
msgid "404 Page Title"
|
995 |
-
msgstr "404 Pagina Titel"
|
996 |
-
|
997 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:260
|
998 |
-
msgid "Set 404 page title format"
|
999 |
-
msgstr "Stel de titel indeling voor de 404 pagina in"
|
1000 |
-
|
1001 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:262
|
1002 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:8
|
1003 |
-
msgid "404 Not Found"
|
1004 |
-
msgstr "404 Niet Gevonden"
|
1005 |
-
|
1006 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:286
|
1007 |
-
msgid "SEO Title"
|
1008 |
-
msgstr "SEO Titel"
|
1009 |
-
|
1010 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:292
|
1011 |
-
msgid "SEO Description"
|
1012 |
-
msgstr "SEO Beschrijving"
|
1013 |
-
|
1014 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:314
|
1015 |
-
msgid "Page Title"
|
1016 |
-
msgstr "Pagina Titel"
|
1017 |
-
|
1018 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:356
|
1019 |
-
msgid "Use Meta Keywords"
|
1020 |
-
msgstr "Gebruik Meta Trefwoorden"
|
1021 |
-
|
1022 |
-
#: ../framework/extensions/seo/extensions/seo-titles-metas/includes/fw-title-meta-options.php:357
|
1023 |
-
msgid "Allow the use of meta keywords in posts and taxonomies"
|
1024 |
-
msgstr "Sta het gebruik van meta trefwoorden in berichten en taxonomieën toe"
|
1025 |
-
|
1026 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:33
|
1027 |
-
msgid "Google Webmasters"
|
1028 |
-
msgstr "Google Webmasters"
|
1029 |
-
|
1030 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:34
|
1031 |
-
msgid "Insert Google Webmasters verification code"
|
1032 |
-
msgstr "Voer de Google Webmasters verificatiecode in"
|
1033 |
-
|
1034 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:41
|
1035 |
-
msgid "Bing Webmasters"
|
1036 |
-
msgstr "Bing Webmasters"
|
1037 |
-
|
1038 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:42
|
1039 |
-
msgid "Insert Bing Webmasters verification code"
|
1040 |
-
msgstr "Voer de Bing Webmasters verificatiecode in"
|
1041 |
-
|
1042 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:80
|
1043 |
-
msgid "Webmasters"
|
1044 |
-
msgstr "Webmasters"
|
1045 |
-
|
1046 |
-
#: ../framework/extensions/seo/extensions/seo-webmasters/class-fw-extension-seo-webmasters.php:89
|
1047 |
-
#, php-format
|
1048 |
-
msgid "Webmaster %s already exists"
|
1049 |
-
msgstr "Webmaster %s bestaat al"
|
1050 |
-
|
1051 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:634
|
1052 |
-
msgid "Google"
|
1053 |
-
msgstr "Google"
|
1054 |
-
|
1055 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/class-fw-extension-seo-sitemap.php:638
|
1056 |
-
msgid "Bing"
|
1057 |
-
msgstr "Bing"
|
1058 |
-
|
1059 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:19
|
1060 |
-
msgid "Check if you want to exclude this page"
|
1061 |
-
msgstr "Vink aan als je deze pagina wilt uitsluiten"
|
1062 |
-
|
1063 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:40
|
1064 |
-
msgid "Check if you want to exclude this category"
|
1065 |
-
msgstr "Vink aan als je deze categorie wilt uitsluiten"
|
1066 |
-
|
1067 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:57
|
1068 |
-
msgid "Sitemap"
|
1069 |
-
msgstr "Sitemap"
|
1070 |
-
|
1071 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:68
|
1072 |
-
msgid "View Sitemap"
|
1073 |
-
msgstr "Bekijk Sitemap"
|
1074 |
-
|
1075 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:69
|
1076 |
-
msgid "Press button to view sitemap file"
|
1077 |
-
msgstr "Klik op de knop om het sitemap bestand te zien"
|
1078 |
-
|
1079 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:71
|
1080 |
-
msgid "XML Sitemap"
|
1081 |
-
msgstr "XML Sitemap"
|
1082 |
-
|
1083 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:81
|
1084 |
-
msgid "Search Engines"
|
1085 |
-
msgstr "Zoekmachines"
|
1086 |
-
|
1087 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:83
|
1088 |
-
msgid "After adding content the extension will automatically ping to:"
|
1089 |
-
msgstr "Na het toevoegen van de inhoud zal de uitbreiding automatisch contact zoeken met:"
|
1090 |
-
|
1091 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:93
|
1092 |
-
msgid "Exclude Pages"
|
1093 |
-
msgstr "Pagina's Uitsluiten"
|
1094 |
-
|
1095 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:95
|
1096 |
-
msgid "Please check the pages you do not want to include in sitemap"
|
1097 |
-
msgstr "Vink de pagina's aan die je wilt uitsluiten van de sitemap"
|
1098 |
-
|
1099 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:106
|
1100 |
-
msgid "Exclude Categories"
|
1101 |
-
msgstr "Categorieën Uitsluiten"
|
1102 |
-
|
1103 |
-
#: ../framework/extensions/seo/extensions/seo-sitemap/includes/fw-sitemap-options.php:108
|
1104 |
-
msgid "Please check the categories you do not want to include in sitemap"
|
1105 |
-
msgstr "Vink de categorieën aan die je wilt uitsluiten van de sitemap"
|
1106 |
-
|
1107 |
-
#: ../framework/extensions/mailer/manifest.php:5
|
1108 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:187
|
1109 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:188
|
1110 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:103
|
1111 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:240
|
1112 |
-
msgid "Mailer"
|
1113 |
-
msgstr "Mailer"
|
1114 |
-
|
1115 |
-
#: ../framework/extensions/mailer/manifest.php:6
|
1116 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:241
|
1117 |
-
msgid ""
|
1118 |
-
"This extension will let you set some global email options and it is used by "
|
1119 |
-
"other extensions (like Forms) to send emails."
|
1120 |
-
msgstr "Deze uitbreiding maakt het mogelijk bepaalde globale emailinstellingen te configureren, die ook door andere uitbreidingen (zoals Formulieren) gebruikt worden om e-mails te verzenden."
|
1121 |
-
|
1122 |
-
#: ../framework/extensions/mailer/class-fw-extension-mailer.php:48
|
1123 |
-
msgid "Invalid send method"
|
1124 |
-
msgstr "Ongeldige verzendmethode"
|
1125 |
-
|
1126 |
-
#: ../framework/extensions/mailer/class-fw-extension-mailer.php:81
|
1127 |
-
msgid "The message has been successfully sent!"
|
1128 |
-
msgstr "Het bericht is succesvol verzonden!"
|
1129 |
-
|
1130 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:27
|
1131 |
-
msgid "Invalid email configuration"
|
1132 |
-
msgstr "Ongeldige e-mailconfiguratie"
|
1133 |
-
|
1134 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:145
|
1135 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:161
|
1136 |
-
msgid "Email sent"
|
1137 |
-
msgstr "E-mail verzonden"
|
1138 |
-
|
1139 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:146
|
1140 |
-
msgid "Could not send via smtp"
|
1141 |
-
msgstr "Kon niet verzenden via SMTP"
|
1142 |
-
|
1143 |
-
#: ../framework/extensions/mailer/includes/class-mailer-sender.php:162
|
1144 |
-
msgid "Could not send via wp_mail"
|
1145 |
-
msgstr "Kon niet verzenden via wp_mail"
|
1146 |
-
|
1147 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:25
|
1148 |
-
msgid "Server Address"
|
1149 |
-
msgstr "Server Adres"
|
1150 |
-
|
1151 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:26
|
1152 |
-
msgid "Enter your email server"
|
1153 |
-
msgstr "Geef de naam van je e-mailserver in"
|
1154 |
-
|
1155 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:31
|
1156 |
-
msgid "Username"
|
1157 |
-
msgstr "Gebruikersnaam"
|
1158 |
-
|
1159 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:32
|
1160 |
-
msgid "Enter your username"
|
1161 |
-
msgstr "Geef je gebruikersnaam in"
|
1162 |
-
|
1163 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:37
|
1164 |
-
msgid "Password"
|
1165 |
-
msgstr "Wachtwoord"
|
1166 |
-
|
1167 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:38
|
1168 |
-
msgid "Enter your password"
|
1169 |
-
msgstr "Geef je wachtwoord in"
|
1170 |
-
|
1171 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:43
|
1172 |
-
msgid "Secure Connection"
|
1173 |
-
msgstr "Veilige Verbinding"
|
1174 |
-
|
1175 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:54
|
1176 |
-
msgid "Custom Port"
|
1177 |
-
msgstr "Aangepaste Poort"
|
1178 |
-
|
1179 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:55
|
1180 |
-
msgid "Optional - SMTP port number to use."
|
1181 |
-
msgstr "Optioneel - te gebruiken poortnummer voor SMTP."
|
1182 |
-
|
1183 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:56
|
1184 |
-
msgid "Leave blank for default (SMTP - 25, SMTPS - 465)"
|
1185 |
-
msgstr "Laat leeg voor standaard (SMTP - 25, SMTPS - 465)"
|
1186 |
-
|
1187 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:82
|
1188 |
-
msgid "Username cannot be empty"
|
1189 |
-
msgstr "Gebruikersnaam kan niet leeg zijn"
|
1190 |
-
|
1191 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:89
|
1192 |
-
msgid "Password cannot be empty"
|
1193 |
-
msgstr "Wachtwoord kan niet leeg zijn"
|
1194 |
-
|
1195 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:96
|
1196 |
-
msgid "Invalid host"
|
1197 |
-
msgstr "Ongeldige host"
|
1198 |
-
|
1199 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-smtp.php:176
|
1200 |
-
#: ../framework/extensions/mailer/includes/send-methods/class-fw-ext-mailer-send-method-wpmail.php:56
|
1201 |
-
msgid "Could not send the email"
|
1202 |
-
msgstr "De e-mail kon niet worden verzonden"
|
1203 |
-
|
1204 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:76
|
1205 |
-
msgid "Send Method"
|
1206 |
-
msgstr "Verzendmethode"
|
1207 |
-
|
1208 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:77
|
1209 |
-
msgid "Select the send form method"
|
1210 |
-
msgstr "Selecteer de verzendmethode voor het formulier"
|
1211 |
-
|
1212 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:94
|
1213 |
-
msgid "From Name"
|
1214 |
-
msgstr "Afzender Naam"
|
1215 |
-
|
1216 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:95
|
1217 |
-
msgid "The name you'll see in the From filed in your email client."
|
1218 |
-
msgstr "De naam die wordt getoond als afzender in je e-mailclient."
|
1219 |
-
|
1220 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:102
|
1221 |
-
msgid "From Address"
|
1222 |
-
msgstr "Afzender Adres"
|
1223 |
-
|
1224 |
-
#: ../framework/extensions/mailer/includes/option-type-mailer/class-fw-option-type-mailer.php:103
|
1225 |
-
msgid "The form will look like was sent from this email address."
|
1226 |
-
msgstr "Het adres dat zal worden getoond als afzender van het formulier."
|
1227 |
-
|
1228 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:56
|
1229 |
-
msgid "Lesson"
|
1230 |
-
msgstr "Les"
|
1231 |
-
|
1232 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:57
|
1233 |
-
#: ../framework/extensions/learning/views/content-course.php:14
|
1234 |
-
msgid "Lessons"
|
1235 |
-
msgstr "Lessen"
|
1236 |
-
|
1237 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:78
|
1238 |
-
msgid "Create a lesson"
|
1239 |
-
msgstr "Maak een les aan"
|
1240 |
-
|
1241 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:120
|
1242 |
-
#: ../framework/extensions/learning/hooks.php:53
|
1243 |
-
msgid "Course"
|
1244 |
-
msgstr "Cursus"
|
1245 |
-
|
1246 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:121
|
1247 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:108
|
1248 |
-
msgid "Courses"
|
1249 |
-
msgstr "Cursussen"
|
1250 |
-
|
1251 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:142
|
1252 |
-
msgid "Create a course"
|
1253 |
-
msgstr "Maak een cursus aan"
|
1254 |
-
|
1255 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:181
|
1256 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:222
|
1257 |
-
msgid "Course Category"
|
1258 |
-
msgstr "Cursus Categorie"
|
1259 |
-
|
1260 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:182
|
1261 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:223
|
1262 |
-
msgid "Course Categories"
|
1263 |
-
msgstr "Cursus Categorieën"
|
1264 |
-
|
1265 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:188
|
1266 |
-
msgid "Search categories"
|
1267 |
-
msgstr "Zoek categorieën"
|
1268 |
-
|
1269 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:194
|
1270 |
-
msgid "Add New category"
|
1271 |
-
msgstr "Nieuwe Categorie Toevoegen"
|
1272 |
-
|
1273 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:285
|
1274 |
-
msgid "View all courses"
|
1275 |
-
msgstr "Bekijk alle cursussen"
|
1276 |
-
|
1277 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:511
|
1278 |
-
msgid "No courses available"
|
1279 |
-
msgstr "Geen cursussen beschikbaar"
|
1280 |
-
|
1281 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:513
|
1282 |
-
msgid "Without Course"
|
1283 |
-
msgstr "Zonder Cursus"
|
1284 |
-
|
1285 |
-
#: ../framework/extensions/learning/class-fw-extension-learning.php:520
|
1286 |
-
msgid "Select Course"
|
1287 |
-
msgstr "Selecteer Cursus"
|
1288 |
-
|
1289 |
-
#: ../framework/extensions/learning/manifest.php:7
|
1290 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:216
|
1291 |
-
msgid "Learning"
|
1292 |
-
msgstr "Lerend"
|
1293 |
-
|
1294 |
-
#: ../framework/extensions/learning/manifest.php:9
|
1295 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:217
|
1296 |
-
msgid ""
|
1297 |
-
"This extension adds a Learning module to your theme. Using this extension "
|
1298 |
-
"you can add courses, lessons and tests for your users to take."
|
1299 |
-
msgstr "Deze uitbreiding voegt een Leer module toe aan je thema. Met deze uitbreiding kun je cursussen, lessen en toetsen voor je gebruikers toevoegen."
|
1300 |
-
|
1301 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:118
|
1302 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:145
|
1303 |
-
msgid "Quiz"
|
1304 |
-
msgstr "Quiz"
|
1305 |
-
|
1306 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:259
|
1307 |
-
msgid "Quiz Elements"
|
1308 |
-
msgstr "Quiz Elementen"
|
1309 |
-
|
1310 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:272
|
1311 |
-
msgid "Quiz settings"
|
1312 |
-
msgstr "Quiz instellingen"
|
1313 |
-
|
1314 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:276
|
1315 |
-
msgid "Quiz Passmark Points"
|
1316 |
-
msgstr "Quiz Slagingspunten"
|
1317 |
-
|
1318 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:278
|
1319 |
-
msgid "The points number at which the test will be passed."
|
1320 |
-
msgstr "Het benodigde aantal punten om voor de toest te slagen."
|
1321 |
-
|
1322 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:286
|
1323 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:296
|
1324 |
-
msgid "Lesson Quiz"
|
1325 |
-
msgstr "Les Quiz"
|
1326 |
-
|
1327 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:535
|
1328 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:544
|
1329 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:552
|
1330 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:559
|
1331 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:568
|
1332 |
-
msgid "Invalid Quiz"
|
1333 |
-
msgstr "Ongeldige Quiz"
|
1334 |
-
|
1335 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:21
|
1336 |
-
#, php-format
|
1337 |
-
msgid "You require %d points in oder to pass the test"
|
1338 |
-
msgstr "U hebt %d punten nodig om voor de toets te slagen"
|
1339 |
-
|
1340 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:27
|
1341 |
-
msgid "Sorry, you did not pass the test"
|
1342 |
-
msgstr "Helaas, je hebt de toets niet gehaald"
|
1343 |
-
|
1344 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:29
|
1345 |
-
msgid "Congratulation, you passed the test"
|
1346 |
-
msgstr "Gefeliciteerd, je hebt de toets gehaald!"
|
1347 |
-
|
1348 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:43
|
1349 |
-
#, php-format
|
1350 |
-
msgid "You answered correctly %s questions from %s"
|
1351 |
-
msgstr "Je hebt %s vragen van de %s goed beantwoord"
|
1352 |
-
|
1353 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/content.php:69
|
1354 |
-
#: ../framework/extensions/learning/views/content-lesson.php:18
|
1355 |
-
msgid "Back to"
|
1356 |
-
msgstr "Terug naar"
|
1357 |
-
|
1358 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/views/start-quiz.php:11
|
1359 |
-
msgid "Start Quiz"
|
1360 |
-
msgstr "Start Quiz"
|
1361 |
-
|
1362 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:20
|
1363 |
-
msgid "Correct answers"
|
1364 |
-
msgstr "Juiste antwoorden"
|
1365 |
-
|
1366 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:21
|
1367 |
-
msgid "Add correct answer variants"
|
1368 |
-
msgstr "Voeg varianten van juiste antwoorden toe"
|
1369 |
-
|
1370 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:24
|
1371 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:23
|
1372 |
-
msgid "Set Correct Answer"
|
1373 |
-
msgstr "Juist Antwoord Instellen"
|
1374 |
-
|
1375 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:34
|
1376 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:31
|
1377 |
-
msgid "Wrong answers"
|
1378 |
-
msgstr "Onjuiste antwoorden"
|
1379 |
-
|
1380 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:35
|
1381 |
-
msgid "Add wrong answer variants"
|
1382 |
-
msgstr "Voeg varianten van onjuiste antwoorden toe"
|
1383 |
-
|
1384 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:38
|
1385 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:35
|
1386 |
-
msgid "Set Wrong Answer"
|
1387 |
-
msgstr "Onjuist Antwoord Instellen"
|
1388 |
-
|
1389 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:56
|
1390 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:42
|
1391 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:55
|
1392 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:53
|
1393 |
-
msgid "Creates a"
|
1394 |
-
msgstr "Creëert een"
|
1395 |
-
|
1396 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1397 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:59
|
1398 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:91
|
1399 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:23
|
1400 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:50
|
1401 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:82
|
1402 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:180
|
1403 |
-
msgid "Multiple Choice"
|
1404 |
-
msgstr "Meerkeuze"
|
1405 |
-
|
1406 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:57
|
1407 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1408 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1409 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1410 |
-
msgid "item"
|
1411 |
-
msgstr "onderdeel"
|
1412 |
-
|
1413 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:87
|
1414 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:73
|
1415 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:86
|
1416 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:84
|
1417 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:23
|
1418 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:55
|
1419 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:76
|
1420 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:49
|
1421 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:75
|
1422 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:51
|
1423 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:77
|
1424 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:50
|
1425 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:77
|
1426 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:51
|
1427 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:80
|
1428 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:51
|
1429 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:80
|
1430 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:50
|
1431 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:77
|
1432 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:50
|
1433 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:77
|
1434 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:48
|
1435 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:75
|
1436 |
-
msgid "Label"
|
1437 |
-
msgstr "Label"
|
1438 |
-
|
1439 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:88
|
1440 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:75
|
1441 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:87
|
1442 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:85
|
1443 |
-
msgid "Add/Edit Question"
|
1444 |
-
msgstr "Vraag toevoegen/bewerken"
|
1445 |
-
|
1446 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:90
|
1447 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:77
|
1448 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:90
|
1449 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:87
|
1450 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:58
|
1451 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:51
|
1452 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:55
|
1453 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:53
|
1454 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:54
|
1455 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:54
|
1456 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:53
|
1457 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:53
|
1458 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:51
|
1459 |
-
msgid "Delete"
|
1460 |
-
msgstr "Verwijder"
|
1461 |
-
|
1462 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:92
|
1463 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:90
|
1464 |
-
msgid "More"
|
1465 |
-
msgstr "Meer"
|
1466 |
-
|
1467 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:93
|
1468 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:91
|
1469 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:57
|
1470 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:57
|
1471 |
-
msgid "Close"
|
1472 |
-
msgstr "Sluiten"
|
1473 |
-
|
1474 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:94
|
1475 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:78
|
1476 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:91
|
1477 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:89
|
1478 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:56
|
1479 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:52
|
1480 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:52
|
1481 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:54
|
1482 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:55
|
1483 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:55
|
1484 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:54
|
1485 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:54
|
1486 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:52
|
1487 |
-
msgid "Edit Label"
|
1488 |
-
msgstr "Bewerk Label"
|
1489 |
-
|
1490 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:96
|
1491 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:80
|
1492 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:93
|
1493 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:93
|
1494 |
-
msgid "The question label is empty"
|
1495 |
-
msgstr "Het label van de vraag is leeg"
|
1496 |
-
|
1497 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:97
|
1498 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:81
|
1499 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:94
|
1500 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:94
|
1501 |
-
msgid "Invalid mark point number"
|
1502 |
-
msgstr "Ongeldig markeringspunt nummer"
|
1503 |
-
|
1504 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:98
|
1505 |
-
msgid "There needs to be at least one correct answer"
|
1506 |
-
msgstr "Er moet minimaal één juist antwoord zijn."
|
1507 |
-
|
1508 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:18
|
1509 |
-
msgid "Correct answer"
|
1510 |
-
msgstr "Juist antwoord"
|
1511 |
-
|
1512 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:19
|
1513 |
-
msgid "The question answer will be true or false"
|
1514 |
-
msgstr "Het antwoord op de vraag zal waar of niet waar zijn"
|
1515 |
-
|
1516 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:22
|
1517 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:20
|
1518 |
-
msgid "True"
|
1519 |
-
msgstr "Waar"
|
1520 |
-
|
1521 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:26
|
1522 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/views/view.php:24
|
1523 |
-
msgid "False"
|
1524 |
-
msgstr "Niet Waar"
|
1525 |
-
|
1526 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:43
|
1527 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:45
|
1528 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:74
|
1529 |
-
msgid "True/False"
|
1530 |
-
msgstr "Waar/Niet Waar"
|
1531 |
-
|
1532 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:19
|
1533 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:21
|
1534 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:97
|
1535 |
-
msgid "Text before gap"
|
1536 |
-
msgstr "Tekst vóór de tussenruimte"
|
1537 |
-
|
1538 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:28
|
1539 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:30
|
1540 |
-
msgid "Gap"
|
1541 |
-
msgstr "Tussenruimte"
|
1542 |
-
|
1543 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:37
|
1544 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:39
|
1545 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:98
|
1546 |
-
msgid "Text after gap"
|
1547 |
-
msgstr "Tekst na de tussenruimte"
|
1548 |
-
|
1549 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:56
|
1550 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:58
|
1551 |
-
msgid "Gap Fill"
|
1552 |
-
msgstr "Tussenruimte Vulling"
|
1553 |
-
|
1554 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:89
|
1555 |
-
msgid "Gap _____ Fill"
|
1556 |
-
msgstr "Tussenruimte _____ Vulling"
|
1557 |
-
|
1558 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:96
|
1559 |
-
#, php-format
|
1560 |
-
msgid "At least one of the fields ( %s or %s ) has to ve filled with text"
|
1561 |
-
msgstr "Ten minste één van de velden (%s of %s) moet gevuld zijn met tekst"
|
1562 |
-
|
1563 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:19
|
1564 |
-
msgid "Correct Answer"
|
1565 |
-
msgstr "Juist Antwoord"
|
1566 |
-
|
1567 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:20
|
1568 |
-
msgid "Write the correct answer text"
|
1569 |
-
msgstr "Schrijf de tekst voor het juiste antwoord"
|
1570 |
-
|
1571 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:32
|
1572 |
-
msgid "Add wrong answers variants"
|
1573 |
-
msgstr "Voeg varianten van onjuiste antwoorden toe"
|
1574 |
-
|
1575 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:54
|
1576 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:56
|
1577 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:88
|
1578 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:23
|
1579 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:50
|
1580 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:82
|
1581 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:180
|
1582 |
-
msgid "Single Choice"
|
1583 |
-
msgstr "Enkele Keuze"
|
1584 |
-
|
1585 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:95
|
1586 |
-
msgid "Correct answer cannot be empty"
|
1587 |
-
msgstr "Het juiste antwoord kan niet leeg zijn"
|
1588 |
-
|
1589 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:96
|
1590 |
-
msgid "There are not any wrong answers set"
|
1591 |
-
msgstr "Er zijn geen onjuiste antwoorden ingesteld"
|
1592 |
-
|
1593 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:51
|
1594 |
-
msgid "Question"
|
1595 |
-
msgstr "Vraag"
|
1596 |
-
|
1597 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:53
|
1598 |
-
msgid "Type the question..."
|
1599 |
-
msgstr "Type de vraag..."
|
1600 |
-
|
1601 |
-
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/extends/class-fw-option-type-quiz-builder-item.php:58
|
1602 |
-
msgid "Points"
|
1603 |
-
msgstr "Punten"
|
1604 |
-
|
1605 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:18
|
1606 |
-
msgid "Get list of courses"
|
1607 |
-
msgstr "Krijg een lijst van alle cursussen"
|
1608 |
-
|
1609 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:20
|
1610 |
-
msgid "Lesson Courses"
|
1611 |
-
msgstr "Les Cursussen"
|
1612 |
-
|
1613 |
-
#: ../framework/extensions/learning/includes/class-fw-widget-learning.php:126
|
1614 |
-
msgid "Number of courses"
|
1615 |
-
msgstr "Aantal cursussen"
|
1616 |
-
|
1617 |
-
#: ../framework/extensions/analytics/settings-options.php:11
|
1618 |
-
msgid "Google Analytics"
|
1619 |
-
msgstr "Google Analytics"
|
1620 |
-
|
1621 |
-
#: ../framework/extensions/analytics/settings-options.php:12
|
1622 |
-
msgid "Enter your Google Analytics code (Ex: UA-XXXXX-X)"
|
1623 |
-
msgstr "Vul je Google Analytics code in (Ex: UA-XXXXX-X)"
|
1624 |
-
|
1625 |
-
#: ../framework/extensions/analytics/manifest.php:7
|
1626 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:192
|
1627 |
-
msgid "Analytics"
|
1628 |
-
msgstr "Analysegegevens"
|
1629 |
-
|
1630 |
-
#: ../framework/extensions/analytics/manifest.php:8
|
1631 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:193
|
1632 |
-
msgid ""
|
1633 |
-
"Enables the possibility to add the Google Analytics tracking code that will "
|
1634 |
-
"let you get all the analytics about visitors, page views and more."
|
1635 |
-
msgstr "Maakt het mogelijk om de Google Analytics tracking code toe te voegen, welke je toegang geeft tot statistieken van bezoekers, bekeken pagina's en meer."
|
1636 |
-
|
1637 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:36
|
1638 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:37
|
1639 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:7
|
1640 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:10
|
1641 |
-
msgid "Blog"
|
1642 |
-
msgstr "Blog"
|
1643 |
-
|
1644 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:38
|
1645 |
-
msgid "Add blog post"
|
1646 |
-
msgstr "Blogpost toevoegen"
|
1647 |
-
|
1648 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:39
|
1649 |
-
msgid "Add new blog post"
|
1650 |
-
msgstr "Nieuwe blogpost toevoegen"
|
1651 |
-
|
1652 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:40
|
1653 |
-
msgid "All blog posts"
|
1654 |
-
msgstr "Alle blogposts"
|
1655 |
-
|
1656 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:41
|
1657 |
-
msgid "Edit blog post"
|
1658 |
-
msgstr "Blogpost bewerken"
|
1659 |
-
|
1660 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:42
|
1661 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:43
|
1662 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:49
|
1663 |
-
msgid "Blog Post"
|
1664 |
-
msgstr "Blogpost"
|
1665 |
-
|
1666 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:44
|
1667 |
-
msgid "New blog post"
|
1668 |
-
msgstr "Nieuw blogpost"
|
1669 |
-
|
1670 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:45
|
1671 |
-
msgid "No blog posts found"
|
1672 |
-
msgstr "Geen blogposts gevonden"
|
1673 |
-
|
1674 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:46
|
1675 |
-
msgid "No blog posts found in trash"
|
1676 |
-
msgstr "Geen blogposts gevonden in prullenbak"
|
1677 |
-
|
1678 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:47
|
1679 |
-
msgid "Search blog posts"
|
1680 |
-
msgstr "Blogposts zoeken"
|
1681 |
-
|
1682 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:48
|
1683 |
-
msgid "View blog post"
|
1684 |
-
msgstr "Blogpost bekijken"
|
1685 |
-
|
1686 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:67
|
1687 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:87
|
1688 |
-
#: ../framework/extensions/blog/manifest.php:7
|
1689 |
-
#: ../framework/extensions/blog/manifest.php:8
|
1690 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:50
|
1691 |
-
msgid "Blog Posts"
|
1692 |
-
msgstr "Blogposts"
|
1693 |
-
|
1694 |
-
#: ../framework/extensions/blog/class-fw-extension-blog.php:76
|
1695 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:74
|
1696 |
-
msgid "Blog Categories"
|
1697 |
-
msgstr "Blog Categorieën"
|
1698 |
-
|
1699 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:60
|
1700 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:61
|
1701 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:78
|
1702 |
-
#: ../framework/extensions/styling/manifest.php:7
|
1703 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:48
|
1704 |
-
msgid "Styling"
|
1705 |
-
msgstr "Opmaak"
|
1706 |
-
|
1707 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:104
|
1708 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:278
|
1709 |
-
#: ../framework/core/components/backend.php:357
|
1710 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2277
|
1711 |
-
msgid "Save"
|
1712 |
-
msgstr "Opslaan"
|
1713 |
-
|
1714 |
-
#: ../framework/extensions/styling/class-fw-extension-styling.php:118
|
1715 |
-
msgid "You have no permission to change Styling options"
|
1716 |
-
msgstr "Je hebt onvoldoende rechten om de opmaakinstellingen te wijzigen."
|
1717 |
-
|
1718 |
-
#: ../framework/extensions/styling/manifest.php:8
|
1719 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:49
|
1720 |
-
msgid ""
|
1721 |
-
"This extension lets you control the website visual style. Starting from "
|
1722 |
-
"predefined styles to changing specific fonts and colors across the website."
|
1723 |
-
msgstr "Deze uitbreiding maakt het mogelijk de visuele opmaak van de website te beheren. Van opmaakprofielen tot het wijzigen van specifieke lettertypes en kleuren van de website."
|
1724 |
-
|
1725 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/manifest.php:7
|
1726 |
-
msgid "Switch Style Panel"
|
1727 |
-
msgstr "Opmaakwisselaar Paneel"
|
1728 |
-
|
1729 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/manifest.php:8
|
1730 |
-
msgid ""
|
1731 |
-
"Show on the front-end a panel that allows the user to make the switch "
|
1732 |
-
"between predefined styles."
|
1733 |
-
msgstr "Toon een paneel aan de front-end, waarmee de gebruiker in staat wordt gesteld te wisselen tussen vooraf gedefinieerde opmaakprofielen."
|
1734 |
-
|
1735 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:9
|
1736 |
-
msgid "Frontend Style Switcher"
|
1737 |
-
msgstr "Frontend Opmaakwisselaar"
|
1738 |
-
|
1739 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:10
|
1740 |
-
msgid "Enable frontend style switcher"
|
1741 |
-
msgstr "Activeer frontend opmaakwisselaar"
|
1742 |
-
|
1743 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:13
|
1744 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:274
|
1745 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:45
|
1746 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:24
|
1747 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:42
|
1748 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:34
|
1749 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:48
|
1750 |
-
#: ../framework/includes/option-types/simple.php:454
|
1751 |
-
#: ../framework/includes/option-types/switch/class-fw-option-type-switch.php:151
|
1752 |
-
msgid "Yes"
|
1753 |
-
msgstr "Ja"
|
1754 |
-
|
1755 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:17
|
1756 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:278
|
1757 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:49
|
1758 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:28
|
1759 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:46
|
1760 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:38
|
1761 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:52
|
1762 |
-
#: ../framework/includes/option-types/switch/class-fw-option-type-switch.php:147
|
1763 |
-
msgid "No"
|
1764 |
-
msgstr "Nee"
|
1765 |
-
|
1766 |
-
#: ../framework/extensions/styling/extensions/switch-style-panel/options/settings.php:24
|
1767 |
-
msgid "The text that will be displayed at the top of the panel."
|
1768 |
-
msgstr "De text die wordt getoond aan de bovenzijde van het paneel. "
|
1769 |
-
|
1770 |
-
#: ../framework/extensions/styling/includes/option-types/style/views/settings.php:119
|
1771 |
-
msgid "Background"
|
1772 |
-
msgstr "Achtergrond"
|
1773 |
-
|
1774 |
-
#: ../framework/extensions/styling/includes/option-types/style/views/predefined.php:26
|
1775 |
-
msgid "Predefined Styles"
|
1776 |
-
msgstr "Voorgedefiniëerde opmaakprofielen"
|
1777 |
-
|
1778 |
-
#: ../framework/extensions/styling/includes/option-types/style/views/preview.php:41
|
1779 |
-
msgid "This is a simplified preview, not changes are reflected."
|
1780 |
-
msgstr "Dit is een gesimplificeerde voorvertoning; geen veranderingen zijn te zien."
|
1781 |
-
|
1782 |
-
#: ../framework/extensions/feedback/class-fw-extension-feedback.php:64
|
1783 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:144
|
1784 |
-
msgid "Feedback"
|
1785 |
-
msgstr "Terugkoppeling"
|
1786 |
-
|
1787 |
-
#: ../framework/extensions/feedback/class-fw-extension-feedback.php:111
|
1788 |
-
msgid "Reviews"
|
1789 |
-
msgstr "Recensies"
|
1790 |
-
|
1791 |
-
#: ../framework/extensions/feedback/settings-options.php:10
|
1792 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/settings-options.php:11
|
1793 |
-
msgid "Activate for"
|
1794 |
-
msgstr "Activeer voor"
|
1795 |
-
|
1796 |
-
#: ../framework/extensions/feedback/settings-options.php:16
|
1797 |
-
msgid "Select the options you want the Feedback extension to be activated for"
|
1798 |
-
msgstr "Selecteer de opties waarvoor je de Terugkoppeling uitbreiding wilt activeren"
|
1799 |
-
|
1800 |
-
#: ../framework/extensions/feedback/manifest.php:7
|
1801 |
-
msgid "FeedBack"
|
1802 |
-
msgstr "Terugkoppeling"
|
1803 |
-
|
1804 |
-
#: ../framework/extensions/feedback/manifest.php:8
|
1805 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:145
|
1806 |
-
msgid ""
|
1807 |
-
"Adds the possibility to leave feedback (comments, reviews and rating) about "
|
1808 |
-
"your products, articles, etc. This replaces the default comments system."
|
1809 |
-
msgstr "Voegt de mogelijkheid toe om terugkoppeling te geven (reacties, recensies en cijfers) over je producten, artikelen etc. Dit vervangt het standaard reactiesysteem. "
|
1810 |
-
|
1811 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:84
|
1812 |
-
msgid "Rating:"
|
1813 |
-
msgstr "Cijfer:"
|
1814 |
-
|
1815 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:195
|
1816 |
-
msgid "Feedback Stars"
|
1817 |
-
msgstr "Terugkoppeling Sterren"
|
1818 |
-
|
1819 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:221
|
1820 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/rate.php:12
|
1821 |
-
msgid "Rating"
|
1822 |
-
msgstr "Cijfer"
|
1823 |
-
|
1824 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1825 |
-
msgid "ERROR"
|
1826 |
-
msgstr "FOUT"
|
1827 |
-
|
1828 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/class-fw-extension-feedback-stars.php:264
|
1829 |
-
msgid "please rate the post."
|
1830 |
-
msgstr "waardeer het bericht a.u.b."
|
1831 |
-
|
1832 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/manifest.php:7
|
1833 |
-
msgid "FeedBack Stars"
|
1834 |
-
msgstr "Terugkoppeling Sterren"
|
1835 |
-
|
1836 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/manifest.php:8
|
1837 |
-
msgid "Allows visitors to appreciate a post using star rating"
|
1838 |
-
msgstr "Laat bezoekers toe een bericht te waarderen met sterren"
|
1839 |
-
|
1840 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1841 |
-
msgid "Pingback:"
|
1842 |
-
msgstr "Pingback:"
|
1843 |
-
|
1844 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:22
|
1845 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1846 |
-
msgid "(Edit)"
|
1847 |
-
msgstr "(Bewerk)"
|
1848 |
-
|
1849 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:37
|
1850 |
-
msgid "Post author"
|
1851 |
-
msgstr "Bericht auteur"
|
1852 |
-
|
1853 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:57
|
1854 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:129
|
1855 |
-
#, php-format
|
1856 |
-
msgid "%1$s at %2$s"
|
1857 |
-
msgstr "%1$s op %2$s"
|
1858 |
-
|
1859 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:63
|
1860 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:53
|
1861 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:56
|
1862 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:122
|
1863 |
-
msgid "Your comment is awaiting moderation."
|
1864 |
-
msgstr "Je reactie wacht op goedkeuring."
|
1865 |
-
|
1866 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:24
|
1867 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:40
|
1868 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:119
|
1869 |
-
msgid "says"
|
1870 |
-
msgstr "zegt"
|
1871 |
-
|
1872 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/views/view-rates.php:24
|
1873 |
-
#, php-format
|
1874 |
-
msgid "Based on %s Votes"
|
1875 |
-
msgstr "Gebaseerd op %s stemmen"
|
1876 |
-
|
1877 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:6
|
1878 |
-
msgid "Rating System"
|
1879 |
-
msgstr "Waarderingssysteem"
|
1880 |
-
|
1881 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:9
|
1882 |
-
msgid "Enter the number of stars you want in the rating system"
|
1883 |
-
msgstr "Geef het aantal sterren aan dat je wilt gebruiken in het waarderingssysteem"
|
1884 |
-
|
1885 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:11
|
1886 |
-
msgid "5 stars"
|
1887 |
-
msgstr "5 sterren"
|
1888 |
-
|
1889 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:12
|
1890 |
-
msgid "7 stars"
|
1891 |
-
msgstr "7 sterren"
|
1892 |
-
|
1893 |
-
#: ../framework/extensions/feedback/extensions/feedback-stars/options/settings.php:13
|
1894 |
-
msgid "10 stars"
|
1895 |
-
msgstr "10 sterren"
|
1896 |
-
|
1897 |
-
#: ../framework/extensions/feedback/views/reviews.php:32
|
1898 |
-
#: ../framework/extensions/feedback/views/reviews.php:53
|
1899 |
-
msgid "Comment navigation"
|
1900 |
-
msgstr "Reactienavigatie"
|
1901 |
-
|
1902 |
-
#: ../framework/extensions/feedback/views/reviews.php:35
|
1903 |
-
#: ../framework/extensions/feedback/views/reviews.php:56
|
1904 |
-
msgid "← Older Comments"
|
1905 |
-
msgstr "← Oudere Reacties"
|
1906 |
-
|
1907 |
-
#: ../framework/extensions/feedback/views/reviews.php:36
|
1908 |
-
#: ../framework/extensions/feedback/views/reviews.php:57
|
1909 |
-
msgid "Newer Comments →"
|
1910 |
-
msgstr "Nieuwere Reacties →"
|
1911 |
-
|
1912 |
-
#: ../framework/extensions/feedback/views/reviews.php:62
|
1913 |
-
msgid "Comments are closed."
|
1914 |
-
msgstr "Reacties zijn niet beschikbaar."
|
1915 |
-
|
1916 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/settings-options.php:18
|
1917 |
-
msgid ""
|
1918 |
-
"Select the posts you want the Page Builder extension to be activated for"
|
1919 |
-
msgstr "Selecteer de berichttypes waarvoor u de Pagina Bouwer uitbreiding wilt activeren"
|
1920 |
-
|
1921 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/manifest.php:7
|
1922 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:84
|
1923 |
-
msgid "Page Builder"
|
1924 |
-
msgstr "Pagina Bouwer"
|
1925 |
-
|
1926 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/manifest.php:9
|
1927 |
-
msgid ""
|
1928 |
-
"Lets you easily build countless pages with the help of the drag and drop "
|
1929 |
-
"visual page builder that comes with a lot of already created shortcodes."
|
1930 |
-
msgstr "Maakt het mogelijk om makkelijk ontelbare pagina's te bouwen met behulp van de drag-and-drop visuele paginabouwer, welke komt met een groot aantal kant-en-klare shortcodes."
|
1931 |
-
|
1932 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:51
|
1933 |
-
msgid ""
|
1934 |
-
"There must not be more than one page Editor integrated with the wp post "
|
1935 |
-
"editor per page"
|
1936 |
-
msgstr "Er kan niet meer dan één paginabewerker per pagina geïntegreerd zijn met de wp post editor"
|
1937 |
-
|
1938 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:96
|
1939 |
-
msgid "Visual Page Builder"
|
1940 |
-
msgstr "Visuele Pagina Bouwer"
|
1941 |
-
|
1942 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:97
|
1943 |
-
msgid "Default Editor"
|
1944 |
-
msgstr "Standaard Bewerker"
|
1945 |
-
|
1946 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/class-fw-option-type-page-builder.php:126
|
1947 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:117
|
1948 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:5
|
1949 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:22
|
1950 |
-
msgid "Layout Elements"
|
1951 |
-
msgstr "Layout Elementen"
|
1952 |
-
|
1953 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:99
|
1954 |
-
#, php-format
|
1955 |
-
msgid "No Page Builder tab specified for shortcode: %s"
|
1956 |
-
msgstr "Geen Pagina Bouwer tabblad gespecificeerd voor de shortcode: %s"
|
1957 |
-
|
1958 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:111
|
1959 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:75
|
1960 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:83
|
1961 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:57
|
1962 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:238
|
1963 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:141
|
1964 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:345
|
1965 |
-
msgid "Remove"
|
1966 |
-
msgstr "Verwijder"
|
1967 |
-
|
1968 |
-
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:112
|
1969 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:74
|
1970 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:82
|
1971 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:56
|
1972 |
-
msgid "Duplicate"
|
1973 |
-
msgstr "Dupliceer"
|
1974 |
-
|
1975 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:8
|
1976 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:12
|
1977 |
-
msgid "Testimonials"
|
1978 |
-
msgstr "Recensies"
|
1979 |
-
|
1980 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:9
|
1981 |
-
msgid "Add some Testimonials"
|
1982 |
-
msgstr "Voeg enkele Recensies toe"
|
1983 |
-
|
1984 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/config.php:10
|
1985 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:10
|
1986 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:10
|
1987 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:10
|
1988 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:8
|
1989 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:10
|
1990 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:8
|
1991 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:8
|
1992 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:10
|
1993 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:10
|
1994 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:10
|
1995 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:10
|
1996 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:10
|
1997 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:10
|
1998 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:8
|
1999 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:10
|
2000 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:10
|
2001 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:106
|
2002 |
-
msgid "Content Elements"
|
2003 |
-
msgstr "Inhoudselementen"
|
2004 |
-
|
2005 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:8
|
2006 |
-
msgid "Option Testimonials Title"
|
2007 |
-
msgstr "Optie Recensies TItel"
|
2008 |
-
|
2009 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:13
|
2010 |
-
msgid "Add/Edit Testimonial"
|
2011 |
-
msgstr "Recensie Toevoegen/Bewerken"
|
2012 |
-
|
2013 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:14
|
2014 |
-
msgid "Here you can add, remove and edit your Testimonials."
|
2015 |
-
msgstr "Hier kun je Recensies toevoegen, verwijderen en bewerken."
|
2016 |
-
|
2017 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:19
|
2018 |
-
msgid "Quote"
|
2019 |
-
msgstr "Citaat"
|
2020 |
-
|
2021 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:20
|
2022 |
-
msgid "Enter the testimonial here"
|
2023 |
-
msgstr "Voer de recensie hier in"
|
2024 |
-
|
2025 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:25
|
2026 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:6
|
2027 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:102
|
2028 |
-
msgid "Image"
|
2029 |
-
msgstr "Afbeelding"
|
2030 |
-
|
2031 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:26
|
2032 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:8
|
2033 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:9
|
2034 |
-
msgid ""
|
2035 |
-
"Either upload a new, or choose an existing image from your media library"
|
2036 |
-
msgstr "Upload een nieuwe afbeelding of kies een bestaande afbeelding uit je mediabibliotheek"
|
2037 |
-
|
2038 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:30
|
2039 |
-
msgid "Name"
|
2040 |
-
msgstr "Naam"
|
2041 |
-
|
2042 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:31
|
2043 |
-
msgid "Enter the Name of the Person to quote"
|
2044 |
-
msgstr "Voer de naam in van de persoon die je wilt citeren"
|
2045 |
-
|
2046 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:35
|
2047 |
-
msgid "Position"
|
2048 |
-
msgstr "Positie"
|
2049 |
-
|
2050 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:36
|
2051 |
-
msgid "Can be used for a job description"
|
2052 |
-
msgstr "Kan worden gebruik voor een baan beschrijving"
|
2053 |
-
|
2054 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:40
|
2055 |
-
msgid "Website Name"
|
2056 |
-
msgstr "Website Naam"
|
2057 |
-
|
2058 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:41
|
2059 |
-
msgid "Linktext for the above Link"
|
2060 |
-
msgstr "Linktekst voor de bovenstaande link"
|
2061 |
-
|
2062 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:45
|
2063 |
-
msgid "Website Link"
|
2064 |
-
msgstr "Website Link"
|
2065 |
-
|
2066 |
-
#: ../framework/extensions/shortcodes/shortcodes/testimonials/options.php:46
|
2067 |
-
msgid "Link to the Persons website"
|
2068 |
-
msgstr "Link naar de website van de persoon"
|
2069 |
-
|
2070 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:8
|
2071 |
-
msgid "Accordion"
|
2072 |
-
msgstr "Accordion"
|
2073 |
-
|
2074 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/config.php:9
|
2075 |
-
msgid "Add an Accordion"
|
2076 |
-
msgstr "Voeg een Accordion toe"
|
2077 |
-
|
2078 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:8
|
2079 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:8
|
2080 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:8
|
2081 |
-
msgid "Tabs"
|
2082 |
-
msgstr "Tabbladen"
|
2083 |
-
|
2084 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:9
|
2085 |
-
msgid "Add/Edit Tabs"
|
2086 |
-
msgstr "Tabbladen Toevoegen/Bewerken"
|
2087 |
-
|
2088 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:10
|
2089 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:10
|
2090 |
-
msgid "Create your tabs"
|
2091 |
-
msgstr "Maak je tabbladen aan"
|
2092 |
-
|
2093 |
-
#: ../framework/extensions/shortcodes/shortcodes/accordion/options.php:19
|
2094 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:24
|
2095 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:13
|
2096 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/options.php:10
|
2097 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:19
|
2098 |
-
msgid "Content"
|
2099 |
-
msgstr "Inhoud"
|
2100 |
-
|
2101 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:8
|
2102 |
-
msgid "Table"
|
2103 |
-
msgstr "Tabel"
|
2104 |
-
|
2105 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/config.php:9
|
2106 |
-
msgid "Add a Table"
|
2107 |
-
msgstr "Voeg een Tabel toe"
|
2108 |
-
|
2109 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:64
|
2110 |
-
msgid "table-builder option type must be inside the table shortcode"
|
2111 |
-
msgstr "tabel-bouwer optie type moet binnen de tabel shortcode zitten"
|
2112 |
-
|
2113 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:171
|
2114 |
-
msgid "Table Styling"
|
2115 |
-
msgstr "Tabel Opmaak"
|
2116 |
-
|
2117 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:172
|
2118 |
-
msgid "Choose the table styling options"
|
2119 |
-
msgstr "Kies de opmaakinstellingen voor de tabel"
|
2120 |
-
|
2121 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:174
|
2122 |
-
msgid "Use the table as a pricing table"
|
2123 |
-
msgstr "Gebruik de tabel als prijstabel"
|
2124 |
-
|
2125 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:175
|
2126 |
-
msgid "Use the table to display tabular data"
|
2127 |
-
msgstr "Gebruik de tabel om tabeldata te vertonen"
|
2128 |
-
|
2129 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:197
|
2130 |
-
msgid "Default row"
|
2131 |
-
msgstr "Standaard rij"
|
2132 |
-
|
2133 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:198
|
2134 |
-
msgid "Heading row"
|
2135 |
-
msgstr "Top rij"
|
2136 |
-
|
2137 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:199
|
2138 |
-
msgid "Pricing row"
|
2139 |
-
msgstr "Prijsstelling rij"
|
2140 |
-
|
2141 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:200
|
2142 |
-
msgid "Button row"
|
2143 |
-
msgstr "Knop rij"
|
2144 |
-
|
2145 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:201
|
2146 |
-
msgid "Row switch"
|
2147 |
-
msgstr "Rijwisselaar"
|
2148 |
-
|
2149 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:211
|
2150 |
-
msgid "Default column"
|
2151 |
-
msgstr "Standaard kolom"
|
2152 |
-
|
2153 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:212
|
2154 |
-
msgid "Description column"
|
2155 |
-
msgstr "Beschrijving kolom"
|
2156 |
-
|
2157 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:213
|
2158 |
-
msgid "Highlight column"
|
2159 |
-
msgstr "Geaccentueerde kolom"
|
2160 |
-
|
2161 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:214
|
2162 |
-
msgid "Center text column"
|
2163 |
-
msgstr "Centreer tekst kolom"
|
2164 |
-
|
2165 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:251
|
2166 |
-
msgid "per month"
|
2167 |
-
msgstr "per maand"
|
2168 |
-
|
2169 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:262
|
2170 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:8
|
2171 |
-
msgid "Button"
|
2172 |
-
msgstr "Knop"
|
2173 |
-
|
2174 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:263
|
2175 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:39
|
2176 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:148
|
2177 |
-
#: ../framework/includes/option-types/addable-option/class-fw-option-type-addable-option.php:20
|
2178 |
-
#: ../framework/includes/option-types/addable-popup/class-fw-option-type-addable-popup.php:153
|
2179 |
-
#: ../framework/includes/option-types/addable-box/class-fw-option-type-addable-box.php:186
|
2180 |
-
msgid "Add"
|
2181 |
-
msgstr "Toevoegen"
|
2182 |
-
|
2183 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-head-template.php:27
|
2184 |
-
msgid "Add Column"
|
2185 |
-
msgstr "Kolom Toevoegen"
|
2186 |
-
|
2187 |
-
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/view.php:161
|
2188 |
-
msgid "Add Row"
|
2189 |
-
msgstr "Rij Toevoegen"
|
2190 |
-
|
2191 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:24
|
2192 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:25
|
2193 |
-
msgid "Custom"
|
2194 |
-
msgstr "Aangepast"
|
2195 |
-
|
2196 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:27
|
2197 |
-
msgid "Locations"
|
2198 |
-
msgstr "Locaties"
|
2199 |
-
|
2200 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:28
|
2201 |
-
msgid "Add/Edit Location"
|
2202 |
-
msgstr "Locatie Toevoegen/Bewerken"
|
2203 |
-
|
2204 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:31
|
2205 |
-
msgid "Note: Please set location"
|
2206 |
-
msgstr "Opmerking: Stel een locatie in"
|
2207 |
-
|
2208 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:35
|
2209 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:187
|
2210 |
-
msgid "Location"
|
2211 |
-
msgstr "Locaties"
|
2212 |
-
|
2213 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:39
|
2214 |
-
msgid "Location Title"
|
2215 |
-
msgstr "Locatie Titel"
|
2216 |
-
|
2217 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:40
|
2218 |
-
msgid "Set location title"
|
2219 |
-
msgstr "Stel een locatie titel in"
|
2220 |
-
|
2221 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:44
|
2222 |
-
msgid "Location Description"
|
2223 |
-
msgstr "Locatie Beschrijving"
|
2224 |
-
|
2225 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:45
|
2226 |
-
msgid "Set location description"
|
2227 |
-
msgstr "Stel een locatie beschrijving in"
|
2228 |
-
|
2229 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:49
|
2230 |
-
msgid "Location Url"
|
2231 |
-
msgstr "Locatie Url"
|
2232 |
-
|
2233 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:50
|
2234 |
-
msgid "Set page url (Ex: http://example.com)"
|
2235 |
-
msgstr "Stel pagina url in (Bijv.: http://example.com)"
|
2236 |
-
|
2237 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:53
|
2238 |
-
msgid "Location Image"
|
2239 |
-
msgstr "Locatie Afbeelding"
|
2240 |
-
|
2241 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:54
|
2242 |
-
msgid "Add location image"
|
2243 |
-
msgstr "Voeg een locatie afbeelding toe"
|
2244 |
-
|
2245 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:113
|
2246 |
-
msgid "No location provider specified for map shortcode"
|
2247 |
-
msgstr "Geen locatie provider gespecificeerd voor de kaart shortcode"
|
2248 |
-
|
2249 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:115
|
2250 |
-
msgid "Map Placeholder"
|
2251 |
-
msgstr "Kaart Placeholder"
|
2252 |
-
|
2253 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/class-fw-shortcode-map.php:122
|
2254 |
-
#, php-format
|
2255 |
-
msgid "Unknown location provider \"%s\" specified for map shortcode"
|
2256 |
-
msgstr "Onbekende locatie provider \"%s\" gespecificeerd voor de kaart shortcode"
|
2257 |
-
|
2258 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:8
|
2259 |
-
msgid "Map"
|
2260 |
-
msgstr "Kaart"
|
2261 |
-
|
2262 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/config.php:9
|
2263 |
-
msgid "Add a Map"
|
2264 |
-
msgstr "Voeg een kaart toe"
|
2265 |
-
|
2266 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:13
|
2267 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:13
|
2268 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:214
|
2269 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:473
|
2270 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:11
|
2271 |
-
msgid "Population Method"
|
2272 |
-
msgstr "Populatie methode"
|
2273 |
-
|
2274 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:14
|
2275 |
-
msgid "Select map population method (Ex: events, custom)"
|
2276 |
-
msgstr "Selecteer kaartpopulatie methode: (Bijv.: evenementen, aangepast)"
|
2277 |
-
|
2278 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:24
|
2279 |
-
msgid "Map Type"
|
2280 |
-
msgstr "Kaart Type"
|
2281 |
-
|
2282 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:25
|
2283 |
-
msgid "Select map type"
|
2284 |
-
msgstr "Selecteer kaarttype"
|
2285 |
-
|
2286 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:27
|
2287 |
-
msgid "Roadmap"
|
2288 |
-
msgstr "Wegenkaart"
|
2289 |
-
|
2290 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:28
|
2291 |
-
msgid "Terrain"
|
2292 |
-
msgstr "Terrein"
|
2293 |
-
|
2294 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:29
|
2295 |
-
msgid "Satellite"
|
2296 |
-
msgstr "Satelliet"
|
2297 |
-
|
2298 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:30
|
2299 |
-
msgid "Hybrid"
|
2300 |
-
msgstr "Hybride"
|
2301 |
-
|
2302 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:34
|
2303 |
-
msgid "Map Height"
|
2304 |
-
msgstr "Kaart Hoogte"
|
2305 |
-
|
2306 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:35
|
2307 |
-
msgid "Set map height (Ex: 300)"
|
2308 |
-
msgstr "Hoogte van de kaart instellen (Bijv.: 300)"
|
2309 |
-
|
2310 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:41
|
2311 |
-
msgid "Disable zoom on scroll"
|
2312 |
-
msgstr "Schakel zoom tijdens scrollen uit"
|
2313 |
-
|
2314 |
-
#: ../framework/extensions/shortcodes/shortcodes/map/options.php:42
|
2315 |
-
msgid "Prevent the map from zooming when scrolling until clicking on the map"
|
2316 |
-
msgstr "Voorkom zoomen van de kaart door scrolling tot er op de kaart is geklikt"
|
2317 |
-
|
2318 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:76
|
2319 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:65
|
2320 |
-
msgid "Column"
|
2321 |
-
msgstr "Kolom"
|
2322 |
-
|
2323 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:120
|
2324 |
-
#, php-format
|
2325 |
-
msgid "Add a %s column"
|
2326 |
-
msgstr "Voeg een %s kolom toe"
|
2327 |
-
|
2328 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:12
|
2329 |
-
msgid "Columns"
|
2330 |
-
msgstr "Kolommen"
|
2331 |
-
|
2332 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:47
|
2333 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:47
|
2334 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:51
|
2335 |
-
msgid "No Templates Saved"
|
2336 |
-
msgstr "Geen Sjablonen Opgeslagen"
|
2337 |
-
|
2338 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:50
|
2339 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:50
|
2340 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:54
|
2341 |
-
msgid "Load Template"
|
2342 |
-
msgstr "Sjabloon Laden"
|
2343 |
-
|
2344 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:91
|
2345 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:91
|
2346 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:94
|
2347 |
-
msgid "Template Name"
|
2348 |
-
msgstr "Sjabloon Naam"
|
2349 |
-
|
2350 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:92
|
2351 |
-
msgid "Save Column"
|
2352 |
-
msgstr "Kolom Opslaan"
|
2353 |
-
|
2354 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:93
|
2355 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:93
|
2356 |
-
msgid "Save as Template"
|
2357 |
-
msgstr "Opslaan als Sjabloon"
|
2358 |
-
|
2359 |
-
#: ../framework/extensions/shortcodes/shortcodes/column/includes/template-component/class-fw-ext-builder-templates-component-column.php:174
|
2360 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:174
|
2361 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:206
|
2362 |
-
msgid "No Title"
|
2363 |
-
msgstr "Geen Titel"
|
2364 |
-
|
2365 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:6
|
2366 |
-
msgid "Special Heading"
|
2367 |
-
msgstr "Speciale Heading"
|
2368 |
-
|
2369 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/config.php:7
|
2370 |
-
msgid "Add a Special Heading"
|
2371 |
-
msgstr "Voeg een Speciale Heading toe"
|
2372 |
-
|
2373 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:8
|
2374 |
-
msgid "Heading Title"
|
2375 |
-
msgstr "Heading Titel"
|
2376 |
-
|
2377 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:9
|
2378 |
-
msgid "Write the heading title content"
|
2379 |
-
msgstr "Schrijf de inhoud voor de heading titel"
|
2380 |
-
|
2381 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:13
|
2382 |
-
msgid "Heading Subtitle"
|
2383 |
-
msgstr "Heading Ondertitel"
|
2384 |
-
|
2385 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:14
|
2386 |
-
msgid "Write the heading subtitle content"
|
2387 |
-
msgstr "Schrijf de inhoud voor de heading ondertitel"
|
2388 |
-
|
2389 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:18
|
2390 |
-
msgid "Heading Size"
|
2391 |
-
msgstr "Heading Grootte"
|
2392 |
-
|
2393 |
-
#: ../framework/extensions/shortcodes/shortcodes/special-heading/options.php:30
|
2394 |
-
msgid "Centered"
|
2395 |
-
msgstr "Gecentreerd"
|
2396 |
-
|
2397 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:8
|
2398 |
-
msgid "Team Member"
|
2399 |
-
msgstr "Teamlid"
|
2400 |
-
|
2401 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/config.php:9
|
2402 |
-
msgid "Add a Team Member"
|
2403 |
-
msgstr "Voeg een Teamlid toe"
|
2404 |
-
|
2405 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:7
|
2406 |
-
msgid "Team Member Image"
|
2407 |
-
msgstr "Teamlid Afbeelding"
|
2408 |
-
|
2409 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:12
|
2410 |
-
msgid "Team Member Name"
|
2411 |
-
msgstr "Teamlid Naam"
|
2412 |
-
|
2413 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:13
|
2414 |
-
msgid "Name of the person"
|
2415 |
-
msgstr "Naam van deze persoon"
|
2416 |
-
|
2417 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:18
|
2418 |
-
msgid "Team Member Job Title"
|
2419 |
-
msgstr "Teamlid Functie"
|
2420 |
-
|
2421 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:19
|
2422 |
-
msgid "Job title of the person."
|
2423 |
-
msgstr "Functie van deze persoon."
|
2424 |
-
|
2425 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:24
|
2426 |
-
msgid "Team Member Description"
|
2427 |
-
msgstr "Teamlid Beschrijving"
|
2428 |
-
|
2429 |
-
#: ../framework/extensions/shortcodes/shortcodes/team-member/options.php:25
|
2430 |
-
msgid "Enter a few words that describe the person"
|
2431 |
-
msgstr "Schrijf een paar woorden die deze persoon omschrijven"
|
2432 |
-
|
2433 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:6
|
2434 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:8
|
2435 |
-
#: ../framework/extensions/megamenu/class-fw-extension-megamenu.php:115
|
2436 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:188
|
2437 |
-
msgid "Icon"
|
2438 |
-
msgstr "Icoon"
|
2439 |
-
|
2440 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/config.php:7
|
2441 |
-
msgid "Add an Icon"
|
2442 |
-
msgstr "Voeg een Icoon toe"
|
2443 |
-
|
2444 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon/options.php:13
|
2445 |
-
msgid "Icon title"
|
2446 |
-
msgstr "Icoon titel"
|
2447 |
-
|
2448 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:6
|
2449 |
-
msgid "Icon Box"
|
2450 |
-
msgstr "Icoon Box"
|
2451 |
-
|
2452 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/config.php:7
|
2453 |
-
msgid "Add an Icon Box"
|
2454 |
-
msgstr "Voeg een Icoon Box toe"
|
2455 |
-
|
2456 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:8
|
2457 |
-
msgid "Box Style"
|
2458 |
-
msgstr "Box Opmaak"
|
2459 |
-
|
2460 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:10
|
2461 |
-
msgid "Icon above title"
|
2462 |
-
msgstr "Icoon boven titel"
|
2463 |
-
|
2464 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:11
|
2465 |
-
msgid "Icon in line with title"
|
2466 |
-
msgstr "Icoon op dezelfde lijnhoogte als de titel"
|
2467 |
-
|
2468 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:16
|
2469 |
-
msgid "Choose an Icon"
|
2470 |
-
msgstr "Kies een Icoon"
|
2471 |
-
|
2472 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:20
|
2473 |
-
msgid "Title of the Box"
|
2474 |
-
msgstr "Titel van de Box"
|
2475 |
-
|
2476 |
-
#: ../framework/extensions/shortcodes/shortcodes/icon-box/options.php:25
|
2477 |
-
msgid "Enter the desired content"
|
2478 |
-
msgstr "Voer de gewenste inhoud in"
|
2479 |
-
|
2480 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/config.php:9
|
2481 |
-
msgid "Add a Button"
|
2482 |
-
msgstr "Voeg een Knop toe"
|
2483 |
-
|
2484 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:7
|
2485 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:17
|
2486 |
-
msgid "Button Label"
|
2487 |
-
msgstr "Knop Label"
|
2488 |
-
|
2489 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:8
|
2490 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:18
|
2491 |
-
msgid "This is the text that appears on your button"
|
2492 |
-
msgstr "Dit is de tekst die in de knop wordt getoond"
|
2493 |
-
|
2494 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:13
|
2495 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:23
|
2496 |
-
msgid "Button Link"
|
2497 |
-
msgstr "Knop Link"
|
2498 |
-
|
2499 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:14
|
2500 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:24
|
2501 |
-
msgid "Where should your button link to"
|
2502 |
-
msgstr "Waar moet je knop naar verwijzen "
|
2503 |
-
|
2504 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:20
|
2505 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:38
|
2506 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:30
|
2507 |
-
msgid "Open Link in New Window"
|
2508 |
-
msgstr "Open Link in Nieuw Venster"
|
2509 |
-
|
2510 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:21
|
2511 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:39
|
2512 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:31
|
2513 |
-
msgid "Select here if you want to open the linked page in a new window"
|
2514 |
-
msgstr "Selecteer als de gelinkte pagina in een nieuw venster moet worden geopend"
|
2515 |
-
|
2516 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:32
|
2517 |
-
msgid "Button Color"
|
2518 |
-
msgstr "Knop Kleur"
|
2519 |
-
|
2520 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:33
|
2521 |
-
msgid "Choose a color for your button"
|
2522 |
-
msgstr "Kies een kleur voor de knop"
|
2523 |
-
|
2524 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:36
|
2525 |
-
msgid "Default"
|
2526 |
-
msgstr "Standaard"
|
2527 |
-
|
2528 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:37
|
2529 |
-
msgid "Black"
|
2530 |
-
msgstr "Zwart"
|
2531 |
-
|
2532 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:38
|
2533 |
-
msgid "Blue"
|
2534 |
-
msgstr "Blauw"
|
2535 |
-
|
2536 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:39
|
2537 |
-
msgid "Green"
|
2538 |
-
msgstr "Groen"
|
2539 |
-
|
2540 |
-
#: ../framework/extensions/shortcodes/shortcodes/button/options.php:40
|
2541 |
-
msgid "Red"
|
2542 |
-
msgstr "Rood"
|
2543 |
-
|
2544 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:6
|
2545 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:108
|
2546 |
-
msgid "Video"
|
2547 |
-
msgstr "Video"
|
2548 |
-
|
2549 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:7
|
2550 |
-
msgid "Add a Video"
|
2551 |
-
msgstr "Voeg een Video toe"
|
2552 |
-
|
2553 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/config.php:8
|
2554 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:8
|
2555 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:10
|
2556 |
-
msgid "Media Elements"
|
2557 |
-
msgstr "Media Elementen"
|
2558 |
-
|
2559 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:8
|
2560 |
-
msgid "Insert Video URL"
|
2561 |
-
msgstr "Voeg Video URL in"
|
2562 |
-
|
2563 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:9
|
2564 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:24
|
2565 |
-
msgid "Insert Video URL to embed this video"
|
2566 |
-
msgstr "Voeg Video URL in om deze video in te sluiten"
|
2567 |
-
|
2568 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:13
|
2569 |
-
msgid "Video Width"
|
2570 |
-
msgstr "Video Breedte"
|
2571 |
-
|
2572 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:14
|
2573 |
-
msgid "Enter a value for the width"
|
2574 |
-
msgstr "Voer een waarde in voor de breedte"
|
2575 |
-
|
2576 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:19
|
2577 |
-
msgid "Video Height"
|
2578 |
-
msgstr "Video Hoogte"
|
2579 |
-
|
2580 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-video/options.php:20
|
2581 |
-
msgid "Enter a value for the height"
|
2582 |
-
msgstr "Voer een waarde in voor de hoogte"
|
2583 |
-
|
2584 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:8
|
2585 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:16
|
2586 |
-
msgid "Calendar"
|
2587 |
-
msgstr "Kalender"
|
2588 |
-
|
2589 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/config.php:9
|
2590 |
-
msgid "Add a Calendar"
|
2591 |
-
msgstr "Voeg een Kalender toe"
|
2592 |
-
|
2593 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:14
|
2594 |
-
msgid "Select calendar population method (Ex: events, custom)"
|
2595 |
-
msgstr "Stel kalender populatie methode in: (Bijv.: evenementen, aangepast)"
|
2596 |
-
|
2597 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:23
|
2598 |
-
msgid "Calendar Type"
|
2599 |
-
msgstr "Kalender Type"
|
2600 |
-
|
2601 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:24
|
2602 |
-
msgid "Select calendar type"
|
2603 |
-
msgstr "Stel kalender type in"
|
2604 |
-
|
2605 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:27
|
2606 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:23
|
2607 |
-
msgid "Daily"
|
2608 |
-
msgstr "Dagelijks"
|
2609 |
-
|
2610 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:28
|
2611 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:22
|
2612 |
-
msgid "Weekly"
|
2613 |
-
msgstr "Wekelijks"
|
2614 |
-
|
2615 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:29
|
2616 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:21
|
2617 |
-
msgid "Monthly"
|
2618 |
-
msgstr "Maandelijks"
|
2619 |
-
|
2620 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:33
|
2621 |
-
msgid "Start Week On"
|
2622 |
-
msgstr "Begin Week Op"
|
2623 |
-
|
2624 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:34
|
2625 |
-
msgid "Select first day of week"
|
2626 |
-
msgstr "Selecteer eerste dag van de week"
|
2627 |
-
|
2628 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:37
|
2629 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:110
|
2630 |
-
msgid "Monday"
|
2631 |
-
msgstr "Maandag"
|
2632 |
-
|
2633 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/options.php:38
|
2634 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:109
|
2635 |
-
msgid "Sunday"
|
2636 |
-
msgstr "Zondag"
|
2637 |
-
|
2638 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:29
|
2639 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:56
|
2640 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:82
|
2641 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:69
|
2642 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:74
|
2643 |
-
#: ../framework/extensions/events/manifest.php:7
|
2644 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:77
|
2645 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:185
|
2646 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:180
|
2647 |
-
msgid "Events"
|
2648 |
-
msgstr "Evenementen"
|
2649 |
-
|
2650 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:30
|
2651 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:59
|
2652 |
-
msgid "Add/Edit Date & Time"
|
2653 |
-
msgstr "Voeg toe/Bewerk Datum & Tijd"
|
2654 |
-
|
2655 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:33
|
2656 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:63
|
2657 |
-
msgid "Note: Please set start & end event datetime"
|
2658 |
-
msgstr "Notitie: Voer een begin- en einddatum en -tijd in voor het evenement"
|
2659 |
-
|
2660 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:37
|
2661 |
-
msgid "Event Title"
|
2662 |
-
msgstr "Evenement Titel"
|
2663 |
-
|
2664 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:38
|
2665 |
-
msgid "Enter the event title"
|
2666 |
-
msgstr "Voer de evenement titel in"
|
2667 |
-
|
2668 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:42
|
2669 |
-
msgid "Event URL"
|
2670 |
-
msgstr "Evenement URL"
|
2671 |
-
|
2672 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:43
|
2673 |
-
msgid "Enter the event URL (Ex: http://your-domain.com/event)"
|
2674 |
-
msgstr "Voer de evenement URL in (Bijv.: http://jouw-domein.com/evenement)"
|
2675 |
-
|
2676 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:47
|
2677 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:58
|
2678 |
-
msgid "Date & Time"
|
2679 |
-
msgstr "Datum & Tijd"
|
2680 |
-
|
2681 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:48
|
2682 |
-
msgid "Enter the event date & time"
|
2683 |
-
msgstr "Voer evenement datum en tijd in"
|
2684 |
-
|
2685 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:129
|
2686 |
-
msgid "No events provider specified for calendar shortcode"
|
2687 |
-
msgstr "Geen evenementen provider gespecificeerd voor kalender shortcode"
|
2688 |
-
|
2689 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/class-fw-shortcode-calendar.php:138
|
2690 |
-
#, php-format
|
2691 |
-
msgid "Unknown events provider \"%s\" specified for calendar shortcode"
|
2692 |
-
msgstr "Onbekende evenementen provider \"%s\" gespecificeerd voor de kalender shortcode"
|
2693 |
-
|
2694 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:55
|
2695 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:68
|
2696 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:75
|
2697 |
-
msgid "Event"
|
2698 |
-
msgstr "Evenement"
|
2699 |
-
|
2700 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:57
|
2701 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/views/view.php:23
|
2702 |
-
msgid "Today"
|
2703 |
-
msgstr "Vandaag"
|
2704 |
-
|
2705 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:66
|
2706 |
-
#, php-format
|
2707 |
-
msgid "Calendar: View %s not found"
|
2708 |
-
msgstr "Kalender: Vertoning %s is niet gevonden"
|
2709 |
-
|
2710 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:67
|
2711 |
-
#, php-format
|
2712 |
-
msgid "Calendar: Wrong date format %s. Should be either \"now\" or \"yyyy-mm-dd\""
|
2713 |
-
msgstr "Kalender: Verkeerde tijdsindeling %s. Moet of \"nu\" of \"jjjj-mm-dd\" zijn."
|
2714 |
-
|
2715 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:69
|
2716 |
-
msgid "Calendar: Event URL is not set"
|
2717 |
-
msgstr "Kalender: Evenement URL is niet ingesteld"
|
2718 |
-
|
2719 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:70
|
2720 |
-
#, php-format
|
2721 |
-
msgid ""
|
2722 |
-
"Calendar: Wrong navigation direction %s. Can be only \"next\" or \"prev\" or"
|
2723 |
-
" \"today\""
|
2724 |
-
msgstr "Kalender: Verkeerde navigatierichting %s. Kan alleen \"volgende\", \"vorige\" of \"vandaag\" zijn"
|
2725 |
-
|
2726 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:72
|
2727 |
-
msgid ""
|
2728 |
-
"Calendar: Time split parameter should divide 60 without decimals. Something "
|
2729 |
-
"like 10, 15, 30"
|
2730 |
-
msgstr "Kalender: Tijdsplitsing parameter moet 60 verdelen zonder decimalen. Iets als 10, 15, 30"
|
2731 |
-
|
2732 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:74
|
2733 |
-
msgid "No events in this day."
|
2734 |
-
msgstr "Geen evenementen op deze dag."
|
2735 |
-
|
2736 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:77
|
2737 |
-
#, php-format
|
2738 |
-
msgid "week %s of %s"
|
2739 |
-
msgstr "week %s van %s"
|
2740 |
-
|
2741 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:79
|
2742 |
-
msgid "Week "
|
2743 |
-
msgstr "Week"
|
2744 |
-
|
2745 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:80
|
2746 |
-
msgid "All day"
|
2747 |
-
msgstr "Hele dag"
|
2748 |
-
|
2749 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:81
|
2750 |
-
msgid "Time"
|
2751 |
-
msgstr "Tijd"
|
2752 |
-
|
2753 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:83
|
2754 |
-
msgid "Ends before timeline"
|
2755 |
-
msgstr "Eindigt vóór de tijdlijn"
|
2756 |
-
|
2757 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:84
|
2758 |
-
msgid "Starts after timeline"
|
2759 |
-
msgstr "Start na de tijdlijn"
|
2760 |
-
|
2761 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:85
|
2762 |
-
msgid "January"
|
2763 |
-
msgstr "Januari"
|
2764 |
-
|
2765 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:86
|
2766 |
-
msgid "February"
|
2767 |
-
msgstr "Februari"
|
2768 |
-
|
2769 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:87
|
2770 |
-
msgid "March"
|
2771 |
-
msgstr "Maart"
|
2772 |
-
|
2773 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:88
|
2774 |
-
msgid "April"
|
2775 |
-
msgstr "Apri"
|
2776 |
-
|
2777 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:89
|
2778 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:101
|
2779 |
-
msgid "May"
|
2780 |
-
msgstr "Mei"
|
2781 |
-
|
2782 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:90
|
2783 |
-
msgid "June"
|
2784 |
-
msgstr "Juni"
|
2785 |
-
|
2786 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:91
|
2787 |
-
msgid "July"
|
2788 |
-
msgstr "Juli"
|
2789 |
-
|
2790 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:92
|
2791 |
-
msgid "August"
|
2792 |
-
msgstr "Augustus"
|
2793 |
-
|
2794 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:93
|
2795 |
-
msgid "September"
|
2796 |
-
msgstr "September"
|
2797 |
-
|
2798 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:94
|
2799 |
-
msgid "October"
|
2800 |
-
msgstr "Oktober"
|
2801 |
-
|
2802 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:95
|
2803 |
-
msgid "November"
|
2804 |
-
msgstr "November"
|
2805 |
-
|
2806 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:96
|
2807 |
-
msgid "December"
|
2808 |
-
msgstr "December"
|
2809 |
-
|
2810 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:97
|
2811 |
-
msgid "Jan"
|
2812 |
-
msgstr "Jan"
|
2813 |
-
|
2814 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:98
|
2815 |
-
msgid "Feb"
|
2816 |
-
msgstr "Feb"
|
2817 |
-
|
2818 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:99
|
2819 |
-
msgid "Mar"
|
2820 |
-
msgstr "Mar"
|
2821 |
-
|
2822 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:100
|
2823 |
-
msgid "Apr"
|
2824 |
-
msgstr "Apr"
|
2825 |
-
|
2826 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:102
|
2827 |
-
msgid "Jun"
|
2828 |
-
msgstr "Jun"
|
2829 |
-
|
2830 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:103
|
2831 |
-
msgid "Jul"
|
2832 |
-
msgstr "Jul"
|
2833 |
-
|
2834 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:104
|
2835 |
-
msgid "Aug"
|
2836 |
-
msgstr "Aug"
|
2837 |
-
|
2838 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:105
|
2839 |
-
msgid "Sep"
|
2840 |
-
msgstr "Sep"
|
2841 |
-
|
2842 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:106
|
2843 |
-
msgid "Oct"
|
2844 |
-
msgstr "Okt"
|
2845 |
-
|
2846 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:107
|
2847 |
-
msgid "Nov"
|
2848 |
-
msgstr "Nov"
|
2849 |
-
|
2850 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:108
|
2851 |
-
msgid "Dec"
|
2852 |
-
msgstr "Dec"
|
2853 |
-
|
2854 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:111
|
2855 |
-
msgid "Tuesday"
|
2856 |
-
msgstr "Dinsdag"
|
2857 |
-
|
2858 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:112
|
2859 |
-
msgid "Wednesday"
|
2860 |
-
msgstr "Woensdag"
|
2861 |
-
|
2862 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:113
|
2863 |
-
msgid "Thursday"
|
2864 |
-
msgstr "Donderdag"
|
2865 |
-
|
2866 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:114
|
2867 |
-
msgid "Friday"
|
2868 |
-
msgstr "Vrijdag"
|
2869 |
-
|
2870 |
-
#: ../framework/extensions/shortcodes/shortcodes/calendar/static.php:115
|
2871 |
-
msgid "Saturday"
|
2872 |
-
msgstr "Zaterdag"
|
2873 |
-
|
2874 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/config.php:7
|
2875 |
-
msgid "Add an Image"
|
2876 |
-
msgstr "Voeg een Afbeelding toe"
|
2877 |
-
|
2878 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:8
|
2879 |
-
msgid "Choose Image"
|
2880 |
-
msgstr "Afbeelding kiezen"
|
2881 |
-
|
2882 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:16
|
2883 |
-
msgid "Width"
|
2884 |
-
msgstr "Breedte"
|
2885 |
-
|
2886 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:17
|
2887 |
-
msgid "Set image width"
|
2888 |
-
msgstr "Stel afbeeldingsbreedte in"
|
2889 |
-
|
2890 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:22
|
2891 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:24
|
2892 |
-
msgid "Height"
|
2893 |
-
msgstr "Hoogte"
|
2894 |
-
|
2895 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:23
|
2896 |
-
msgid "Set image height"
|
2897 |
-
msgstr "Stel afbeeldingshoogte in"
|
2898 |
-
|
2899 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:33
|
2900 |
-
msgid "Image Link"
|
2901 |
-
msgstr "Afbeelding Link"
|
2902 |
-
|
2903 |
-
#: ../framework/extensions/shortcodes/shortcodes/media-image/options.php:34
|
2904 |
-
msgid "Where should your image link to?"
|
2905 |
-
msgstr "Waar moet de afbeelding naar verwijzen?"
|
2906 |
-
|
2907 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:8
|
2908 |
-
msgid "Notification"
|
2909 |
-
msgstr "Notificatie"
|
2910 |
-
|
2911 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/config.php:9
|
2912 |
-
msgid "Add a Notification Box"
|
2913 |
-
msgstr "Voeg een Notificatie Box toe"
|
2914 |
-
|
2915 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:7
|
2916 |
-
msgid "Message"
|
2917 |
-
msgstr "Bericht"
|
2918 |
-
|
2919 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:8
|
2920 |
-
msgid "Notification message"
|
2921 |
-
msgstr "Notificatie bericht"
|
2922 |
-
|
2923 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:10
|
2924 |
-
msgid "Message!"
|
2925 |
-
msgstr "Bericht!"
|
2926 |
-
|
2927 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:13
|
2928 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:444
|
2929 |
-
msgid "Type"
|
2930 |
-
msgstr "Type"
|
2931 |
-
|
2932 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:14
|
2933 |
-
msgid "Notification type"
|
2934 |
-
msgstr "Notificatie type"
|
2935 |
-
|
2936 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:17
|
2937 |
-
msgid "Congratulations"
|
2938 |
-
msgstr "Gefeliciteerd"
|
2939 |
-
|
2940 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:18
|
2941 |
-
msgid "Information"
|
2942 |
-
msgstr "Informatie"
|
2943 |
-
|
2944 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:19
|
2945 |
-
msgid "Alert"
|
2946 |
-
msgstr "Alarm"
|
2947 |
-
|
2948 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/options.php:20
|
2949 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:456
|
2950 |
-
msgid "Error"
|
2951 |
-
msgstr "Fout"
|
2952 |
-
|
2953 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:9
|
2954 |
-
msgid "Congratulations!"
|
2955 |
-
msgstr "Gefeliciteerd!"
|
2956 |
-
|
2957 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:13
|
2958 |
-
msgid "Information!"
|
2959 |
-
msgstr "Informatie!"
|
2960 |
-
|
2961 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:17
|
2962 |
-
msgid "Alert!"
|
2963 |
-
msgstr "Alarm!"
|
2964 |
-
|
2965 |
-
#: ../framework/extensions/shortcodes/shortcodes/notification/views/view.php:21
|
2966 |
-
msgid "Error!"
|
2967 |
-
msgstr "Fout!"
|
2968 |
-
|
2969 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:8
|
2970 |
-
msgid "Widget Area"
|
2971 |
-
msgstr "Widget Gebied"
|
2972 |
-
|
2973 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/config.php:9
|
2974 |
-
msgid "Add a Widget Area"
|
2975 |
-
msgstr "Voeg een Widget Gebied toe"
|
2976 |
-
|
2977 |
-
#: ../framework/extensions/shortcodes/shortcodes/widget-area/options.php:5
|
2978 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:5
|
2979 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:7
|
2980 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:40
|
2981 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:91
|
2982 |
-
msgid "Sidebar"
|
2983 |
-
msgstr "Zijkolom"
|
2984 |
-
|
2985 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:8
|
2986 |
-
msgid "Call To Action"
|
2987 |
-
msgstr "Oproep Tot Actie"
|
2988 |
-
|
2989 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/config.php:9
|
2990 |
-
msgid "Add a Call to Action"
|
2991 |
-
msgstr "Voeg Oproep Tot Actie toe"
|
2992 |
-
|
2993 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:9
|
2994 |
-
msgid "This can be left blank"
|
2995 |
-
msgstr "Dit kan leeg blijven"
|
2996 |
-
|
2997 |
-
#: ../framework/extensions/shortcodes/shortcodes/call-to-action/options.php:14
|
2998 |
-
msgid "Enter some content for this Info Box"
|
2999 |
-
msgstr "Voer inhoud in voor deze Info Box"
|
3000 |
-
|
3001 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:8
|
3002 |
-
msgid "Text Block"
|
3003 |
-
msgstr "Tekstblok"
|
3004 |
-
|
3005 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/config.php:9
|
3006 |
-
msgid "Add a Text Block"
|
3007 |
-
msgstr "Voeg een Tekstblok toe"
|
3008 |
-
|
3009 |
-
#: ../framework/extensions/shortcodes/shortcodes/text-block/options.php:11
|
3010 |
-
msgid "Enter some content for this texblock"
|
3011 |
-
msgstr "Voer inhoud in voor dit tekstblok"
|
3012 |
-
|
3013 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:6
|
3014 |
-
msgid "Divider"
|
3015 |
-
msgstr "Verdeler"
|
3016 |
-
|
3017 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/config.php:7
|
3018 |
-
msgid "Add a Divider"
|
3019 |
-
msgstr "Voeg een Verdeler toe"
|
3020 |
-
|
3021 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:13
|
3022 |
-
msgid "Ruler Type"
|
3023 |
-
msgstr "Lineaal Type"
|
3024 |
-
|
3025 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:14
|
3026 |
-
msgid "Here you can set the styling and size of the HR element"
|
3027 |
-
msgstr "Hier kun je de opmaak en afmetingen van het HR element instellen"
|
3028 |
-
|
3029 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:16
|
3030 |
-
msgid "Line"
|
3031 |
-
msgstr "Regel"
|
3032 |
-
|
3033 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:17
|
3034 |
-
msgid "Whitespace"
|
3035 |
-
msgstr "Witruimte"
|
3036 |
-
|
3037 |
-
#: ../framework/extensions/shortcodes/shortcodes/divider/options.php:25
|
3038 |
-
msgid ""
|
3039 |
-
"How much whitespace do you need? Enter a pixel value. Positive value will "
|
3040 |
-
"increase the whitespace, negative value will reduce it. eg: '50', '-25', "
|
3041 |
-
"'200'"
|
3042 |
-
msgstr "Hoeveel witruimte heb je nodig? Voer een pixelwaarde in. Positieve waarde zal de witruimte vergroten, negatieve waarde zal het verkleinen. Voorbeeld: '50', '-25', '200'"
|
3043 |
-
|
3044 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:6
|
3045 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:23
|
3046 |
-
msgid "Section"
|
3047 |
-
msgstr "Sectie"
|
3048 |
-
|
3049 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/config.php:7
|
3050 |
-
msgid "Add a Section"
|
3051 |
-
msgstr "Voeg een Sectie toe"
|
3052 |
-
|
3053 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:7
|
3054 |
-
msgid "Full Width"
|
3055 |
-
msgstr "Volledige Breedte"
|
3056 |
-
|
3057 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:11
|
3058 |
-
msgid "Background Color"
|
3059 |
-
msgstr "Achtergrondkleur"
|
3060 |
-
|
3061 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:12
|
3062 |
-
msgid "Please select the background color"
|
3063 |
-
msgstr "Stel de achtergrondkleur in"
|
3064 |
-
|
3065 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:16
|
3066 |
-
msgid "Background Image"
|
3067 |
-
msgstr "Achtergrondafbeelding"
|
3068 |
-
|
3069 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:17
|
3070 |
-
msgid "Please select the background image"
|
3071 |
-
msgstr "Stel de achtergrondafbeelding in"
|
3072 |
-
|
3073 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/options.php:23
|
3074 |
-
msgid "Background Video"
|
3075 |
-
msgstr "Achtergrondvideo"
|
3076 |
-
|
3077 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:12
|
3078 |
-
msgid "Sections"
|
3079 |
-
msgstr "Secties"
|
3080 |
-
|
3081 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/template-component/class-fw-ext-builder-templates-component-section.php:92
|
3082 |
-
msgid "Save Section"
|
3083 |
-
msgstr "Sectie Opslaan"
|
3084 |
-
|
3085 |
-
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:24
|
3086 |
-
msgid "Creates a section"
|
3087 |
-
msgstr "Maakt een sectie aan"
|
3088 |
-
|
3089 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/config.php:9
|
3090 |
-
msgid "Add some Tabs"
|
3091 |
-
msgstr "Voeg Tabbladen toe"
|
3092 |
-
|
3093 |
-
#: ../framework/extensions/shortcodes/shortcodes/tabs/options.php:9
|
3094 |
-
msgid "Add/Edit Tab"
|
3095 |
-
msgstr "Tabblad Toevoegen/Bewerken"
|
3096 |
-
|
3097 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcode.php:194
|
3098 |
-
#, php-format
|
3099 |
-
msgid "No default view (views/view.php) found for shortcode: %s"
|
3100 |
-
msgstr "Geen standaard weergave (views/view.php) gevonden voor de shortcode: %s"
|
3101 |
-
|
3102 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:203
|
3103 |
-
#, php-format
|
3104 |
-
msgid "Shortcode \"%s\" from %s was already defined at %s"
|
3105 |
-
msgstr "Shortcode \"%s\" afkomstig van %s is al gedefinieerd bij %s"
|
3106 |
-
|
3107 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:264
|
3108 |
-
#, php-format
|
3109 |
-
msgid "Class file found for shortcode %s but no class %s found"
|
3110 |
-
msgstr "Klassebestand gevonden voor shortcode %s maar geen klasse voor %s gevonden"
|
3111 |
-
|
3112 |
-
#: ../framework/extensions/shortcodes/includes/class-fw-shortcodes-loader.php:269
|
3113 |
-
#, php-format
|
3114 |
-
msgid "The class %s must extend from FW_Shortcode"
|
3115 |
-
msgstr "De klasse %s moet uit FW_Shortcode voortkomen"
|
3116 |
-
|
3117 |
-
#: ../framework/extensions/builder/manifest.php:5
|
3118 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:204
|
3119 |
-
msgid "Builder"
|
3120 |
-
msgstr "Bouwer"
|
3121 |
-
|
3122 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:306
|
3123 |
-
msgid "Full Screen"
|
3124 |
-
msgstr "Volledig Scherm"
|
3125 |
-
|
3126 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:307
|
3127 |
-
msgid "Exit Full Screen"
|
3128 |
-
msgstr "Volledig Scherm Verlaten"
|
3129 |
-
|
3130 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:334
|
3131 |
-
msgid "Undo"
|
3132 |
-
msgstr "Ongedaan maken"
|
3133 |
-
|
3134 |
-
#: ../framework/extensions/builder/includes/option-types/builder/extends/class-fw-option-type-builder.php:335
|
3135 |
-
msgid "Redo"
|
3136 |
-
msgstr "Opnieuw uitvoeren"
|
3137 |
-
|
3138 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/fullscreen.php:81
|
3139 |
-
msgid "Preview Changes"
|
3140 |
-
msgstr "Wijzigingen Bekijken"
|
3141 |
-
|
3142 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/class-fw-ext-builder-templates.php:119
|
3143 |
-
msgid "Templates"
|
3144 |
-
msgstr "Sjablonen"
|
3145 |
-
|
3146 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:12
|
3147 |
-
msgid "Full Templates"
|
3148 |
-
msgstr "Volledig Sjabloon"
|
3149 |
-
|
3150 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:61
|
3151 |
-
msgid "Save Full Template"
|
3152 |
-
msgstr "Volledig Sjabloon Opslaan"
|
3153 |
-
|
3154 |
-
#: ../framework/extensions/builder/includes/option-types/builder/includes/templates/components/full/class-fw-ext-builder-templates-component-full.php:95
|
3155 |
-
msgid "Save Builder Template"
|
3156 |
-
msgstr "Builder Sjabloon Opslaan"
|
3157 |
-
|
3158 |
-
#: ../framework/extensions/social/manifest.php:7
|
3159 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:252
|
3160 |
-
msgid "Social"
|
3161 |
-
msgstr "Sociaal"
|
3162 |
-
|
3163 |
-
#: ../framework/extensions/social/manifest.php:8
|
3164 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:253
|
3165 |
-
msgid ""
|
3166 |
-
"Use this extension to configure all your social related APIs. Other "
|
3167 |
-
"extensions will use the Social extension to connect to your social accounts."
|
3168 |
-
msgstr "Gebruik deze uitbreiding om je sociale media gerelateerde API's te configureren. Andere uitbreidingen gebruiken de Sociale Media uitbreiding om verbinding te maken met je sociale media accounts."
|
3169 |
-
|
3170 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:62
|
3171 |
-
#: ../framework/core/components/backend.php:584
|
3172 |
-
msgid "Facebook"
|
3173 |
-
msgstr "Facebook"
|
3174 |
-
|
3175 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:66
|
3176 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:33
|
3177 |
-
msgid "API Settings"
|
3178 |
-
msgstr "API Instellingen"
|
3179 |
-
|
3180 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:72
|
3181 |
-
msgid "App ID/API Key:"
|
3182 |
-
msgstr "ID/API Sleutel Toevoegen"
|
3183 |
-
|
3184 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:73
|
3185 |
-
msgid "Enter Facebook App ID / API Key."
|
3186 |
-
msgstr "Vul Facebook App ID / API sleutel in."
|
3187 |
-
|
3188 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:78
|
3189 |
-
msgid "App Secret:"
|
3190 |
-
msgstr "App Secret:"
|
3191 |
-
|
3192 |
-
#: ../framework/extensions/social/extensions/social-facebook/class-fw-extension-social-facebook.php:79
|
3193 |
-
msgid "Enter Facebook App Secret."
|
3194 |
-
msgstr "Vul Facebook App Secret in."
|
3195 |
-
|
3196 |
-
#: ../framework/extensions/social/extensions/social-facebook/manifest.php:7
|
3197 |
-
#: ../framework/extensions/social/extensions/social-facebook/manifest.php:8
|
3198 |
-
msgid "Social Facebook"
|
3199 |
-
msgstr "Sociaal Facebook"
|
3200 |
-
|
3201 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:29
|
3202 |
-
#: ../framework/core/components/backend.php:592
|
3203 |
-
msgid "Twitter"
|
3204 |
-
msgstr "Twitter"
|
3205 |
-
|
3206 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:39
|
3207 |
-
msgid "Consumer Key"
|
3208 |
-
msgstr "Gebruiker Sleutel"
|
3209 |
-
|
3210 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:40
|
3211 |
-
msgid "Enter Twitter Consumer Key."
|
3212 |
-
msgstr "Vul Twitter Gebruiker Sleutel in."
|
3213 |
-
|
3214 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:45
|
3215 |
-
msgid "Consumer Secret"
|
3216 |
-
msgstr "Gebruiker Secret"
|
3217 |
-
|
3218 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:46
|
3219 |
-
msgid "Enter Twitter App Secret."
|
3220 |
-
msgstr "Vul Twitter App Secret in."
|
3221 |
-
|
3222 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:51
|
3223 |
-
msgid "Access Token"
|
3224 |
-
msgstr "Access Token"
|
3225 |
-
|
3226 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:52
|
3227 |
-
msgid "Enter Twitter Access Token."
|
3228 |
-
msgstr "Vul Twitter Access Token in."
|
3229 |
-
|
3230 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:57
|
3231 |
-
msgid "Access Token Secret"
|
3232 |
-
msgstr "Access Token Secret"
|
3233 |
-
|
3234 |
-
#: ../framework/extensions/social/extensions/social-twitter/class-fw-extension-social-twitter.php:58
|
3235 |
-
msgid "Enter Twitter Access Token Secret."
|
3236 |
-
msgstr "Vul Twitter Access Token Secret in."
|
3237 |
-
|
3238 |
-
#: ../framework/extensions/social/extensions/social-twitter/manifest.php:7
|
3239 |
-
#: ../framework/extensions/social/extensions/social-twitter/manifest.php:8
|
3240 |
-
msgid "Social Twitter"
|
3241 |
-
msgstr "Sociaal Twitter"
|
3242 |
-
|
3243 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:112
|
3244 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:123
|
3245 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:131
|
3246 |
-
#: ../framework/extensions/forms/class-fw-extension-forms.php:142
|
3247 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:102
|
3248 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:114
|
3249 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:124
|
3250 |
-
msgid "Unable to process the form"
|
3251 |
-
msgstr "Niet in staat het formulier te verwerken"
|
3252 |
-
|
3253 |
-
#: ../framework/extensions/forms/manifest.php:5
|
3254 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:228
|
3255 |
-
msgid "Forms"
|
3256 |
-
msgstr "Formulieren"
|
3257 |
-
|
3258 |
-
#: ../framework/extensions/forms/manifest.php:7
|
3259 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:229
|
3260 |
-
msgid ""
|
3261 |
-
"This extension adds the possibility to create a contact form. Use the drag &"
|
3262 |
-
" drop form builder to create any contact form you'll ever want or need."
|
3263 |
-
msgstr "Deze uitbreiding voegt de mogelijkheid to om een contactformulier aan te maken. Gebruik de drag & drop formulierenbouwer om alle contactformulieren te creëren die je ooit nodig hebt."
|
3264 |
-
|
3265 |
-
#: ../framework/extensions/forms/extensions/contact-forms/manifest.php:5
|
3266 |
-
msgid "Contact Forms"
|
3267 |
-
msgstr "Contactformulieren"
|
3268 |
-
|
3269 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:134
|
3270 |
-
msgid "Invalid destination email (please contact the site administrator)"
|
3271 |
-
msgstr "Ongeldige bestemmingsemail (neem contact op met de sitebeheerder)"
|
3272 |
-
|
3273 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:158
|
3274 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:77
|
3275 |
-
msgid "Message sent!"
|
3276 |
-
msgstr "Bericht is verstuurd!"
|
3277 |
-
|
3278 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:164
|
3279 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:85
|
3280 |
-
msgid "Oops something went wrong."
|
3281 |
-
msgstr "Oeps, er is iets fout gegaan."
|
3282 |
-
|
3283 |
-
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:190
|
3284 |
-
msgid "Please configure the {mailer_link} extension."
|
3285 |
-
msgstr "Configureer eerst de {mailer_link} uitbreiding."
|
3286 |
-
|
3287 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:8
|
3288 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:107
|
3289 |
-
msgid "Contact form"
|
3290 |
-
msgstr "Contactformulier"
|
3291 |
-
|
3292 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/config.php:9
|
3293 |
-
msgid "Build contact forms"
|
3294 |
-
msgstr "Bouw contactformulieren"
|
3295 |
-
|
3296 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:15
|
3297 |
-
msgid "Form Fields"
|
3298 |
-
msgstr "Formuliervelden"
|
3299 |
-
|
3300 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:39
|
3301 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:82
|
3302 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:31
|
3303 |
-
msgid "Settings"
|
3304 |
-
msgstr "Instellingen"
|
3305 |
-
|
3306 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:42
|
3307 |
-
msgid "Options"
|
3308 |
-
msgstr "Opties"
|
3309 |
-
|
3310 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:53
|
3311 |
-
msgid "Subject Message"
|
3312 |
-
msgstr "Onderwerp Bericht"
|
3313 |
-
|
3314 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:54
|
3315 |
-
msgid "This text will be used as subject message for the email"
|
3316 |
-
msgstr "Deze tekst zal gebruikt worden als onderwerp voor de email"
|
3317 |
-
|
3318 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:55
|
3319 |
-
msgid "New message"
|
3320 |
-
msgstr "Nieuw bericht"
|
3321 |
-
|
3322 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:64
|
3323 |
-
msgid "Submit Button"
|
3324 |
-
msgstr "Verzendknop"
|
3325 |
-
|
3326 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:65
|
3327 |
-
msgid "This text will appear in submit button"
|
3328 |
-
msgstr "Deze tekst verschijnt in de verzendknop"
|
3329 |
-
|
3330 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:66
|
3331 |
-
msgid "Send"
|
3332 |
-
msgstr "Verzenden"
|
3333 |
-
|
3334 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:75
|
3335 |
-
msgid "Success Message"
|
3336 |
-
msgstr "Succes Bericht"
|
3337 |
-
|
3338 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:76
|
3339 |
-
msgid "This text will be displayed when the form will successfully send"
|
3340 |
-
msgstr "Deze tekst wordt getoond wanneer het formulier succesvol is verzonden."
|
3341 |
-
|
3342 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:83
|
3343 |
-
msgid "Failure Message"
|
3344 |
-
msgstr "Mislukt Bericht"
|
3345 |
-
|
3346 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:84
|
3347 |
-
msgid "This text will be displayed when the form will fail to be sent"
|
3348 |
-
msgstr "Deze tekst wordt getoond wanneer het verzenden van het formulier is mislukt."
|
3349 |
-
|
3350 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:94
|
3351 |
-
msgid "Email To"
|
3352 |
-
msgstr "Verzend Naar"
|
3353 |
-
|
3354 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:95
|
3355 |
-
msgid "We recommend you to use an email that you verify often"
|
3356 |
-
msgstr "We raden je aan een emailadres te gebruiken dat je regelmatig controleert."
|
3357 |
-
|
3358 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/options.php:96
|
3359 |
-
msgid "The form will be sent to this email address."
|
3360 |
-
msgstr "Het formulier zal verstuurd worden naar dit emailadres."
|
3361 |
-
|
3362 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:52
|
3363 |
-
msgid "Contact Form"
|
3364 |
-
msgstr "Contactformulier"
|
3365 |
-
|
3366 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:54
|
3367 |
-
msgid "Configure Mailer"
|
3368 |
-
msgstr "Mailer configureren"
|
3369 |
-
|
3370 |
-
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:108
|
3371 |
-
msgid "Add a Contact Form"
|
3372 |
-
msgstr "Voeg een Contactformulier toe"
|
3373 |
-
|
3374 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:9
|
3375 |
-
msgid "Note that the type can't be changed later."
|
3376 |
-
msgstr "Opmerking: het type kan later NIET gewijzigd worden."
|
3377 |
-
|
3378 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:11
|
3379 |
-
msgid ""
|
3380 |
-
"You will need to create a new form in order to have a different form type."
|
3381 |
-
msgstr "Je moet een nieuw formulier aanmaken om een ander formuliertype te kunnen gebruiken."
|
3382 |
-
|
3383 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:20
|
3384 |
-
#: ../framework/extensions/forms/views/backend/submit-box-edit.php:16
|
3385 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:14
|
3386 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:31
|
3387 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-error.php:8
|
3388 |
-
msgid "Delete Permanently"
|
3389 |
-
msgstr "Permanent Verwijderen"
|
3390 |
-
|
3391 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:22
|
3392 |
-
#: ../framework/extensions/forms/views/backend/submit-box-edit.php:18
|
3393 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:16
|
3394 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:33
|
3395 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-error.php:10
|
3396 |
-
msgid "Move to Trash"
|
3397 |
-
msgstr "Verplaats naar Prullenbak"
|
3398 |
-
|
3399 |
-
#: ../framework/extensions/forms/views/backend/submit-box-add.php:33
|
3400 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:35
|
3401 |
-
msgid "Create"
|
3402 |
-
msgstr "Aanmaken"
|
3403 |
-
|
3404 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:24
|
3405 |
-
msgid "Add a Recaptcha field"
|
3406 |
-
msgstr "Voeg Recapthca veld toe"
|
3407 |
-
|
3408 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:26
|
3409 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:54
|
3410 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:78
|
3411 |
-
msgid "Recaptcha"
|
3412 |
-
msgstr "Recaptcha"
|
3413 |
-
|
3414 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:59
|
3415 |
-
msgid "Set site key"
|
3416 |
-
msgstr "Site key instellen"
|
3417 |
-
|
3418 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:60
|
3419 |
-
msgid "Set secret key"
|
3420 |
-
msgstr "Secret key instellen"
|
3421 |
-
|
3422 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:77
|
3423 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:76
|
3424 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:78
|
3425 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:78
|
3426 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:81
|
3427 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:81
|
3428 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:78
|
3429 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:78
|
3430 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:76
|
3431 |
-
msgid "Enter field label (it will be displayed on the web site)"
|
3432 |
-
msgstr "Veld label invoeren (deze wordt getoond op de website)"
|
3433 |
-
|
3434 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:133
|
3435 |
-
msgid "Security Code"
|
3436 |
-
msgstr "Beveiligingscode"
|
3437 |
-
|
3438 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:147
|
3439 |
-
msgid "Could not validate the form"
|
3440 |
-
msgstr "Het formulier kon niet worden gevalideerd."
|
3441 |
-
|
3442 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:148
|
3443 |
-
msgid "Please fill the recaptcha"
|
3444 |
-
msgstr "Vul a.u.b. de recaptcha in"
|
3445 |
-
|
3446 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:37
|
3447 |
-
msgid "Site key"
|
3448 |
-
msgstr "Site key"
|
3449 |
-
|
3450 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:38
|
3451 |
-
msgid "Your website key. More on how to configure ReCaptcha"
|
3452 |
-
msgstr "De site key voor je website. Meer over hoe ReCaptcha te configureren"
|
3453 |
-
|
3454 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:42
|
3455 |
-
msgid "Secret key"
|
3456 |
-
msgstr "Secret key"
|
3457 |
-
|
3458 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/includes/option-type-recaptcha/class-fw-option-type-recaptcha.php:43
|
3459 |
-
msgid "Your secret key. More on how to configure ReCaptcha"
|
3460 |
-
msgstr "De secret key voor je website. Meer over hoe ReCaptcha te configureren"
|
3461 |
-
|
3462 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:18
|
3463 |
-
msgid "Add a Paragraph Text"
|
3464 |
-
msgstr "Voeg een Alinea toe"
|
3465 |
-
|
3466 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:20
|
3467 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:48
|
3468 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:77
|
3469 |
-
msgid "Paragraph Text"
|
3470 |
-
msgstr "Alinea"
|
3471 |
-
|
3472 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:53
|
3473 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:53
|
3474 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:51
|
3475 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:52
|
3476 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:52
|
3477 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:51
|
3478 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:51
|
3479 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:49
|
3480 |
-
msgid "Toggle mandatory field"
|
3481 |
-
msgstr "Instellen als verplicht veld"
|
3482 |
-
|
3483 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:83
|
3484 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:85
|
3485 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:85
|
3486 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:88
|
3487 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:88
|
3488 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:85
|
3489 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:85
|
3490 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:83
|
3491 |
-
msgid "Mandatory Field"
|
3492 |
-
msgstr "Verplicht Veld"
|
3493 |
-
|
3494 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:84
|
3495 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:86
|
3496 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:86
|
3497 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:89
|
3498 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:89
|
3499 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:86
|
3500 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:86
|
3501 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:84
|
3502 |
-
msgid "Make this field mandatory?"
|
3503 |
-
msgstr "Dit veld verplicht maken?"
|
3504 |
-
|
3505 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:98
|
3506 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:100
|
3507 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:100
|
3508 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:100
|
3509 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:98
|
3510 |
-
msgid "Placeholder"
|
3511 |
-
msgstr "Placeholder"
|
3512 |
-
|
3513 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:99
|
3514 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:101
|
3515 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:101
|
3516 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:101
|
3517 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:99
|
3518 |
-
msgid "This text will be used as field placeholder"
|
3519 |
-
msgstr "Deze tekst zal worden gebruikt als placeholder voor het veld"
|
3520 |
-
|
3521 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:105
|
3522 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:107
|
3523 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:107
|
3524 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:105
|
3525 |
-
msgid "Default Value"
|
3526 |
-
msgstr "Standaard Waarde"
|
3527 |
-
|
3528 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:106
|
3529 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:108
|
3530 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:108
|
3531 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:106
|
3532 |
-
msgid "This text will be used as field default value"
|
3533 |
-
msgstr "Deze tekst zal gebruikt worden als standaard waarde voor het veld"
|
3534 |
-
|
3535 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:126
|
3536 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:128
|
3537 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:126
|
3538 |
-
msgid "Restrictions"
|
3539 |
-
msgstr "Beperkingen"
|
3540 |
-
|
3541 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:127
|
3542 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:127
|
3543 |
-
msgid "Set characters or words restrictions for this field"
|
3544 |
-
msgstr "Stel teken- of woordbeperkingen in voor dit veld"
|
3545 |
-
|
3546 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:131
|
3547 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:131
|
3548 |
-
msgid "Characters"
|
3549 |
-
msgstr "Tekens"
|
3550 |
-
|
3551 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:132
|
3552 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:132
|
3553 |
-
msgid "Words"
|
3554 |
-
msgstr "Woorden"
|
3555 |
-
|
3556 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:140
|
3557 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:154
|
3558 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:142
|
3559 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:156
|
3560 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:140
|
3561 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:154
|
3562 |
-
msgid "Min"
|
3563 |
-
msgstr "Minimum"
|
3564 |
-
|
3565 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:141
|
3566 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:155
|
3567 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:143
|
3568 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:157
|
3569 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:141
|
3570 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:155
|
3571 |
-
msgid "Minim value"
|
3572 |
-
msgstr "Minimale waarde"
|
3573 |
-
|
3574 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:146
|
3575 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:160
|
3576 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:148
|
3577 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:162
|
3578 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:146
|
3579 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:160
|
3580 |
-
msgid "Max"
|
3581 |
-
msgstr "Maximum"
|
3582 |
-
|
3583 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:147
|
3584 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:161
|
3585 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:149
|
3586 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:163
|
3587 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:147
|
3588 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:161
|
3589 |
-
msgid "Maxim value"
|
3590 |
-
msgstr "Maximale waarde"
|
3591 |
-
|
3592 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:178
|
3593 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:180
|
3594 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:121
|
3595 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:137
|
3596 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:137
|
3597 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:114
|
3598 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:121
|
3599 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:178
|
3600 |
-
msgid "Instructions for Users"
|
3601 |
-
msgstr "Instructies voor Gebruikers"
|
3602 |
-
|
3603 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:179
|
3604 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:181
|
3605 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:122
|
3606 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:138
|
3607 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:138
|
3608 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:115
|
3609 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:122
|
3610 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:179
|
3611 |
-
msgid "The users will see these instructions in the tooltip near the field"
|
3612 |
-
msgstr "De gebruikers zullen deze instructies kunnen zien in een tooltip nabij het veld"
|
3613 |
-
|
3614 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:331
|
3615 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:368
|
3616 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:230
|
3617 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:244
|
3618 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:244
|
3619 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:210
|
3620 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:217
|
3621 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:332
|
3622 |
-
msgid "The {label} field is required"
|
3623 |
-
msgstr "Het {label} veld is verplicht"
|
3624 |
-
|
3625 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:336
|
3626 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:337
|
3627 |
-
#, php-format
|
3628 |
-
msgid "The {label} field must contain minimum %d character"
|
3629 |
-
msgstr "Het {label} veld moet minstens %d teken bevatten"
|
3630 |
-
|
3631 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:341
|
3632 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:342
|
3633 |
-
#, php-format
|
3634 |
-
msgid "The {label} field must contain minimum %d characters"
|
3635 |
-
msgstr "Het {label} veld moet minstens %d tekens bevatten"
|
3636 |
-
|
3637 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:346
|
3638 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:347
|
3639 |
-
#, php-format
|
3640 |
-
msgid "The {label} field must contain maximum %d character"
|
3641 |
-
msgstr "Het {label} veld mag maximaal %d teken bevatten"
|
3642 |
-
|
3643 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:351
|
3644 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:352
|
3645 |
-
#, php-format
|
3646 |
-
msgid "The {label} field must contain maximum %d characters"
|
3647 |
-
msgstr "Het {label} veld mag maximaal %d tekens bevatten"
|
3648 |
-
|
3649 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:356
|
3650 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:357
|
3651 |
-
#, php-format
|
3652 |
-
msgid "The {label} field must contain minimum %d word"
|
3653 |
-
msgstr "Het {label} veld moet minstens %d woord bevatten"
|
3654 |
-
|
3655 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:361
|
3656 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:362
|
3657 |
-
#, php-format
|
3658 |
-
msgid "The {label} field must contain minimum %d words"
|
3659 |
-
msgstr "Het {label} veld moet minstens %d woorden bevatten"
|
3660 |
-
|
3661 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:366
|
3662 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:367
|
3663 |
-
#, php-format
|
3664 |
-
msgid "The {label} field must contain maximum %d word"
|
3665 |
-
msgstr "Het {label} veld mag maximaal %d woord bevatten"
|
3666 |
-
|
3667 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:371
|
3668 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:372
|
3669 |
-
#, php-format
|
3670 |
-
msgid "The {label} field must contain maximum %d words"
|
3671 |
-
msgstr "Het {label} veld mag maximaal %d woorden bevatten"
|
3672 |
-
|
3673 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:20
|
3674 |
-
msgid "Add a Number field"
|
3675 |
-
msgstr "Voeg een Numeriek veld toe"
|
3676 |
-
|
3677 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:22
|
3678 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:50
|
3679 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:79
|
3680 |
-
msgid "Number"
|
3681 |
-
msgstr "Nummer"
|
3682 |
-
|
3683 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:129
|
3684 |
-
msgid "Set digits or values restrictions of this field"
|
3685 |
-
msgstr "Stel cijfer-of waardebeperkingen in voor dit veld"
|
3686 |
-
|
3687 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:133
|
3688 |
-
msgid "Digits"
|
3689 |
-
msgstr "Cijfers"
|
3690 |
-
|
3691 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:134
|
3692 |
-
msgid "Value"
|
3693 |
-
msgstr "Waarde"
|
3694 |
-
|
3695 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:363
|
3696 |
-
msgid "The {label} field must be a valid number"
|
3697 |
-
msgstr "Het {label} veld moet een geldig getal bevatten"
|
3698 |
-
|
3699 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:373
|
3700 |
-
#, php-format
|
3701 |
-
msgid "The {label} field must have minimum %d digit"
|
3702 |
-
msgstr "het {label} veld moet minstens %d cijfers bevatten"
|
3703 |
-
|
3704 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:378
|
3705 |
-
#, php-format
|
3706 |
-
msgid "The {label} field must have minimum %d digits"
|
3707 |
-
msgstr "Het {label} veld moet minstens %d cijfers bevatten"
|
3708 |
-
|
3709 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:383
|
3710 |
-
#, php-format
|
3711 |
-
msgid "The {label} field must have maximum %d digit"
|
3712 |
-
msgstr "Het {label} veld mag maximaal %d cijfers bevatten"
|
3713 |
-
|
3714 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:388
|
3715 |
-
#, php-format
|
3716 |
-
msgid "The {label} field must have maximum %d digits"
|
3717 |
-
msgstr "Het {label} veld mag maximaal %d cijfers bevatten"
|
3718 |
-
|
3719 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:393
|
3720 |
-
#, php-format
|
3721 |
-
msgid "The {label} field minimum value must be %s"
|
3722 |
-
msgstr "De minimale waarde van het {label} veld moet %s zijn"
|
3723 |
-
|
3724 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:398
|
3725 |
-
#, php-format
|
3726 |
-
msgid "The {label} field maximum value must be %s"
|
3727 |
-
msgstr "De maximale waarde van het {label} veld moet %s zijn"
|
3728 |
-
|
3729 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:18
|
3730 |
-
msgid "Add a Dropdown"
|
3731 |
-
msgstr "Voeg een Dropdown toe"
|
3732 |
-
|
3733 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:22
|
3734 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:49
|
3735 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:79
|
3736 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:164
|
3737 |
-
msgid "Dropdown"
|
3738 |
-
msgstr "Dropdown"
|
3739 |
-
|
3740 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:100
|
3741 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:103
|
3742 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:103
|
3743 |
-
msgid "Choices"
|
3744 |
-
msgstr "Keuzes"
|
3745 |
-
|
3746 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:101
|
3747 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:104
|
3748 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:104
|
3749 |
-
msgid "Add choice"
|
3750 |
-
msgstr "Keuze toevoegen"
|
3751 |
-
|
3752 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:110
|
3753 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:113
|
3754 |
-
msgid "Randomize"
|
3755 |
-
msgstr "Willekeurig maken"
|
3756 |
-
|
3757 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:111
|
3758 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:114
|
3759 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:114
|
3760 |
-
msgid "Do you want choices to be displayed in random order?"
|
3761 |
-
msgstr "Wilt u de keuzes in een willekeurige volgorde weergeven?"
|
3762 |
-
|
3763 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:235
|
3764 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:249
|
3765 |
-
msgid "{label}: Submitted data contains not existing choice"
|
3766 |
-
msgstr "{label}: Ingezonden data bevat een niet bestaande keuze"
|
3767 |
-
|
3768 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:38
|
3769 |
-
msgid "Edit Title"
|
3770 |
-
msgstr "Titel Bewerken"
|
3771 |
-
|
3772 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:39
|
3773 |
-
msgid "Edit Subtitle"
|
3774 |
-
msgstr "Ondertitel Bewerken"
|
3775 |
-
|
3776 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:57
|
3777 |
-
msgid "The title will be displayed on contact form header"
|
3778 |
-
msgstr "De titel wordt getoond in de header van het contactformulier"
|
3779 |
-
|
3780 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:62
|
3781 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:7
|
3782 |
-
msgid "Subtitle"
|
3783 |
-
msgstr "Ondertitel"
|
3784 |
-
|
3785 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/form-header-title/class-fw-option-type-form-builder-item-form-header-title.php:63
|
3786 |
-
msgid "The form header subtitle text"
|
3787 |
-
msgstr "De ondertitel tekst voor de formulier header"
|
3788 |
-
|
3789 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:18
|
3790 |
-
msgid "Add a Single Choice field"
|
3791 |
-
msgstr "Voeg een Enkele Keuze veld toe"
|
3792 |
-
|
3793 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:56
|
3794 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:56
|
3795 |
-
msgid "{x} More"
|
3796 |
-
msgstr "{x} Meer"
|
3797 |
-
|
3798 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:113
|
3799 |
-
msgid "Randomize?"
|
3800 |
-
msgstr "Willekeurige volgorde?"
|
3801 |
-
|
3802 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:124
|
3803 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:124
|
3804 |
-
msgid "Field Layout"
|
3805 |
-
msgstr "Veld Layout"
|
3806 |
-
|
3807 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:125
|
3808 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:125
|
3809 |
-
msgid "Select choice display layout"
|
3810 |
-
msgstr "Selecteer keuzeweergave layout"
|
3811 |
-
|
3812 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:127
|
3813 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:127
|
3814 |
-
msgid "One column"
|
3815 |
-
msgstr "Eén kolom"
|
3816 |
-
|
3817 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:128
|
3818 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:128
|
3819 |
-
msgid "Two columns"
|
3820 |
-
msgstr "Twee kolommen"
|
3821 |
-
|
3822 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:129
|
3823 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:129
|
3824 |
-
msgid "Three columns"
|
3825 |
-
msgstr "Drie kolommen"
|
3826 |
-
|
3827 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:130
|
3828 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:130
|
3829 |
-
msgid "Side by side"
|
3830 |
-
msgstr "Naast elkaar"
|
3831 |
-
|
3832 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:18
|
3833 |
-
msgid "Add a Multiple Choices field"
|
3834 |
-
msgstr "Voeg een Meerkeuze veld toe"
|
3835 |
-
|
3836 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:249
|
3837 |
-
msgid "{label}: Submitted data contains not existing choices"
|
3838 |
-
msgstr "{label}: Ingezonden data bevat niet bestaande keuzes"
|
3839 |
-
|
3840 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:18
|
3841 |
-
msgid "Add an Email field"
|
3842 |
-
msgstr "Voeg een E-mail veld toe"
|
3843 |
-
|
3844 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:22
|
3845 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:49
|
3846 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:79
|
3847 |
-
msgid "Email"
|
3848 |
-
msgstr "E-mail"
|
3849 |
-
|
3850 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:215
|
3851 |
-
msgid "The {label} field must contain a valid email"
|
3852 |
-
msgstr "Het {label} veld moet een geldig emailadres bevatten"
|
3853 |
-
|
3854 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:18
|
3855 |
-
msgid "Add a Website field"
|
3856 |
-
msgstr "Voeg een Website veld toe"
|
3857 |
-
|
3858 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:22
|
3859 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:49
|
3860 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:79
|
3861 |
-
msgid "Website"
|
3862 |
-
msgstr "Website"
|
3863 |
-
|
3864 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:222
|
3865 |
-
msgid "The {label} field must be a valid website name"
|
3866 |
-
msgstr "Het {label} veld moet een geldige website bevatten"
|
3867 |
-
|
3868 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:18
|
3869 |
-
msgid "Add a Single Line Text"
|
3870 |
-
msgstr "Voeg een Enkele Tekstregel toe"
|
3871 |
-
|
3872 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:20
|
3873 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:47
|
3874 |
-
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:77
|
3875 |
-
msgid "Single Line Text"
|
3876 |
-
msgstr "Enkele Tekstregel"
|
3877 |
-
|
3878 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:17
|
3879 |
-
msgid "Text for Homepage"
|
3880 |
-
msgstr "Tekst voor Homepagina"
|
3881 |
-
|
3882 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:18
|
3883 |
-
msgid "The homepage anchor will have this text"
|
3884 |
-
msgstr "De homepagina anker zal deze tekst hebben"
|
3885 |
-
|
3886 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:23
|
3887 |
-
msgid "Text for Blog Page"
|
3888 |
-
msgstr "Tekst voor Blog Pagina"
|
3889 |
-
|
3890 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:24
|
3891 |
-
msgid ""
|
3892 |
-
"The blog page anchor will have this text. In case homepage will be set as "
|
3893 |
-
"blog page, will be taken the homepage text"
|
3894 |
-
msgstr "De blog pagina anker zal deze tekst hebben. Ingeval de homepagina als blog pagina ingesteld wordt zal de homepagina tekst genomen worden."
|
3895 |
-
|
3896 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:29
|
3897 |
-
msgid "Text for 404 Page"
|
3898 |
-
msgstr "Tekst voor 404 Pagina"
|
3899 |
-
|
3900 |
-
#: ../framework/extensions/breadcrumbs/settings-options.php:30
|
3901 |
-
msgid "The 404 anchor will have this text"
|
3902 |
-
msgstr "De 404 anker zal deze tekst hebben"
|
3903 |
-
|
3904 |
-
#: ../framework/extensions/breadcrumbs/manifest.php:7
|
3905 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:108
|
3906 |
-
msgid "Breadcrumbs"
|
3907 |
-
msgstr "Navigatiepad"
|
3908 |
-
|
3909 |
-
#: ../framework/extensions/breadcrumbs/manifest.php:9
|
3910 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:109
|
3911 |
-
msgid ""
|
3912 |
-
"Creates a simplified navigation menu for the pages that can be placed "
|
3913 |
-
"anywhere in the theme. This will make navigating the website much easier."
|
3914 |
-
msgstr "Creëert een vereenvoudigd navigatiemenu voor de pagina's die willekeurig in het thema geplaatst kunnen worden. Dit maakt het navigeren door de website veel gemakkelijker."
|
3915 |
-
|
3916 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:11
|
3917 |
-
msgid "404 Not found"
|
3918 |
-
msgstr "404 Niet Gevonden"
|
3919 |
-
|
3920 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:124
|
3921 |
-
msgid "Searching for:"
|
3922 |
-
msgstr "Zoekend naar:"
|
3923 |
-
|
3924 |
-
#: ../framework/extensions/breadcrumbs/includes/class-breadcrumbs-builder.php:248
|
3925 |
-
#: ../framework/includes/option-types/multi-select/class-fw-option-type-multi-select.php:472
|
3926 |
-
msgid "No title"
|
3927 |
-
msgstr "Geen titel"
|
3928 |
-
|
3929 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:89
|
3930 |
-
msgid "Create a event item"
|
3931 |
-
msgstr "Maak evenement item aan"
|
3932 |
-
|
3933 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:186
|
3934 |
-
msgid "Date"
|
3935 |
-
msgstr "Datum"
|
3936 |
-
|
3937 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:204
|
3938 |
-
msgid "Event Options"
|
3939 |
-
msgstr "Evenement Opties"
|
3940 |
-
|
3941 |
-
#: ../framework/extensions/events/class-fw-extension-events.php:310
|
3942 |
-
msgid "Multi Interval Event"
|
3943 |
-
msgstr "Multi Interval Evenement"
|
3944 |
-
|
3945 |
-
#: ../framework/extensions/events/manifest.php:8
|
3946 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:181
|
3947 |
-
msgid ""
|
3948 |
-
"This extension adds a fully fledged Events module to your theme. It comes "
|
3949 |
-
"with built in pages that contain a calendar where events can be added."
|
3950 |
-
msgstr "Deze uitbreiding voegt een volledig uitgeruste Evenementen module toe aan je thema. Het komt met ingebouwde pagina's die een kalender bevatten, waaraan evenementen kunnen worden toegevoegd."
|
3951 |
-
|
3952 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:81
|
3953 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:189
|
3954 |
-
msgid "Event Categories"
|
3955 |
-
msgstr "Evenement Categorieën"
|
3956 |
-
|
3957 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:82
|
3958 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:190
|
3959 |
-
msgid "Select an event category"
|
3960 |
-
msgstr "Selecteer een evenement categorie"
|
3961 |
-
|
3962 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:84
|
3963 |
-
#: ../framework/extensions/events/extensions/events-tags/class-fw-extension-events-tags.php:192
|
3964 |
-
msgid "All Events"
|
3965 |
-
msgstr "Alle Evenementen"
|
3966 |
-
|
3967 |
-
#: ../framework/extensions/events/extensions/events-tags/manifest.php:7
|
3968 |
-
msgid "Event-search-tags"
|
3969 |
-
msgstr "Evenement-zoek-tags"
|
3970 |
-
|
3971 |
-
#: ../framework/extensions/events/extensions/events-tags/manifest.php:8
|
3972 |
-
msgid "Connect extension event with shortcodes map & calendar"
|
3973 |
-
msgstr "Verbind evenementen uitbreiding met kaart & kalender shortcodes"
|
3974 |
-
|
3975 |
-
#: ../framework/extensions/events/views/content.php:16
|
3976 |
-
msgid "Google Calendar"
|
3977 |
-
msgstr "Google Kalender"
|
3978 |
-
|
3979 |
-
#: ../framework/extensions/events/views/content.php:17
|
3980 |
-
msgid "Ical Export"
|
3981 |
-
msgstr "lcal Export"
|
3982 |
-
|
3983 |
-
#: ../framework/extensions/events/views/content.php:20
|
3984 |
-
msgid "Start"
|
3985 |
-
msgstr "Start"
|
3986 |
-
|
3987 |
-
#: ../framework/extensions/events/views/content.php:21
|
3988 |
-
msgid "End"
|
3989 |
-
msgstr "Eind"
|
3990 |
-
|
3991 |
-
#: ../framework/extensions/events/views/content.php:25
|
3992 |
-
msgid "Speakers"
|
3993 |
-
msgstr "Sprekers"
|
3994 |
-
|
3995 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:37
|
3996 |
-
msgid "Event Location"
|
3997 |
-
msgstr "Evenement Locatie"
|
3998 |
-
|
3999 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:39
|
4000 |
-
msgid "Where does the event take place?"
|
4001 |
-
msgstr "Waar heeft het evenement plaats?"
|
4002 |
-
|
4003 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:43
|
4004 |
-
msgid "All Day Event?"
|
4005 |
-
msgstr "Volledige Dag Evenement?"
|
4006 |
-
|
4007 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:44
|
4008 |
-
msgid "Is your event an all day event?"
|
4009 |
-
msgstr "Is je evenement een volledige dag evenement?"
|
4010 |
-
|
4011 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:67
|
4012 |
-
msgid "Start & End of Event"
|
4013 |
-
msgstr "Start é Einde van het evenement"
|
4014 |
-
|
4015 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:68
|
4016 |
-
msgid "Set start and end events datetime"
|
4017 |
-
msgstr "Type start en eind datum é tijd van het evenement"
|
4018 |
-
|
4019 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:97
|
4020 |
-
msgid "Associated User"
|
4021 |
-
msgstr "Geassocieerde Gebruiker"
|
4022 |
-
|
4023 |
-
#: ../framework/extensions/events/includes/option-types/event/class-fw-option-type-event.php:99
|
4024 |
-
msgid "Link this event to a specific user"
|
4025 |
-
msgstr "Verbind dit evenement met een specifieke gebruiker"
|
4026 |
-
|
4027 |
-
#: ../framework/extensions/sidebars/manifest.php:7
|
4028 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:132
|
4029 |
-
msgid "Sidebars"
|
4030 |
-
msgstr "Zijbalken"
|
4031 |
-
|
4032 |
-
#: ../framework/extensions/sidebars/manifest.php:9
|
4033 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:133
|
4034 |
-
msgid ""
|
4035 |
-
"Brings a new layer of customization freedom to your website by letting you "
|
4036 |
-
"add more than one sidebar to a page, or different sidebars on different "
|
4037 |
-
"pages."
|
4038 |
-
msgstr "Het brengt een nieuwe dimensie van vrijheid om je website aan te passen door het mogelijk te maken om meerdere zijkolommen toe te voegen aan een pagina, of verschillende zijkolommen op verschillende pagina's toe te voegen. "
|
4039 |
-
|
4040 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:131
|
4041 |
-
msgid "No matches found"
|
4042 |
-
msgstr "Geen overeenkomsten gevonden"
|
4043 |
-
|
4044 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:139
|
4045 |
-
msgid "Do you realy want to change without saving?"
|
4046 |
-
msgstr "Wilt u dit echt veranderen zonder op te slaan?"
|
4047 |
-
|
4048 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:141
|
4049 |
-
msgid "Missing ID. Check that you provided all mandatory data."
|
4050 |
-
msgstr "Geen identiteit bekend. Controleer dat u alle verplichte data heeft versterkt. "
|
4051 |
-
|
4052 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:142
|
4053 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:27
|
4054 |
-
msgid "Created"
|
4055 |
-
msgstr "Gecreëerd"
|
4056 |
-
|
4057 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:143
|
4058 |
-
msgid "(For Grouped Pages)"
|
4059 |
-
msgstr "(Voor gegroepeerde pagina's)"
|
4060 |
-
|
4061 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:144
|
4062 |
-
msgid "(For Specific Pages)"
|
4063 |
-
msgstr "(Voor specifieke pagina's)"
|
4064 |
-
|
4065 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:145
|
4066 |
-
msgid "No sidebar name specified"
|
4067 |
-
msgstr "Geen zijbalk naam ingevoerd"
|
4068 |
-
|
4069 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:146
|
4070 |
-
msgid "Sidebar Name"
|
4071 |
-
msgstr "Naam zijbalk"
|
4072 |
-
|
4073 |
-
#: ../framework/extensions/sidebars/class-fw-extension-sidebars.php:147
|
4074 |
-
msgid "New Sidebar"
|
4075 |
-
msgstr "Nieuwe zijbalk"
|
4076 |
-
|
4077 |
-
#: ../framework/extensions/sidebars/views/frontend-no-widgets.php:5
|
4078 |
-
msgid "Widgets Page"
|
4079 |
-
msgstr "Widgets pagina"
|
4080 |
-
|
4081 |
-
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:5
|
4082 |
-
msgid "For specific"
|
4083 |
-
msgstr "Voor specifieke"
|
4084 |
-
|
4085 |
-
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:23
|
4086 |
-
msgid "Type to search ..."
|
4087 |
-
msgstr "Type om te zoeken ..."
|
4088 |
-
|
4089 |
-
#: ../framework/extensions/sidebars/views/backend-tab-specific.php:30
|
4090 |
-
msgid "Search for a specific page you want to set a sidebar for"
|
4091 |
-
msgstr "Zoek voor een specifieke pagina waar u een zijbalk wilt instellen"
|
4092 |
-
|
4093 |
-
#: ../framework/extensions/sidebars/views/backend-tab-grouped.php:6
|
4094 |
-
msgid "For group"
|
4095 |
-
msgstr "Voor gegroepeerde"
|
4096 |
-
|
4097 |
-
#: ../framework/extensions/sidebars/views/backend-tab-grouped.php:25
|
4098 |
-
msgid "Select group of pages you want to set a sidebar for."
|
4099 |
-
msgstr "Selecteer de groep pagina's waar je een zijbalk voor wilt instellen"
|
4100 |
-
|
4101 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:18
|
4102 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:60
|
4103 |
-
msgid "Choose the position for your sidebar(s)"
|
4104 |
-
msgstr "Kies de positie voor de zijbalk(en)"
|
4105 |
-
|
4106 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-insert.php:43
|
4107 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:40
|
4108 |
-
msgid "Add Sidebar"
|
4109 |
-
msgstr "Voeg zijbalk toe"
|
4110 |
-
|
4111 |
-
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:4
|
4112 |
-
msgid "Sidebars for"
|
4113 |
-
msgstr "Zijbalken voor"
|
4114 |
-
|
4115 |
-
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4116 |
-
msgid "For Specific Page"
|
4117 |
-
msgstr "Voor specifieke pagina"
|
4118 |
-
|
4119 |
-
#: ../framework/extensions/sidebars/views/backend-tab-created-sidebars.php:16
|
4120 |
-
msgid "For Grouped Page"
|
4121 |
-
msgstr "Voor gegroepeerde pagina"
|
4122 |
-
|
4123 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:11
|
4124 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:15
|
4125 |
-
msgid "Manage Sidebars"
|
4126 |
-
msgstr "Beheer zijbalken"
|
4127 |
-
|
4128 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:18
|
4129 |
-
msgid ""
|
4130 |
-
"Use this section to create and/or set different sidebar(s) for different "
|
4131 |
-
"page(s)"
|
4132 |
-
msgstr "Gebruik deze sectie om verschillende zijbalk(en) te creëeren of/en instellen voor verschillende pagina('s). "
|
4133 |
-
|
4134 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:24
|
4135 |
-
msgid "For Grouped Pages"
|
4136 |
-
msgstr "Voor gegroepeerde pagina's"
|
4137 |
-
|
4138 |
-
#: ../framework/extensions/sidebars/views/backend-main-view.php:25
|
4139 |
-
msgid "For Specific Pages"
|
4140 |
-
msgstr "Voor specifieke pagina's"
|
4141 |
-
|
4142 |
-
#: ../framework/extensions/sidebars/views/backend-sidebars-positions-mode-replace.php:32
|
4143 |
-
#: ../framework/extensions/sidebars/includes/option-type/sidebar-picker/view.php:121
|
4144 |
-
msgid "Select sidebar you wish to replace."
|
4145 |
-
msgstr "Selecteer de zijbalk die je wenst te vervangen. "
|
4146 |
-
|
4147 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:241
|
4148 |
-
msgid "No sidebar name specified."
|
4149 |
-
msgstr "Geen naam van de zijbalk gespecificeerd. "
|
4150 |
-
|
4151 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:270
|
4152 |
-
msgid "Dynamic sidebar doesn't exixt"
|
4153 |
-
msgstr "Dynamische zijbalk bestaat niet"
|
4154 |
-
|
4155 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:277
|
4156 |
-
msgid ""
|
4157 |
-
"The placeholder can't be deleted because it is used in one of sidebars "
|
4158 |
-
"below."
|
4159 |
-
msgstr "De plaatshouder kan niet worden verwijderd omdat het in een van de zijbalken hieronder is gebruikt"
|
4160 |
-
|
4161 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:280
|
4162 |
-
msgid ""
|
4163 |
-
"Please replace it first so that you will not have visual gaps in your "
|
4164 |
-
"layout."
|
4165 |
-
msgstr "Vervang het alstublieft als eerste, zodat u geen visuele gaten heeft in uw lay-out."
|
4166 |
-
|
4167 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:293
|
4168 |
-
msgid "Successfully removed"
|
4169 |
-
msgstr "Succesvol verwijderd"
|
4170 |
-
|
4171 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:543
|
4172 |
-
msgid "Default for all pages"
|
4173 |
-
msgstr "Standaard voor alle pagina's"
|
4174 |
-
|
4175 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:613
|
4176 |
-
msgid " (no title)"
|
4177 |
-
msgstr "(geen titel)"
|
4178 |
-
|
4179 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:780
|
4180 |
-
msgid "Error: Type or sub_type error"
|
4181 |
-
msgstr "Error: Type of sub_type error"
|
4182 |
-
|
4183 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:838
|
4184 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:869
|
4185 |
-
msgid "Error: Sidebars not set"
|
4186 |
-
msgstr "Error: zijbalken niet ingesteld"
|
4187 |
-
|
4188 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-backend.php:865
|
4189 |
-
msgid "Error: Position doesn't exists. Please check config file."
|
4190 |
-
msgstr "Error: positie bestaat niet. Controleer alstublieft config bestand."
|
4191 |
-
|
4192 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:55
|
4193 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:253
|
4194 |
-
msgid "Page"
|
4195 |
-
msgstr "Pagina"
|
4196 |
-
|
4197 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:56
|
4198 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:153
|
4199 |
-
msgid "Pages"
|
4200 |
-
msgstr "Pagina's"
|
4201 |
-
|
4202 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:61
|
4203 |
-
msgid "Portfolio Project"
|
4204 |
-
msgstr "Portfolio Project"
|
4205 |
-
|
4206 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:62
|
4207 |
-
msgid "Portfolio Projects"
|
4208 |
-
msgstr "Portfolio Projecten"
|
4209 |
-
|
4210 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:73
|
4211 |
-
msgid "Blog Category"
|
4212 |
-
msgstr "Blog categorie"
|
4213 |
-
|
4214 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:79
|
4215 |
-
msgid "Portfolio Category"
|
4216 |
-
msgstr "Portfolio categorie"
|
4217 |
-
|
4218 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:85
|
4219 |
-
msgid "Home Page"
|
4220 |
-
msgstr "Homepage"
|
4221 |
-
|
4222 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:90
|
4223 |
-
msgid "Search Page"
|
4224 |
-
msgstr "Zoek pagina"
|
4225 |
-
|
4226 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:95
|
4227 |
-
msgid "404 Page"
|
4228 |
-
msgstr "404 Pagina"
|
4229 |
-
|
4230 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:100
|
4231 |
-
msgid "Author Page"
|
4232 |
-
msgstr "Auteur pagina"
|
4233 |
-
|
4234 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:105
|
4235 |
-
msgid "Archive Page"
|
4236 |
-
msgstr "Archief pagina"
|
4237 |
-
|
4238 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:149
|
4239 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:308
|
4240 |
-
msgid "All Pages"
|
4241 |
-
msgstr "Alle pagina's"
|
4242 |
-
|
4243 |
-
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:184
|
4244 |
-
msgid "Others"
|
4245 |
-
msgstr "Anderen"
|
4246 |
-
|
4247 |
-
#: ../framework/extensions/megamenu/manifest.php:7
|
4248 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:64
|
4249 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:60
|
4250 |
-
msgid "Mega Menu"
|
4251 |
-
msgstr "Mega Menu"
|
4252 |
-
|
4253 |
-
#: ../framework/extensions/megamenu/manifest.php:8
|
4254 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:61
|
4255 |
-
msgid ""
|
4256 |
-
"The Mega Menu extension adds a user-friendly drop down menu that will let "
|
4257 |
-
"you easily create highly customized menu configurations."
|
4258 |
-
msgstr "De Mega Menu uitbreiding voegt een gebruiksvriendelijk drop down menu toe, die het mogelijk maakt om gemakkelijk een hoog gepersonaliseerd menu te configureren."
|
4259 |
-
|
4260 |
-
#: ../framework/extensions/megamenu/class-fw-extension-megamenu.php:58
|
4261 |
-
msgid "Select Icon"
|
4262 |
-
msgstr "Selecteer icoon"
|
4263 |
-
|
4264 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:44
|
4265 |
-
#, php-format
|
4266 |
-
msgid "%s (Invalid)"
|
4267 |
-
msgstr "%s (Ongeldig)"
|
4268 |
-
|
4269 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:48
|
4270 |
-
#, php-format
|
4271 |
-
msgid "%s (Pending)"
|
4272 |
-
msgstr "%s (Afwachtend)"
|
4273 |
-
|
4274 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:61
|
4275 |
-
msgid "sub item"
|
4276 |
-
msgstr "Subonderdeel"
|
4277 |
-
|
4278 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:97
|
4279 |
-
msgid "Edit Menu Item"
|
4280 |
-
msgstr "Bewerk menu onderdeel"
|
4281 |
-
|
4282 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:108
|
4283 |
-
msgid "URL"
|
4284 |
-
msgstr "URL"
|
4285 |
-
|
4286 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:117
|
4287 |
-
msgid "Navigation Label"
|
4288 |
-
msgstr "Navigatie label"
|
4289 |
-
|
4290 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:125
|
4291 |
-
msgid "Title Attribute"
|
4292 |
-
msgstr "Titel attribuut"
|
4293 |
-
|
4294 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:134
|
4295 |
-
msgid "Open link in a new window/tab"
|
4296 |
-
msgstr "Open de link in een nieuw venster/tabblad"
|
4297 |
-
|
4298 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:141
|
4299 |
-
msgid "CSS Classes (optional)"
|
4300 |
-
msgstr "CSS Klassen (optioneel)"
|
4301 |
-
|
4302 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:149
|
4303 |
-
msgid "Link Relationship (XFN)"
|
4304 |
-
msgstr "Link Relatie (XFN)"
|
4305 |
-
|
4306 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:157
|
4307 |
-
msgid "Mega Menu Column Title"
|
4308 |
-
msgstr "Mega Menu Kolom Titel"
|
4309 |
-
|
4310 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:158
|
4311 |
-
msgid "Item Title"
|
4312 |
-
msgstr "Titel van onderdeel"
|
4313 |
-
|
4314 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:166
|
4315 |
-
msgid "Hide"
|
4316 |
-
msgstr "Verbergen"
|
4317 |
-
|
4318 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:172
|
4319 |
-
msgid "This column should start a new row"
|
4320 |
-
msgstr "Deze kolom zal een nieuwe rij starten"
|
4321 |
-
|
4322 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:178
|
4323 |
-
msgid "Description (HTML)"
|
4324 |
-
msgstr "Omschrijving (HTML)"
|
4325 |
-
|
4326 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:181
|
4327 |
-
msgid ""
|
4328 |
-
"The description will be displayed in the menu if the current theme supports "
|
4329 |
-
"it."
|
4330 |
-
msgstr "De beschrijving zal zichtbaar zijn in het menu indien het huidige thema het ondersteunt. "
|
4331 |
-
|
4332 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:190
|
4333 |
-
msgid "Add Icon"
|
4334 |
-
msgstr "Voeg icoon toe"
|
4335 |
-
|
4336 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:191
|
4337 |
-
msgid "Edit Icon"
|
4338 |
-
msgstr "Bewerk icoon"
|
4339 |
-
|
4340 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:205
|
4341 |
-
msgid "Use as Mega Menu"
|
4342 |
-
msgstr "Gebruik als Mega Menu"
|
4343 |
-
|
4344 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:211
|
4345 |
-
msgid "Move"
|
4346 |
-
msgstr "Verplaats"
|
4347 |
-
|
4348 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:212
|
4349 |
-
msgid "Up one"
|
4350 |
-
msgstr "Eén omhoog"
|
4351 |
-
|
4352 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:213
|
4353 |
-
msgid "Down one"
|
4354 |
-
msgstr "Eén omlaag"
|
4355 |
-
|
4356 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:216
|
4357 |
-
msgid "To the top"
|
4358 |
-
msgstr "Naar het hoogste punt omhoog"
|
4359 |
-
|
4360 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:225
|
4361 |
-
#, php-format
|
4362 |
-
msgid "Original: %s"
|
4363 |
-
msgstr "Origineel: %s"
|
4364 |
-
|
4365 |
-
#: ../framework/extensions/megamenu/includes/class-fw-ext-mega-menu-admin-walker.php:239
|
4366 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:60
|
4367 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2282
|
4368 |
-
msgid "Cancel"
|
4369 |
-
msgstr "Annuleer"
|
4370 |
-
|
4371 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:299
|
4372 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:366
|
4373 |
-
msgid "File not specified"
|
4374 |
-
msgstr "Bestand niet gespecificeerd"
|
4375 |
-
|
4376 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:399
|
4377 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:400
|
4378 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:156
|
4379 |
-
msgid "Backup"
|
4380 |
-
msgstr "Reservekopie"
|
4381 |
-
|
4382 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:554
|
4383 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:568
|
4384 |
-
msgid "Access Denied"
|
4385 |
-
msgstr "Toegang geblokkeerd"
|
4386 |
-
|
4387 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:561
|
4388 |
-
msgid "Archive not found"
|
4389 |
-
msgstr "Archief niet gevonden"
|
4390 |
-
|
4391 |
-
#: ../framework/extensions/backups/class-fw-extension-backups.php:575
|
4392 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:202
|
4393 |
-
msgid "Failed to open file"
|
4394 |
-
msgstr "Bestand openen mislukt"
|
4395 |
-
|
4396 |
-
#: ../framework/extensions/backups/helpers.php:37
|
4397 |
-
msgid "Invalid JSON response"
|
4398 |
-
msgstr "Ongeldige JSON reactie"
|
4399 |
-
|
4400 |
-
#: ../framework/extensions/backups/helpers.php:44
|
4401 |
-
msgid ""
|
4402 |
-
"HTTP Loopback Connections are not enabled on this server. If you need to "
|
4403 |
-
"contact your web host, tell them that when PHP tries to connect back to the "
|
4404 |
-
"site at the URL `{url}` and it gets the error `{error}`. There may be a "
|
4405 |
-
"problem with the server configuration (eg local DNS problems, mod_security, "
|
4406 |
-
"etc) preventing connections from working properly."
|
4407 |
-
msgstr "HTTP Loopback Connections zijn niet ingeschakeld op deze server. Als je contact moet opnemen met je webhost, geef dan aan dat wanneer PHP probeert terug te verbinden met de website via de URL `{url}`, de foutmelding `{error}` ontstaat. Er kan een probleem zijn met de serverconfiguratie (bijv. lokale DNS problemen, mod_security, etc) die beperkt dat verbindingen goed functioneren. "
|
4408 |
-
|
4409 |
-
#: ../framework/extensions/backups/helpers.php:123
|
4410 |
-
#: ../framework/extensions/backups/helpers.php:145
|
4411 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:363
|
4412 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:431
|
4413 |
-
#, php-format
|
4414 |
-
msgid "Failed to create dir: %s"
|
4415 |
-
msgstr "%s map aanmaken mislukt"
|
4416 |
-
|
4417 |
-
#: ../framework/extensions/backups/helpers.php:152
|
4418 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:137
|
4419 |
-
#, php-format
|
4420 |
-
msgid "Failed to copy: %s"
|
4421 |
-
msgstr "%s kopiëren mislukt"
|
4422 |
-
|
4423 |
-
#: ../framework/extensions/backups/manifest.php:7
|
4424 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:168
|
4425 |
-
msgid "Backup & Demo Content"
|
4426 |
-
msgstr "Backup & Demo Content"
|
4427 |
-
|
4428 |
-
#: ../framework/extensions/backups/manifest.php:9
|
4429 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:169
|
4430 |
-
msgid ""
|
4431 |
-
"This extension lets you create an automated backup schedule, import demo "
|
4432 |
-
"content or even create a demo content archive for migration purposes."
|
4433 |
-
msgstr "Deze uitbreiding maakt het mogelijk om automatisch backup schema's aan te maken, demo content te importeren en een demo content archief aan te maken voor migratie doeleinden."
|
4434 |
-
|
4435 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:97
|
4436 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:98
|
4437 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:385
|
4438 |
-
msgid "Demo Content Install"
|
4439 |
-
msgstr "Demo Content Installatie"
|
4440 |
-
|
4441 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:282
|
4442 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:329
|
4443 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:362
|
4444 |
-
msgid "Forbidden"
|
4445 |
-
msgstr "Niet Toegestaan"
|
4446 |
-
|
4447 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:342
|
4448 |
-
msgid "Invalid demo"
|
4449 |
-
msgstr "Ongeldige demo"
|
4450 |
-
|
4451 |
-
#: ../framework/extensions/backups/extensions/backups-demo/class-fw-extension-backups-demo.php:349
|
4452 |
-
msgid "A content install is currently running"
|
4453 |
-
msgstr "Er is een content installatie bezig"
|
4454 |
-
|
4455 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:28
|
4456 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:39
|
4457 |
-
#: ../framework/extensions/backups/views/page.php:17
|
4458 |
-
#: ../framework/extensions/backups/views/page.php:28
|
4459 |
-
msgid "Important"
|
4460 |
-
msgstr "belangrijk"
|
4461 |
-
|
4462 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:30
|
4463 |
-
#: ../framework/extensions/backups/views/page.php:19
|
4464 |
-
#, php-format
|
4465 |
-
msgid "You need to activate %s."
|
4466 |
-
msgstr "Je moet %s activeren."
|
4467 |
-
|
4468 |
-
#: ../framework/extensions/backups/extensions/backups-demo/views/page.php:31
|
4469 |
-
#: ../framework/extensions/backups/views/page.php:20
|
4470 |
-
msgid "zip extension"
|
4471 |
-
msgstr "zip extensie"
|
4472 |
-
|
4473 |
-
#: ../framework/extensions/backups/views/page.php:70
|
4474 |
-
msgid "Archives"
|
4475 |
-
msgstr "Archieven"
|
4476 |
-
|
4477 |
-
#: ../framework/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4478 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:76
|
4479 |
-
msgid "Full Backup"
|
4480 |
-
msgstr "Volledige Backup"
|
4481 |
-
|
4482 |
-
#: ../framework/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:69
|
4483 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:85
|
4484 |
-
msgid "Content Backup"
|
4485 |
-
msgstr "Content Backup"
|
4486 |
-
|
4487 |
-
#: ../framework/extensions/backups/includes/list-table/class--fw-ext-backups-list-table.php:88
|
4488 |
-
msgid ""
|
4489 |
-
"Warning! \n"
|
4490 |
-
"You are about to delete a backup, it will be lost forever. \n"
|
4491 |
-
"Are you sure?"
|
4492 |
-
msgstr "Waarschuwing! \nJe staat op het punt een backup te verwijderen. Deze actie is definitief. \nWeet je het zeker?"
|
4493 |
-
|
4494 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:16
|
4495 |
-
msgid "Interval"
|
4496 |
-
msgstr "Interval"
|
4497 |
-
|
4498 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:20
|
4499 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:180
|
4500 |
-
msgid "Disabled"
|
4501 |
-
msgstr "Disabel"
|
4502 |
-
|
4503 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:25
|
4504 |
-
msgid "Select how often do you want to backup your website."
|
4505 |
-
msgstr "Selecteer hoe dikwijls je je website wil backuppen."
|
4506 |
-
|
4507 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:32
|
4508 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:45
|
4509 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:58
|
4510 |
-
msgid "Age Limit"
|
4511 |
-
msgstr "Ouderdomslimiet"
|
4512 |
-
|
4513 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:33
|
4514 |
-
msgid "Age limit of backups in months"
|
4515 |
-
msgstr "Ouderdomslimiet van backups in maanden"
|
4516 |
-
|
4517 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:46
|
4518 |
-
msgid "Age limit of backups in weeks"
|
4519 |
-
msgstr "Ouderdomslimiet van backups in weken"
|
4520 |
-
|
4521 |
-
#: ../framework/extensions/backups/includes/module/schedule/settings-options.php:59
|
4522 |
-
msgid "Age limit of backups in days"
|
4523 |
-
msgstr "Ouderdomslimiet van backups in dagen"
|
4524 |
-
|
4525 |
-
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:186
|
4526 |
-
msgid "Backup Schedule"
|
4527 |
-
msgstr "Reservekopie schema"
|
4528 |
-
|
4529 |
-
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:288
|
4530 |
-
msgid "Once Weekly"
|
4531 |
-
msgstr "Eén keer per week"
|
4532 |
-
|
4533 |
-
#: ../framework/extensions/backups/includes/module/schedule/class--fw-ext-backups-module-schedule.php:292
|
4534 |
-
msgid "Once a month"
|
4535 |
-
msgstr "Eén keer per maand"
|
4536 |
-
|
4537 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:139
|
4538 |
-
msgid "undefined"
|
4539 |
-
msgstr "niet gedefinieerd"
|
4540 |
-
|
4541 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:279
|
4542 |
-
msgid "Task type not registered"
|
4543 |
-
msgstr "Taak type niet geregistreerd"
|
4544 |
-
|
4545 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:286
|
4546 |
-
msgid "Execution stopped (next step did not started)"
|
4547 |
-
msgstr "Uitvoering gestopt (volgende stap is niet gestart)"
|
4548 |
-
|
4549 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:306
|
4550 |
-
msgid "Timed out"
|
4551 |
-
msgstr "Timed out"
|
4552 |
-
|
4553 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:366
|
4554 |
-
msgid "Invalid execution end time"
|
4555 |
-
msgstr "Ongeldige uitvoeringseinddtijd"
|
4556 |
-
|
4557 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:537
|
4558 |
-
msgid "Invalid execution result"
|
4559 |
-
msgstr "Ongeldig uitvoeringsresultaat"
|
4560 |
-
|
4561 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:639
|
4562 |
-
msgid "Invalid token"
|
4563 |
-
msgstr "Ongeldige token"
|
4564 |
-
|
4565 |
-
#: ../framework/extensions/backups/includes/module/tasks/class--fw-ext-backups-module-tasks.php:658
|
4566 |
-
msgid "Invalid tasks hash"
|
4567 |
-
msgstr "Ongeldige taak hash"
|
4568 |
-
|
4569 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-restore.php:9
|
4570 |
-
msgid "Image Sizes Restore"
|
4571 |
-
msgstr "Afbeeldingsdimensies Herstellen"
|
4572 |
-
|
4573 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:12
|
4574 |
-
msgid "Archive Unzip"
|
4575 |
-
msgstr "Archief Uitpakken"
|
4576 |
-
|
4577 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:39
|
4578 |
-
msgid "Zip file not specified"
|
4579 |
-
msgstr "Zip bestand niet gespecificeerd"
|
4580 |
-
|
4581 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:47
|
4582 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:50
|
4583 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:49
|
4584 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:114
|
4585 |
-
msgid "Destination dir not specified"
|
4586 |
-
msgstr "Bestemmingsmap niet gespecificeerd"
|
4587 |
-
|
4588 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:56
|
4589 |
-
msgid "Destination dir is not empty"
|
4590 |
-
msgstr "Bestemmingsmap is niet leeg"
|
4591 |
-
|
4592 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:63
|
4593 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:59
|
4594 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:50
|
4595 |
-
msgid "Zip extension missing"
|
4596 |
-
msgstr "Zip extensie niet aanwezig"
|
4597 |
-
|
4598 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-unzip.php:71
|
4599 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:70
|
4600 |
-
#, php-format
|
4601 |
-
msgid "Cannot open zip (Error code: %s)"
|
4602 |
-
msgstr "Kan zip niet openen (Foutmelding: %s)"
|
4603 |
-
|
4604 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:38
|
4605 |
-
msgid "Database export"
|
4606 |
-
msgstr "Database export"
|
4607 |
-
|
4608 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:71
|
4609 |
-
msgid "Database table disappeared"
|
4610 |
-
msgstr "Database tabel verdwenen"
|
4611 |
-
|
4612 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:91
|
4613 |
-
msgid "Cannot create file"
|
4614 |
-
msgstr "Kan bestand niet aanmaken"
|
4615 |
-
|
4616 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:97
|
4617 |
-
msgid "Cannot reopen file"
|
4618 |
-
msgstr "Kan bestand niet heropenen"
|
4619 |
-
|
4620 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:141
|
4621 |
-
msgid "Cannot export CREATE TABLE sql"
|
4622 |
-
msgstr "Kan CREATE TABLE sql niet exporteren"
|
4623 |
-
|
4624 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:211
|
4625 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-export.php:267
|
4626 |
-
msgid "Cannot get next database table"
|
4627 |
-
msgstr "Kan volgende database tabel niet bereiken"
|
4628 |
-
|
4629 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:9
|
4630 |
-
msgid "Files Restore"
|
4631 |
-
msgstr "Bestandsherstel"
|
4632 |
-
|
4633 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:32
|
4634 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:41
|
4635 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:45
|
4636 |
-
msgid "Source dir not specified"
|
4637 |
-
msgstr "Bronmap niet gespecificeerd"
|
4638 |
-
|
4639 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:39
|
4640 |
-
msgid "Invalid source dir"
|
4641 |
-
msgstr "Ongeldige bronmap"
|
4642 |
-
|
4643 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:46
|
4644 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:25
|
4645 |
-
msgid "Source dirs not specified"
|
4646 |
-
msgstr "Bronmappen niet gespecificeerd"
|
4647 |
-
|
4648 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:116
|
4649 |
-
msgid "No filesystem access, credentials required"
|
4650 |
-
msgstr "Geen toegang tot het bestandssysteem; logingegevens vereist"
|
4651 |
-
|
4652 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:120
|
4653 |
-
msgid "No filesystem access, invalid credentials"
|
4654 |
-
msgstr "Geen toegang tot het bestandssysteem; ongeldige logingegevens"
|
4655 |
-
|
4656 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:126
|
4657 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:135
|
4658 |
-
msgid "Filesystem init failed"
|
4659 |
-
msgstr "Bestandssyteem initialisatie mislukt"
|
4660 |
-
|
4661 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:192
|
4662 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:317
|
4663 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:341
|
4664 |
-
#, php-format
|
4665 |
-
msgid "Cannot convert Filesystem path: %s"
|
4666 |
-
msgstr "Kan bestandssysteem pad niet converteren: %s"
|
4667 |
-
|
4668 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:197
|
4669 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:322
|
4670 |
-
#, php-format
|
4671 |
-
msgid "Failed to list dir: %s"
|
4672 |
-
msgstr "Map weergeven mislukt: %s"
|
4673 |
-
|
4674 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:227
|
4675 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:281
|
4676 |
-
#, php-format
|
4677 |
-
msgid "Failed to remove dir: %s"
|
4678 |
-
msgstr "Map verwijderen mislukt: %s"
|
4679 |
-
|
4680 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:234
|
4681 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:288
|
4682 |
-
#, php-format
|
4683 |
-
msgid "Failed to remove file: %s"
|
4684 |
-
msgstr "Bestand verwijderen mislukt: %s"
|
4685 |
-
|
4686 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:376
|
4687 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-restore.php:444
|
4688 |
-
#, php-format
|
4689 |
-
msgid "Failed to copy file: %s"
|
4690 |
-
msgstr "Bestand kopiëren mislukt: %s"
|
4691 |
-
|
4692 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:12
|
4693 |
-
msgid "Archive Zip"
|
4694 |
-
msgstr "Archief Zip"
|
4695 |
-
|
4696 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:97
|
4697 |
-
msgid "Cannot close the zip file"
|
4698 |
-
msgstr "Kan het zip-bestand niet afsluiten"
|
4699 |
-
|
4700 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-zip.php:103
|
4701 |
-
msgid "Cannot move zip in destination dir"
|
4702 |
-
msgstr "Kan het zip-bestand niet naar bestemmingsdirectorie verplaatsen"
|
4703 |
-
|
4704 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:9
|
4705 |
-
msgid "Files Export"
|
4706 |
-
msgstr "Bestandsexport"
|
4707 |
-
|
4708 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:33
|
4709 |
-
msgid "Destination not specified"
|
4710 |
-
msgstr "Bestemming niet gespecificeerd"
|
4711 |
-
|
4712 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:74
|
4713 |
-
#, php-format
|
4714 |
-
msgid "Source dir %s is empty"
|
4715 |
-
msgstr "Bronmap %s is niet leeg"
|
4716 |
-
|
4717 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:116
|
4718 |
-
msgid "Failed to get dir chmod"
|
4719 |
-
msgstr "Map chmod verkrijgen mislukt"
|
4720 |
-
|
4721 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:123
|
4722 |
-
msgid "Failed to create destination dir"
|
4723 |
-
msgstr "Doelmap aanmaken mislukt"
|
4724 |
-
|
4725 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-files-export.php:214
|
4726 |
-
#, php-format
|
4727 |
-
msgid "Failed to restore dir listing from: %s"
|
4728 |
-
msgstr "Mapweergave herstellen mislukt: %s"
|
4729 |
-
|
4730 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:12
|
4731 |
-
msgid "Database restore"
|
4732 |
-
msgstr "Database herstel"
|
4733 |
-
|
4734 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:63
|
4735 |
-
msgid "Database file not found"
|
4736 |
-
msgstr "Database bestand niet gevonden"
|
4737 |
-
|
4738 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:111
|
4739 |
-
#, php-format
|
4740 |
-
msgid "Cannot drop temporary table: %s"
|
4741 |
-
msgstr "Kan tijdelijke tabel niet verwijderen: %s"
|
4742 |
-
|
4743 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:129
|
4744 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:285
|
4745 |
-
msgid "Cannot open db file"
|
4746 |
-
msgstr "Kan databasebestand niet openen"
|
4747 |
-
|
4748 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:138
|
4749 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:294
|
4750 |
-
msgid "Cannot move cursor in db file"
|
4751 |
-
msgstr "Kan cursor niet verplaatsen in databasebestand"
|
4752 |
-
|
4753 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:154
|
4754 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:377
|
4755 |
-
#, php-format
|
4756 |
-
msgid "Failed to decode line %d from db file."
|
4757 |
-
msgstr "Regel %d decoderen uit databasebestand mislukt."
|
4758 |
-
|
4759 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:186
|
4760 |
-
#, php-format
|
4761 |
-
msgid "Cannot read line %d from db file"
|
4762 |
-
msgstr "Kan regel %d uit databasebestand niet lezen"
|
4763 |
-
|
4764 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:195
|
4765 |
-
msgid "Required params not found"
|
4766 |
-
msgstr "Vereiste parameters niet gevonden"
|
4767 |
-
|
4768 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:232
|
4769 |
-
msgid "Cannot do full db restore because backup is missing some tables"
|
4770 |
-
msgstr "Kan geen volledig databaseherstel uitvoeren, omdat de backup enkele tabellen mist"
|
4771 |
-
|
4772 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:396
|
4773 |
-
#, php-format
|
4774 |
-
msgid "Failed to drop tmp table %s"
|
4775 |
-
msgstr "Tijdelijke tabel %s laten vervallen mislukt"
|
4776 |
-
|
4777 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:435
|
4778 |
-
#, php-format
|
4779 |
-
msgid "Failed to create tmp table %s"
|
4780 |
-
msgstr "Tijdelijke tabel %s aanmaken mislukt"
|
4781 |
-
|
4782 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:447
|
4783 |
-
#, php-format
|
4784 |
-
msgid "Tried to insert data in table that was not imported %s"
|
4785 |
-
msgstr "Poging om data in tabel in te voegen welke niet is geïmporteerd %s"
|
4786 |
-
|
4787 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:606
|
4788 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:628
|
4789 |
-
#, php-format
|
4790 |
-
msgid "Failed insert row from line %d"
|
4791 |
-
msgstr "Rij invoegen bij regel %d mislukt"
|
4792 |
-
|
4793 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:642
|
4794 |
-
#, php-format
|
4795 |
-
msgid "Invalid json type %s in db file"
|
4796 |
-
msgstr "Ongeldig JSON type %s in databasebestand"
|
4797 |
-
|
4798 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:649
|
4799 |
-
msgid "Cannot read line from db file"
|
4800 |
-
msgstr "Kan regel uit databasebestand niet lezen"
|
4801 |
-
|
4802 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:688
|
4803 |
-
msgid "Failed to restore options keeping step"
|
4804 |
-
msgstr "Herstellen van opties stap behouden mislukt"
|
4805 |
-
|
4806 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:723
|
4807 |
-
#, php-format
|
4808 |
-
msgid "Failed to keep option: %s"
|
4809 |
-
msgstr "Optie behouden mislukt: %s"
|
4810 |
-
|
4811 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:774
|
4812 |
-
msgid "Tables drop failed"
|
4813 |
-
msgstr "Tabellen laten vervallen mislukt"
|
4814 |
-
|
4815 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:787
|
4816 |
-
msgid "Tables rename failed."
|
4817 |
-
msgstr "Tabellen hernoemen mislukt."
|
4818 |
-
|
4819 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-db-restore.php:799
|
4820 |
-
#, php-format
|
4821 |
-
msgid "Invalid sub task %s"
|
4822 |
-
msgstr "Ongeldige subtaak %s"
|
4823 |
-
|
4824 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:12
|
4825 |
-
msgid "Directory Cleanup"
|
4826 |
-
msgstr "Map Opruiming"
|
4827 |
-
|
4828 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:21
|
4829 |
-
msgid "Dir not specified"
|
4830 |
-
msgstr "Map niet gespecificeerd"
|
4831 |
-
|
4832 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:30
|
4833 |
-
msgid "Cannot remove directory"
|
4834 |
-
msgstr "Kan map niet verwijderen"
|
4835 |
-
|
4836 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:37
|
4837 |
-
msgid "Cannot create directory"
|
4838 |
-
msgstr "Kan map niet aanmaken"
|
4839 |
-
|
4840 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:55
|
4841 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-dir-clean.php:70
|
4842 |
-
#, php-format
|
4843 |
-
msgid "Cannot create file: %s"
|
4844 |
-
msgstr "Kan bestand niet aanmaken: %s"
|
4845 |
-
|
4846 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:9
|
4847 |
-
msgid "Image Sizes Remove"
|
4848 |
-
msgstr "Afbeeldingsdimensies Verwijderen"
|
4849 |
-
|
4850 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/class-fw-ext-backups-task-type-image-sizes-remove.php:23
|
4851 |
-
msgid "Uploads dir not specified"
|
4852 |
-
msgstr "Uploadmap niet gespecificeerd"
|
4853 |
-
|
4854 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:18
|
4855 |
-
msgid "Download"
|
4856 |
-
msgstr "Download"
|
4857 |
-
|
4858 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:119
|
4859 |
-
msgid "Invalid destination dir"
|
4860 |
-
msgstr "Ongeldige bestemmingsmap"
|
4861 |
-
|
4862 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:132
|
4863 |
-
#, php-format
|
4864 |
-
msgid "Invalid type: %s"
|
4865 |
-
msgstr "Ongeldig type: %s"
|
4866 |
-
|
4867 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/class-fw-ext-backups-task-type-download.php:141
|
4868 |
-
#, php-format
|
4869 |
-
msgid "Args not specified for type: %s"
|
4870 |
-
msgstr "Argumenten niet gespecificeerd voor type: %s"
|
4871 |
-
|
4872 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:9
|
4873 |
-
msgid "Local Download"
|
4874 |
-
msgstr "Lokale Download"
|
4875 |
-
|
4876 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:24
|
4877 |
-
msgid "Source not specified"
|
4878 |
-
msgstr "Bron niet gespecificeerd"
|
4879 |
-
|
4880 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:29
|
4881 |
-
msgid "Invalid source"
|
4882 |
-
msgstr "Ongeldige bron"
|
4883 |
-
|
4884 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:38
|
4885 |
-
msgid "Invalid source type"
|
4886 |
-
msgstr "Ongeldig brontype"
|
4887 |
-
|
4888 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:59
|
4889 |
-
#, php-format
|
4890 |
-
msgid "Cannot open zip: %s"
|
4891 |
-
msgstr "Kan zip niet openen: %s"
|
4892 |
-
|
4893 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/class-fw-ext-backups-task-type-download-local.php:70
|
4894 |
-
msgid "Unhandled type"
|
4895 |
-
msgstr "Onverwerkt type"
|
4896 |
-
|
4897 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:13
|
4898 |
-
msgid "Downloading..."
|
4899 |
-
msgstr "Downloading..."
|
4900 |
-
|
4901 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:16
|
4902 |
-
msgid "Download finished. Doing unzip..."
|
4903 |
-
msgstr "Download gereed. Uitpakken..."
|
4904 |
-
|
4905 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:19
|
4906 |
-
#, php-format
|
4907 |
-
msgid "Downloading... %s of %s"
|
4908 |
-
msgstr "Downloading... %s van %s"
|
4909 |
-
|
4910 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:24
|
4911 |
-
#, php-format
|
4912 |
-
msgid "Downloading... %s"
|
4913 |
-
msgstr "Downloading... %s"
|
4914 |
-
|
4915 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:67
|
4916 |
-
msgid "Url not specified"
|
4917 |
-
msgstr "Url niet gespecificeerd"
|
4918 |
-
|
4919 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:72
|
4920 |
-
msgid "Invalid url"
|
4921 |
-
msgstr "Ongeldige url"
|
4922 |
-
|
4923 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:79
|
4924 |
-
msgid "File id not specified"
|
4925 |
-
msgstr "Bestands-id niet gespecificeerd"
|
4926 |
-
|
4927 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:84
|
4928 |
-
msgid "Invalid file id"
|
4929 |
-
msgstr "Ongeldige bestands-id"
|
4930 |
-
|
4931 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:105
|
4932 |
-
#, php-format
|
4933 |
-
msgid "Zip open failed (code %d). Please try again"
|
4934 |
-
msgstr "Zip openen mislukt (code %d). Probeer het opnieuw"
|
4935 |
-
|
4936 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:112
|
4937 |
-
msgid "Zip extract failed"
|
4938 |
-
msgstr "Zip uitpakken mislukt"
|
4939 |
-
|
4940 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:119
|
4941 |
-
msgid "Failed to close the zip after extract"
|
4942 |
-
msgstr "Afsluiten van de zip na het uitpakken mislukt"
|
4943 |
-
|
4944 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:152
|
4945 |
-
#, php-format
|
4946 |
-
msgid "Request failed. Error code: %d"
|
4947 |
-
msgstr "Verzoek mislukt. Foutmelding: %d"
|
4948 |
-
|
4949 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:163
|
4950 |
-
msgid "Invalid byte position"
|
4951 |
-
msgstr "Ongeldige byte positie"
|
4952 |
-
|
4953 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:168
|
4954 |
-
msgid "Empty response body"
|
4955 |
-
msgstr "Lege response body"
|
4956 |
-
|
4957 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:188
|
4958 |
-
msgid "File ended without content"
|
4959 |
-
msgstr "Bestand beëindigd zonder inhoud"
|
4960 |
-
|
4961 |
-
#: ../framework/extensions/backups/includes/module/tasks/type/download/type/piecemeal/class-fw-ext-backups-task-type-download-piecemeal.php:213
|
4962 |
-
msgid "Failed to write data to file"
|
4963 |
-
msgstr "Data naar bestand schrijven mislukt"
|
4964 |
-
|
4965 |
-
#: ../framework/extensions/translation/settings-options.php:11
|
4966 |
-
msgid "Default Language"
|
4967 |
-
msgstr "Standaard Taal"
|
4968 |
-
|
4969 |
-
#: ../framework/extensions/translation/settings-options.php:12
|
4970 |
-
msgid "This is the default language of your website."
|
4971 |
-
msgstr "Dit is de standaard taal voor je website."
|
4972 |
-
|
4973 |
-
#: ../framework/extensions/translation/settings-options.php:19
|
4974 |
-
msgid "Translate to"
|
4975 |
-
msgstr "Vertaal naar"
|
4976 |
-
|
4977 |
-
#: ../framework/extensions/translation/settings-options.php:20
|
4978 |
-
msgid "Choose the languages you want your website translated to."
|
4979 |
-
msgstr "Kies de taal waar je de website naar wilt vertalen."
|
4980 |
-
|
4981 |
-
#: ../framework/extensions/translation/settings-options.php:27
|
4982 |
-
msgid "Convert data"
|
4983 |
-
msgstr "Data converteren"
|
4984 |
-
|
4985 |
-
#: ../framework/extensions/translation/settings-options.php:28
|
4986 |
-
msgid ""
|
4987 |
-
"Set to default language the posts, pages categories or tags that don't have "
|
4988 |
-
"a language set ?"
|
4989 |
-
msgstr "De berichten, pagina's, categorieën of tags die geen taal hebben ingesteld, instellen op de standaard taal?"
|
4990 |
-
|
4991 |
-
#: ../framework/extensions/translation/manifest.php:7
|
4992 |
-
#: ../framework/extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:336
|
4993 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:264
|
4994 |
-
msgid "Translations"
|
4995 |
-
msgstr "Vertalingen"
|
4996 |
-
|
4997 |
-
#: ../framework/extensions/translation/manifest.php:8
|
4998 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:265
|
4999 |
-
msgid ""
|
5000 |
-
"This extension lets you translate your website in any language or even add "
|
5001 |
-
"multiple languages for your users to change at their will from the front-"
|
5002 |
-
"end."
|
5003 |
-
msgstr "Deze uitbreiding maakt het mogelijk de website te vertalen in iedere taal en kan zelfs meerdere talen aan bezoekers ter beschikking stellen in de front-end van de website."
|
5004 |
-
|
5005 |
-
#: ../framework/extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:114
|
5006 |
-
msgid "All Languages"
|
5007 |
-
msgstr "Alle Talen"
|
5008 |
-
|
5009 |
-
#: ../framework/extensions/translation/extensions/translate-terms/class-fw-extension-translate-terms.php:332
|
5010 |
-
msgid "The term translation does already exists.ACTION +++ "
|
5011 |
-
msgstr "Vertaling van de term bestaat al.ACTION +++ "
|
5012 |
-
|
5013 |
-
#: ../framework/extensions/translation/extensions/translate-terms/manifest.php:7
|
5014 |
-
msgid "Translate Terms"
|
5015 |
-
msgstr "Termen Vertalen"
|
5016 |
-
|
5017 |
-
#: ../framework/extensions/translation/extensions/translate-terms/manifest.php:8
|
5018 |
-
msgid "This extension translate terms"
|
5019 |
-
msgstr "Deze uitbreiding vertaalt termen"
|
5020 |
-
|
5021 |
-
#: ../framework/extensions/translation/extensions/translate-posts/class-fw-extension-translate-posts.php:341
|
5022 |
-
msgid "Language of this post"
|
5023 |
-
msgstr "Taal van dit bericht"
|
5024 |
-
|
5025 |
-
#: ../framework/extensions/translation/extensions/translate-posts/manifest.php:7
|
5026 |
-
msgid "Translate Posts"
|
5027 |
-
msgstr "Berichten Vertalen"
|
5028 |
-
|
5029 |
-
#: ../framework/extensions/translation/extensions/translate-posts/manifest.php:8
|
5030 |
-
msgid "This extension translate posts"
|
5031 |
-
msgstr "Deze uitbereiding vertaalt berichten"
|
5032 |
-
|
5033 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/manifest.php:7
|
5034 |
-
msgid "Translate Widgets"
|
5035 |
-
msgstr "Widgets Vertalen"
|
5036 |
-
|
5037 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/manifest.php:8
|
5038 |
-
msgid "This extension translate Widgets"
|
5039 |
-
msgstr "Deze uitbreiding vertaalt Widgets"
|
5040 |
-
|
5041 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:10
|
5042 |
-
msgid "Language Switcher"
|
5043 |
-
msgstr "Taalwisselaar"
|
5044 |
-
|
5045 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:11
|
5046 |
-
msgid "A Language Switcher Widget"
|
5047 |
-
msgstr "Een Taalwisselaar Widget"
|
5048 |
-
|
5049 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:42
|
5050 |
-
msgid "New title"
|
5051 |
-
msgstr "Nieuwe titel"
|
5052 |
-
|
5053 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-language-switcher.php:45
|
5054 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:49
|
5055 |
-
msgid "Title:"
|
5056 |
-
msgstr "Titel:"
|
5057 |
-
|
5058 |
-
#: ../framework/extensions/translation/extensions/translate-widgets/includes/class-fw-widget-calendar.php:14
|
5059 |
-
msgid "A calendar of your site’s Posts."
|
5060 |
-
msgstr "Een kalender van je website’s berichten"
|
5061 |
-
|
5062 |
-
#: ../framework/extensions/translation/extensions/translate-menus/manifest.php:7
|
5063 |
-
msgid "Translate Menus"
|
5064 |
-
msgstr "Menu's Vertalen"
|
5065 |
-
|
5066 |
-
#: ../framework/extensions/translation/extensions/translate-menus/manifest.php:8
|
5067 |
-
msgid "This extension translate menus"
|
5068 |
-
msgstr "Deze uitbreiding vertaalt menu's"
|
5069 |
-
|
5070 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:211
|
5071 |
-
msgid "Slider Design"
|
5072 |
-
msgstr "Slider ontwerp"
|
5073 |
-
|
5074 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:213
|
5075 |
-
msgid "Number of Images"
|
5076 |
-
msgstr "Hoeveelheid beelden"
|
5077 |
-
|
5078 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:231
|
5079 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:234
|
5080 |
-
#, php-format
|
5081 |
-
msgid "%s updated."
|
5082 |
-
msgstr "%s bijgewerkt."
|
5083 |
-
|
5084 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:232
|
5085 |
-
msgid "Custom field updated."
|
5086 |
-
msgstr "Aangepast veld bijgewerkt."
|
5087 |
-
|
5088 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:233
|
5089 |
-
msgid "Custom field deleted."
|
5090 |
-
msgstr "Aangepastveld verwijderd."
|
5091 |
-
|
5092 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:235
|
5093 |
-
#, php-format
|
5094 |
-
msgid "%s restored to revision from %s"
|
5095 |
-
msgstr "%s hersteld van revisie van %s"
|
5096 |
-
|
5097 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:237
|
5098 |
-
#, php-format
|
5099 |
-
msgid "%s published."
|
5100 |
-
msgstr "%s gepubliceerd."
|
5101 |
-
|
5102 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:238
|
5103 |
-
msgid "Page saved."
|
5104 |
-
msgstr "Pagina opgeslagen."
|
5105 |
-
|
5106 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:239
|
5107 |
-
#, php-format
|
5108 |
-
msgid "%s submitted."
|
5109 |
-
msgstr "%s ingestuurd."
|
5110 |
-
|
5111 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:240
|
5112 |
-
#, php-format
|
5113 |
-
msgid "%s scheduled for: %s."
|
5114 |
-
msgstr "%s gepland voor %s."
|
5115 |
-
|
5116 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:242
|
5117 |
-
#, php-format
|
5118 |
-
msgid "%s draft updated."
|
5119 |
-
msgstr "%s schets bijgewerkt."
|
5120 |
-
|
5121 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:272
|
5122 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:52
|
5123 |
-
msgid "Publish"
|
5124 |
-
msgstr "Publiceren"
|
5125 |
-
|
5126 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:342
|
5127 |
-
msgid ""
|
5128 |
-
"This slider was created correctly, but the code implementation was delete "
|
5129 |
-
"from source code or blocked from filter.Delete this post or recovery slider "
|
5130 |
-
"implementation"
|
5131 |
-
msgstr "Deze slider is goed gecreëerd, maar de code implementatie was verwijderd uit broncode of geblokkeerd door filter. Verwijder deze post of herstel slider implementatie."
|
5132 |
-
|
5133 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:351
|
5134 |
-
msgid ""
|
5135 |
-
"This slider was created correctly, but the multimedia_types from config.php "
|
5136 |
-
"file was deleted, please set multimedia_types for this slider type."
|
5137 |
-
msgstr "Deze slider is goed gecreëerd, maar de multimedia_types van config.php bestand was verwijderd. Stel alstublieft multimedia_types in voor dit slider type. "
|
5138 |
-
|
5139 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:361
|
5140 |
-
msgid "Slider Configuration"
|
5141 |
-
msgstr "Slider configuratie"
|
5142 |
-
|
5143 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:375
|
5144 |
-
msgid "Slider Title"
|
5145 |
-
msgstr "Slider Titel"
|
5146 |
-
|
5147 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:377
|
5148 |
-
msgid "Choose a title for your slider only for internal use: Ex: \"Homepage\"."
|
5149 |
-
msgstr "Kies een titel voor je slider voor alleen intern gebruik: vb. \"Homepage\"."
|
5150 |
-
|
5151 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:433
|
5152 |
-
msgid "Slider Settings"
|
5153 |
-
msgstr "Slider instellingen"
|
5154 |
-
|
5155 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:461
|
5156 |
-
msgid ""
|
5157 |
-
"You don't have slider extensions, please create at least one extension for "
|
5158 |
-
"properly work"
|
5159 |
-
msgstr "Je hebt geen slider modules. Maak ten minste één uitbreiding aan voor passend werk"
|
5160 |
-
|
5161 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:474
|
5162 |
-
msgid "Choose the population method for your slider"
|
5163 |
-
msgstr "Kies de populatie methode voor je slider"
|
5164 |
-
|
5165 |
-
#: ../framework/extensions/media/extensions/slider/class-fw-extension-slider.php:542
|
5166 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:94
|
5167 |
-
msgid "(no title)"
|
5168 |
-
msgstr "(geen titel)"
|
5169 |
-
|
5170 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:6
|
5171 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:12
|
5172 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:18
|
5173 |
-
#: ../framework/extensions/media/extensions/slider/manifest.php:5
|
5174 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:12
|
5175 |
-
msgid "Sliders"
|
5176 |
-
msgstr "Sliders"
|
5177 |
-
|
5178 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:7
|
5179 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:8
|
5180 |
-
msgid "Slider"
|
5181 |
-
msgstr "Slider"
|
5182 |
-
|
5183 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:9
|
5184 |
-
msgid "Add New Slider"
|
5185 |
-
msgstr "Voeg nieuwe slider toe"
|
5186 |
-
|
5187 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:10
|
5188 |
-
msgid "Edit Slider"
|
5189 |
-
msgstr "Bewerk slider"
|
5190 |
-
|
5191 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:11
|
5192 |
-
msgid "New Slider"
|
5193 |
-
msgstr "Nieuwe slider"
|
5194 |
-
|
5195 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:13
|
5196 |
-
msgid "View Slider"
|
5197 |
-
msgstr "Bekijk slider"
|
5198 |
-
|
5199 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:14
|
5200 |
-
msgid "Search Sliders"
|
5201 |
-
msgstr "Zoek sliders"
|
5202 |
-
|
5203 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:15
|
5204 |
-
msgid "No Sliders found"
|
5205 |
-
msgstr "Geen sliders gevonden"
|
5206 |
-
|
5207 |
-
#: ../framework/extensions/media/extensions/slider/posts.php:16
|
5208 |
-
msgid "No Sliders found in Trash"
|
5209 |
-
msgstr "Geen sliders gevonden in de prullenbak"
|
5210 |
-
|
5211 |
-
#: ../framework/extensions/media/extensions/slider/manifest.php:6
|
5212 |
-
msgid ""
|
5213 |
-
"Adds the Sliders extension to your website. You'll be able to create "
|
5214 |
-
"different built in jQuery sliders for your homepage and all the other "
|
5215 |
-
"website pages."
|
5216 |
-
msgstr "Voegt een Slider module toe aan je website van waaruit je verschillende ingebouwde jQuery sliders kunt aanmaken voor de homepagina en de rest van de pagina's."
|
5217 |
-
|
5218 |
-
#: ../framework/extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:5
|
5219 |
-
#: ../framework/extensions/media/extensions/slider/extensions/nivo-slider/manifest.php:6
|
5220 |
-
msgid "Nivo Slider"
|
5221 |
-
msgstr "Nivo Slider"
|
5222 |
-
|
5223 |
-
#: ../framework/extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:5
|
5224 |
-
#: ../framework/extensions/media/extensions/slider/extensions/owl-carousel/manifest.php:6
|
5225 |
-
msgid "Owl Slider"
|
5226 |
-
msgstr "Owl Slider"
|
5227 |
-
|
5228 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/manifest.php:5
|
5229 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/manifest.php:6
|
5230 |
-
msgid "Bx-Slider"
|
5231 |
-
msgstr "Bx-Slider"
|
5232 |
-
|
5233 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:4
|
5234 |
-
msgid "Population Method Categories opt 1"
|
5235 |
-
msgstr "Populatie methode categorieën optie 1"
|
5236 |
-
|
5237 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:5
|
5238 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:11
|
5239 |
-
msgid "Option description"
|
5240 |
-
msgstr "Optie omschrijving"
|
5241 |
-
|
5242 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/categories.php:10
|
5243 |
-
msgid "Population Method Categories opt 2"
|
5244 |
-
msgstr "Populatie methode categorieën optie 2"
|
5245 |
-
|
5246 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:5
|
5247 |
-
msgid "Type of Transition"
|
5248 |
-
msgstr "Type transitie"
|
5249 |
-
|
5250 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:6
|
5251 |
-
msgid "Type of transition between slides"
|
5252 |
-
msgstr "Transitietype tussen slides"
|
5253 |
-
|
5254 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:9
|
5255 |
-
msgid "Horizontal"
|
5256 |
-
msgstr "Horizontaal"
|
5257 |
-
|
5258 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:10
|
5259 |
-
msgid "Vertical"
|
5260 |
-
msgstr "Verticaal"
|
5261 |
-
|
5262 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/options.php:11
|
5263 |
-
msgid "Fade"
|
5264 |
-
msgstr "Vervagen"
|
5265 |
-
|
5266 |
-
#: ../framework/extensions/media/extensions/slider/extensions/bx-slider/options/custom.php:9
|
5267 |
-
msgid "Choose a subtitle for your slide."
|
5268 |
-
msgstr "Kies een ondertiteling voor je slide."
|
5269 |
-
|
5270 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/config.php:9
|
5271 |
-
msgid "Add a Slider"
|
5272 |
-
msgstr "Voeg een slider toe"
|
5273 |
-
|
5274 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:9
|
5275 |
-
msgid "Select Slider"
|
5276 |
-
msgstr "Selecteer slider"
|
5277 |
-
|
5278 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:14
|
5279 |
-
msgid "Set width"
|
5280 |
-
msgstr "Breedte vaststellen"
|
5281 |
-
|
5282 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:19
|
5283 |
-
msgid "Set height"
|
5284 |
-
msgstr "Hoogte vaststellen"
|
5285 |
-
|
5286 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:34
|
5287 |
-
msgid "No Sliders Available"
|
5288 |
-
msgstr "Geen sliders beschikbaar"
|
5289 |
-
|
5290 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:47
|
5291 |
-
msgid "create a new Slider"
|
5292 |
-
msgstr "Maak een nieuwe Slider aan"
|
5293 |
-
|
5294 |
-
#: ../framework/extensions/media/extensions/slider/shortcodes/slider/options.php:49
|
5295 |
-
msgid ""
|
5296 |
-
"No Sliders created yet. Please go to the {br}Sliders page and "
|
5297 |
-
"{add_slider_link}."
|
5298 |
-
msgstr "Er zijn nog geen Sliders aangemaakt. Ga naar de {br}Sliders pagina en {add_slider_link}."
|
5299 |
-
|
5300 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:5
|
5301 |
-
msgid ""
|
5302 |
-
"Note that the type and population can't be changed later. You'll need to "
|
5303 |
-
"create a new slider to have a different slider type or population method."
|
5304 |
-
msgstr "Het is op te merken dat de type en populatie kan later niet worden veranderd. U zult een nieuwe slider moeten creëeren om een ander slider type of populatie methode te krijgen. "
|
5305 |
-
|
5306 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:31
|
5307 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:48
|
5308 |
-
msgid "Schedule"
|
5309 |
-
msgstr "Schema"
|
5310 |
-
|
5311 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-raw.php:40
|
5312 |
-
#: ../framework/extensions/media/extensions/slider/views/backend/submit-box-edit.php:57
|
5313 |
-
msgid "Submit for Review"
|
5314 |
-
msgstr "Stuur in voor een beoordeling"
|
5315 |
-
|
5316 |
-
#: ../framework/extensions/media/extensions/population-method/class-fw-extension-population-method.php:36
|
5317 |
-
#, php-format
|
5318 |
-
msgid "Specified population method does not exists: %s"
|
5319 |
-
msgstr "Specifieke populatie methode bestaat niet: %s"
|
5320 |
-
|
5321 |
-
#: ../framework/extensions/media/extensions/population-method/class-fw-extension-population-method.php:55
|
5322 |
-
#, php-format
|
5323 |
-
msgid "Population method %s does not exist"
|
5324 |
-
msgstr "Populatiemethode %s bestaat niet"
|
5325 |
-
|
5326 |
-
#: ../framework/extensions/media/extensions/population-method/manifest.php:3
|
5327 |
-
msgid "Population Methods"
|
5328 |
-
msgstr "Populatie methodes"
|
5329 |
-
|
5330 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:21
|
5331 |
-
msgid "Automatically, fetch images from categories"
|
5332 |
-
msgstr "Automatisch, verkrijg foto's van categorieën"
|
5333 |
-
|
5334 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:29
|
5335 |
-
#, php-format
|
5336 |
-
msgid "%s extension needs configured categories in post types"
|
5337 |
-
msgstr "%s extensie heeft geconfigureerde categorieën nodig in post types"
|
5338 |
-
|
5339 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:34
|
5340 |
-
msgid "Categories Population Method"
|
5341 |
-
msgstr "Categorieën Populatie Methode"
|
5342 |
-
|
5343 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:44
|
5344 |
-
msgid "Choose Category"
|
5345 |
-
msgstr "Kies een categorie"
|
5346 |
-
|
5347 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:53
|
5348 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:53
|
5349 |
-
msgid "Number of Images in the slider"
|
5350 |
-
msgstr "Hoeveelheid foto's in de slider"
|
5351 |
-
|
5352 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/class-fw-extension-population-method-categories.php:107
|
5353 |
-
msgid "Select Specific Categories"
|
5354 |
-
msgstr "Selecteer specifieke categorieën"
|
5355 |
-
|
5356 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:3
|
5357 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-categories/manifest.php:4
|
5358 |
-
msgid "Population Method - Categories"
|
5359 |
-
msgstr "Populatie Methode - Categorieën"
|
5360 |
-
|
5361 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:21
|
5362 |
-
msgid "Automatically, fetch images from tags"
|
5363 |
-
msgstr "Automatisch, verkrijg foto's afkomstig van tags"
|
5364 |
-
|
5365 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:29
|
5366 |
-
#, php-format
|
5367 |
-
msgid "%s extension needs configured tags in post types"
|
5368 |
-
msgstr "%s extensie heeft geconfigureerde tags nodig in post type's"
|
5369 |
-
|
5370 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:34
|
5371 |
-
msgid "Tags Population Method"
|
5372 |
-
msgstr "Tags Populatie Methode"
|
5373 |
-
|
5374 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:44
|
5375 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:44
|
5376 |
-
msgid "Choose Tag"
|
5377 |
-
msgstr "Kies een tag"
|
5378 |
-
|
5379 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/class-fw-extension-population-method-tags.php:107
|
5380 |
-
msgid "Select Specific tags"
|
5381 |
-
msgstr "Selecteer specifieke tags"
|
5382 |
-
|
5383 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:3
|
5384 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-tags/manifest.php:4
|
5385 |
-
msgid "Population Method - Tags"
|
5386 |
-
msgstr "Populatie methode - Tags"
|
5387 |
-
|
5388 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:21
|
5389 |
-
msgid "Automatically, fetch images from posts"
|
5390 |
-
msgstr "Automatisch, verkrijg foto's afkomstig van posts"
|
5391 |
-
|
5392 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:29
|
5393 |
-
#, php-format
|
5394 |
-
msgid "%s extension needs configured post categories in post types"
|
5395 |
-
msgstr "%s extensie heeft geconfigureerde post categorieën nodig in post type's"
|
5396 |
-
|
5397 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:34
|
5398 |
-
msgid "Posts Population Method"
|
5399 |
-
msgstr "Posts Populatie Methode"
|
5400 |
-
|
5401 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/class-fw-extension-population-method-posts.php:101
|
5402 |
-
msgid "Select Specific posts"
|
5403 |
-
msgstr "Selecteer specifieke posts"
|
5404 |
-
|
5405 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:3
|
5406 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-posts/manifest.php:4
|
5407 |
-
msgid "Population Method - Posts"
|
5408 |
-
msgstr "Populatie Methode - Posts"
|
5409 |
-
|
5410 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:22
|
5411 |
-
msgid "Manually, I'll upload the images myself"
|
5412 |
-
msgstr "Handmatig, ik zal de foto's zelf uploaden"
|
5413 |
-
|
5414 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:33
|
5415 |
-
msgid "Click to edit / Drag to reorder"
|
5416 |
-
msgstr "Click om te bewerken/Sleep om te verstellen"
|
5417 |
-
|
5418 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/class-fw-extension-population-method-custom.php:54
|
5419 |
-
msgid "Choose"
|
5420 |
-
msgstr "Kies"
|
5421 |
-
|
5422 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:3
|
5423 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/manifest.php:4
|
5424 |
-
msgid "Population Method - Custom"
|
5425 |
-
msgstr "Populatie Methode - Aangepast"
|
5426 |
-
|
5427 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:57
|
5428 |
-
msgid "Add Slide"
|
5429 |
-
msgstr "Voeg een slide toe"
|
5430 |
-
|
5431 |
-
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:59
|
5432 |
-
#: ../framework/views/backend-settings-form.php:47
|
5433 |
-
msgid "Save Changes"
|
5434 |
-
msgstr "Wijzigingen Opslaan "
|
5435 |
-
|
5436 |
-
#: ../framework/core/Fw.php:73
|
5437 |
-
msgid "Framework requirements not met:"
|
5438 |
-
msgstr "Framework vereisten niet bereikt:"
|
5439 |
-
|
5440 |
-
#: ../framework/core/class-fw-manifest.php:293
|
5441 |
-
msgid "minimum required version is"
|
5442 |
-
msgstr "minimum vereiste versie is"
|
5443 |
-
|
5444 |
-
#: ../framework/core/class-fw-manifest.php:296
|
5445 |
-
msgid "maximum required version is"
|
5446 |
-
msgstr "maximum vereiste versie is"
|
5447 |
-
|
5448 |
-
#: ../framework/core/class-fw-manifest.php:301
|
5449 |
-
msgid "and"
|
5450 |
-
msgstr "en"
|
5451 |
-
|
5452 |
-
#: ../framework/core/class-fw-manifest.php:308
|
5453 |
-
#, php-format
|
5454 |
-
msgid "Current WordPress version is %s, %s"
|
5455 |
-
msgstr "Huidige Wordpress versie is %s, %s"
|
5456 |
-
|
5457 |
-
#: ../framework/core/class-fw-manifest.php:314
|
5458 |
-
#, php-format
|
5459 |
-
msgid "Current Framework version is %s, %s"
|
5460 |
-
msgstr "Huidige Framework versie is %s, %s"
|
5461 |
-
|
5462 |
-
#: ../framework/core/class-fw-manifest.php:323
|
5463 |
-
#, php-format
|
5464 |
-
msgid "Current version of the %s extension is %s, %s"
|
5465 |
-
msgstr "Huidige versie van de %s extensie is %s, %s"
|
5466 |
-
|
5467 |
-
#: ../framework/core/class-fw-manifest.php:329
|
5468 |
-
#, php-format
|
5469 |
-
msgid "%s extension is required"
|
5470 |
-
msgstr "%s extensie is vereist"
|
5471 |
-
|
5472 |
-
#: ../framework/core/class-fw-manifest.php:334
|
5473 |
-
#, php-format
|
5474 |
-
msgid "%s extension is required (%s)"
|
5475 |
-
msgstr "%s extensie is vereist (%s)"
|
5476 |
-
|
5477 |
-
#: ../framework/core/extends/class-fw-option-type.php:283
|
5478 |
-
#, php-format
|
5479 |
-
msgid "Option type %s has no default value"
|
5480 |
-
msgstr "Optie type %s heeft geen default waarde"
|
5481 |
-
|
5482 |
-
#: ../framework/core/components/backend.php:355
|
5483 |
-
msgid "Done"
|
5484 |
-
msgstr "Gereed"
|
5485 |
-
|
5486 |
-
#: ../framework/core/components/backend.php:356
|
5487 |
-
msgid "Ah, Sorry"
|
5488 |
-
msgstr "Ah, Sorry"
|
5489 |
-
|
5490 |
-
#: ../framework/core/components/backend.php:358
|
5491 |
-
#: ../framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:39
|
5492 |
-
#: ../framework/includes/option-types/color-picker/class-fw-option-type-color-picker.php:40
|
5493 |
-
#: ../framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:41
|
5494 |
-
#: ../framework/includes/option-types/rgba-color-picker/class-fw-option-type-rgba-color-picker.php:42
|
5495 |
-
msgid "Reset"
|
5496 |
-
msgstr "Herstellen"
|
5497 |
-
|
5498 |
-
#: ../framework/core/components/backend.php:541
|
5499 |
-
#: ../framework/core/components/backend.php:542
|
5500 |
-
#: ../framework/core/components/backend.php:650
|
5501 |
-
msgid "Theme Settings"
|
5502 |
-
msgstr "Thema Instellingen"
|
5503 |
-
|
5504 |
-
#: ../framework/core/components/backend.php:577
|
5505 |
-
msgid "leave a review"
|
5506 |
-
msgstr "laat een beoordeling achter"
|
5507 |
-
|
5508 |
-
#: ../framework/core/components/backend.php:588
|
5509 |
-
msgid ""
|
5510 |
-
"Unyson WordPress Framework is the fastest and easiest way to develop a "
|
5511 |
-
"premium theme. I highly recommend it"
|
5512 |
-
msgstr "Unyson WordPress Framework is de snelste and gemakkelijkste manier om een premium thema te ontwikkelen. I beveel het van harte aan"
|
5513 |
-
|
5514 |
-
#: ../framework/core/components/backend.php:594
|
5515 |
-
msgid ""
|
5516 |
-
"If you like Unyson, {wp_review_link}, share on {facebook_share_link} or "
|
5517 |
-
"{twitter_share_link}."
|
5518 |
-
msgstr "Als Unyson je bevalt, {wp_review_link}, deel op {facebook_share_link} of {twitter_share_link}."
|
5519 |
-
|
5520 |
-
#: ../framework/core/components/backend.php:1303
|
5521 |
-
msgid "You have no permissions to change settings options"
|
5522 |
-
msgstr "U hebt geen toelating om instellingen te wijzigen"
|
5523 |
-
|
5524 |
-
#: ../framework/core/components/backend.php:1316
|
5525 |
-
msgid "The options were successfully reset"
|
5526 |
-
msgstr "De instellingen zijn succesvol gereset"
|
5527 |
-
|
5528 |
-
#: ../framework/core/components/backend.php:1327
|
5529 |
-
msgid "The options were successfully saved"
|
5530 |
-
msgstr "De instellingen zijn succesvol opgeslagen"
|
5531 |
-
|
5532 |
-
#: ../framework/core/components/backend.php:1440
|
5533 |
-
msgid "Unknown collected group"
|
5534 |
-
msgstr "Onbekende verzamelde groep"
|
5535 |
-
|
5536 |
-
#: ../framework/core/components/backend.php:1779
|
5537 |
-
#, php-format
|
5538 |
-
msgid "Undefined option type: %s"
|
5539 |
-
msgstr "Niet gedefinieerd optie type: %s"
|
5540 |
-
|
5541 |
-
#: ../framework/core/components/backend.php:1826
|
5542 |
-
#, php-format
|
5543 |
-
msgid "Undefined container type: %s"
|
5544 |
-
msgstr "Niet gedefinieerd container type: %s"
|
5545 |
-
|
5546 |
-
#: ../framework/core/components/extensions.php:447
|
5547 |
-
#: ../framework/core/components/extensions.php:525
|
5548 |
-
#, php-format
|
5549 |
-
msgid "Extension %s is invalid."
|
5550 |
-
msgstr "Uitdrukking %s is ongeldig."
|
5551 |
-
|
5552 |
-
#: ../framework/core/components/theme.php:206
|
5553 |
-
msgid "Theme requirements not met:"
|
5554 |
-
msgstr "Niet bereikte thema vereisten:"
|
5555 |
-
|
5556 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:351
|
5557 |
-
msgid "Cannot remove the old extensions backup dir"
|
5558 |
-
msgstr "Kan de oude extensie backup dir niet verwijderen"
|
5559 |
-
|
5560 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:357
|
5561 |
-
msgid "Cannot create the extensions backup dir"
|
5562 |
-
msgstr "Kan de extensie backup dir niet aanmaken"
|
5563 |
-
|
5564 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:362
|
5565 |
-
msgid "Cannot backup the extensions"
|
5566 |
-
msgstr "Kan de extensies niet backuppen"
|
5567 |
-
|
5568 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:408
|
5569 |
-
msgid "Cannot clear the extensions directory"
|
5570 |
-
msgstr "Kan de extensie directory niet wissen"
|
5571 |
-
|
5572 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:413
|
5573 |
-
msgid "Cannot recreate the extensions directory"
|
5574 |
-
msgstr "Kan de extensie directory niet opnieuw aanmaken"
|
5575 |
-
|
5576 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:419
|
5577 |
-
msgid "Cannot recover the extensions"
|
5578 |
-
msgstr "Kan de extensies niet herstellen"
|
5579 |
-
|
5580 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:645
|
5581 |
-
#, php-format
|
5582 |
-
msgid "Cannot activate hidden standalone extension %s"
|
5583 |
-
msgstr "Kan verborgen zelfstandige uitbreiding %s niet activeren"
|
5584 |
-
|
5585 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:874
|
5586 |
-
msgid "You are not allowed to install extensions."
|
5587 |
-
msgstr "Je hebt hebt geen toestemming om uitbreidingen te installeren."
|
5588 |
-
|
5589 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:891
|
5590 |
-
msgid "All supported extensions are already installed."
|
5591 |
-
msgstr "Alle ondersteunde uitbreidingen zijn al geïnstalleerd."
|
5592 |
-
|
5593 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:967
|
5594 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2384
|
5595 |
-
#, php-format
|
5596 |
-
msgid "Cannot remove temporary directory: %s"
|
5597 |
-
msgstr "Kan de tijdelijke directory: %s niet verwijderen"
|
5598 |
-
|
5599 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1037
|
5600 |
-
msgid "You have no permissions to install extensions"
|
5601 |
-
msgstr "Je hebt onvoldoende rechten om uitbreidingen te installeren."
|
5602 |
-
|
5603 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1044
|
5604 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1517
|
5605 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1901
|
5606 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2116
|
5607 |
-
msgid "No extensions provided"
|
5608 |
-
msgstr "Geen uitbreidingen beschikbaar gesteld"
|
5609 |
-
|
5610 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1053
|
5611 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1527
|
5612 |
-
msgid "WP Filesystem is not initialized"
|
5613 |
-
msgstr "WP Bestandssysteem is nog niet geinitialiseerd"
|
5614 |
-
|
5615 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1079
|
5616 |
-
#, php-format
|
5617 |
-
msgid "Extension \"%s\" is already installed."
|
5618 |
-
msgstr "Extensie \"%s\" is al geïnstalleerd."
|
5619 |
-
|
5620 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1094
|
5621 |
-
#, php-format
|
5622 |
-
msgid "Extension \"%s\" is not available for install."
|
5623 |
-
msgstr "Extensie \"%s\" is niet beschikbaar voor installatie."
|
5624 |
-
|
5625 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1122
|
5626 |
-
#, php-format
|
5627 |
-
msgid "Parent extension \"%s\" not available."
|
5628 |
-
msgstr "Bovenliggende uitbreiding \"%s\" niet beschikbaar."
|
5629 |
-
|
5630 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1156
|
5631 |
-
#, php-format
|
5632 |
-
msgid "Downloading the \"%s\" extension..."
|
5633 |
-
msgstr "Bezig met downloaden van de \"%s\" extensie..."
|
5634 |
-
|
5635 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1200
|
5636 |
-
#, php-format
|
5637 |
-
msgid "Installing the \"%s\" extension..."
|
5638 |
-
msgstr "Bezig met installeren van de \"%s\" extensie..."
|
5639 |
-
|
5640 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1238
|
5641 |
-
#, php-format
|
5642 |
-
msgid "The %s extension has been successfully installed."
|
5643 |
-
msgstr "De %s uitbreiding is succesvol geïnstalleerd."
|
5644 |
-
|
5645 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1399
|
5646 |
-
msgid "You are not allowed to delete extensions."
|
5647 |
-
msgstr "Je hebt hebt geen toestemming om uitbreidingen te verwijderen."
|
5648 |
-
|
5649 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1510
|
5650 |
-
msgid "You have no permissions to uninstall extensions"
|
5651 |
-
msgstr "Je hebt onvoldoende rechten om uitbreidingen te deïnstalleren."
|
5652 |
-
|
5653 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1578
|
5654 |
-
#, php-format
|
5655 |
-
msgid "Deleting the \"%s\" extension..."
|
5656 |
-
msgstr "Verwijderen van de \"%s\" extensie..."
|
5657 |
-
|
5658 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1590
|
5659 |
-
#, php-format
|
5660 |
-
msgid "Cannot delete the \"%s\" extension."
|
5661 |
-
msgstr "Kan de \"%s\" extensie niet verwijderen."
|
5662 |
-
|
5663 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1602
|
5664 |
-
#, php-format
|
5665 |
-
msgid "The %s extension has been successfully deleted."
|
5666 |
-
msgstr "De %s uitbreiding is succesvol verwijderd."
|
5667 |
-
|
5668 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1703
|
5669 |
-
msgid "Extension not specified."
|
5670 |
-
msgstr "Extensie niet gespecificeerd."
|
5671 |
-
|
5672 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1708
|
5673 |
-
#, php-format
|
5674 |
-
msgid "Extension \"%s\" is not installed."
|
5675 |
-
msgstr "Extensie \"%s\" is niet geïnstalleerd."
|
5676 |
-
|
5677 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1776
|
5678 |
-
#, php-format
|
5679 |
-
msgid "Extension \"%s\" does not exist or is not active."
|
5680 |
-
msgstr "Extensie \"%s\" bestaat niet of is niet actief."
|
5681 |
-
|
5682 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1785
|
5683 |
-
#, php-format
|
5684 |
-
msgid "%s extension does not have settings."
|
5685 |
-
msgstr "%s extensie heeft geen instellingen."
|
5686 |
-
|
5687 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1806
|
5688 |
-
msgid "Extension has no Install Instructions"
|
5689 |
-
msgstr "Extensie heeft geen installatie instructies"
|
5690 |
-
|
5691 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1830
|
5692 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2047
|
5693 |
-
msgid "Invalid request method."
|
5694 |
-
msgstr "Ongeldige request methode."
|
5695 |
-
|
5696 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1842
|
5697 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2059
|
5698 |
-
msgid "No extension specified."
|
5699 |
-
msgstr "Geen extensie gespecificeerd."
|
5700 |
-
|
5701 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1894
|
5702 |
-
msgid "You have no permissions to activate extensions"
|
5703 |
-
msgstr "Je hebt onvoldoende rechten om uitbreidingen te activeren."
|
5704 |
-
|
5705 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1914
|
5706 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2132
|
5707 |
-
#, php-format
|
5708 |
-
msgid "Extension \"%s\" does not exist."
|
5709 |
-
msgstr "Extensie \"%s\" bestaat niet."
|
5710 |
-
|
5711 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2109
|
5712 |
-
msgid "You have no permissions to deactivate extensions"
|
5713 |
-
msgstr "Je hebt onvoldoende rechten om uitbreidingen te deactiveren."
|
5714 |
-
|
5715 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2297
|
5716 |
-
msgid "You are not allowed to save extensions settings."
|
5717 |
-
msgstr "Je hebt geen toestemming om uitbreidingsinstellingen op te slaan."
|
5718 |
-
|
5719 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2304
|
5720 |
-
msgid "Invalid extension."
|
5721 |
-
msgstr "Ongeldige extensie."
|
5722 |
-
|
5723 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2309
|
5724 |
-
msgid "Extension does not have settings options."
|
5725 |
-
msgstr "Extensie heeft geen instellingen opties."
|
5726 |
-
|
5727 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2341
|
5728 |
-
msgid "Extensions settings successfully saved."
|
5729 |
-
msgstr "Extensie instellingen met succes opgeslagen."
|
5730 |
-
|
5731 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2368
|
5732 |
-
#, php-format
|
5733 |
-
msgid "Extension \"%s\" has no download sources."
|
5734 |
-
msgstr "Extensie \"%s\" heeft geen download bronnen."
|
5735 |
-
|
5736 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2392
|
5737 |
-
#, php-format
|
5738 |
-
msgid "Cannot create temporary directory: %s"
|
5739 |
-
msgstr "Kan de tijdelijke directory %s niet aanmaken"
|
5740 |
-
|
5741 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2403
|
5742 |
-
#, php-format
|
5743 |
-
msgid "\"%s\" extension github source \"user_repo\" parameter is required"
|
5744 |
-
msgstr "\"%s\" extensie github bron \"user_repo\" parameter is vereist"
|
5745 |
-
|
5746 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2454
|
5747 |
-
#, php-format
|
5748 |
-
msgid "Failed to access Github repository \"%s\" releases. (%s)"
|
5749 |
-
msgstr "Toegang verkrijgen tot releases van Github repository \"%s\" mislukt. (%s)"
|
5750 |
-
|
5751 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2477
|
5752 |
-
#, php-format
|
5753 |
-
msgid "\"%s\" extension github repository \"%s\" has no releases."
|
5754 |
-
msgstr "\"%s\" extensie github repository \"%s\" heeft geen releases."
|
5755 |
-
|
5756 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2510
|
5757 |
-
#, php-format
|
5758 |
-
msgid "Cannot download the \"%s\" extension zip. (Response code: %d)"
|
5759 |
-
msgstr "Kan de \"%s\" extensie zip niet downloaden. (Antwoord code: %d)"
|
5760 |
-
|
5761 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2517
|
5762 |
-
#, php-format
|
5763 |
-
msgid "Cannot download the \"%s\" extension zip. %s"
|
5764 |
-
msgstr "Kan de \"%s\" extensie zip niet downloaden. %s"
|
5765 |
-
|
5766 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2525
|
5767 |
-
#, php-format
|
5768 |
-
msgid "Cannot download the \"%s\" extension zip."
|
5769 |
-
msgstr "Kan de \"%s\" extensie zip niet downloaden."
|
5770 |
-
|
5771 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2538
|
5772 |
-
#, php-format
|
5773 |
-
msgid "Cannot save the \"%s\" extension zip."
|
5774 |
-
msgstr "Kan de \"%s\" extensie zip niet opslaan. "
|
5775 |
-
|
5776 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2557
|
5777 |
-
#, php-format
|
5778 |
-
msgid "Cannot remove the \"%s\" extension downloaded zip."
|
5779 |
-
msgstr "Kan de gedownloade \"%s\" extension zip niet verwijderen."
|
5780 |
-
|
5781 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2582
|
5782 |
-
#, php-format
|
5783 |
-
msgid "The unzipped \"%s\" extension directory not found."
|
5784 |
-
msgstr "De uitgepakte \"%s\" extensie directory niet gevonden."
|
5785 |
-
|
5786 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2589
|
5787 |
-
#, php-format
|
5788 |
-
msgid "Unknown \"%s\" extension download source \"%s\""
|
5789 |
-
msgstr "Onbekende \"%s\" extensie download bron \"%s\""
|
5790 |
-
|
5791 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2615
|
5792 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2634
|
5793 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2697
|
5794 |
-
#, php-format
|
5795 |
-
msgid "Cannot read directory \"%s\"."
|
5796 |
-
msgstr "Kan de directory \"%s\" niet lezen."
|
5797 |
-
|
5798 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2649
|
5799 |
-
#, php-format
|
5800 |
-
msgid "Cannot delete \"%s\"."
|
5801 |
-
msgstr "Kan \"%s\" niet verwijderen."
|
5802 |
-
|
5803 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2660
|
5804 |
-
#, php-format
|
5805 |
-
msgid "Cannot create the \"%s\" directory."
|
5806 |
-
msgstr "Kan de \"%s\" directory niet aanmaken."
|
5807 |
-
|
5808 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2678
|
5809 |
-
#, php-format
|
5810 |
-
msgid "Cannot move \"%s\" to \"%s\"."
|
5811 |
-
msgstr "Kan \"%s\" niet verplaatsen naar \"%s\"."
|
5812 |
-
|
5813 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3103
|
5814 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3150
|
5815 |
-
#, php-format
|
5816 |
-
msgid "Cannot activate the %s extension because it is not installed. %s"
|
5817 |
-
msgstr "Kan de %s extensie niet activeren, omdat deze niet is geïnstalleerd. %s"
|
5818 |
-
|
5819 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3107
|
5820 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3154
|
5821 |
-
msgid "Install"
|
5822 |
-
msgstr "Installeren"
|
5823 |
-
|
5824 |
-
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:3197
|
5825 |
-
msgid "Install theme compatible extensions"
|
5826 |
-
msgstr "Thema compatible extensies installeren"
|
5827 |
-
|
5828 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:13
|
5829 |
-
msgid ""
|
5830 |
-
"Adds a sliders module to your website from where you'll be able to create "
|
5831 |
-
"different built in jQuery sliders for your homepage and rest of the pages."
|
5832 |
-
msgstr "Voegt een slider module toe aan je website van waaruit je verschillende in jQuery ingebouwde sliders kan aanmaken voor je homepagina en de rest van de pagina's."
|
5833 |
-
|
5834 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:24
|
5835 |
-
msgid "Media"
|
5836 |
-
msgstr "Media"
|
5837 |
-
|
5838 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:36
|
5839 |
-
msgid "Population method"
|
5840 |
-
msgstr "Populatie methode"
|
5841 |
-
|
5842 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:85
|
5843 |
-
msgid ""
|
5844 |
-
"Let's you easily build countless pages with the help of the drag and drop "
|
5845 |
-
"visual page builder that comes with a lot of already created shortcodes."
|
5846 |
-
msgstr "Laat je gemakkelijk ontelbare pagina's bouwen met behulp van de drag en drop visuele pagina bouwer die komt met heel wat vooraf aangemaakte shortcodes."
|
5847 |
-
|
5848 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:96
|
5849 |
-
msgid "Shortcodes"
|
5850 |
-
msgstr "Shortcodes"
|
5851 |
-
|
5852 |
-
#: ../framework/core/components/extensions/manager/available-extensions.php:157
|
5853 |
-
msgid ""
|
5854 |
-
"This extension lets you set up daily, weekly or monthly backup schedule. You"
|
5855 |
-
" can choose between a full backup or a data base only backup."
|
5856 |
-
msgstr "Deze uitbreiding biedt de mogelijkheid om een dagelijks, wekelijks of maandelijks backup schema in te stellen. Je kunt daarbij kiezen tussen een volledige backup of alleen een database backup. "
|
5857 |
-
|
5858 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:89
|
5859 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:25
|
5860 |
-
msgid "Install Instructions"
|
5861 |
-
msgstr "Installatie Instructies"
|
5862 |
-
|
5863 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:102
|
5864 |
-
msgid "Compatible"
|
5865 |
-
msgstr "Compatibel"
|
5866 |
-
|
5867 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:102
|
5868 |
-
msgid "with your current theme"
|
5869 |
-
msgstr "met je huidige thema"
|
5870 |
-
|
5871 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:174
|
5872 |
-
#, php-format
|
5873 |
-
msgid "Parent extension \"%s\" is disabled"
|
5874 |
-
msgstr "Parent extensie \"%s\" is uitgeschakeld"
|
5875 |
-
|
5876 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:199
|
5877 |
-
#, php-format
|
5878 |
-
msgid "You need to update WordPress to %s: %s"
|
5879 |
-
msgstr "Je moet WordPress updaten naar %s: %s"
|
5880 |
-
|
5881 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:201
|
5882 |
-
msgid "Update WordPress"
|
5883 |
-
msgstr "WordPress bijwerken"
|
5884 |
-
|
5885 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:205
|
5886 |
-
#, php-format
|
5887 |
-
msgid "WordPress needs to be updated to %s"
|
5888 |
-
msgstr "WordPress moet worden bijgewerkt naar %s"
|
5889 |
-
|
5890 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:215
|
5891 |
-
#, php-format
|
5892 |
-
msgid "Maximum supported WordPress version is %s"
|
5893 |
-
msgstr "Maximum ondersteune WordPress versie is %s"
|
5894 |
-
|
5895 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:230
|
5896 |
-
#, php-format
|
5897 |
-
msgid "You need to update %s to %s: %s"
|
5898 |
-
msgstr "Je moet %s updaten naar %s: %s"
|
5899 |
-
|
5900 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:239
|
5901 |
-
#, php-format
|
5902 |
-
msgid "%s needs to be updated to %s"
|
5903 |
-
msgstr "%s moet worden bijgewerkt naar %s"
|
5904 |
-
|
5905 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:250
|
5906 |
-
#, php-format
|
5907 |
-
msgid "Maximum supported %s version is %s"
|
5908 |
-
msgstr "Maximum ondersteunde %s versie is %s"
|
5909 |
-
|
5910 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:268
|
5911 |
-
#, php-format
|
5912 |
-
msgid "You need to update the %s extension to %s: %s"
|
5913 |
-
msgstr "Je moet de %s extensie updaten naar %s: %s"
|
5914 |
-
|
5915 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:277
|
5916 |
-
#, php-format
|
5917 |
-
msgid "The %s extension needs to be updated to %s"
|
5918 |
-
msgstr "De %s uitbreiding moet worden bijgewerkt naar %s"
|
5919 |
-
|
5920 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:288
|
5921 |
-
#, php-format
|
5922 |
-
msgid "Maximum supported %s extension version is %s"
|
5923 |
-
msgstr "Maximum ondesteunde %s extensie versie is %s"
|
5924 |
-
|
5925 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:303
|
5926 |
-
#, php-format
|
5927 |
-
msgid "The %s extension is disabled"
|
5928 |
-
msgstr "De %s extensie is gedisabled"
|
5929 |
-
|
5930 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:304
|
5931 |
-
#, php-format
|
5932 |
-
msgid "Activate %s"
|
5933 |
-
msgstr "Activeer %s"
|
5934 |
-
|
5935 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:313
|
5936 |
-
#, php-format
|
5937 |
-
msgid "The %s extension is not installed: %s"
|
5938 |
-
msgstr "De %s extensie is niet geïnstalled: %s"
|
5939 |
-
|
5940 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:316
|
5941 |
-
#, php-format
|
5942 |
-
msgid "Install %s"
|
5943 |
-
msgstr "Installeer %s"
|
5944 |
-
|
5945 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:321
|
5946 |
-
#, php-format
|
5947 |
-
msgid "The %s extension is not installed"
|
5948 |
-
msgstr "De %s extensie is niet geïnstalled"
|
5949 |
-
|
5950 |
-
#: ../framework/core/components/extensions/manager/views/extension.php:342
|
5951 |
-
msgid "View Requirements"
|
5952 |
-
msgstr "Bekijk Vereisten"
|
5953 |
-
|
5954 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:40
|
5955 |
-
#, php-format
|
5956 |
-
msgid "%s Settings"
|
5957 |
-
msgstr "%s Instellingen"
|
5958 |
-
|
5959 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:43
|
5960 |
-
#, php-format
|
5961 |
-
msgid "%s Install Instructions"
|
5962 |
-
msgstr "%s Installatie Instructies"
|
5963 |
-
|
5964 |
-
#: ../framework/core/components/extensions/manager/views/extension-page-header.php:46
|
5965 |
-
msgid "Unknown tab:"
|
5966 |
-
msgstr "Onbekende tab:"
|
5967 |
-
|
5968 |
-
#: ../framework/core/components/extensions/manager/views/delete-form.php:42
|
5969 |
-
#: ../framework/core/components/extensions/manager/views/install-form.php:51
|
5970 |
-
msgid "No, Return me to the extension list"
|
5971 |
-
msgstr "Neen, geef me terug de extensielijst"
|
5972 |
-
|
5973 |
-
#: ../framework/core/components/extensions/manager/views/delete-form.php:45
|
5974 |
-
msgid "Click to view entire list of directories which will be deleted"
|
5975 |
-
msgstr "Klik om de volledige lijst van directies die zullen verwijderd worden, te zien"
|
5976 |
-
|
5977 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:17
|
5978 |
-
msgid "Active Extensions"
|
5979 |
-
msgstr "Actieve extensies"
|
5980 |
-
|
5981 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:33
|
5982 |
-
msgid "No extensions activated yet"
|
5983 |
-
msgstr "Nog geen extensies geactiveerd"
|
5984 |
-
|
5985 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:33
|
5986 |
-
msgid "Check the available extensions below"
|
5987 |
-
msgstr "Check de beschikbare extensies hieronder"
|
5988 |
-
|
5989 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:59
|
5990 |
-
msgid "Available Extensions"
|
5991 |
-
msgstr "Beschikbare Extensies"
|
5992 |
-
|
5993 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:184
|
5994 |
-
msgid "Show other extensions"
|
5995 |
-
msgstr "Toon andere extensies"
|
5996 |
-
|
5997 |
-
#: ../framework/core/components/extensions/manager/views/extensions-page.php:185
|
5998 |
-
msgid "Hide other extensions"
|
5999 |
-
msgstr "Verberg andere extensies"
|
6000 |
-
|
6001 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:14
|
6002 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:14
|
6003 |
-
msgid "Go to extensions page"
|
6004 |
-
msgstr "Ga naar de extensie pagina"
|
6005 |
-
|
6006 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-install-upgrader-skin.php:17
|
6007 |
-
#: ../framework/core/components/extensions/manager/includes/class--fw-extensions-delete-upgrader-skin.php:17
|
6008 |
-
msgid "Return to Extensions page"
|
6009 |
-
msgstr "Keer terug naar de extensie pagina"
|
6010 |
-
|
6011 |
-
#: ../framework/views/backend-settings-form.php:48
|
6012 |
-
msgid "Reset Options"
|
6013 |
-
msgstr "Herstel Opties"
|
6014 |
-
|
6015 |
-
#: ../framework/views/backend-settings-form.php:62
|
6016 |
-
msgid "by"
|
6017 |
-
msgstr "door"
|
6018 |
-
|
6019 |
-
#: ../framework/views/backend-settings-form.php:155
|
6020 |
-
msgid ""
|
6021 |
-
"Click OK to reset.\n"
|
6022 |
-
"All settings will be lost and replaced with default settings!"
|
6023 |
-
msgstr "Klik OK om te herstellen.\nAlle instellingen zullen worden verwijderd en vervangen door de standaardinstellingen!"
|
6024 |
-
|
6025 |
-
#: ../framework/views/backend-settings-form.php:202
|
6026 |
-
msgid "Resetting"
|
6027 |
-
msgstr "Bezig met herstellen"
|
6028 |
-
|
6029 |
-
#: ../framework/views/backend-settings-form.php:204
|
6030 |
-
msgid "We are currently resetting your settings."
|
6031 |
-
msgstr "We zijn momenteel je instellingen aan het herstellen."
|
6032 |
-
|
6033 |
-
#: ../framework/views/backend-settings-form.php:206
|
6034 |
-
#: ../framework/views/backend-settings-form.php:212
|
6035 |
-
msgid "This may take a few moments."
|
6036 |
-
msgstr "Dit kan enkele momenten duren."
|
6037 |
-
|
6038 |
-
#: ../framework/views/backend-settings-form.php:208
|
6039 |
-
msgid "Saving"
|
6040 |
-
msgstr "Bezig met opslaan"
|
6041 |
-
|
6042 |
-
#: ../framework/views/backend-settings-form.php:210
|
6043 |
-
msgid "We are currently saving your settings."
|
6044 |
-
msgstr "We zijn momenteel je instellingen aan het opslaan."
|
6045 |
-
|
6046 |
-
#: ../framework/includes/option-types/class-fw-option-type-undefined.php:25
|
6047 |
-
msgid "UNDEFINED OPTION TYPE"
|
6048 |
-
msgstr "NIET GEDEFINIEERD OPTIE TYPE"
|
6049 |
-
|
6050 |
-
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:22
|
6051 |
-
msgid "25%"
|
6052 |
-
msgstr "25%"
|
6053 |
-
|
6054 |
-
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:23
|
6055 |
-
msgid "50%"
|
6056 |
-
msgstr "50%"
|
6057 |
-
|
6058 |
-
#: ../framework/includes/option-types/radio-text/class-fw-option-type-radio-text.php:24
|
6059 |
-
msgid "100%"
|
6060 |
-
msgstr "100%"
|
6061 |
-
|
6062 |
-
#: ../framework/includes/option-types/map/views/view.php:12
|
6063 |
-
msgid "Specify location"
|
6064 |
-
msgstr "Specificeer locatie"
|
6065 |
-
|
6066 |
-
#: ../framework/includes/option-types/map/views/view.php:27
|
6067 |
-
msgid "Location Venue"
|
6068 |
-
msgstr "Locatie ontmoetingsplaats"
|
6069 |
-
|
6070 |
-
#: ../framework/includes/option-types/map/views/view.php:42
|
6071 |
-
msgid "Address"
|
6072 |
-
msgstr "Adres"
|
6073 |
-
|
6074 |
-
#: ../framework/includes/option-types/map/views/view.php:57
|
6075 |
-
msgid "City"
|
6076 |
-
msgstr "Stad"
|
6077 |
-
|
6078 |
-
#: ../framework/includes/option-types/map/views/view.php:72
|
6079 |
-
msgid "Country"
|
6080 |
-
msgstr "Land"
|
6081 |
-
|
6082 |
-
#: ../framework/includes/option-types/map/views/view.php:87
|
6083 |
-
msgid "State"
|
6084 |
-
msgstr "Staat"
|
6085 |
-
|
6086 |
-
#: ../framework/includes/option-types/map/views/view.php:103
|
6087 |
-
msgid "Zip Code"
|
6088 |
-
msgstr "Postcode"
|
6089 |
-
|
6090 |
-
#: ../framework/includes/option-types/map/views/view.php:138
|
6091 |
-
msgid "Cannot find the location?"
|
6092 |
-
msgstr "Kan de locatie niet vinden?"
|
6093 |
-
|
6094 |
-
#: ../framework/includes/option-types/map/views/view.php:150
|
6095 |
-
msgid "Reset location"
|
6096 |
-
msgstr "Resetten van locatie"
|
6097 |
-
|
6098 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:150
|
6099 |
-
msgid "Add Image"
|
6100 |
-
msgstr "Voeg foto toe"
|
6101 |
-
|
6102 |
-
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:176
|
6103 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:186
|
6104 |
-
msgid "Upload"
|
6105 |
-
msgstr "Uploaden"
|
6106 |
-
|
6107 |
-
#: ../framework/includes/option-types/typography-v2/view.php:39
|
6108 |
-
msgid "Font face"
|
6109 |
-
msgstr "Font face"
|
6110 |
-
|
6111 |
-
#: ../framework/includes/option-types/typography-v2/view.php:48
|
6112 |
-
msgid "Normal"
|
6113 |
-
msgstr "Normaal"
|
6114 |
-
|
6115 |
-
#: ../framework/includes/option-types/typography-v2/view.php:49
|
6116 |
-
msgid "Italic"
|
6117 |
-
msgstr "Cursief"
|
6118 |
-
|
6119 |
-
#: ../framework/includes/option-types/typography-v2/view.php:50
|
6120 |
-
msgid "Oblique"
|
6121 |
-
msgstr "Scheef"
|
6122 |
-
|
6123 |
-
#: ../framework/includes/option-types/typography-v2/view.php:59
|
6124 |
-
#: ../framework/includes/option-types/typography-v2/view.php:118
|
6125 |
-
msgid "Style"
|
6126 |
-
msgstr "Stijl"
|
6127 |
-
|
6128 |
-
#: ../framework/includes/option-types/typography-v2/view.php:85
|
6129 |
-
msgid "Weight"
|
6130 |
-
msgstr "Dikte"
|
6131 |
-
|
6132 |
-
#: ../framework/includes/option-types/typography-v2/view.php:101
|
6133 |
-
msgid "Script"
|
6134 |
-
msgstr "Script"
|
6135 |
-
|
6136 |
-
#: ../framework/includes/option-types/typography-v2/view.php:128
|
6137 |
-
msgid "Size"
|
6138 |
-
msgstr "Grootte"
|
6139 |
-
|
6140 |
-
#: ../framework/includes/option-types/typography-v2/view.php:139
|
6141 |
-
msgid "Line height"
|
6142 |
-
msgstr "Lijnhoogte"
|
6143 |
-
|
6144 |
-
#: ../framework/includes/option-types/typography-v2/view.php:150
|
6145 |
-
msgid "Letter spacing"
|
6146 |
-
msgstr "Spatiëring"
|
6147 |
-
|
6148 |
-
#: ../framework/includes/option-types/typography-v2/view.php:173
|
6149 |
-
msgid "Color"
|
6150 |
-
msgstr "Kleur"
|
6151 |
-
|
6152 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:156
|
6153 |
-
msgid "Unknown Set"
|
6154 |
-
msgstr "Onbekende instelling"
|
6155 |
-
|
6156 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:186
|
6157 |
-
msgid "Web Application Icons"
|
6158 |
-
msgstr "Web Applicatie Iconen"
|
6159 |
-
|
6160 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:187
|
6161 |
-
msgid "Hand Icons"
|
6162 |
-
msgstr "Hand Iconen"
|
6163 |
-
|
6164 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:188
|
6165 |
-
msgid "Transportation Icons"
|
6166 |
-
msgstr "Transport Iconen"
|
6167 |
-
|
6168 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:189
|
6169 |
-
msgid "Gender Icons"
|
6170 |
-
msgstr "Gender Iconen"
|
6171 |
-
|
6172 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:190
|
6173 |
-
msgid "File Type Icons"
|
6174 |
-
msgstr "Bestandstype Iconen"
|
6175 |
-
|
6176 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:193
|
6177 |
-
msgid "Payment Icons"
|
6178 |
-
msgstr "Betaling Iconen"
|
6179 |
-
|
6180 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:195
|
6181 |
-
msgid "Currency Icons"
|
6182 |
-
msgstr "Valuta iconen"
|
6183 |
-
|
6184 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:196
|
6185 |
-
msgid "Text Editor Icons"
|
6186 |
-
msgstr "Text bewerker iconen"
|
6187 |
-
|
6188 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:197
|
6189 |
-
msgid "Directional Icons"
|
6190 |
-
msgstr "Directionele iconen"
|
6191 |
-
|
6192 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:198
|
6193 |
-
msgid "Video Player Icons"
|
6194 |
-
msgstr "Video speler iconen"
|
6195 |
-
|
6196 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:199
|
6197 |
-
msgid "Brand Icons"
|
6198 |
-
msgstr "Merk iconen"
|
6199 |
-
|
6200 |
-
#: ../framework/includes/option-types/icon/class-fw-option-type-icon.php:200
|
6201 |
-
msgid "Medical Icons"
|
6202 |
-
msgstr "Medische iconen"
|
6203 |
-
|
6204 |
-
#: ../framework/includes/option-types/icon/view.php:39
|
6205 |
-
msgid "All Categories"
|
6206 |
-
msgstr "Alle categorieën"
|
6207 |
-
|
6208 |
-
#: ../framework/includes/option-types/datetime-range/view.php:41
|
6209 |
-
#: ../framework/includes/option-types/gradient/view.php:46
|
6210 |
-
msgid "to"
|
6211 |
-
msgstr "naar"
|
6212 |
-
|
6213 |
-
#: ../framework/includes/option-types/multi-picker/class-fw-option-type-multi-picker.php:179
|
6214 |
-
#, php-format
|
6215 |
-
msgid "No 'picker' key set for multi-picker option: %s"
|
6216 |
-
msgstr "Geen \"picker\" toets ingesteld voor multi-picker optie: %s"
|
6217 |
-
|
6218 |
-
#: ../framework/includes/option-types/background-image/view.php:37
|
6219 |
-
msgid "Predefined images"
|
6220 |
-
msgstr "Vooraf gedefinieerde foto's"
|
6221 |
-
|
6222 |
-
#: ../framework/includes/option-types/background-image/view.php:38
|
6223 |
-
msgid "Custom image"
|
6224 |
-
msgstr "Aangepaste foto"
|
6225 |
-
|
6226 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:160
|
6227 |
-
msgid "Add Images"
|
6228 |
-
msgstr "Voeg foto's toe"
|
6229 |
-
|
6230 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:188
|
6231 |
-
msgid "1 File"
|
6232 |
-
msgstr "1 bestand"
|
6233 |
-
|
6234 |
-
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:189
|
6235 |
-
#, php-format
|
6236 |
-
msgid "%u Files"
|
6237 |
-
msgstr "%u Bestanden"
|
1 |
+
#
|
2 |
+
# Translators:
|
3 |
+
# Lynn <lynn_girl@live.nl>, 2015
|
4 |
+
# Patrick Catthoor <pcatthoor@gmail.com>, 2015
|
5 |
+
# Ruud Evers <ruud@yakhosting.com>, 2016
|
6 |
+
# Steven Vermeersch, 2016
|
7 |
+
msgid ""
|
8 |
+
msgstr ""
|
9 |
+
"Project-Id-Version: Unyson\n"
|
10 |
+
"POT-Creation-Date: 2016-02-02 15:48+0300\n"
|
11 |
+
"PO-Revision-Date: 2016-04-08 04:43+0000\n"
|
12 |
+
"Last-Translator: Ruud Evers <ruud@yakhosting.com>\n"
|
13 |
+
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/themefuse/unyson/language/nl_NL/)\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Language: nl_NL\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"X-Generator: Poedit 1.5.4\n"
|
20 |
+
"X-Poedit-Basepath: .\n"
|
21 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Poedit-SearchPath-0: ..\n"
|
23 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
+
|
25 |
+
#: ../framework/manifest.php:5
|
26 |
+
msgid "Unyson"
|
27 |
+
msgstr "Unyson"
|
28 |
+
|
29 |
+
#: ../framework/helpers/class-fw-wp-filesystem.php:43
|
30 |
+
msgid "Cannot connect to Filesystem directly"
|
31 |
+
msgstr "Kan geen directe verbinding maken met het bestandssyteem"
|
32 |
+
|
33 |
+
#: ../framework/helpers/class-fw-wp-filesystem.php:271
|
34 |
+
#, php-format
|
35 |
+
msgid "Cannot create directory \"%s\". It must be inside \"%s\""
|
36 |
+
msgstr "Kan de map \"%s\" niet aanmaken. Deze map moet aangemaakt worden in \"%s\""
|
37 |
+
|
38 |
+
#: ../framework/helpers/class-fw-wp-filesystem.php:273
|
39 |
+
msgid "\" or \""
|
40 |
+
msgstr "\" of \""
|
41 |
+
|
42 |
+
#: ../framework/helpers/class-fw-flash-messages.php:95
|
43 |
+
#, php-format
|
44 |
+
msgid "Invalid flash message type: %s"
|
45 |
+
msgstr "Ongeldig flitsbericht type: %s"
|
46 |
+
|
47 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:185
|
48 |
+
msgid "No items found."
|
49 |
+
msgstr "Geen items gevonden"
|
50 |
+
|
51 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:309
|
52 |
+
msgid "Bulk Actions"
|
53 |
+
msgstr "Bulk acties"
|
54 |
+
|
55 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:319
|
56 |
+
msgid "Apply"
|
57 |
+
msgstr "Toepassen"
|
58 |
+
|
59 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:403
|
60 |
+
msgid "All dates"
|
61 |
+
msgstr "Alle datums"
|
62 |
+
|
63 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:416
|
64 |
+
#, php-format
|
65 |
+
msgid "%1$s %2$d"
|
66 |
+
msgstr "%1$s %2$d"
|
67 |
+
|
68 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:432
|
69 |
+
msgid "List View"
|
70 |
+
msgstr "Lijstweergave"
|
71 |
+
|
72 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:433
|
73 |
+
msgid "Excerpt View"
|
74 |
+
msgstr "Detailweergave"
|
75 |
+
|
76 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:459
|
77 |
+
#, php-format
|
78 |
+
msgid "%s pending"
|
79 |
+
msgstr "%s wachtend"
|
80 |
+
|
81 |
+
#: ../framework/helpers/class-fw-wp-list-table.php:714
|
82 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:33
|
83 |
+
msgid "Select All"
|
84 |
+
msgstr "Alles Selecteren"
|
85 |
+
|
86 |
+
#: ../framework/helpers/general.php:1150
|
87 |
+
msgid "year"
|
88 |
+
msgstr "jaar"
|
89 |
+
|
90 |
+
#: ../framework/helpers/general.php:1151
|
91 |
+
msgid "years"
|
92 |
+
msgstr "jaren"
|
93 |
+
|
94 |
+
#: ../framework/helpers/general.php:1153
|
95 |
+
msgid "month"
|
96 |
+
msgstr "maand"
|
97 |
+
|
98 |
+
#: ../framework/helpers/general.php:1154
|
99 |
+
msgid "months"
|
100 |
+
msgstr "maanden"
|
101 |
+
|
102 |
+
#: ../framework/helpers/general.php:1156
|
103 |
+
msgid "week"
|
104 |
+
msgstr "week"
|
105 |
+
|
106 |
+
#: ../framework/helpers/general.php:1157
|
107 |
+
msgid "weeks"
|
108 |
+
msgstr "weken"
|
109 |
+
|
110 |
+
#: ../framework/helpers/general.php:1159
|
111 |
+
msgid "day"
|
112 |
+
msgstr "dag"
|
113 |
+
|
114 |
+
#: ../framework/helpers/general.php:1160
|
115 |
+
msgid "days"
|
116 |
+
msgstr "dagen"
|
117 |
+
|
118 |
+
#: ../framework/helpers/general.php:1162
|
119 |
+
msgid "hour"
|
120 |
+
msgstr "uur"
|
121 |
+
|
122 |
+
#: ../framework/helpers/general.php:1163
|
123 |
+
msgid "hours"
|
124 |
+
msgstr "uren"
|
125 |
+
|
126 |
+
#: ../framework/helpers/general.php:1165
|
127 |
+
msgid "minute"
|
128 |
+
msgstr "minuut"
|
129 |
+
|
130 |
+
#: ../framework/helpers/general.php:1166
|
131 |
+
msgid "minutes"
|
132 |
+
msgstr "minuten"
|
133 |
+
|
134 |
+
#: ../framework/helpers/general.php:1168
|
135 |
+
msgid "second"
|
136 |
+
msgstr "seconde"
|
137 |
+
|
138 |
+
#: ../framework/helpers/general.php:1169
|
139 |
+
msgid "seconds"
|
140 |
+
msgstr "seconden"
|
141 |
+
|
142 |
+
#: ../framework/helpers/general.php:1558
|
143 |
+
msgid "Maximum stack depth exceeded"
|
144 |
+
msgstr "Maximale stack diepte overschreden"
|
145 |
+
|
146 |
+
#: ../framework/helpers/general.php:1561
|
147 |
+
msgid "Underflow or the modes mismatch"
|
148 |
+
msgstr "Underflow or the modes mismatch"
|
149 |
+
|
150 |
+
#: ../framework/helpers/general.php:1564
|
151 |
+
msgid "Unexpected control character found"
|
152 |
+
msgstr "Onverwacht controleteken gevonden"
|
153 |
+
|
154 |
+
#: ../framework/helpers/general.php:1567
|
155 |
+
msgid "Syntax error, malformed JSON"
|
156 |
+
msgstr "Syntaxisfout, onjuist geformateerde JSON"
|
157 |
+
|
158 |
+
#: ../framework/helpers/general.php:1570
|
159 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
160 |
+
msgstr "Onjuist geformateerd UTF-8 karakters, mogelijk onjuist versleuteld"
|
161 |
+
|
162 |
+
#: ../framework/helpers/general.php:1573
|
163 |
+
#: ../framework/extensions/backups/class-fw-extension-backups.php:550
|
164 |
+
msgid "Unknown error"
|
165 |
+
msgstr "Onbekende fout"
|
166 |
+
|
167 |
+
#: ../framework/helpers/class-fw-form.php:80
|
168 |
+
#, php-format
|
169 |
+
msgid "Form with id \"%s\" was already defined"
|
170 |
+
msgstr "Formulier met id \"%s\" was al gedefinieerd"
|
171 |
+
|
172 |
+
#: ../framework/helpers/class-fw-form.php:168
|
173 |
+
msgid "Nonce verification failed"
|
174 |
+
msgstr "Nonce verificatie mislukt"
|
175 |
+
|
176 |
+
#: ../framework/helpers/class-fw-form.php:331
|
177 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/views/form.php:13
|
178 |
+
#: ../framework/extensions/forms/extensions/contact-forms/class-fw-extension-contact-forms.php:66
|
179 |
+
msgid "Submit"
|
180 |
+
msgstr "Verzenden"
|
181 |
+
|
182 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:285
|
183 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:602
|
184 |
+
msgid "Cannot delete: "
|
185 |
+
msgstr "Kan niet verwijderen:"
|
186 |
+
|
187 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:292
|
188 |
+
msgid "Cannot create: "
|
189 |
+
msgstr "Kan niet aanmaken:"
|
190 |
+
|
191 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:370
|
192 |
+
msgid "Cannot remove old temporary directory: "
|
193 |
+
msgstr "Kan oude tijdelijke map niet verwijderen:"
|
194 |
+
|
195 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:376
|
196 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:572
|
197 |
+
msgid "Cannot create directory: "
|
198 |
+
msgstr "Kan map niet aanmaken: "
|
199 |
+
|
200 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:381
|
201 |
+
#, php-format
|
202 |
+
msgid "Downloading the %s..."
|
203 |
+
msgstr "Bezig met downloaden van de %s..."
|
204 |
+
|
205 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:386
|
206 |
+
#, php-format
|
207 |
+
msgid "Cannot download the %s."
|
208 |
+
msgstr "Kan de %s niet downloaden. "
|
209 |
+
|
210 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:396
|
211 |
+
#, php-format
|
212 |
+
msgid "Installing the %s..."
|
213 |
+
msgstr "Bezig met installeren van de %s..."
|
214 |
+
|
215 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:402
|
216 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:431
|
217 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:531
|
218 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:552
|
219 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:582
|
220 |
+
msgid "Cannot access directory: "
|
221 |
+
msgstr "Kan geen toegang krijgen tot map:"
|
222 |
+
|
223 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:421
|
224 |
+
msgid "Cannot remove: "
|
225 |
+
msgstr "Kan niet verwijderen:"
|
226 |
+
|
227 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:456
|
228 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:522
|
229 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:628
|
230 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:652
|
231 |
+
#, php-format
|
232 |
+
msgid "Cannot move \"%s\" to \"%s\""
|
233 |
+
msgstr "Kan \"%s\" niet naar \"%s\" verplaatsen"
|
234 |
+
|
235 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:472
|
236 |
+
#, php-format
|
237 |
+
msgid "Cannot merge \"%s\" with \"%s\""
|
238 |
+
msgstr "Kan \"%s\" niet samenvoegen met \"%s\""
|
239 |
+
|
240 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:485
|
241 |
+
#, php-format
|
242 |
+
msgid "The %s has been successfully updated."
|
243 |
+
msgstr "De %s is succesvol bijgewerkt. "
|
244 |
+
|
245 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:492
|
246 |
+
#, php-format
|
247 |
+
msgid "Cannot remove temporary directory \"%s\"."
|
248 |
+
msgstr "Kan tijdelijke map \"%s\" niet verwijderen."
|
249 |
+
|
250 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:672
|
251 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:740
|
252 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:808
|
253 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:930
|
254 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1427
|
255 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:1837
|
256 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2054
|
257 |
+
msgid "Invalid nonce."
|
258 |
+
msgstr "Ongeldige nonce."
|
259 |
+
|
260 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:683
|
261 |
+
msgid "Framework Update"
|
262 |
+
msgstr "Framework Update"
|
263 |
+
|
264 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:699
|
265 |
+
msgid "Failed to get framework latest version."
|
266 |
+
msgstr "Niet gelukt om laatste versie van framework te verkrijgen. "
|
267 |
+
|
268 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:716
|
269 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:360
|
270 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:374
|
271 |
+
#: ../framework/extensions/update/views/updates-list.php:10
|
272 |
+
#: ../framework/core/class-fw-manifest.php:353
|
273 |
+
msgid "Framework"
|
274 |
+
msgstr "Framework"
|
275 |
+
|
276 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:751
|
277 |
+
msgid "Theme Update"
|
278 |
+
msgstr "Thema Update"
|
279 |
+
|
280 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:767
|
281 |
+
msgid "Failed to get theme latest version."
|
282 |
+
msgstr "Niet gelukt om de laatste versie van thema te verkrijgen. "
|
283 |
+
|
284 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:784
|
285 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:393
|
286 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:407
|
287 |
+
msgid "Theme"
|
288 |
+
msgstr "Thema"
|
289 |
+
|
290 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:817
|
291 |
+
msgid "Please check the extensions you want to update."
|
292 |
+
msgstr "Controleer de uitbreidingen die je wilt bijwerken."
|
293 |
+
|
294 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:841
|
295 |
+
msgid "Extensions Update"
|
296 |
+
msgstr "Uitbreidingen Update"
|
297 |
+
|
298 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:879
|
299 |
+
msgid "No extensions updates found."
|
300 |
+
msgstr "Geen updates van uitbreidingen gevonden. "
|
301 |
+
|
302 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:886
|
303 |
+
#, php-format
|
304 |
+
msgid "Extension \"%s\" does not exist or is disabled."
|
305 |
+
msgstr "Uitbreiding \"%s\" bestaat niet of is uitgeschakeld."
|
306 |
+
|
307 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:893
|
308 |
+
#, php-format
|
309 |
+
msgid "No update found for the \"%s\" extension."
|
310 |
+
msgstr "Geen update gevonden voor de \"%s\" uitbreiding."
|
311 |
+
|
312 |
+
#: ../framework/extensions/update/class-fw-extension-update.php:915
|
313 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:426
|
314 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:440
|
315 |
+
#, php-format
|
316 |
+
msgid "%s extension"
|
317 |
+
msgstr "%s uitbreiding"
|
318 |
+
|
319 |
+
#: ../framework/extensions/update/manifest.php:5
|
320 |
+
#: ../framework/extensions/builder/includes/option-types/builder/includes/fullscreen.php:82
|
321 |
+
msgid "Update"
|
322 |
+
msgstr "Bijwerken"
|
323 |
+
|
324 |
+
#: ../framework/extensions/update/manifest.php:6
|
325 |
+
msgid "Keep you framework, extensions and theme up to date."
|
326 |
+
msgstr "Houd je framework, uitbreidingen en thema up-to-date."
|
327 |
+
|
328 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:91
|
329 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:232
|
330 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2439
|
331 |
+
msgid "Github error:"
|
332 |
+
msgstr "Github fout:"
|
333 |
+
|
334 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:100
|
335 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:241
|
336 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2446
|
337 |
+
#, php-format
|
338 |
+
msgid "Failed to access Github repository \"%s\" releases. (Response code: %d)"
|
339 |
+
msgstr "Toegang tot Github repository \"%s\" releases mislukt. (Response code: %d)"
|
340 |
+
|
341 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:108
|
342 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:249
|
343 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2462
|
344 |
+
#, php-format
|
345 |
+
msgid "Failed to access Github repository \"%s\" releases."
|
346 |
+
msgstr "Toegang tot Github repository \"%s\" releases mislukt."
|
347 |
+
|
348 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:122
|
349 |
+
#, php-format
|
350 |
+
msgid "No releases found in repository \"%s\"."
|
351 |
+
msgstr "Geen releases gevonden in repository: \"%s\"."
|
352 |
+
|
353 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:143
|
354 |
+
#, php-format
|
355 |
+
msgid ""
|
356 |
+
"%s manifest has invalid \"github_update\" parameter. Please use "
|
357 |
+
"\"user/repo\" format."
|
358 |
+
msgstr "%s manifest heeft ongeldige \"github_update\" parameter. Gebruik de \"user/repo\" indeling."
|
359 |
+
|
360 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:171
|
361 |
+
#, php-format
|
362 |
+
msgid "Failed to fetch %s latest version from github \"%s\"."
|
363 |
+
msgstr "Niet gelukt om laatste %s versie van github \"%s\" te verkrijgen. "
|
364 |
+
|
365 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:264
|
366 |
+
#, php-format
|
367 |
+
msgid "%s github repository \"%s\" does not have the \"%s\" release."
|
368 |
+
msgstr "%s github repository \"%s\" beschikt niet over de \"%s\" release."
|
369 |
+
|
370 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:284
|
371 |
+
#, php-format
|
372 |
+
msgid "Cannot download %s zip."
|
373 |
+
msgstr "Kan %s zip niet downloaden. "
|
374 |
+
|
375 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:297
|
376 |
+
#, php-format
|
377 |
+
msgid "Cannot save %s zip."
|
378 |
+
msgstr "Kan %s zip niet opslaan."
|
379 |
+
|
380 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:316
|
381 |
+
#, php-format
|
382 |
+
msgid "Cannot remove %s zip."
|
383 |
+
msgstr "Kan %s zip niet verwijderen."
|
384 |
+
|
385 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:325
|
386 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:2566
|
387 |
+
msgid "Cannot access the unzipped directory files."
|
388 |
+
msgstr "Kan de bestanden van de uitgepakte map niet benaderen."
|
389 |
+
|
390 |
+
#: ../framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php:341
|
391 |
+
#, php-format
|
392 |
+
msgid "The unzipped %s directory not found."
|
393 |
+
msgstr "De uitgepakte %s map kan niet worden gevonden. "
|
394 |
+
|
395 |
+
#: ../framework/extensions/update/views/updates-list.php:12
|
396 |
+
#, php-format
|
397 |
+
msgid "You have the latest version of %s."
|
398 |
+
msgstr "Je hebt de laatste versie van %s."
|
399 |
+
|
400 |
+
#: ../framework/extensions/update/views/updates-list.php:25
|
401 |
+
msgid "Update Framework"
|
402 |
+
msgstr "Framework Bijwerken"
|
403 |
+
|
404 |
+
#: ../framework/extensions/update/views/updates-list.php:37
|
405 |
+
msgid "Your theme is up to date."
|
406 |
+
msgstr "Je thema is up-to-date."
|
407 |
+
|
408 |
+
#: ../framework/extensions/update/views/updates-list.php:50
|
409 |
+
msgid "Update Theme"
|
410 |
+
msgstr "Thema Bijwerken"
|
411 |
+
|
412 |
+
#: ../framework/extensions/update/views/updates-list.php:60
|
413 |
+
#: ../framework/core/components/extensions/manager/class--fw-extensions-manager.php:844
|
414 |
+
#, php-format
|
415 |
+
msgid "%s Extensions"
|
416 |
+
msgstr "%s Uitbreidingen"
|
417 |
+
|
418 |
+
#: ../framework/extensions/update/views/updates-list.php:62
|
419 |
+
#, php-format
|
420 |
+
msgid "You have the latest version of %s Extensions."
|
421 |
+
msgstr "Je hebt de laatste versie van %s Uitbreidingen."
|
422 |
+
|
423 |
+
#: ../framework/extensions/update/views/updates-list.php:80
|
424 |
+
#: ../framework/extensions/update/views/updates-list.php:95
|
425 |
+
#: ../framework/extensions/update/views/updates-list.php:100
|
426 |
+
msgid "Update Extensions"
|
427 |
+
msgstr "Uitbreidingen Bijwerken"
|
428 |
+
|
429 |
+
#: ../framework/extensions/update/views/updates-list.php:99
|
430 |
+
msgid "New extensions updates available."
|
431 |
+
msgstr "Nieuwe uitbreidingen beschikbaar."
|
432 |
+
|
433 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:16
|
434 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:14
|
435 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:16
|
436 |
+
msgid "Go to updates page"
|
437 |
+
msgstr "Ga naar updates pagina"
|
438 |
+
|
439 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-theme-upgrader-skin.php:19
|
440 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-upgrader-skin.php:17
|
441 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-framework-upgrader-skin.php:19
|
442 |
+
msgid "Return to Updates page"
|
443 |
+
msgstr "Keer terug naar Updates pagina. "
|
444 |
+
|
445 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:84
|
446 |
+
#, php-format
|
447 |
+
msgid "You have version %s installed. Update to %s."
|
448 |
+
msgstr "Je hebt versie %s geïnstalleerd. Werk bij naar %s."
|
449 |
+
|
450 |
+
#: ../framework/extensions/update/includes/classes/class--fw-ext-update-extensions-list-table.php:126
|
451 |
+
msgid "No Extensions for update."
|
452 |
+
msgstr "Geen Uitbreidingen voor de update."
|
453 |
+
|
454 |
+
#: ../framework/extensions/portfolio/manifest.php:7
|
455 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:260
|
456 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:72
|
457 |
+
msgid "Portfolio"
|
458 |
+
msgstr "Portfolio"
|
459 |
+
|
460 |
+
#: ../framework/extensions/portfolio/manifest.php:9
|
461 |
+
#: ../framework/core/components/extensions/manager/available-extensions.php:73
|
462 |
+
msgid ""
|
463 |
+
"This extension will add a fully fledged portfolio module that will let you "
|
464 |
+
"display your projects using the built in portfolio pages."
|
465 |
+
msgstr "Deze uitbreiding voegt een volledig uitgeruste portfolio module toe, die het mogelijk maakt om je projecten te tonen door middel van de ingebouwde portfolio pagina's."
|
466 |
+
|
467 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:115
|
468 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
469 |
+
msgid "Project"
|
470 |
+
msgstr "Project"
|
471 |
+
|
472 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:116
|
473 |
+
msgid "Projects"
|
474 |
+
msgstr "Projecten"
|
475 |
+
|
476 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:123
|
477 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:63
|
478 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:127
|
479 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:57
|
480 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:58
|
481 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:76
|
482 |
+
#: ../framework/extensions/media/extensions/slider/posts.php:8
|
483 |
+
#: ../framework/extensions/media/extensions/population-method/extensions/population-method-custom/includes/slides/views/slides.php:32
|
484 |
+
msgid "Add New"
|
485 |
+
msgstr "Nieuwe Toevoegen"
|
486 |
+
|
487 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:124
|
488 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:198
|
489 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:64
|
490 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:128
|
491 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:77
|
492 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:131
|
493 |
+
#, php-format
|
494 |
+
msgid "Add New %s"
|
495 |
+
msgstr "Nieuwe %s toevoegen"
|
496 |
+
|
497 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:125
|
498 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:129
|
499 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/multiple-choice/class-fw-option-type-quiz-builder-item-multiple-choice.php:89
|
500 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/true-false/class-fw-option-type-quiz-builder-item-true-false.php:76
|
501 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/gap-fill/class-fw-option-type-quiz-builder-item-gap-fill.php:88
|
502 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/includes/option-types/quiz-builder/items/single-choice/class-fw-option-type-quiz-builder-item-single-choice.php:86
|
503 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review.php:68
|
504 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/views/listing-review-html5.php:34
|
505 |
+
#: ../framework/extensions/feedback/extensions/feedback-stars/includes/extends/class-fw-feedback-stars-walker.php:50
|
506 |
+
#: ../framework/extensions/shortcodes/extensions/page-builder/includes/page-builder/includes/item-types/simple/class-page-builder-simple-item.php:110
|
507 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/class-fw-option-type-table.php:45
|
508 |
+
#: ../framework/extensions/shortcodes/shortcodes/table/includes/fw-option-type-table/views/cell-worksheet-template.php:37
|
509 |
+
#: ../framework/extensions/shortcodes/shortcodes/column/includes/page-builder-column-item/class-page-builder-column-item.php:73
|
510 |
+
#: ../framework/extensions/shortcodes/shortcodes/section/includes/page-builder-section-item/class-page-builder-section-item.php:81
|
511 |
+
#: ../framework/extensions/forms/extensions/contact-forms/shortcodes/contact-form/includes/item/class-page-builder-contact-form-item.php:55
|
512 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/recaptcha/class-fw-option-type-form-builder-item-recaptcha.php:57
|
513 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/textarea/class-fw-option-type-form-builder-item-textarea.php:50
|
514 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/number/class-fw-option-type-form-builder-item-number.php:54
|
515 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/select/class-fw-option-type-form-builder-item-select.php:52
|
516 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/radio/class-fw-option-type-form-builder-item-radio.php:53
|
517 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/checkboxes/class-fw-option-type-form-builder-item-checkboxes.php:53
|
518 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/email/class-fw-option-type-form-builder-item-email.php:52
|
519 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/website/class-fw-option-type-form-builder-item-website.php:52
|
520 |
+
#: ../framework/extensions/forms/includes/option-types/form-builder/items/text/class-fw-option-type-form-builder-item-text.php:50
|
521 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:78
|
522 |
+
#: ../framework/includes/option-types/popup/class-fw-option-type-popup.php:158
|
523 |
+
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:151
|
524 |
+
#: ../framework/includes/option-types/upload/class-fw-option-type-upload.php:177
|
525 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:161
|
526 |
+
#: ../framework/includes/option-types/multi-upload/class-fw-option-type-multi-upload.php:187
|
527 |
+
msgid "Edit"
|
528 |
+
msgstr "Bewerk"
|
529 |
+
|
530 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:126
|
531 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:196
|
532 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:65
|
533 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:66
|
534 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:130
|
535 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:192
|
536 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:59
|
537 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:60
|
538 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:79
|
539 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:129
|
540 |
+
#, php-format
|
541 |
+
msgid "Edit %s"
|
542 |
+
msgstr "Bewerk %s"
|
543 |
+
|
544 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:127
|
545 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:67
|
546 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:131
|
547 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:61
|
548 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:80
|
549 |
+
#, php-format
|
550 |
+
msgid "New %s"
|
551 |
+
msgstr "Nieuw %s"
|
552 |
+
|
553 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:128
|
554 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:193
|
555 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:68
|
556 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:132
|
557 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:189
|
558 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:62
|
559 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:81
|
560 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:126
|
561 |
+
#, php-format
|
562 |
+
msgid "All %s"
|
563 |
+
msgstr "Alle %s"
|
564 |
+
|
565 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:129
|
566 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:130
|
567 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:69
|
568 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:70
|
569 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:133
|
570 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:134
|
571 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:63
|
572 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:64
|
573 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:82
|
574 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:83
|
575 |
+
#, php-format
|
576 |
+
msgid "View %s"
|
577 |
+
msgstr "Bekijk %s"
|
578 |
+
|
579 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:131
|
580 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:192
|
581 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:71
|
582 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:135
|
583 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:65
|
584 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:84
|
585 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:125
|
586 |
+
#, php-format
|
587 |
+
msgid "Search %s"
|
588 |
+
msgstr "Zoek %s"
|
589 |
+
|
590 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:132
|
591 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:72
|
592 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:136
|
593 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:66
|
594 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:85
|
595 |
+
#, php-format
|
596 |
+
msgid "No %s Found"
|
597 |
+
msgstr "Geen %s Gevonden"
|
598 |
+
|
599 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:133
|
600 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:73
|
601 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:137
|
602 |
+
#: ../framework/extensions/learning/extensions/learning-quiz/class-fw-extension-learning-quiz.php:67
|
603 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:86
|
604 |
+
#, php-format
|
605 |
+
msgid "No %s Found In Trash"
|
606 |
+
msgstr "Geen %s Gevonden In Prullenbak"
|
607 |
+
|
608 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:136
|
609 |
+
msgid "Create a portfolio item"
|
610 |
+
msgstr "Maak een portfolio onderdeel aan"
|
611 |
+
|
612 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:183
|
613 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:116
|
614 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:268
|
615 |
+
msgid "Category"
|
616 |
+
msgstr "Categorie"
|
617 |
+
|
618 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:184
|
619 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:117
|
620 |
+
#: ../framework/extensions/sidebars/includes/class-fw-extension-sidebars-config.php:168
|
621 |
+
msgid "Categories"
|
622 |
+
msgstr "Categorieën"
|
623 |
+
|
624 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:194
|
625 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:190
|
626 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:127
|
627 |
+
#, php-format
|
628 |
+
msgid "Parent %s"
|
629 |
+
msgstr "Ouder %s"
|
630 |
+
|
631 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:195
|
632 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:191
|
633 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:128
|
634 |
+
#, php-format
|
635 |
+
msgid "Parent %s:"
|
636 |
+
msgstr "Ouder %s:"
|
637 |
+
|
638 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:197
|
639 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:193
|
640 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:130
|
641 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:234
|
642 |
+
#: ../framework/core/components/extensions/manager/views/extension.php:272
|
643 |
+
#, php-format
|
644 |
+
msgid "Update %s"
|
645 |
+
msgstr "Bijwerken %s"
|
646 |
+
|
647 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:199
|
648 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:195
|
649 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:132
|
650 |
+
#, php-format
|
651 |
+
msgid "New %s Name"
|
652 |
+
msgstr "Nieuwe %s Naam"
|
653 |
+
|
654 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:200
|
655 |
+
#: ../framework/extensions/learning/class-fw-extension-learning.php:196
|
656 |
+
#: ../framework/extensions/events/class-fw-extension-events.php:133
|
657 |
+
#, php-format
|
658 |
+
msgid "%s"
|
659 |
+
msgstr "%s"
|
660 |
+
|
661 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:232
|
662 |
+
msgid "Gallery"
|
663 |
+
msgstr "Galerij"
|
664 |
+
|
665 |
+
#: ../framework/extensions/portfolio/class-fw-extension-portfolio.php:240
|
666 |
+
msgid
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|