Version Description
- Add: filter for portfolio-type slug.
- Update: Page Template filter.
- Uddate: Button Shortcode output.
- Update: Portfolio Options.
- Update: Translation domain.
Download this release
Release Info
Developer | britner |
Plugin | Kadence Themes Toolkit |
Version | 3.2 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.2
- cmb/helpers/cmb_Meta_Box_ajax.php +3 -3
- cmb/init.php +6 -6
- languages/kadencetoolkit-de_DE.mo +0 -0
- languages/kadencetoolkit-fr_FR.mo +0 -0
- languages/kadencetoolkit-it_IT.mo +0 -0
- languages/kadencetoolkit-pt_BR.mo +0 -0
- languages/kadencetoolkit-ru_RU.mo +0 -0
- languages/virtue-toolkit-de_DE.mo +0 -0
- languages/{kadencetoolkit-de_DE.po → virtue-toolkit-de_DE.po} +221 -204
- languages/{kadencetoolkit-es_ES.mo → virtue-toolkit-es_ES.mo} +0 -0
- languages/{kadencetoolkit-es_ES.po → virtue-toolkit-es_ES.po} +184 -165
- languages/virtue-toolkit-fr_FR.mo +0 -0
- languages/{kadencetoolkit-fr_FR.po → virtue-toolkit-fr_FR.po} +215 -198
- languages/virtue-toolkit-it_IT.mo +0 -0
- languages/{kadencetoolkit-it_IT.po → virtue-toolkit-it_IT.po} +220 -203
- languages/virtue-toolkit-pt_BR.mo +0 -0
- languages/{kadencetoolkit-pt_BR.po → virtue-toolkit-pt_BR.po} +206 -196
- languages/virtue-toolkit-ru_RU.mo +0 -0
- languages/{kadencetoolkit-ru_RU.po → virtue-toolkit-ru_RU.po} +387 -360
- languages/{kadencetoolkit.pot → virtue-toolkit.po} +108 -97
- languages/{kadencetoolkit.po → virtue-toolkit.pot} +208 -196
- metaboxes.php +336 -308
- page-contact.php +16 -16
- pagetemplater.php +4 -4
- post-types.php +24 -23
- readme.txt +11 -1
- shortcodes.php +18 -6
- shortcodes/accordion/accordion_popup.php +5 -5
- shortcodes/btns/btns_popup.php +81 -81
- shortcodes/columns/columns_popup.php +1 -1
- shortcodes/divider/divider_popup.php +8 -8
- shortcodes/icons/icon_popup.php +1 -1
- shortcodes/pullquote/quote_popup.php +9 -9
- shortcodes/vimeo/vimeo_popup.php +8 -8
- shortcodes/youtube/youtube_popup.php +8 -8
- template-contact.php +16 -16
- virtue_toolkit.php +2 -2
cmb/helpers/cmb_Meta_Box_ajax.php
CHANGED
@@ -44,7 +44,7 @@ class cmb_Meta_Box_ajax {
|
|
44 |
|
45 |
// send back error if empty
|
46 |
if ( empty( $oembed_string ) )
|
47 |
-
self::send_result( '<p class="ui-state-error-text">'. __( 'Please Try Again', '
|
48 |
|
49 |
// Set width of embed
|
50 |
$embed_width = isset( $_REQUEST['oembed_width'] ) && intval( $_REQUEST['oembed_width'] ) < 640 ? intval( $_REQUEST['oembed_width'] ) : '640';
|
@@ -128,10 +128,10 @@ class cmb_Meta_Box_ajax {
|
|
128 |
|
129 |
// Send back our embed
|
130 |
if ( $check_embed && $check_embed != $fallback )
|
131 |
-
return '<div class="embed_status">'. $check_embed .'<p class="cmb_remove_wrapper"><a href="#" class="cmb_remove_file_button" rel="'. $args['field_id'] .'">'. __( 'Remove Embed', '
|
132 |
|
133 |
// Otherwise, send back error info that no oEmbeds were found
|
134 |
-
return '<p class="ui-state-error-text">'. sprintf( __( 'No oEmbed Results Found for %s. View more info at', '
|
135 |
|
136 |
}
|
137 |
|
44 |
|
45 |
// send back error if empty
|
46 |
if ( empty( $oembed_string ) )
|
47 |
+
self::send_result( '<p class="ui-state-error-text">'. __( 'Please Try Again', 'virtue-toolkit' ) .'</p>', false );
|
48 |
|
49 |
// Set width of embed
|
50 |
$embed_width = isset( $_REQUEST['oembed_width'] ) && intval( $_REQUEST['oembed_width'] ) < 640 ? intval( $_REQUEST['oembed_width'] ) : '640';
|
128 |
|
129 |
// Send back our embed
|
130 |
if ( $check_embed && $check_embed != $fallback )
|
131 |
+
return '<div class="embed_status">'. $check_embed .'<p class="cmb_remove_wrapper"><a href="#" class="cmb_remove_file_button" rel="'. $args['field_id'] .'">'. __( 'Remove Embed', 'virtue-toolkit' ) .'</a></p></div>';
|
132 |
|
133 |
// Otherwise, send back error info that no oEmbeds were found
|
134 |
+
return '<p class="ui-state-error-text">'. sprintf( __( 'No oEmbed Results Found for %s. View more info at', 'virtue-toolkit' ), $fallback ) .' <a href="http://codex.wordpress.org/Embeds" target="_blank">codex.wordpress.org/Embeds</a>.</p>';
|
135 |
|
136 |
}
|
137 |
|
cmb/init.php
CHANGED
@@ -277,15 +277,15 @@ class cmb_Meta_Box {
|
|
277 |
'script_debug' => defined('SCRIPT_DEBUG') && SCRIPT_DEBUG,
|
278 |
'new_admin_style' => version_compare( $wp_version, '3.7', '>' ),
|
279 |
'object_type' => self::get_object_type(),
|
280 |
-
'upload_file' => 'Use this file',
|
281 |
-
'remove_image' => 'Remove Image',
|
282 |
-
'remove_file' => 'Remove',
|
283 |
-
'file' => 'File:',
|
284 |
-
'download' => 'Download',
|
285 |
'ajaxurl' => admin_url( '/admin-ajax.php' ),
|
286 |
'up_arrow' => '[ ↑ ] ',
|
287 |
'down_arrow' => ' [ ↓ ]',
|
288 |
-
'check_toggle' => __( 'Select / Deselect All', '
|
289 |
) ) );
|
290 |
|
291 |
wp_register_style( 'cmb-styles', CMB_META_BOX_URL . 'style'. $min .'.css', $styles );
|
277 |
'script_debug' => defined('SCRIPT_DEBUG') && SCRIPT_DEBUG,
|
278 |
'new_admin_style' => version_compare( $wp_version, '3.7', '>' ),
|
279 |
'object_type' => self::get_object_type(),
|
280 |
+
'upload_file' => __('Use this file' , 'virtue-toolkit'),
|
281 |
+
'remove_image' => __('Remove Image' , 'virtue-toolkit'),
|
282 |
+
'remove_file' => __('Remove' , 'virtue-toolkit'),
|
283 |
+
'file' => __('File:' , 'virtue-toolkit'),
|
284 |
+
'download' => __('Download' , 'virtue-toolkit'),
|
285 |
'ajaxurl' => admin_url( '/admin-ajax.php' ),
|
286 |
'up_arrow' => '[ ↑ ] ',
|
287 |
'down_arrow' => ' [ ↓ ]',
|
288 |
+
'check_toggle' => __( 'Select / Deselect All', 'virtue-toolkit' ),
|
289 |
) ) );
|
290 |
|
291 |
wp_register_style( 'cmb-styles', CMB_META_BOX_URL . 'style'. $min .'.css', $styles );
|
languages/kadencetoolkit-de_DE.mo
DELETED
Binary file
|
languages/kadencetoolkit-fr_FR.mo
DELETED
Binary file
|
languages/kadencetoolkit-it_IT.mo
DELETED
Binary file
|
languages/kadencetoolkit-pt_BR.mo
DELETED
Binary file
|
languages/kadencetoolkit-ru_RU.mo
DELETED
Binary file
|
languages/virtue-toolkit-de_DE.mo
ADDED
Binary file
|
languages/{kadencetoolkit-de_DE.po → virtue-toolkit-de_DE.po}
RENAMED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Georg Trixl <schick_post@gmx.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Generator: Poedit 1.
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
@@ -59,7 +59,7 @@ msgstr "Symbol hinzufügen"
|
|
59 |
# @ redux-framework
|
60 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
61 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
62 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
63 |
msgid "Remove"
|
64 |
msgstr "Entfernen"
|
65 |
|
@@ -75,19 +75,19 @@ msgstr ""
|
|
75 |
|
76 |
# @ virtue
|
77 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
78 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:760
|
79 |
#, fuzzy
|
80 |
msgid "Remove Image"
|
81 |
msgstr "Entferne Bild"
|
82 |
|
83 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
84 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
85 |
msgid "File:"
|
86 |
msgstr ""
|
87 |
|
88 |
# @ redux-framework
|
89 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
90 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
91 |
msgid "Download"
|
92 |
msgstr "Herunterladen"
|
93 |
|
@@ -98,9 +98,9 @@ msgstr ""
|
|
98 |
# @ virtue
|
99 |
# @ redux-framework
|
100 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
101 |
-
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:
|
102 |
-
#: ../metaboxes.php:
|
103 |
-
#: ../metaboxes.php:
|
104 |
msgid "Default"
|
105 |
msgstr "Standard"
|
106 |
|
@@ -116,6 +116,10 @@ msgstr "Wähle ein Symbol"
|
|
116 |
msgid "Current Color"
|
117 |
msgstr "Hauptfarbe"
|
118 |
|
|
|
|
|
|
|
|
|
119 |
# @ woocommerce
|
120 |
#: ../cmb/init.php:288
|
121 |
#, fuzzy
|
@@ -226,8 +230,8 @@ msgid "Carousel Slider - (Caroufedsel Slider)"
|
|
226 |
msgstr ""
|
227 |
|
228 |
# @ virtue
|
229 |
-
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:
|
230 |
-
#: ../metaboxes.php:
|
231 |
msgid "None"
|
232 |
msgstr "Kein"
|
233 |
|
@@ -238,7 +242,7 @@ msgid "Post Slider Gallery"
|
|
238 |
msgstr "Beitrags Galerie"
|
239 |
|
240 |
# @ virtue
|
241 |
-
#: ../metaboxes.php:148 ../metaboxes.php:
|
242 |
#, fuzzy
|
243 |
msgid "Add images for gallery here"
|
244 |
msgstr "Bilder zur Galerie hinzufügen"
|
@@ -250,7 +254,7 @@ msgid "Max Slider Height"
|
|
250 |
msgstr "Max Bild/Slider Höhe"
|
251 |
|
252 |
# @ virtue
|
253 |
-
#: ../metaboxes.php:154 ../metaboxes.php:
|
254 |
#, fuzzy
|
255 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
256 |
msgstr "Standard ist: 400 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
@@ -311,8 +315,8 @@ msgid "Video Post Default"
|
|
311 |
msgstr "Blogbeitrag Standards"
|
312 |
|
313 |
# @ virtue
|
314 |
-
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:
|
315 |
-
#: ../metaboxes.php:
|
316 |
msgid "Video"
|
317 |
msgstr "Video"
|
318 |
|
@@ -351,12 +355,12 @@ msgid "Video - (when possible)"
|
|
351 |
msgstr ""
|
352 |
|
353 |
# @ virtue
|
354 |
-
#: ../metaboxes.php:228 ../metaboxes.php:
|
355 |
msgid "Portfolio Post Options"
|
356 |
msgstr "Portfolio Beitragsoptionen"
|
357 |
|
358 |
# @ virtue
|
359 |
-
#: ../metaboxes.php:236 ../metaboxes.php:
|
360 |
msgid "Project Layout"
|
361 |
msgstr "Projektlayout"
|
362 |
|
@@ -373,68 +377,104 @@ msgid "Beside 33%"
|
|
373 |
msgstr "Neben"
|
374 |
|
375 |
# @ virtue
|
376 |
-
#: ../metaboxes.php:243 ../metaboxes.php:
|
377 |
msgid "Above"
|
378 |
msgstr "Über"
|
379 |
|
380 |
# @ virtue
|
381 |
-
#: ../metaboxes.php:244 ../metaboxes.php:
|
382 |
msgid "Three Rows"
|
383 |
msgstr "Drei Reihen"
|
384 |
|
385 |
# @ virtue
|
386 |
-
#: ../metaboxes.php:248 ../metaboxes.php:
|
387 |
msgid "Project Options"
|
388 |
msgstr "Projektoptionen"
|
389 |
|
390 |
# @ virtue
|
391 |
-
#: ../metaboxes.php:253 ../metaboxes.php:
|
392 |
msgid "Image"
|
393 |
msgstr "Bild"
|
394 |
|
395 |
# @ virtue
|
396 |
-
#: ../metaboxes.php:254 ../metaboxes.php:
|
397 |
#, fuzzy
|
398 |
msgid "Image Slider (Flex Slider)"
|
399 |
msgstr "Bilderslider"
|
400 |
|
401 |
# @ virtue
|
402 |
-
#: ../metaboxes.php:255 ../metaboxes.php:
|
403 |
msgid "Carousel Slider"
|
404 |
msgstr "Sliderkarussell"
|
405 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
# @ virtue
|
407 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
#, fuzzy
|
409 |
msgid "Portfolio Slider/Images"
|
410 |
msgstr "Portolio Slider Bilder"
|
411 |
|
412 |
# @ virtue
|
413 |
-
#: ../metaboxes.php:
|
414 |
#, fuzzy
|
415 |
msgid "Add images for post here"
|
416 |
msgstr "Bilder zur Galerie hinzufügen"
|
417 |
|
418 |
# @ virtue
|
419 |
-
#: ../metaboxes.php:
|
420 |
-
#: ../metaboxes.php:
|
421 |
msgid "Max Image/Slider Height"
|
422 |
msgstr "Max Bild/Slider Höhe"
|
423 |
|
424 |
# @ virtue
|
425 |
-
#: ../metaboxes.php:
|
426 |
#, fuzzy
|
427 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
428 |
msgstr "Standard ist: 450 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
429 |
|
430 |
# @ virtue
|
431 |
-
#: ../metaboxes.php:
|
432 |
-
#: ../metaboxes.php:
|
433 |
msgid "Max Image/Slider Width"
|
434 |
msgstr "Max Bild/Slider Breite"
|
435 |
|
436 |
# @ virtue
|
437 |
-
#: ../metaboxes.php:
|
438 |
#, fuzzy
|
439 |
msgid ""
|
440 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
@@ -444,385 +484,364 @@ msgstr ""
|
|
444 |
"(Hinweis: nur Zahlen eingeben; Beispiel: 650)</b>"
|
445 |
|
446 |
# @ virtue
|
447 |
-
#: ../metaboxes.php:
|
448 |
msgid "Value 01 Title"
|
449 |
msgstr "Wert 01 Titel"
|
450 |
|
451 |
# @ virtue
|
452 |
-
#: ../metaboxes.php:
|
453 |
msgid "ex. Project Type:"
|
454 |
msgstr "zB. Projekttyp:"
|
455 |
|
456 |
# @ virtue
|
457 |
-
#: ../metaboxes.php:
|
458 |
msgid "Value 01 Description"
|
459 |
msgstr "Wert 01 Beschreibung"
|
460 |
|
461 |
# @ virtue
|
462 |
-
#: ../metaboxes.php:
|
463 |
msgid "ex. Character Illustration"
|
464 |
msgstr "zB. Zeichen-Illustration"
|
465 |
|
466 |
# @ virtue
|
467 |
-
#: ../metaboxes.php:
|
468 |
msgid "Value 02 Title"
|
469 |
msgstr "Wert 02 Titel"
|
470 |
|
471 |
# @ virtue
|
472 |
-
#: ../metaboxes.php:
|
473 |
msgid "ex. Skills Needed:"
|
474 |
msgstr "zB. benötigte Fähigkeiten:"
|
475 |
|
476 |
# @ virtue
|
477 |
-
#: ../metaboxes.php:
|
478 |
msgid "Value 02 Description"
|
479 |
msgstr "Wert 02 Beschreibung"
|
480 |
|
481 |
# @ virtue
|
482 |
-
#: ../metaboxes.php:
|
483 |
msgid "ex. Photoshop, Illustrator"
|
484 |
msgstr "zB.: Photoshop, Illustrator"
|
485 |
|
486 |
# @ virtue
|
487 |
-
#: ../metaboxes.php:
|
488 |
msgid "Value 03 Title"
|
489 |
msgstr "Wert 03 Titel"
|
490 |
|
491 |
# @ virtue
|
492 |
-
#: ../metaboxes.php:
|
493 |
msgid "ex. Customer:"
|
494 |
msgstr "zB. Kunde:"
|
495 |
|
496 |
# @ virtue
|
497 |
-
#: ../metaboxes.php:
|
498 |
msgid "Value 03 Description"
|
499 |
msgstr "Wert 03 Beschreibung"
|
500 |
|
501 |
# @ virtue
|
502 |
-
#: ../metaboxes.php:
|
503 |
msgid "ex. Example Inc"
|
504 |
msgstr "zB. Muster GmbH"
|
505 |
|
506 |
# @ virtue
|
507 |
-
#: ../metaboxes.php:
|
508 |
msgid "Value 04 Title"
|
509 |
msgstr "Wert 04 Titel"
|
510 |
|
511 |
# @ virtue
|
512 |
-
#: ../metaboxes.php:
|
513 |
msgid "ex. Project Year:"
|
514 |
msgstr "zB. Projektjahr:"
|
515 |
|
516 |
# @ virtue
|
517 |
-
#: ../metaboxes.php:
|
518 |
msgid "Value 04 Description"
|
519 |
msgstr "Wert 04 Beschreibung"
|
520 |
|
521 |
# @ virtue
|
522 |
-
#: ../metaboxes.php:
|
523 |
msgid "ex. 2013"
|
524 |
msgstr "zB. 2013"
|
525 |
|
526 |
# @ virtue
|
527 |
-
#: ../metaboxes.php:
|
528 |
msgid "External Website"
|
529 |
msgstr "Externe Webseite"
|
530 |
|
531 |
# @ virtue
|
532 |
-
#: ../metaboxes.php:
|
533 |
msgid "ex. Website:"
|
534 |
msgstr "zB. Webseite:"
|
535 |
|
536 |
# @ virtue
|
537 |
-
#: ../metaboxes.php:
|
538 |
msgid "Website Address"
|
539 |
msgstr "Webseiten-Adresse"
|
540 |
|
541 |
# @ virtue
|
542 |
-
#: ../metaboxes.php:
|
543 |
msgid "ex. http://www.example.com"
|
544 |
msgstr "zB. http://www.example.com"
|
545 |
|
546 |
# @ virtue
|
547 |
-
#: ../metaboxes.php:
|
548 |
msgid "If Video Project"
|
549 |
msgstr "Wenn Video-Projekt"
|
550 |
|
551 |
# @ virtue
|
552 |
-
#: ../metaboxes.php:
|
553 |
-
#: ../metaboxes.php:
|
554 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
555 |
msgstr "Hier eingebetteten Code eingeben, funktioniert mit youtube, vimeo..."
|
556 |
|
557 |
# @ virtue
|
558 |
-
#: ../metaboxes.php:
|
559 |
#, fuzzy
|
560 |
msgid "Bottom Carousel Options"
|
561 |
msgstr "Kontaktseiten Optionen"
|
562 |
|
563 |
# @ virtue
|
564 |
-
#: ../metaboxes.php:
|
565 |
msgid "Carousel Title"
|
566 |
msgstr "Karusselltitel"
|
567 |
|
568 |
# @ virtue
|
569 |
-
#: ../metaboxes.php:
|
570 |
msgid "ex. Similar Projects"
|
571 |
msgstr "zB. ähnliche Projekte"
|
572 |
|
573 |
# @ virtue
|
574 |
-
#: ../metaboxes.php:
|
575 |
#, fuzzy
|
576 |
msgid "Bottom Portfolio Carousel"
|
577 |
msgstr "Portofolio-Karussell"
|
578 |
|
579 |
# @ virtue
|
580 |
-
#: ../metaboxes.php:
|
581 |
#, fuzzy
|
582 |
msgid "Display a carousel with portfolio items below project?"
|
583 |
msgstr "Zeige ein Karussell mit ähnlichen Portfolio-Einträgen unter Projekt?"
|
584 |
|
585 |
# @ virtue
|
586 |
-
#: ../metaboxes.php:
|
587 |
-
#: ../metaboxes.php:
|
588 |
-
#: ../metaboxes.php:
|
589 |
-
#: ../metaboxes.php:
|
590 |
msgid "No"
|
591 |
msgstr "Nein"
|
592 |
|
593 |
# @ virtue
|
594 |
-
#: ../metaboxes.php:
|
595 |
-
#: ../metaboxes.php:
|
596 |
-
#: ../metaboxes.php:
|
597 |
-
#: ../metaboxes.php:
|
598 |
msgid "Yes"
|
599 |
msgstr "Ja"
|
600 |
|
601 |
# @ virtue
|
602 |
-
#: ../metaboxes.php:
|
603 |
#, fuzzy
|
604 |
msgid "Carousel Items"
|
605 |
msgstr "Karusselltitel"
|
606 |
|
607 |
# @ virtue
|
608 |
-
#: ../metaboxes.php:
|
609 |
#, fuzzy
|
610 |
msgid "All Portfolio Posts"
|
611 |
msgstr "Portfolio Beitragsoptionen"
|
612 |
|
613 |
-
#: ../metaboxes.php:
|
614 |
msgid "Only of same Portfolio Type"
|
615 |
msgstr ""
|
616 |
|
617 |
# @ virtue
|
618 |
-
#: ../metaboxes.php:
|
619 |
#, fuzzy
|
620 |
msgid "Carousel Order"
|
621 |
msgstr "Sliderkarussell"
|
622 |
|
623 |
# @ virtue
|
624 |
-
#: ../metaboxes.php:
|
625 |
msgid "Menu Order"
|
626 |
msgstr "Menü Anordnung"
|
627 |
|
628 |
# @ virtue
|
629 |
# @ redux-framework
|
630 |
-
#: ../metaboxes.php:
|
631 |
msgid "Title"
|
632 |
msgstr "Titel"
|
633 |
|
634 |
# @ virtue
|
635 |
-
#: ../metaboxes.php:
|
636 |
msgid "Date"
|
637 |
msgstr "Datum"
|
638 |
|
639 |
# @ virtue
|
640 |
-
#: ../metaboxes.php:
|
641 |
msgid "Random"
|
642 |
msgstr "Zufall"
|
643 |
|
644 |
# @ virtue
|
645 |
-
#: ../metaboxes.php:
|
646 |
msgid "Portfolio Page Options"
|
647 |
msgstr "Portfolio Seitenoptionen"
|
648 |
|
649 |
# @ redux-framework
|
650 |
-
#: ../metaboxes.php:
|
651 |
msgid "Style"
|
652 |
msgstr "Stil"
|
653 |
|
654 |
# @ virtue
|
655 |
-
#: ../metaboxes.php:
|
656 |
#, fuzzy
|
657 |
msgid "Post Boxes"
|
658 |
msgstr "Videobox eintragen"
|
659 |
|
660 |
-
#: ../metaboxes.php:
|
661 |
msgid "Flat with Margin"
|
662 |
msgstr ""
|
663 |
|
664 |
# @ redux-framework
|
665 |
-
#: ../metaboxes.php:
|
666 |
#, fuzzy
|
667 |
msgid "Hover Style"
|
668 |
msgstr "Randstil"
|
669 |
|
670 |
# @ redux-framework
|
671 |
-
#: ../metaboxes.php:
|
672 |
#, fuzzy
|
673 |
msgid "Light"
|
674 |
msgstr "Rechts"
|
675 |
|
676 |
-
#: ../metaboxes.php:
|
677 |
msgid "Dark"
|
678 |
msgstr ""
|
679 |
|
680 |
# @ virtue
|
681 |
-
#: ../metaboxes.php:
|
682 |
msgid "Primary Color"
|
683 |
msgstr "Hauptfarbe"
|
684 |
|
685 |
# @ virtue
|
686 |
-
#: ../metaboxes.php:
|
687 |
msgid "Columns"
|
688 |
msgstr "Spalten"
|
689 |
|
690 |
# @ virtue
|
691 |
-
#: ../metaboxes.php:
|
692 |
-
msgid "Four Column"
|
693 |
-
msgstr "Vier Spalten"
|
694 |
-
|
695 |
-
# @ virtue
|
696 |
-
#: ../metaboxes.php:437 ../metaboxes.php:865
|
697 |
-
msgid "Three Column"
|
698 |
-
msgstr "Drei Spalten"
|
699 |
-
|
700 |
-
# @ virtue
|
701 |
-
#: ../metaboxes.php:438 ../metaboxes.php:866
|
702 |
-
msgid "Two Column"
|
703 |
-
msgstr "Zwei Spalten"
|
704 |
-
|
705 |
-
# @ virtue
|
706 |
-
#: ../metaboxes.php:439
|
707 |
-
#, fuzzy
|
708 |
-
msgid "Five Column"
|
709 |
-
msgstr "Vier Spalten"
|
710 |
-
|
711 |
-
# @ virtue
|
712 |
-
#: ../metaboxes.php:443 ../metaboxes.php:870
|
713 |
msgid "Portfolio Work Types"
|
714 |
msgstr "Portfolio Arbeitstypen"
|
715 |
|
716 |
# @ virtue
|
717 |
-
#: ../metaboxes.php:
|
718 |
msgid "Order Items By"
|
719 |
msgstr "Sortiere Einträge nach"
|
720 |
|
721 |
# @ virtue
|
722 |
-
#: ../metaboxes.php:
|
723 |
msgid "Items per Page"
|
724 |
msgstr "Einträge pro Seite"
|
725 |
|
726 |
# @ virtue
|
727 |
-
#: ../metaboxes.php:
|
728 |
msgid "How many portfolio items per page"
|
729 |
msgstr "Wie viele Portfolio-Einträge pro Seite"
|
730 |
|
731 |
# @ virtue
|
732 |
# @ redux-framework
|
733 |
-
#: ../metaboxes.php:
|
734 |
msgid "All"
|
735 |
msgstr "Alles"
|
736 |
|
737 |
# @ virtue
|
738 |
-
#: ../metaboxes.php:
|
739 |
#, fuzzy
|
740 |
msgid "Image Ratio?"
|
741 |
msgstr "Bild"
|
742 |
|
743 |
-
#: ../metaboxes.php:
|
744 |
msgid "Square 1:1"
|
745 |
msgstr ""
|
746 |
|
747 |
# @ virtue
|
748 |
-
#: ../metaboxes.php:
|
749 |
#, fuzzy
|
750 |
msgid "Portrait 3:4"
|
751 |
msgstr "Portraitbild"
|
752 |
|
753 |
# @ virtue
|
754 |
-
#: ../metaboxes.php:
|
755 |
#, fuzzy
|
756 |
msgid "Landscape 4:3"
|
757 |
msgstr "Querformatbild"
|
758 |
|
759 |
# @ virtue
|
760 |
-
#: ../metaboxes.php:
|
761 |
#, fuzzy
|
762 |
msgid "Wide Landscape 4:2"
|
763 |
msgstr "Querformatbild"
|
764 |
|
765 |
# @ virtue
|
766 |
-
#: ../metaboxes.php:
|
767 |
msgid "Display Item Work Types"
|
768 |
msgstr "Zeige Eintrag-Arbeitstypen"
|
769 |
|
770 |
# @ virtue
|
771 |
-
#: ../metaboxes.php:
|
772 |
msgid "Display Item Excerpt"
|
773 |
msgstr "Zeige Eintragsauszug"
|
774 |
|
775 |
# @ virtue
|
776 |
-
#: ../metaboxes.php:
|
777 |
#, fuzzy
|
778 |
msgid "Add Lightbox link in each item"
|
779 |
msgstr "Füge Lightbox-Link rechts oben zu jedem Element"
|
780 |
|
781 |
# @ virtue
|
782 |
-
#: ../metaboxes.php:
|
783 |
msgid "Feature Page Options"
|
784 |
msgstr "Feature Seiten-Optionen"
|
785 |
|
786 |
# @ virtue
|
787 |
-
#: ../metaboxes.php:
|
788 |
#, fuzzy
|
789 |
msgid "Header Options"
|
790 |
msgstr "Überschrift Optionen"
|
791 |
|
792 |
# @ virtue
|
793 |
-
#: ../metaboxes.php:
|
794 |
#, fuzzy
|
795 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
796 |
msgstr ""
|
797 |
"Wenn Bildslider, stelle sicher, dass die Bilder mindestens 1140px breit sind."
|
798 |
|
799 |
# @ virtue
|
800 |
-
#: ../metaboxes.php:
|
801 |
msgid "Page Title"
|
802 |
msgstr "Seitentitel"
|
803 |
|
804 |
# @ virtue
|
805 |
-
#: ../metaboxes.php:
|
806 |
msgid "Slider Images"
|
807 |
msgstr "Slider Bilder"
|
808 |
|
809 |
-
#: ../metaboxes.php:
|
810 |
msgid "Add for flex, carousel, and image carousel."
|
811 |
msgstr ""
|
812 |
|
813 |
# @ virtue
|
814 |
-
#: ../metaboxes.php:
|
815 |
#, fuzzy
|
816 |
msgid "If Cyclone Slider"
|
817 |
msgstr "Sliderkarussell"
|
818 |
|
819 |
-
#: ../metaboxes.php:
|
820 |
msgid ""
|
821 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
822 |
msgstr ""
|
823 |
|
824 |
# @ virtue
|
825 |
-
#: ../metaboxes.php:
|
826 |
#, fuzzy
|
827 |
msgid ""
|
828 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
@@ -832,136 +851,136 @@ msgstr ""
|
|
832 |
"Zahlen eingeben; Beispiel: 650, gilt nicht für Karussellslider)</b>"
|
833 |
|
834 |
# @ virtue
|
835 |
-
#: ../metaboxes.php:
|
836 |
msgid "If Video Post"
|
837 |
msgstr "Wenn Videobeitrag"
|
838 |
|
839 |
# @ virtue
|
840 |
-
#: ../metaboxes.php:
|
841 |
msgid "Contact Page Options"
|
842 |
msgstr "Kontaktseiten Optionen"
|
843 |
|
844 |
# @ virtue
|
845 |
-
#: ../metaboxes.php:
|
846 |
msgid "Use Contact Form"
|
847 |
msgstr "Benutze Kontaktformular"
|
848 |
|
849 |
# @ virtue
|
850 |
-
#: ../metaboxes.php:
|
851 |
msgid "Contact Form Title"
|
852 |
msgstr "Kontakt von Titel"
|
853 |
|
854 |
# @ virtue
|
855 |
-
#: ../metaboxes.php:
|
856 |
msgid "ex. Send us an Email"
|
857 |
msgstr "zB. Sende uns eine Email"
|
858 |
|
859 |
# @ virtue
|
860 |
-
#: ../metaboxes.php:
|
861 |
#, fuzzy
|
862 |
msgid "Contact Form Email Recipient"
|
863 |
msgstr "Kontakformular Email"
|
864 |
|
865 |
-
#: ../metaboxes.php:
|
866 |
msgid "ex. joe@gmail.com"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../metaboxes.php:
|
870 |
msgid "Use Simple Math Question"
|
871 |
msgstr ""
|
872 |
|
873 |
# @ virtue
|
874 |
-
#: ../metaboxes.php:
|
875 |
msgid "Use Map"
|
876 |
msgstr "Benutze Karte"
|
877 |
|
878 |
# @ virtue
|
879 |
-
#: ../metaboxes.php:
|
880 |
msgid "Address"
|
881 |
msgstr "Adresse"
|
882 |
|
883 |
# @ virtue
|
884 |
-
#: ../metaboxes.php:
|
885 |
msgid "Enter your Location"
|
886 |
msgstr "Ort eingeben"
|
887 |
|
888 |
# @ virtue
|
889 |
-
#: ../metaboxes.php:
|
890 |
msgid "Map Type"
|
891 |
msgstr "Kartentyp"
|
892 |
|
893 |
# @ virtue
|
894 |
-
#: ../metaboxes.php:
|
895 |
msgid "ROADMAP"
|
896 |
msgstr "STRASSENKARTE"
|
897 |
|
898 |
# @ virtue
|
899 |
-
#: ../metaboxes.php:
|
900 |
msgid "HYBRID"
|
901 |
msgstr "HYBRID"
|
902 |
|
903 |
# @ virtue
|
904 |
-
#: ../metaboxes.php:
|
905 |
msgid "TERRAIN"
|
906 |
msgstr "TERRAIN"
|
907 |
|
908 |
# @ virtue
|
909 |
-
#: ../metaboxes.php:
|
910 |
msgid "SATELLITE"
|
911 |
msgstr "SATELLIT"
|
912 |
|
913 |
# @ virtue
|
914 |
-
#: ../metaboxes.php:
|
915 |
msgid "Map Zoom Level"
|
916 |
msgstr "Karten Zoomstufe"
|
917 |
|
918 |
# @ virtue
|
919 |
-
#: ../metaboxes.php:
|
920 |
msgid "A good place to start is 15"
|
921 |
msgstr "Ein guter Ort für den Start ist 15"
|
922 |
|
923 |
# @ virtue
|
924 |
-
#: ../metaboxes.php:
|
925 |
msgid "1 (World View)"
|
926 |
msgstr "1 (Weltansicht)"
|
927 |
|
928 |
# @ virtue
|
929 |
-
#: ../metaboxes.php:
|
930 |
msgid "21 (Street View)"
|
931 |
msgstr "21 (Strassenansicht)"
|
932 |
|
933 |
# @ virtue
|
934 |
-
#: ../metaboxes.php:
|
935 |
msgid "Map Height"
|
936 |
msgstr "Kartenhöhe"
|
937 |
|
938 |
# @ virtue
|
939 |
-
#: ../metaboxes.php:
|
940 |
msgid "Default is 300"
|
941 |
msgstr "Standard ist 300"
|
942 |
|
943 |
# @ virtue
|
944 |
-
#: ../metaboxes.php:
|
945 |
msgid "Post Video Box"
|
946 |
msgstr "Videobox eintragen"
|
947 |
|
948 |
# @ virtue
|
949 |
-
#: ../metaboxes.php:
|
950 |
msgid "Beside"
|
951 |
msgstr "Neben"
|
952 |
|
953 |
# @ virtue
|
954 |
-
#: ../metaboxes.php:
|
955 |
msgid "Image Slider"
|
956 |
msgstr "Bilderslider"
|
957 |
|
958 |
# @ virtue
|
959 |
-
#: ../metaboxes.php:
|
960 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
961 |
msgstr "Standard ist: 450 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
962 |
|
963 |
# @ virtue
|
964 |
-
#: ../metaboxes.php:
|
965 |
msgid ""
|
966 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
967 |
"just input number, example: 650)</b>"
|
@@ -970,61 +989,67 @@ msgstr ""
|
|
970 |
"(Hinweis: nur Zahlen eingeben; Beispiel: 650)</b>"
|
971 |
|
972 |
# @ virtue
|
973 |
-
#: ../metaboxes.php:
|
974 |
#, fuzzy
|
975 |
msgid "Auto Play Slider?"
|
976 |
msgstr "Automatisch abspielen?"
|
977 |
|
978 |
# @ virtue
|
979 |
-
#: ../metaboxes.php:
|
980 |
msgid "Similar Portfolio Item Carousel"
|
981 |
msgstr "Ähnliche Portfolio-Einträge Karussell"
|
982 |
|
983 |
# @ virtue
|
984 |
-
#: ../metaboxes.php:
|
985 |
msgid "Display a carousel with similar portfolio items below project?"
|
986 |
msgstr "Zeige ein Karussell mit ähnlichen Portfolio-Einträgen unter Projekt?"
|
987 |
|
988 |
# @ virtue
|
989 |
-
#: ../metaboxes.php:
|
990 |
msgid "Yes - Display Recent Projects"
|
991 |
msgstr "Ja - Zeige rezente Projekte"
|
992 |
|
993 |
# @ virtue
|
994 |
-
#: ../metaboxes.php:
|
995 |
msgid "Set image height"
|
996 |
msgstr "Setze Bildhöhe"
|
997 |
|
998 |
# @ virtue
|
999 |
-
#: ../metaboxes.php:
|
1000 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
1001 |
msgstr ""
|
1002 |
"Standard ist 1:1 Verhältnis <b>(Hinweis: nur Zahlen eingeben, Bespiel: "
|
1003 |
"350)</b>"
|
1004 |
|
1005 |
# @ virtue
|
1006 |
-
#: ../metaboxes.php:
|
1007 |
msgid "Add Lightbox link in the top right of each item"
|
1008 |
msgstr "Füge Lightbox-Link rechts oben zu jedem Element"
|
1009 |
|
1010 |
# @ virtue
|
1011 |
-
#: ../metaboxes.php:
|
1012 |
msgid "Feature Options"
|
1013 |
msgstr "Feature Optionen"
|
1014 |
|
1015 |
# @ virtue
|
1016 |
-
#: ../metaboxes.php:
|
1017 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
1018 |
msgstr ""
|
1019 |
"Wenn Bildslider, stelle sicher, dass die Bilder mindestens 1140px breit sind."
|
1020 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1021 |
# @ virtue
|
1022 |
-
#: ../metaboxes.php:
|
1023 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
1024 |
msgstr "Standard ist: 400 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
1025 |
|
1026 |
# @ virtue
|
1027 |
-
#: ../metaboxes.php:
|
1028 |
msgid ""
|
1029 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
1030 |
"to Carousel slider)</b>"
|
@@ -1033,116 +1058,112 @@ msgstr ""
|
|
1033 |
"sich nicht auf Karussellslider)</b>"
|
1034 |
|
1035 |
# @ virtue
|
1036 |
-
#: ../metaboxes.php:
|
1037 |
msgid "Use Lightbox for Feature Image"
|
1038 |
msgstr "Verwende Lightbox für Feature-Bild"
|
1039 |
|
1040 |
# @ virtue
|
1041 |
-
#: ../metaboxes.php:
|
1042 |
msgid ""
|
1043 |
"If feature option is set to image, choose to use lightbox link with image."
|
1044 |
msgstr ""
|
1045 |
"Wenn Feature-Option auf Bild gestellt ist, nutze Lightbox Link mit Bild."
|
1046 |
|
1047 |
# @ redux-framework
|
1048 |
-
#: ../
|
1049 |
-
#, fuzzy
|
1050 |
-
msgid "Slider Gallery"
|
1051 |
-
msgstr "Galerie leeren"
|
1052 |
-
|
1053 |
-
# @ redux-framework
|
1054 |
-
#: ../page-contact.php:12 ../template-contact.php:7
|
1055 |
#, fuzzy
|
1056 |
msgid "This field is required."
|
1057 |
msgstr "Dieses Feld muß ein gültiges Datum haben."
|
1058 |
|
1059 |
# @ virtue
|
1060 |
-
#: ../page-contact.php:
|
1061 |
#, fuzzy
|
1062 |
msgid "Please enter a valid email address."
|
1063 |
msgstr "Bitte Email-Adresse eingeben."
|
1064 |
|
1065 |
-
#: ../page-contact.php:
|
1066 |
msgid "Check your math."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
# @ virtue
|
1070 |
-
#: ../page-contact.php:
|
1071 |
msgid "Please enter your name."
|
1072 |
msgstr "Bitte Namen eingeben."
|
1073 |
|
1074 |
# @ virtue
|
1075 |
-
#: ../page-contact.php:
|
1076 |
msgid "Please enter your email address."
|
1077 |
msgstr "Bitte Email-Adresse eingeben."
|
1078 |
|
1079 |
# @ virtue
|
1080 |
-
#: ../page-contact.php:
|
1081 |
msgid "You entered an invalid email address."
|
1082 |
msgstr "Sie haben eine ungültige Email-Adresse eingegeben."
|
1083 |
|
1084 |
# @ virtue
|
1085 |
-
#: ../page-contact.php:
|
1086 |
msgid "Please enter a message."
|
1087 |
msgstr "Bitte Nachricht eingeben."
|
1088 |
|
1089 |
# @ virtue
|
1090 |
-
#: ../page-contact.php:
|
1091 |
-
#: ../template-contact.php:
|
1092 |
#, fuzzy
|
1093 |
msgid "Contact"
|
1094 |
msgstr " Kontakt"
|
1095 |
|
1096 |
# @ virtue
|
1097 |
-
#: ../page-contact.php:
|
1098 |
msgid "From"
|
1099 |
msgstr "Von"
|
1100 |
|
1101 |
# @ virtue
|
1102 |
# @ woocommerce
|
1103 |
-
#: ../page-contact.php:
|
1104 |
msgid "Name"
|
1105 |
msgstr "Name"
|
1106 |
|
1107 |
# @ woocommerce
|
1108 |
-
#: ../page-contact.php:
|
1109 |
msgid "Email"
|
1110 |
msgstr "Email"
|
1111 |
|
1112 |
# @ virtue
|
1113 |
-
#: ../page-contact.php:
|
1114 |
#, fuzzy
|
1115 |
msgid "Comments"
|
1116 |
msgstr "Kommentar"
|
1117 |
|
1118 |
# @ virtue
|
1119 |
-
#: ../page-contact.php:
|
1120 |
msgid "Thanks, your email was sent successfully."
|
1121 |
msgstr "Danke, Ihre Email wurde erfolgreich gesendet."
|
1122 |
|
1123 |
# @ virtue
|
1124 |
-
#: ../page-contact.php:
|
1125 |
#, fuzzy
|
1126 |
msgid "Sorry, an error occured."
|
1127 |
msgstr "Leider ist ein Fehler aufgetreten."
|
1128 |
|
1129 |
# @ virtue
|
1130 |
-
#: ../page-contact.php:
|
1131 |
msgid "Name:"
|
1132 |
msgstr "Name:"
|
1133 |
|
1134 |
# @ virtue
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
|
|
1138 |
|
1139 |
# @ virtue
|
1140 |
-
#: ../page-contact.php:
|
1141 |
-
|
|
|
1142 |
msgstr "Nachricht: "
|
1143 |
|
1144 |
# @ virtue
|
1145 |
-
#: ../page-contact.php:
|
1146 |
msgid "Send Email"
|
1147 |
msgstr "Sende Email"
|
1148 |
|
@@ -1559,16 +1580,12 @@ msgid "YouTube Link"
|
|
1559 |
msgstr "Symbol Link"
|
1560 |
|
1561 |
# @ virtue
|
1562 |
-
|
1563 |
-
|
1564 |
-
msgid "Email:"
|
1565 |
-
msgstr "Email:"
|
1566 |
|
1567 |
# @ virtue
|
1568 |
-
|
1569 |
-
|
1570 |
-
msgid "Message:"
|
1571 |
-
msgstr "Nachricht: "
|
1572 |
|
1573 |
# @ virtue
|
1574 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-19 15:53-0700\n"
|
6 |
+
"PO-Revision-Date: 2015-11-19 15:53-0700\n"
|
7 |
"Last-Translator: Georg Trixl <schick_post@gmx.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 1.8.5\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
59 |
# @ redux-framework
|
60 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
61 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
62 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:282
|
63 |
msgid "Remove"
|
64 |
msgstr "Entfernen"
|
65 |
|
75 |
|
76 |
# @ virtue
|
77 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
78 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:760 ../cmb/init.php:281
|
79 |
#, fuzzy
|
80 |
msgid "Remove Image"
|
81 |
msgstr "Entferne Bild"
|
82 |
|
83 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
84 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:283
|
85 |
msgid "File:"
|
86 |
msgstr ""
|
87 |
|
88 |
# @ redux-framework
|
89 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
90 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:284
|
91 |
msgid "Download"
|
92 |
msgstr "Herunterladen"
|
93 |
|
98 |
# @ virtue
|
99 |
# @ redux-framework
|
100 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
101 |
+
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:381
|
102 |
+
#: ../metaboxes.php:392 ../metaboxes.php:427 ../metaboxes.php:438
|
103 |
+
#: ../metaboxes.php:503
|
104 |
msgid "Default"
|
105 |
msgstr "Standard"
|
106 |
|
116 |
msgid "Current Color"
|
117 |
msgstr "Hauptfarbe"
|
118 |
|
119 |
+
#: ../cmb/init.php:280
|
120 |
+
msgid "Use this file"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
# @ woocommerce
|
124 |
#: ../cmb/init.php:288
|
125 |
#, fuzzy
|
230 |
msgstr ""
|
231 |
|
232 |
# @ virtue
|
233 |
+
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:258
|
234 |
+
#: ../metaboxes.php:753
|
235 |
msgid "None"
|
236 |
msgstr "Kein"
|
237 |
|
242 |
msgstr "Beitrags Galerie"
|
243 |
|
244 |
# @ virtue
|
245 |
+
#: ../metaboxes.php:148 ../metaboxes.php:992 ../metaboxes.php:1138
|
246 |
#, fuzzy
|
247 |
msgid "Add images for gallery here"
|
248 |
msgstr "Bilder zur Galerie hinzufügen"
|
254 |
msgstr "Max Bild/Slider Höhe"
|
255 |
|
256 |
# @ virtue
|
257 |
+
#: ../metaboxes.php:154 ../metaboxes.php:567
|
258 |
#, fuzzy
|
259 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
260 |
msgstr "Standard ist: 400 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
315 |
msgstr "Blogbeitrag Standards"
|
316 |
|
317 |
# @ virtue
|
318 |
+
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:550
|
319 |
+
#: ../metaboxes.php:752 ../metaboxes.php:986
|
320 |
msgid "Video"
|
321 |
msgstr "Video"
|
322 |
|
355 |
msgstr ""
|
356 |
|
357 |
# @ virtue
|
358 |
+
#: ../metaboxes.php:228 ../metaboxes.php:724
|
359 |
msgid "Portfolio Post Options"
|
360 |
msgstr "Portfolio Beitragsoptionen"
|
361 |
|
362 |
# @ virtue
|
363 |
+
#: ../metaboxes.php:236 ../metaboxes.php:732
|
364 |
msgid "Project Layout"
|
365 |
msgstr "Projektlayout"
|
366 |
|
377 |
msgstr "Neben"
|
378 |
|
379 |
# @ virtue
|
380 |
+
#: ../metaboxes.php:243 ../metaboxes.php:738
|
381 |
msgid "Above"
|
382 |
msgstr "Über"
|
383 |
|
384 |
# @ virtue
|
385 |
+
#: ../metaboxes.php:244 ../metaboxes.php:739
|
386 |
msgid "Three Rows"
|
387 |
msgstr "Drei Reihen"
|
388 |
|
389 |
# @ virtue
|
390 |
+
#: ../metaboxes.php:248 ../metaboxes.php:743
|
391 |
msgid "Project Options"
|
392 |
msgstr "Projektoptionen"
|
393 |
|
394 |
# @ virtue
|
395 |
+
#: ../metaboxes.php:253 ../metaboxes.php:748 ../metaboxes.php:987
|
396 |
msgid "Image"
|
397 |
msgstr "Bild"
|
398 |
|
399 |
# @ virtue
|
400 |
+
#: ../metaboxes.php:254 ../metaboxes.php:548
|
401 |
#, fuzzy
|
402 |
msgid "Image Slider (Flex Slider)"
|
403 |
msgstr "Bilderslider"
|
404 |
|
405 |
# @ virtue
|
406 |
+
#: ../metaboxes.php:255 ../metaboxes.php:549 ../metaboxes.php:750
|
407 |
msgid "Carousel Slider"
|
408 |
msgstr "Sliderkarussell"
|
409 |
|
410 |
+
#: ../metaboxes.php:257 ../metaboxes.php:751
|
411 |
+
msgid "Image Grid"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: ../metaboxes.php:262 ../metaboxes.php:757
|
415 |
+
msgid "Columns (Only for Image Grid option)"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
# @ virtue
|
419 |
+
#: ../metaboxes.php:267 ../metaboxes.php:450 ../metaboxes.php:762
|
420 |
+
#: ../metaboxes.php:892
|
421 |
+
msgid "Four Column"
|
422 |
+
msgstr "Vier Spalten"
|
423 |
+
|
424 |
+
# @ virtue
|
425 |
+
#: ../metaboxes.php:268 ../metaboxes.php:451 ../metaboxes.php:763
|
426 |
+
#: ../metaboxes.php:893
|
427 |
+
msgid "Three Column"
|
428 |
+
msgstr "Drei Spalten"
|
429 |
+
|
430 |
+
# @ virtue
|
431 |
+
#: ../metaboxes.php:269 ../metaboxes.php:452 ../metaboxes.php:764
|
432 |
+
#: ../metaboxes.php:894
|
433 |
+
msgid "Two Column"
|
434 |
+
msgstr "Zwei Spalten"
|
435 |
+
|
436 |
# @ virtue
|
437 |
+
#: ../metaboxes.php:270 ../metaboxes.php:453 ../metaboxes.php:765
|
438 |
+
#, fuzzy
|
439 |
+
msgid "Five Column"
|
440 |
+
msgstr "Vier Spalten"
|
441 |
+
|
442 |
+
#: ../metaboxes.php:271 ../metaboxes.php:766
|
443 |
+
msgid "Six Column"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
# @ virtue
|
447 |
+
#: ../metaboxes.php:275
|
448 |
#, fuzzy
|
449 |
msgid "Portfolio Slider/Images"
|
450 |
msgstr "Portolio Slider Bilder"
|
451 |
|
452 |
# @ virtue
|
453 |
+
#: ../metaboxes.php:276
|
454 |
#, fuzzy
|
455 |
msgid "Add images for post here"
|
456 |
msgstr "Bilder zur Galerie hinzufügen"
|
457 |
|
458 |
# @ virtue
|
459 |
+
#: ../metaboxes.php:281 ../metaboxes.php:566 ../metaboxes.php:770
|
460 |
+
#: ../metaboxes.php:997
|
461 |
msgid "Max Image/Slider Height"
|
462 |
msgstr "Max Bild/Slider Höhe"
|
463 |
|
464 |
# @ virtue
|
465 |
+
#: ../metaboxes.php:282
|
466 |
#, fuzzy
|
467 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
468 |
msgstr "Standard ist: 450 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
469 |
|
470 |
# @ virtue
|
471 |
+
#: ../metaboxes.php:287 ../metaboxes.php:572 ../metaboxes.php:776
|
472 |
+
#: ../metaboxes.php:1003
|
473 |
msgid "Max Image/Slider Width"
|
474 |
msgstr "Max Bild/Slider Breite"
|
475 |
|
476 |
# @ virtue
|
477 |
+
#: ../metaboxes.php:288
|
478 |
#, fuzzy
|
479 |
msgid ""
|
480 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
484 |
"(Hinweis: nur Zahlen eingeben; Beispiel: 650)</b>"
|
485 |
|
486 |
# @ virtue
|
487 |
+
#: ../metaboxes.php:293 ../metaboxes.php:792
|
488 |
msgid "Value 01 Title"
|
489 |
msgstr "Wert 01 Titel"
|
490 |
|
491 |
# @ virtue
|
492 |
+
#: ../metaboxes.php:294 ../metaboxes.php:793
|
493 |
msgid "ex. Project Type:"
|
494 |
msgstr "zB. Projekttyp:"
|
495 |
|
496 |
# @ virtue
|
497 |
+
#: ../metaboxes.php:299 ../metaboxes.php:798
|
498 |
msgid "Value 01 Description"
|
499 |
msgstr "Wert 01 Beschreibung"
|
500 |
|
501 |
# @ virtue
|
502 |
+
#: ../metaboxes.php:300 ../metaboxes.php:799
|
503 |
msgid "ex. Character Illustration"
|
504 |
msgstr "zB. Zeichen-Illustration"
|
505 |
|
506 |
# @ virtue
|
507 |
+
#: ../metaboxes.php:305 ../metaboxes.php:804
|
508 |
msgid "Value 02 Title"
|
509 |
msgstr "Wert 02 Titel"
|
510 |
|
511 |
# @ virtue
|
512 |
+
#: ../metaboxes.php:306 ../metaboxes.php:805
|
513 |
msgid "ex. Skills Needed:"
|
514 |
msgstr "zB. benötigte Fähigkeiten:"
|
515 |
|
516 |
# @ virtue
|
517 |
+
#: ../metaboxes.php:311 ../metaboxes.php:810
|
518 |
msgid "Value 02 Description"
|
519 |
msgstr "Wert 02 Beschreibung"
|
520 |
|
521 |
# @ virtue
|
522 |
+
#: ../metaboxes.php:312 ../metaboxes.php:811
|
523 |
msgid "ex. Photoshop, Illustrator"
|
524 |
msgstr "zB.: Photoshop, Illustrator"
|
525 |
|
526 |
# @ virtue
|
527 |
+
#: ../metaboxes.php:317 ../metaboxes.php:816
|
528 |
msgid "Value 03 Title"
|
529 |
msgstr "Wert 03 Titel"
|
530 |
|
531 |
# @ virtue
|
532 |
+
#: ../metaboxes.php:318 ../metaboxes.php:817
|
533 |
msgid "ex. Customer:"
|
534 |
msgstr "zB. Kunde:"
|
535 |
|
536 |
# @ virtue
|
537 |
+
#: ../metaboxes.php:323 ../metaboxes.php:822
|
538 |
msgid "Value 03 Description"
|
539 |
msgstr "Wert 03 Beschreibung"
|
540 |
|
541 |
# @ virtue
|
542 |
+
#: ../metaboxes.php:324 ../metaboxes.php:823
|
543 |
msgid "ex. Example Inc"
|
544 |
msgstr "zB. Muster GmbH"
|
545 |
|
546 |
# @ virtue
|
547 |
+
#: ../metaboxes.php:329 ../metaboxes.php:828
|
548 |
msgid "Value 04 Title"
|
549 |
msgstr "Wert 04 Titel"
|
550 |
|
551 |
# @ virtue
|
552 |
+
#: ../metaboxes.php:330 ../metaboxes.php:829
|
553 |
msgid "ex. Project Year:"
|
554 |
msgstr "zB. Projektjahr:"
|
555 |
|
556 |
# @ virtue
|
557 |
+
#: ../metaboxes.php:335 ../metaboxes.php:834
|
558 |
msgid "Value 04 Description"
|
559 |
msgstr "Wert 04 Beschreibung"
|
560 |
|
561 |
# @ virtue
|
562 |
+
#: ../metaboxes.php:336 ../metaboxes.php:835
|
563 |
msgid "ex. 2013"
|
564 |
msgstr "zB. 2013"
|
565 |
|
566 |
# @ virtue
|
567 |
+
#: ../metaboxes.php:341 ../metaboxes.php:840
|
568 |
msgid "External Website"
|
569 |
msgstr "Externe Webseite"
|
570 |
|
571 |
# @ virtue
|
572 |
+
#: ../metaboxes.php:342 ../metaboxes.php:841
|
573 |
msgid "ex. Website:"
|
574 |
msgstr "zB. Webseite:"
|
575 |
|
576 |
# @ virtue
|
577 |
+
#: ../metaboxes.php:347 ../metaboxes.php:846
|
578 |
msgid "Website Address"
|
579 |
msgstr "Webseiten-Adresse"
|
580 |
|
581 |
# @ virtue
|
582 |
+
#: ../metaboxes.php:348 ../metaboxes.php:847
|
583 |
msgid "ex. http://www.example.com"
|
584 |
msgstr "zB. http://www.example.com"
|
585 |
|
586 |
# @ virtue
|
587 |
+
#: ../metaboxes.php:353 ../metaboxes.php:852
|
588 |
msgid "If Video Project"
|
589 |
msgstr "Wenn Video-Projekt"
|
590 |
|
591 |
# @ virtue
|
592 |
+
#: ../metaboxes.php:354 ../metaboxes.php:579 ../metaboxes.php:716
|
593 |
+
#: ../metaboxes.php:853 ../metaboxes.php:1020
|
594 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
595 |
msgstr "Hier eingebetteten Code eingeben, funktioniert mit youtube, vimeo..."
|
596 |
|
597 |
# @ virtue
|
598 |
+
#: ../metaboxes.php:363
|
599 |
#, fuzzy
|
600 |
msgid "Bottom Carousel Options"
|
601 |
msgstr "Kontaktseiten Optionen"
|
602 |
|
603 |
# @ virtue
|
604 |
+
#: ../metaboxes.php:370 ../metaboxes.php:868
|
605 |
msgid "Carousel Title"
|
606 |
msgstr "Karusselltitel"
|
607 |
|
608 |
# @ virtue
|
609 |
+
#: ../metaboxes.php:371 ../metaboxes.php:869
|
610 |
msgid "ex. Similar Projects"
|
611 |
msgstr "zB. ähnliche Projekte"
|
612 |
|
613 |
# @ virtue
|
614 |
+
#: ../metaboxes.php:376
|
615 |
#, fuzzy
|
616 |
msgid "Bottom Portfolio Carousel"
|
617 |
msgstr "Portofolio-Karussell"
|
618 |
|
619 |
# @ virtue
|
620 |
+
#: ../metaboxes.php:377
|
621 |
#, fuzzy
|
622 |
msgid "Display a carousel with portfolio items below project?"
|
623 |
msgstr "Zeige ein Karussell mit ähnlichen Portfolio-Einträgen unter Projekt?"
|
624 |
|
625 |
# @ virtue
|
626 |
+
#: ../metaboxes.php:382 ../metaboxes.php:602 ../metaboxes.php:624
|
627 |
+
#: ../metaboxes.php:633 ../metaboxes.php:788 ../metaboxes.php:863
|
628 |
+
#: ../metaboxes.php:963 ../metaboxes.php:1015 ../metaboxes.php:1043
|
629 |
+
#: ../metaboxes.php:1059 ../metaboxes.php:1068
|
630 |
msgid "No"
|
631 |
msgstr "Nein"
|
632 |
|
633 |
# @ virtue
|
634 |
+
#: ../metaboxes.php:383 ../metaboxes.php:601 ../metaboxes.php:623
|
635 |
+
#: ../metaboxes.php:634 ../metaboxes.php:787 ../metaboxes.php:964
|
636 |
+
#: ../metaboxes.php:1014 ../metaboxes.php:1042 ../metaboxes.php:1058
|
637 |
+
#: ../metaboxes.php:1069
|
638 |
msgid "Yes"
|
639 |
msgstr "Ja"
|
640 |
|
641 |
# @ virtue
|
642 |
+
#: ../metaboxes.php:387
|
643 |
#, fuzzy
|
644 |
msgid "Carousel Items"
|
645 |
msgstr "Karusselltitel"
|
646 |
|
647 |
# @ virtue
|
648 |
+
#: ../metaboxes.php:393
|
649 |
#, fuzzy
|
650 |
msgid "All Portfolio Posts"
|
651 |
msgstr "Portfolio Beitragsoptionen"
|
652 |
|
653 |
+
#: ../metaboxes.php:394
|
654 |
msgid "Only of same Portfolio Type"
|
655 |
msgstr ""
|
656 |
|
657 |
# @ virtue
|
658 |
+
#: ../metaboxes.php:398
|
659 |
#, fuzzy
|
660 |
msgid "Carousel Order"
|
661 |
msgstr "Sliderkarussell"
|
662 |
|
663 |
# @ virtue
|
664 |
+
#: ../metaboxes.php:403 ../metaboxes.php:468 ../metaboxes.php:910
|
665 |
msgid "Menu Order"
|
666 |
msgstr "Menü Anordnung"
|
667 |
|
668 |
# @ virtue
|
669 |
# @ redux-framework
|
670 |
+
#: ../metaboxes.php:404 ../metaboxes.php:469 ../metaboxes.php:911
|
671 |
msgid "Title"
|
672 |
msgstr "Titel"
|
673 |
|
674 |
# @ virtue
|
675 |
+
#: ../metaboxes.php:405 ../metaboxes.php:470 ../metaboxes.php:912
|
676 |
msgid "Date"
|
677 |
msgstr "Datum"
|
678 |
|
679 |
# @ virtue
|
680 |
+
#: ../metaboxes.php:406 ../metaboxes.php:471 ../metaboxes.php:913
|
681 |
msgid "Random"
|
682 |
msgstr "Zufall"
|
683 |
|
684 |
# @ virtue
|
685 |
+
#: ../metaboxes.php:414 ../metaboxes.php:878
|
686 |
msgid "Portfolio Page Options"
|
687 |
msgstr "Portfolio Seitenoptionen"
|
688 |
|
689 |
# @ redux-framework
|
690 |
+
#: ../metaboxes.php:422 ../shortcodes/pullquote/quote_popup.php:59
|
691 |
msgid "Style"
|
692 |
msgstr "Stil"
|
693 |
|
694 |
# @ virtue
|
695 |
+
#: ../metaboxes.php:428
|
696 |
#, fuzzy
|
697 |
msgid "Post Boxes"
|
698 |
msgstr "Videobox eintragen"
|
699 |
|
700 |
+
#: ../metaboxes.php:429
|
701 |
msgid "Flat with Margin"
|
702 |
msgstr ""
|
703 |
|
704 |
# @ redux-framework
|
705 |
+
#: ../metaboxes.php:433
|
706 |
#, fuzzy
|
707 |
msgid "Hover Style"
|
708 |
msgstr "Randstil"
|
709 |
|
710 |
# @ redux-framework
|
711 |
+
#: ../metaboxes.php:439
|
712 |
#, fuzzy
|
713 |
msgid "Light"
|
714 |
msgstr "Rechts"
|
715 |
|
716 |
+
#: ../metaboxes.php:440
|
717 |
msgid "Dark"
|
718 |
msgstr ""
|
719 |
|
720 |
# @ virtue
|
721 |
+
#: ../metaboxes.php:441 ../shortcodes/btns/btns_popup.php:134
|
722 |
msgid "Primary Color"
|
723 |
msgstr "Hauptfarbe"
|
724 |
|
725 |
# @ virtue
|
726 |
+
#: ../metaboxes.php:445 ../metaboxes.php:887
|
727 |
msgid "Columns"
|
728 |
msgstr "Spalten"
|
729 |
|
730 |
# @ virtue
|
731 |
+
#: ../metaboxes.php:457 ../metaboxes.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
msgid "Portfolio Work Types"
|
733 |
msgstr "Portfolio Arbeitstypen"
|
734 |
|
735 |
# @ virtue
|
736 |
+
#: ../metaboxes.php:463 ../metaboxes.php:905
|
737 |
msgid "Order Items By"
|
738 |
msgstr "Sortiere Einträge nach"
|
739 |
|
740 |
# @ virtue
|
741 |
+
#: ../metaboxes.php:475 ../metaboxes.php:917
|
742 |
msgid "Items per Page"
|
743 |
msgstr "Einträge pro Seite"
|
744 |
|
745 |
# @ virtue
|
746 |
+
#: ../metaboxes.php:476 ../metaboxes.php:918
|
747 |
msgid "How many portfolio items per page"
|
748 |
msgstr "Wie viele Portfolio-Einträge pro Seite"
|
749 |
|
750 |
# @ virtue
|
751 |
# @ redux-framework
|
752 |
+
#: ../metaboxes.php:480 ../metaboxes.php:922
|
753 |
msgid "All"
|
754 |
msgstr "Alles"
|
755 |
|
756 |
# @ virtue
|
757 |
+
#: ../metaboxes.php:498
|
758 |
#, fuzzy
|
759 |
msgid "Image Ratio?"
|
760 |
msgstr "Bild"
|
761 |
|
762 |
+
#: ../metaboxes.php:504
|
763 |
msgid "Square 1:1"
|
764 |
msgstr ""
|
765 |
|
766 |
# @ virtue
|
767 |
+
#: ../metaboxes.php:505
|
768 |
#, fuzzy
|
769 |
msgid "Portrait 3:4"
|
770 |
msgstr "Portraitbild"
|
771 |
|
772 |
# @ virtue
|
773 |
+
#: ../metaboxes.php:506
|
774 |
#, fuzzy
|
775 |
msgid "Landscape 4:3"
|
776 |
msgstr "Querformatbild"
|
777 |
|
778 |
# @ virtue
|
779 |
+
#: ../metaboxes.php:507
|
780 |
#, fuzzy
|
781 |
msgid "Wide Landscape 4:2"
|
782 |
msgstr "Querformatbild"
|
783 |
|
784 |
# @ virtue
|
785 |
+
#: ../metaboxes.php:511 ../metaboxes.php:946
|
786 |
msgid "Display Item Work Types"
|
787 |
msgstr "Zeige Eintrag-Arbeitstypen"
|
788 |
|
789 |
# @ virtue
|
790 |
+
#: ../metaboxes.php:517 ../metaboxes.php:952
|
791 |
msgid "Display Item Excerpt"
|
792 |
msgstr "Zeige Eintragsauszug"
|
793 |
|
794 |
# @ virtue
|
795 |
+
#: ../metaboxes.php:523
|
796 |
#, fuzzy
|
797 |
msgid "Add Lightbox link in each item"
|
798 |
msgstr "Füge Lightbox-Link rechts oben zu jedem Element"
|
799 |
|
800 |
# @ virtue
|
801 |
+
#: ../metaboxes.php:532 ../metaboxes.php:971
|
802 |
msgid "Feature Page Options"
|
803 |
msgstr "Feature Seiten-Optionen"
|
804 |
|
805 |
# @ virtue
|
806 |
+
#: ../metaboxes.php:541
|
807 |
#, fuzzy
|
808 |
msgid "Header Options"
|
809 |
msgstr "Überschrift Optionen"
|
810 |
|
811 |
# @ virtue
|
812 |
+
#: ../metaboxes.php:542
|
813 |
#, fuzzy
|
814 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
815 |
msgstr ""
|
816 |
"Wenn Bildslider, stelle sicher, dass die Bilder mindestens 1140px breit sind."
|
817 |
|
818 |
# @ virtue
|
819 |
+
#: ../metaboxes.php:547
|
820 |
msgid "Page Title"
|
821 |
msgstr "Seitentitel"
|
822 |
|
823 |
# @ virtue
|
824 |
+
#: ../metaboxes.php:554 ../metaboxes.php:1130
|
825 |
msgid "Slider Images"
|
826 |
msgstr "Slider Bilder"
|
827 |
|
828 |
+
#: ../metaboxes.php:555
|
829 |
msgid "Add for flex, carousel, and image carousel."
|
830 |
msgstr ""
|
831 |
|
832 |
# @ virtue
|
833 |
+
#: ../metaboxes.php:560
|
834 |
#, fuzzy
|
835 |
msgid "If Cyclone Slider"
|
836 |
msgstr "Sliderkarussell"
|
837 |
|
838 |
+
#: ../metaboxes.php:561
|
839 |
msgid ""
|
840 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
841 |
msgstr ""
|
842 |
|
843 |
# @ virtue
|
844 |
+
#: ../metaboxes.php:573
|
845 |
#, fuzzy
|
846 |
msgid ""
|
847 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
851 |
"Zahlen eingeben; Beispiel: 650, gilt nicht für Karussellslider)</b>"
|
852 |
|
853 |
# @ virtue
|
854 |
+
#: ../metaboxes.php:578 ../metaboxes.php:715 ../metaboxes.php:1019
|
855 |
msgid "If Video Post"
|
856 |
msgstr "Wenn Videobeitrag"
|
857 |
|
858 |
# @ virtue
|
859 |
+
#: ../metaboxes.php:587 ../metaboxes.php:1028
|
860 |
msgid "Contact Page Options"
|
861 |
msgstr "Kontaktseiten Optionen"
|
862 |
|
863 |
# @ virtue
|
864 |
+
#: ../metaboxes.php:596 ../metaboxes.php:1037
|
865 |
msgid "Use Contact Form"
|
866 |
msgstr "Benutze Kontaktformular"
|
867 |
|
868 |
# @ virtue
|
869 |
+
#: ../metaboxes.php:606 ../metaboxes.php:1047
|
870 |
msgid "Contact Form Title"
|
871 |
msgstr "Kontakt von Titel"
|
872 |
|
873 |
# @ virtue
|
874 |
+
#: ../metaboxes.php:607 ../metaboxes.php:1048
|
875 |
msgid "ex. Send us an Email"
|
876 |
msgstr "zB. Sende uns eine Email"
|
877 |
|
878 |
# @ virtue
|
879 |
+
#: ../metaboxes.php:612
|
880 |
#, fuzzy
|
881 |
msgid "Contact Form Email Recipient"
|
882 |
msgstr "Kontakformular Email"
|
883 |
|
884 |
+
#: ../metaboxes.php:613
|
885 |
msgid "ex. joe@gmail.com"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: ../metaboxes.php:618 ../metaboxes.php:1053
|
889 |
msgid "Use Simple Math Question"
|
890 |
msgstr ""
|
891 |
|
892 |
# @ virtue
|
893 |
+
#: ../metaboxes.php:628 ../metaboxes.php:1063
|
894 |
msgid "Use Map"
|
895 |
msgstr "Benutze Karte"
|
896 |
|
897 |
# @ virtue
|
898 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
899 |
msgid "Address"
|
900 |
msgstr "Adresse"
|
901 |
|
902 |
# @ virtue
|
903 |
+
#: ../metaboxes.php:639 ../metaboxes.php:1074
|
904 |
msgid "Enter your Location"
|
905 |
msgstr "Ort eingeben"
|
906 |
|
907 |
# @ virtue
|
908 |
+
#: ../metaboxes.php:644 ../metaboxes.php:1079
|
909 |
msgid "Map Type"
|
910 |
msgstr "Kartentyp"
|
911 |
|
912 |
# @ virtue
|
913 |
+
#: ../metaboxes.php:649 ../metaboxes.php:1084
|
914 |
msgid "ROADMAP"
|
915 |
msgstr "STRASSENKARTE"
|
916 |
|
917 |
# @ virtue
|
918 |
+
#: ../metaboxes.php:650 ../metaboxes.php:1085
|
919 |
msgid "HYBRID"
|
920 |
msgstr "HYBRID"
|
921 |
|
922 |
# @ virtue
|
923 |
+
#: ../metaboxes.php:651 ../metaboxes.php:1086
|
924 |
msgid "TERRAIN"
|
925 |
msgstr "TERRAIN"
|
926 |
|
927 |
# @ virtue
|
928 |
+
#: ../metaboxes.php:652 ../metaboxes.php:1087
|
929 |
msgid "SATELLITE"
|
930 |
msgstr "SATELLIT"
|
931 |
|
932 |
# @ virtue
|
933 |
+
#: ../metaboxes.php:656 ../metaboxes.php:1091
|
934 |
msgid "Map Zoom Level"
|
935 |
msgstr "Karten Zoomstufe"
|
936 |
|
937 |
# @ virtue
|
938 |
+
#: ../metaboxes.php:657 ../metaboxes.php:1092
|
939 |
msgid "A good place to start is 15"
|
940 |
msgstr "Ein guter Ort für den Start ist 15"
|
941 |
|
942 |
# @ virtue
|
943 |
+
#: ../metaboxes.php:662 ../metaboxes.php:1097
|
944 |
msgid "1 (World View)"
|
945 |
msgstr "1 (Weltansicht)"
|
946 |
|
947 |
# @ virtue
|
948 |
+
#: ../metaboxes.php:682 ../metaboxes.php:1117
|
949 |
msgid "21 (Street View)"
|
950 |
msgstr "21 (Strassenansicht)"
|
951 |
|
952 |
# @ virtue
|
953 |
+
#: ../metaboxes.php:686 ../metaboxes.php:1121
|
954 |
msgid "Map Height"
|
955 |
msgstr "Kartenhöhe"
|
956 |
|
957 |
# @ virtue
|
958 |
+
#: ../metaboxes.php:687 ../metaboxes.php:1122
|
959 |
msgid "Default is 300"
|
960 |
msgstr "Standard ist 300"
|
961 |
|
962 |
# @ virtue
|
963 |
+
#: ../metaboxes.php:707
|
964 |
msgid "Post Video Box"
|
965 |
msgstr "Videobox eintragen"
|
966 |
|
967 |
# @ virtue
|
968 |
+
#: ../metaboxes.php:737
|
969 |
msgid "Beside"
|
970 |
msgstr "Neben"
|
971 |
|
972 |
# @ virtue
|
973 |
+
#: ../metaboxes.php:749 ../metaboxes.php:985
|
974 |
msgid "Image Slider"
|
975 |
msgstr "Bilderslider"
|
976 |
|
977 |
# @ virtue
|
978 |
+
#: ../metaboxes.php:771
|
979 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
980 |
msgstr "Standard ist: 450 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
981 |
|
982 |
# @ virtue
|
983 |
+
#: ../metaboxes.php:777
|
984 |
msgid ""
|
985 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
986 |
"just input number, example: 650)</b>"
|
989 |
"(Hinweis: nur Zahlen eingeben; Beispiel: 650)</b>"
|
990 |
|
991 |
# @ virtue
|
992 |
+
#: ../metaboxes.php:782
|
993 |
#, fuzzy
|
994 |
msgid "Auto Play Slider?"
|
995 |
msgstr "Automatisch abspielen?"
|
996 |
|
997 |
# @ virtue
|
998 |
+
#: ../metaboxes.php:858
|
999 |
msgid "Similar Portfolio Item Carousel"
|
1000 |
msgstr "Ähnliche Portfolio-Einträge Karussell"
|
1001 |
|
1002 |
# @ virtue
|
1003 |
+
#: ../metaboxes.php:859
|
1004 |
msgid "Display a carousel with similar portfolio items below project?"
|
1005 |
msgstr "Zeige ein Karussell mit ähnlichen Portfolio-Einträgen unter Projekt?"
|
1006 |
|
1007 |
# @ virtue
|
1008 |
+
#: ../metaboxes.php:864
|
1009 |
msgid "Yes - Display Recent Projects"
|
1010 |
msgstr "Ja - Zeige rezente Projekte"
|
1011 |
|
1012 |
# @ virtue
|
1013 |
+
#: ../metaboxes.php:940
|
1014 |
msgid "Set image height"
|
1015 |
msgstr "Setze Bildhöhe"
|
1016 |
|
1017 |
# @ virtue
|
1018 |
+
#: ../metaboxes.php:941
|
1019 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
1020 |
msgstr ""
|
1021 |
"Standard ist 1:1 Verhältnis <b>(Hinweis: nur Zahlen eingeben, Bespiel: "
|
1022 |
"350)</b>"
|
1023 |
|
1024 |
# @ virtue
|
1025 |
+
#: ../metaboxes.php:958
|
1026 |
msgid "Add Lightbox link in the top right of each item"
|
1027 |
msgstr "Füge Lightbox-Link rechts oben zu jedem Element"
|
1028 |
|
1029 |
# @ virtue
|
1030 |
+
#: ../metaboxes.php:980
|
1031 |
msgid "Feature Options"
|
1032 |
msgstr "Feature Optionen"
|
1033 |
|
1034 |
# @ virtue
|
1035 |
+
#: ../metaboxes.php:981
|
1036 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
1037 |
msgstr ""
|
1038 |
"Wenn Bildslider, stelle sicher, dass die Bilder mindestens 1140px breit sind."
|
1039 |
|
1040 |
+
# @ redux-framework
|
1041 |
+
#: ../metaboxes.php:991 ../metaboxes.php:1137
|
1042 |
+
#, fuzzy
|
1043 |
+
msgid "Slider Gallery"
|
1044 |
+
msgstr "Galerie leeren"
|
1045 |
+
|
1046 |
# @ virtue
|
1047 |
+
#: ../metaboxes.php:998
|
1048 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
1049 |
msgstr "Standard ist: 400 <b>(Hinweis: nur Zahlen eingeben; Beispiel: 350)</b>"
|
1050 |
|
1051 |
# @ virtue
|
1052 |
+
#: ../metaboxes.php:1004
|
1053 |
msgid ""
|
1054 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
1055 |
"to Carousel slider)</b>"
|
1058 |
"sich nicht auf Karussellslider)</b>"
|
1059 |
|
1060 |
# @ virtue
|
1061 |
+
#: ../metaboxes.php:1009
|
1062 |
msgid "Use Lightbox for Feature Image"
|
1063 |
msgstr "Verwende Lightbox für Feature-Bild"
|
1064 |
|
1065 |
# @ virtue
|
1066 |
+
#: ../metaboxes.php:1010
|
1067 |
msgid ""
|
1068 |
"If feature option is set to image, choose to use lightbox link with image."
|
1069 |
msgstr ""
|
1070 |
"Wenn Feature-Option auf Bild gestellt ist, nutze Lightbox Link mit Bild."
|
1071 |
|
1072 |
# @ redux-framework
|
1073 |
+
#: ../page-contact.php:13 ../template-contact.php:13
|
|
|
|
|
|
|
|
|
|
|
|
|
1074 |
#, fuzzy
|
1075 |
msgid "This field is required."
|
1076 |
msgstr "Dieses Feld muß ein gültiges Datum haben."
|
1077 |
|
1078 |
# @ virtue
|
1079 |
+
#: ../page-contact.php:14 ../template-contact.php:14
|
1080 |
#, fuzzy
|
1081 |
msgid "Please enter a valid email address."
|
1082 |
msgstr "Bitte Email-Adresse eingeben."
|
1083 |
|
1084 |
+
#: ../page-contact.php:97 ../template-contact.php:98
|
1085 |
msgid "Check your math."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
# @ virtue
|
1089 |
+
#: ../page-contact.php:102 ../template-contact.php:103
|
1090 |
msgid "Please enter your name."
|
1091 |
msgstr "Bitte Namen eingeben."
|
1092 |
|
1093 |
# @ virtue
|
1094 |
+
#: ../page-contact.php:109 ../template-contact.php:110
|
1095 |
msgid "Please enter your email address."
|
1096 |
msgstr "Bitte Email-Adresse eingeben."
|
1097 |
|
1098 |
# @ virtue
|
1099 |
+
#: ../page-contact.php:112 ../template-contact.php:113
|
1100 |
msgid "You entered an invalid email address."
|
1101 |
msgstr "Sie haben eine ungültige Email-Adresse eingegeben."
|
1102 |
|
1103 |
# @ virtue
|
1104 |
+
#: ../page-contact.php:119 ../template-contact.php:120
|
1105 |
msgid "Please enter a message."
|
1106 |
msgstr "Bitte Nachricht eingeben."
|
1107 |
|
1108 |
# @ virtue
|
1109 |
+
#: ../page-contact.php:136 ../pagetemplater.php:28 ../pagetemplater.php:116
|
1110 |
+
#: ../template-contact.php:137
|
1111 |
#, fuzzy
|
1112 |
msgid "Contact"
|
1113 |
msgstr " Kontakt"
|
1114 |
|
1115 |
# @ virtue
|
1116 |
+
#: ../page-contact.php:136 ../template-contact.php:137
|
1117 |
msgid "From"
|
1118 |
msgstr "Von"
|
1119 |
|
1120 |
# @ virtue
|
1121 |
# @ woocommerce
|
1122 |
+
#: ../page-contact.php:137 ../template-contact.php:138
|
1123 |
msgid "Name"
|
1124 |
msgstr "Name"
|
1125 |
|
1126 |
# @ woocommerce
|
1127 |
+
#: ../page-contact.php:138 ../template-contact.php:139
|
1128 |
msgid "Email"
|
1129 |
msgstr "Email"
|
1130 |
|
1131 |
# @ virtue
|
1132 |
+
#: ../page-contact.php:139 ../template-contact.php:140
|
1133 |
#, fuzzy
|
1134 |
msgid "Comments"
|
1135 |
msgstr "Kommentar"
|
1136 |
|
1137 |
# @ virtue
|
1138 |
+
#: ../page-contact.php:177 ../template-contact.php:175
|
1139 |
msgid "Thanks, your email was sent successfully."
|
1140 |
msgstr "Danke, Ihre Email wurde erfolgreich gesendet."
|
1141 |
|
1142 |
# @ virtue
|
1143 |
+
#: ../page-contact.php:182 ../template-contact.php:179
|
1144 |
#, fuzzy
|
1145 |
msgid "Sorry, an error occured."
|
1146 |
msgstr "Leider ist ein Fehler aufgetreten."
|
1147 |
|
1148 |
# @ virtue
|
1149 |
+
#: ../page-contact.php:188 ../template-contact.php:185
|
1150 |
msgid "Name:"
|
1151 |
msgstr "Name:"
|
1152 |
|
1153 |
# @ virtue
|
1154 |
+
# @ woocommerce
|
1155 |
+
#: ../page-contact.php:196 ../template-contact.php:195
|
1156 |
+
msgid "Email:"
|
1157 |
+
msgstr "Email:"
|
1158 |
|
1159 |
# @ virtue
|
1160 |
+
#: ../page-contact.php:204 ../template-contact.php:202
|
1161 |
+
#, fuzzy
|
1162 |
+
msgid "Message:"
|
1163 |
msgstr "Nachricht: "
|
1164 |
|
1165 |
# @ virtue
|
1166 |
+
#: ../page-contact.php:224 ../template-contact.php:220
|
1167 |
msgid "Send Email"
|
1168 |
msgstr "Sende Email"
|
1169 |
|
1580 |
msgstr "Symbol Link"
|
1581 |
|
1582 |
# @ virtue
|
1583 |
+
#~ msgid "Email: "
|
1584 |
+
#~ msgstr "Email: "
|
|
|
|
|
1585 |
|
1586 |
# @ virtue
|
1587 |
+
#~ msgid "Message: "
|
1588 |
+
#~ msgstr "Nachricht: "
|
|
|
|
|
1589 |
|
1590 |
# @ virtue
|
1591 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
languages/{kadencetoolkit-es_ES.mo → virtue-toolkit-es_ES.mo}
RENAMED
Binary file
|
languages/{kadencetoolkit-es_ES.po → virtue-toolkit-es_ES.po}
RENAMED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: María Digo <web.esdemay@gmail.com>\n"
|
7 |
"Language-Team: Maria\n"
|
8 |
"Language: es_ES\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;_n:1,2\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
@@ -47,7 +47,7 @@ msgstr "Añadir comentario"
|
|
47 |
|
48 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
49 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
50 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
51 |
msgid "Remove"
|
52 |
msgstr "Eliminar"
|
53 |
|
@@ -62,18 +62,18 @@ msgid "Add or Upload File"
|
|
62 |
msgstr ""
|
63 |
|
64 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
65 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:760
|
66 |
#, fuzzy
|
67 |
msgid "Remove Image"
|
68 |
msgstr "Quitar Imagen"
|
69 |
|
70 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
71 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
72 |
msgid "File:"
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
76 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
77 |
msgid "Download"
|
78 |
msgstr "Descargar:"
|
79 |
|
@@ -82,9 +82,9 @@ msgid "Clear"
|
|
82 |
msgstr ""
|
83 |
|
84 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
85 |
-
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:
|
86 |
-
#: ../metaboxes.php:
|
87 |
-
#: ../metaboxes.php:
|
88 |
msgid "Default"
|
89 |
msgstr "Por defecto "
|
90 |
|
@@ -98,6 +98,10 @@ msgstr "Selecionar Opciones"
|
|
98 |
msgid "Current Color"
|
99 |
msgstr "Color Primario"
|
100 |
|
|
|
|
|
|
|
|
|
101 |
#: ../cmb/init.php:288
|
102 |
#, fuzzy
|
103 |
msgid "Select / Deselect All"
|
@@ -193,8 +197,8 @@ msgstr "Imagen Slider"
|
|
193 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:
|
197 |
-
#: ../metaboxes.php:
|
198 |
msgid "None"
|
199 |
msgstr "Ninguno"
|
200 |
|
@@ -203,7 +207,7 @@ msgstr "Ninguno"
|
|
203 |
msgid "Post Slider Gallery"
|
204 |
msgstr "Galería Publicaciones"
|
205 |
|
206 |
-
#: ../metaboxes.php:148 ../metaboxes.php:
|
207 |
#, fuzzy
|
208 |
msgid "Add images for gallery here"
|
209 |
msgstr "Añadir imágenes a Galería"
|
@@ -213,7 +217,7 @@ msgstr "Añadir imágenes a Galería"
|
|
213 |
msgid "Max Slider Height"
|
214 |
msgstr "Altura de slider"
|
215 |
|
216 |
-
#: ../metaboxes.php:154 ../metaboxes.php:
|
217 |
#, fuzzy
|
218 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
219 |
msgstr ""
|
@@ -265,8 +269,8 @@ msgstr "Opciones Publicación"
|
|
265 |
msgid "Video Post Default"
|
266 |
msgstr "Entradas de blog predeterminada"
|
267 |
|
268 |
-
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:
|
269 |
-
#: ../metaboxes.php:
|
270 |
msgid "Video"
|
271 |
msgstr "Video"
|
272 |
|
@@ -300,11 +304,11 @@ msgstr ""
|
|
300 |
msgid "Video - (when possible)"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../metaboxes.php:228 ../metaboxes.php:
|
304 |
msgid "Portfolio Post Options"
|
305 |
msgstr "Opciones publicación del Portfolio"
|
306 |
|
307 |
-
#: ../metaboxes.php:236 ../metaboxes.php:
|
308 |
msgid "Project Layout"
|
309 |
msgstr "Mostrar Ilustración respecto al texto:"
|
310 |
|
@@ -318,59 +322,91 @@ msgstr "Junto a"
|
|
318 |
msgid "Beside 33%"
|
319 |
msgstr "Junto a"
|
320 |
|
321 |
-
#: ../metaboxes.php:243 ../metaboxes.php:
|
322 |
msgid "Above"
|
323 |
msgstr "Arriba"
|
324 |
|
325 |
-
#: ../metaboxes.php:244 ../metaboxes.php:
|
326 |
msgid "Three Rows"
|
327 |
msgstr "Tres filas"
|
328 |
|
329 |
-
#: ../metaboxes.php:248 ../metaboxes.php:
|
330 |
msgid "Project Options"
|
331 |
msgstr "Opciones presentación"
|
332 |
|
333 |
-
#: ../metaboxes.php:253 ../metaboxes.php:
|
334 |
msgid "Image"
|
335 |
msgstr "Imagen"
|
336 |
|
337 |
-
#: ../metaboxes.php:254 ../metaboxes.php:
|
338 |
#, fuzzy
|
339 |
msgid "Image Slider (Flex Slider)"
|
340 |
msgstr "Imagen Slider"
|
341 |
|
342 |
-
#: ../metaboxes.php:255 ../metaboxes.php:
|
343 |
msgid "Carousel Slider"
|
344 |
msgstr "Slider Carrusel"
|
345 |
|
346 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
#, fuzzy
|
348 |
msgid "Portfolio Slider/Images"
|
349 |
msgstr "Imágenes Slider Portfolio"
|
350 |
|
351 |
-
#: ../metaboxes.php:
|
352 |
#, fuzzy
|
353 |
msgid "Add images for post here"
|
354 |
msgstr "Añadir imágenes a Galería"
|
355 |
|
356 |
-
#: ../metaboxes.php:
|
357 |
-
#: ../metaboxes.php:
|
358 |
msgid "Max Image/Slider Height"
|
359 |
msgstr "Altura Maxima / Imagen Slider"
|
360 |
|
361 |
-
#: ../metaboxes.php:
|
362 |
#, fuzzy
|
363 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
364 |
msgstr ""
|
365 |
"El valor predeterminado es: 450 <b>(Nota: sólo el número, por ejemplo: 350)</"
|
366 |
"b>"
|
367 |
|
368 |
-
#: ../metaboxes.php:
|
369 |
-
#: ../metaboxes.php:
|
370 |
msgid "Max Image/Slider Width"
|
371 |
msgstr "Ancho Máximo / Imagen Slider"
|
372 |
|
373 |
-
#: ../metaboxes.php:
|
374 |
#, fuzzy
|
375 |
msgid ""
|
376 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
@@ -379,320 +415,303 @@ msgstr ""
|
|
379 |
"El valor predeterminado es: 670 ó 1140 en <b> diseños </ b> arriba <b> o </ "
|
380 |
"b> tres filas (Nota: sólo el número, por ejemplo: 650) </ b>"
|
381 |
|
382 |
-
#: ../metaboxes.php:
|
383 |
msgid "Value 01 Title"
|
384 |
msgstr "Textor Título 01"
|
385 |
|
386 |
-
#: ../metaboxes.php:
|
387 |
msgid "ex. Project Type:"
|
388 |
msgstr "ej: Tipo Proyecto:"
|
389 |
|
390 |
-
#: ../metaboxes.php:
|
391 |
msgid "Value 01 Description"
|
392 |
msgstr "Texto Descripción 01"
|
393 |
|
394 |
-
#: ../metaboxes.php:
|
395 |
msgid "ex. Character Illustration"
|
396 |
msgstr "ej.: Características de la Ilustración "
|
397 |
|
398 |
-
#: ../metaboxes.php:
|
399 |
msgid "Value 02 Title"
|
400 |
msgstr "Texto Título 02"
|
401 |
|
402 |
-
#: ../metaboxes.php:
|
403 |
msgid "ex. Skills Needed:"
|
404 |
msgstr "ej.: habilidades necesarias:"
|
405 |
|
406 |
-
#: ../metaboxes.php:
|
407 |
msgid "Value 02 Description"
|
408 |
msgstr "Texto Descripción 02"
|
409 |
|
410 |
-
#: ../metaboxes.php:
|
411 |
msgid "ex. Photoshop, Illustrator"
|
412 |
msgstr "ej.; Photoshop, Illustrator"
|
413 |
|
414 |
-
#: ../metaboxes.php:
|
415 |
msgid "Value 03 Title"
|
416 |
msgstr "Texto Títilo 03"
|
417 |
|
418 |
-
#: ../metaboxes.php:
|
419 |
msgid "ex. Customer:"
|
420 |
msgstr "ej.: Cliente:"
|
421 |
|
422 |
-
#: ../metaboxes.php:
|
423 |
msgid "Value 03 Description"
|
424 |
msgstr "Texto Descripción 03"
|
425 |
|
426 |
-
#: ../metaboxes.php:
|
427 |
msgid "ex. Example Inc"
|
428 |
msgstr "ej.: Compañia"
|
429 |
|
430 |
-
#: ../metaboxes.php:
|
431 |
msgid "Value 04 Title"
|
432 |
msgstr "Texto Título 04"
|
433 |
|
434 |
-
#: ../metaboxes.php:
|
435 |
msgid "ex. Project Year:"
|
436 |
msgstr "ej.: Año del proyecto:"
|
437 |
|
438 |
-
#: ../metaboxes.php:
|
439 |
msgid "Value 04 Description"
|
440 |
msgstr "Texto Descripción 04"
|
441 |
|
442 |
-
#: ../metaboxes.php:
|
443 |
msgid "ex. 2013"
|
444 |
msgstr "ej.: 2013"
|
445 |
|
446 |
-
#: ../metaboxes.php:
|
447 |
msgid "External Website"
|
448 |
msgstr "Web"
|
449 |
|
450 |
-
#: ../metaboxes.php:
|
451 |
msgid "ex. Website:"
|
452 |
msgstr "ej.: url:"
|
453 |
|
454 |
-
#: ../metaboxes.php:
|
455 |
msgid "Website Address"
|
456 |
msgstr "Dirección página web"
|
457 |
|
458 |
-
#: ../metaboxes.php:
|
459 |
msgid "ex. http://www.example.com"
|
460 |
msgstr "ej.: http:www.ejemplo.com"
|
461 |
|
462 |
-
#: ../metaboxes.php:
|
463 |
msgid "If Video Project"
|
464 |
msgstr "Video del proyecto"
|
465 |
|
466 |
-
#: ../metaboxes.php:
|
467 |
-
#: ../metaboxes.php:
|
468 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
469 |
msgstr "Espacio para incrustar código, funciona con youtube, vimeo..."
|
470 |
|
471 |
-
#: ../metaboxes.php:
|
472 |
#, fuzzy
|
473 |
msgid "Bottom Carousel Options"
|
474 |
msgstr "Opciones página de contacto"
|
475 |
|
476 |
-
#: ../metaboxes.php:
|
477 |
msgid "Carousel Title"
|
478 |
msgstr "Título Carrusel"
|
479 |
|
480 |
-
#: ../metaboxes.php:
|
481 |
msgid "ex. Similar Projects"
|
482 |
msgstr "ej.: Proyectos similares"
|
483 |
|
484 |
-
#: ../metaboxes.php:
|
485 |
#, fuzzy
|
486 |
msgid "Bottom Portfolio Carousel"
|
487 |
msgstr "Carrusel Portafolio"
|
488 |
|
489 |
-
#: ../metaboxes.php:
|
490 |
#, fuzzy
|
491 |
msgid "Display a carousel with portfolio items below project?"
|
492 |
msgstr ""
|
493 |
"¿Mostrar un carrusel con artículos similares debajo de datos del proyecto?"
|
494 |
|
495 |
-
#: ../metaboxes.php:
|
496 |
-
#: ../metaboxes.php:
|
497 |
-
#: ../metaboxes.php:
|
498 |
-
#: ../metaboxes.php:
|
499 |
msgid "No"
|
500 |
msgstr "No"
|
501 |
|
502 |
-
#: ../metaboxes.php:
|
503 |
-
#: ../metaboxes.php:
|
504 |
-
#: ../metaboxes.php:
|
505 |
-
#: ../metaboxes.php:
|
506 |
msgid "Yes"
|
507 |
msgstr "Sí"
|
508 |
|
509 |
-
#: ../metaboxes.php:
|
510 |
#, fuzzy
|
511 |
msgid "Carousel Items"
|
512 |
msgstr "Título Carrusel"
|
513 |
|
514 |
-
#: ../metaboxes.php:
|
515 |
#, fuzzy
|
516 |
msgid "All Portfolio Posts"
|
517 |
msgstr "Opciones publicación del Portfolio"
|
518 |
|
519 |
-
#: ../metaboxes.php:
|
520 |
msgid "Only of same Portfolio Type"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ../metaboxes.php:
|
524 |
#, fuzzy
|
525 |
msgid "Carousel Order"
|
526 |
msgstr "Slider Carrusel"
|
527 |
|
528 |
-
#: ../metaboxes.php:
|
529 |
msgid "Menu Order"
|
530 |
msgstr "Orden Menú"
|
531 |
|
532 |
-
#: ../metaboxes.php:
|
533 |
msgid "Title"
|
534 |
msgstr "Título:"
|
535 |
|
536 |
-
#: ../metaboxes.php:
|
537 |
msgid "Date"
|
538 |
msgstr "Fecha"
|
539 |
|
540 |
-
#: ../metaboxes.php:
|
541 |
msgid "Random"
|
542 |
msgstr "Aleatorio"
|
543 |
|
544 |
-
#: ../metaboxes.php:
|
545 |
msgid "Portfolio Page Options"
|
546 |
msgstr "Opciones Página Portfolio"
|
547 |
|
548 |
-
#: ../metaboxes.php:
|
549 |
msgid "Style"
|
550 |
msgstr "Estilo"
|
551 |
|
552 |
-
#: ../metaboxes.php:
|
553 |
#, fuzzy
|
554 |
msgid "Post Boxes"
|
555 |
msgstr "Caja Publicación Video"
|
556 |
|
557 |
-
#: ../metaboxes.php:
|
558 |
msgid "Flat with Margin"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../metaboxes.php:
|
562 |
#, fuzzy
|
563 |
msgid "Hover Style"
|
564 |
msgstr "Estilo del borde"
|
565 |
|
566 |
-
#: ../metaboxes.php:
|
567 |
#, fuzzy
|
568 |
msgid "Light"
|
569 |
msgstr "Derecha"
|
570 |
|
571 |
-
#: ../metaboxes.php:
|
572 |
msgid "Dark"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: ../metaboxes.php:
|
576 |
msgid "Primary Color"
|
577 |
msgstr "Color Primario"
|
578 |
|
579 |
-
#: ../metaboxes.php:
|
580 |
msgid "Columns"
|
581 |
msgstr "Columnas"
|
582 |
|
583 |
-
#: ../metaboxes.php:
|
584 |
-
msgid "Four Column"
|
585 |
-
msgstr "Cuatro columnas"
|
586 |
-
|
587 |
-
#: ../metaboxes.php:437 ../metaboxes.php:865
|
588 |
-
msgid "Three Column"
|
589 |
-
msgstr "Tres columnas"
|
590 |
-
|
591 |
-
#: ../metaboxes.php:438 ../metaboxes.php:866
|
592 |
-
msgid "Two Column"
|
593 |
-
msgstr "Dos columnas"
|
594 |
-
|
595 |
-
#: ../metaboxes.php:439
|
596 |
-
#, fuzzy
|
597 |
-
msgid "Five Column"
|
598 |
-
msgstr "Cuatro columnas"
|
599 |
-
|
600 |
-
#: ../metaboxes.php:443 ../metaboxes.php:870
|
601 |
msgid "Portfolio Work Types"
|
602 |
msgstr "Tipos de trabajo Porfolio"
|
603 |
|
604 |
-
#: ../metaboxes.php:
|
605 |
msgid "Order Items By"
|
606 |
msgstr "Ordenar los Elementos por"
|
607 |
|
608 |
-
#: ../metaboxes.php:
|
609 |
msgid "Items per Page"
|
610 |
msgstr "Artículos por página"
|
611 |
|
612 |
-
#: ../metaboxes.php:
|
613 |
msgid "How many portfolio items per page"
|
614 |
msgstr "Cuantos artículos portfolio por página"
|
615 |
|
616 |
-
#: ../metaboxes.php:
|
617 |
msgid "All"
|
618 |
msgstr "Todos"
|
619 |
|
620 |
-
#: ../metaboxes.php:
|
621 |
#, fuzzy
|
622 |
msgid "Image Ratio?"
|
623 |
msgstr "Imagen"
|
624 |
|
625 |
-
#: ../metaboxes.php:
|
626 |
msgid "Square 1:1"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../metaboxes.php:
|
630 |
#, fuzzy
|
631 |
msgid "Portrait 3:4"
|
632 |
msgstr "Imagen lateral izquierda texto"
|
633 |
|
634 |
-
#: ../metaboxes.php:
|
635 |
#, fuzzy
|
636 |
msgid "Landscape 4:3"
|
637 |
msgstr "Imagen ancho cabecera texto"
|
638 |
|
639 |
-
#: ../metaboxes.php:
|
640 |
#, fuzzy
|
641 |
msgid "Wide Landscape 4:2"
|
642 |
msgstr "Imagen ancho cabecera texto"
|
643 |
|
644 |
-
#: ../metaboxes.php:
|
645 |
msgid "Display Item Work Types"
|
646 |
msgstr "Mostrar Categorías | Tipo - Portfolio"
|
647 |
|
648 |
-
#: ../metaboxes.php:
|
649 |
msgid "Display Item Excerpt"
|
650 |
msgstr "Mostrar Extracto Texto "
|
651 |
|
652 |
-
#: ../metaboxes.php:
|
653 |
#, fuzzy
|
654 |
msgid "Add Lightbox link in each item"
|
655 |
msgstr ""
|
656 |
"Añadir enlace Lightbox en la parte superior derecha de cada elemento"
|
657 |
|
658 |
-
#: ../metaboxes.php:
|
659 |
msgid "Feature Page Options"
|
660 |
msgstr "Características Páginas Opciones"
|
661 |
|
662 |
-
#: ../metaboxes.php:
|
663 |
#, fuzzy
|
664 |
msgid "Header Options"
|
665 |
msgstr "Opciones tipografía cabecera"
|
666 |
|
667 |
-
#: ../metaboxes.php:
|
668 |
#, fuzzy
|
669 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
670 |
msgstr ""
|
671 |
"Si usa imagen para slider, asegúrese de subir imágenes de al menos 1140 px"
|
672 |
|
673 |
-
#: ../metaboxes.php:
|
674 |
msgid "Page Title"
|
675 |
msgstr "Título Página"
|
676 |
|
677 |
-
#: ../metaboxes.php:
|
678 |
msgid "Slider Images"
|
679 |
msgstr "Imágenes de slider"
|
680 |
|
681 |
-
#: ../metaboxes.php:
|
682 |
msgid "Add for flex, carousel, and image carousel."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../metaboxes.php:
|
686 |
#, fuzzy
|
687 |
msgid "If Cyclone Slider"
|
688 |
msgstr "Slider Carrusel"
|
689 |
|
690 |
-
#: ../metaboxes.php:
|
691 |
msgid ""
|
692 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../metaboxes.php:
|
696 |
#, fuzzy
|
697 |
msgid ""
|
698 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
@@ -701,114 +720,114 @@ msgstr ""
|
|
701 |
"Valor por defecto: 770 ó 1140 en diseño ancho completo <b>(Nota: introducir "
|
702 |
"sólo número, ejemplo: 650, no se aplica en carrusel-slider)</b>"
|
703 |
|
704 |
-
#: ../metaboxes.php:
|
705 |
msgid "If Video Post"
|
706 |
msgstr "Si video de publicación "
|
707 |
|
708 |
-
#: ../metaboxes.php:
|
709 |
msgid "Contact Page Options"
|
710 |
msgstr "Opciones página de contacto"
|
711 |
|
712 |
-
#: ../metaboxes.php:
|
713 |
msgid "Use Contact Form"
|
714 |
msgstr "Usar formulario de contacto"
|
715 |
|
716 |
-
#: ../metaboxes.php:
|
717 |
msgid "Contact Form Title"
|
718 |
msgstr "Título Formulario de Contacto"
|
719 |
|
720 |
-
#: ../metaboxes.php:
|
721 |
msgid "ex. Send us an Email"
|
722 |
msgstr "ej.: Envíenos un correo electrónico"
|
723 |
|
724 |
-
#: ../metaboxes.php:
|
725 |
#, fuzzy
|
726 |
msgid "Contact Form Email Recipient"
|
727 |
msgstr "Formulario correo electrónico de contacto"
|
728 |
|
729 |
-
#: ../metaboxes.php:
|
730 |
msgid "ex. joe@gmail.com"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../metaboxes.php:
|
734 |
msgid "Use Simple Math Question"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../metaboxes.php:
|
738 |
msgid "Use Map"
|
739 |
msgstr "Usar Mapa"
|
740 |
|
741 |
-
#: ../metaboxes.php:
|
742 |
msgid "Address"
|
743 |
msgstr "Dirección"
|
744 |
|
745 |
-
#: ../metaboxes.php:
|
746 |
msgid "Enter your Location"
|
747 |
msgstr "Ingrese su localidad"
|
748 |
|
749 |
-
#: ../metaboxes.php:
|
750 |
msgid "Map Type"
|
751 |
msgstr "Tipo de Mapa"
|
752 |
|
753 |
-
#: ../metaboxes.php:
|
754 |
msgid "ROADMAP"
|
755 |
msgstr "Callejero"
|
756 |
|
757 |
-
#: ../metaboxes.php:
|
758 |
msgid "HYBRID"
|
759 |
msgstr "Híbrido"
|
760 |
|
761 |
-
#: ../metaboxes.php:
|
762 |
msgid "TERRAIN"
|
763 |
msgstr "Terreno"
|
764 |
|
765 |
-
#: ../metaboxes.php:
|
766 |
msgid "SATELLITE"
|
767 |
msgstr "Satélite"
|
768 |
|
769 |
-
#: ../metaboxes.php:
|
770 |
msgid "Map Zoom Level"
|
771 |
msgstr "Nivel Zoom del Mapa"
|
772 |
|
773 |
-
#: ../metaboxes.php:
|
774 |
msgid "A good place to start is 15"
|
775 |
msgstr "Punto para comenzar aconsejado es de 15"
|
776 |
|
777 |
-
#: ../metaboxes.php:
|
778 |
msgid "1 (World View)"
|
779 |
msgstr "1(Vista Mundo)"
|
780 |
|
781 |
-
#: ../metaboxes.php:
|
782 |
msgid "21 (Street View)"
|
783 |
msgstr "21 (Vista calle)"
|
784 |
|
785 |
-
#: ../metaboxes.php:
|
786 |
msgid "Map Height"
|
787 |
msgstr "Altura Mapa"
|
788 |
|
789 |
-
#: ../metaboxes.php:
|
790 |
msgid "Default is 300"
|
791 |
msgstr "Por defecto es 300"
|
792 |
|
793 |
-
#: ../metaboxes.php:
|
794 |
msgid "Post Video Box"
|
795 |
msgstr "Caja Publicación Video"
|
796 |
|
797 |
-
#: ../metaboxes.php:
|
798 |
msgid "Beside"
|
799 |
msgstr "Junto a"
|
800 |
|
801 |
-
#: ../metaboxes.php:
|
802 |
msgid "Image Slider"
|
803 |
msgstr "Imagen Slider"
|
804 |
|
805 |
-
#: ../metaboxes.php:
|
806 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
807 |
msgstr ""
|
808 |
"El valor predeterminado es: 450 <b>(Nota: sólo el número, por ejemplo: 350)</"
|
809 |
"b>"
|
810 |
|
811 |
-
#: ../metaboxes.php:
|
812 |
msgid ""
|
813 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
814 |
"just input number, example: 650)</b>"
|
@@ -816,58 +835,58 @@ msgstr ""
|
|
816 |
"El valor predeterminado es: 670 ó 1140 en <b> diseños </ b> arriba <b> o </ "
|
817 |
"b> tres filas (Nota: sólo el número, por ejemplo: 650) </ b>"
|
818 |
|
819 |
-
#: ../metaboxes.php:
|
820 |
#, fuzzy
|
821 |
msgid "Auto Play Slider?"
|
822 |
msgstr "¿Reproducción automática?"
|
823 |
|
824 |
-
#: ../metaboxes.php:
|
825 |
msgid "Similar Portfolio Item Carousel"
|
826 |
msgstr "Carrusel de articulos similares del Portfolio"
|
827 |
|
828 |
-
#: ../metaboxes.php:
|
829 |
msgid "Display a carousel with similar portfolio items below project?"
|
830 |
msgstr ""
|
831 |
"¿Mostrar un carrusel con artículos similares debajo de datos del proyecto?"
|
832 |
|
833 |
-
#: ../metaboxes.php:
|
834 |
msgid "Yes - Display Recent Projects"
|
835 |
msgstr "Sí - Mostrar Proyectos Recientes"
|
836 |
|
837 |
-
#: ../metaboxes.php:
|
838 |
msgid "Set image height"
|
839 |
msgstr "Ajustar altura imagen"
|
840 |
|
841 |
-
#: ../metaboxes.php:
|
842 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
843 |
msgstr ""
|
844 |
"Valor por defecto proporción 1:1 <b>(Nota: sólo un número, ejemplo: 350)</b>"
|
845 |
|
846 |
-
#: ../metaboxes.php:
|
847 |
msgid "Add Lightbox link in the top right of each item"
|
848 |
msgstr ""
|
849 |
"Añadir enlace Lightbox en la parte superior derecha de cada elemento"
|
850 |
|
851 |
-
#: ../metaboxes.php:
|
852 |
msgid "Feature Options"
|
853 |
msgstr "Características Opciones"
|
854 |
|
855 |
-
#: ../metaboxes.php:
|
856 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
857 |
msgstr ""
|
858 |
"Si usa imagen para slider, asegúrese de subir imágenes de al menos 1140 px"
|
859 |
|
860 |
-
#: ../metaboxes.php:
|
861 |
#, fuzzy
|
862 |
msgid "Slider Gallery"
|
863 |
msgstr "Limpiar Galerí¡ía"
|
864 |
|
865 |
-
#: ../metaboxes.php:
|
866 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
867 |
msgstr ""
|
868 |
"Por defecto es: 400 <b>(Nota: introducir sólo número, ejemplo: 350)</b>"
|
869 |
|
870 |
-
#: ../metaboxes.php:
|
871 |
msgid ""
|
872 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
873 |
"to Carousel slider)</b>"
|
@@ -875,11 +894,11 @@ msgstr ""
|
|
875 |
"Valor por defecto: 1140 <b>(Nota: sólo número, ejemplo: 650, no funciona "
|
876 |
"para slider carrusel)</b>"
|
877 |
|
878 |
-
#: ../metaboxes.php:
|
879 |
msgid "Use Lightbox for Feature Image"
|
880 |
msgstr "Usar lightbox para imagen destacadas"
|
881 |
|
882 |
-
#: ../metaboxes.php:
|
883 |
msgid ""
|
884 |
"If feature option is set to image, choose to use lightbox link with image."
|
885 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
+
"POT-Creation-Date: 2015-11-19 15:52-0700\n"
|
5 |
+
"PO-Revision-Date: 2015-11-19 15:52-0700\n"
|
6 |
"Last-Translator: María Digo <web.esdemay@gmail.com>\n"
|
7 |
"Language-Team: Maria\n"
|
8 |
"Language: es_ES\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.5\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e;_n:1,2\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
47 |
|
48 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
49 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
50 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:282
|
51 |
msgid "Remove"
|
52 |
msgstr "Eliminar"
|
53 |
|
62 |
msgstr ""
|
63 |
|
64 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
65 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:760 ../cmb/init.php:281
|
66 |
#, fuzzy
|
67 |
msgid "Remove Image"
|
68 |
msgstr "Quitar Imagen"
|
69 |
|
70 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
71 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:283
|
72 |
msgid "File:"
|
73 |
msgstr ""
|
74 |
|
75 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
76 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:284
|
77 |
msgid "Download"
|
78 |
msgstr "Descargar:"
|
79 |
|
82 |
msgstr ""
|
83 |
|
84 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
85 |
+
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:381
|
86 |
+
#: ../metaboxes.php:392 ../metaboxes.php:427 ../metaboxes.php:438
|
87 |
+
#: ../metaboxes.php:503
|
88 |
msgid "Default"
|
89 |
msgstr "Por defecto "
|
90 |
|
98 |
msgid "Current Color"
|
99 |
msgstr "Color Primario"
|
100 |
|
101 |
+
#: ../cmb/init.php:280
|
102 |
+
msgid "Use this file"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
#: ../cmb/init.php:288
|
106 |
#, fuzzy
|
107 |
msgid "Select / Deselect All"
|
197 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:258
|
201 |
+
#: ../metaboxes.php:753
|
202 |
msgid "None"
|
203 |
msgstr "Ninguno"
|
204 |
|
207 |
msgid "Post Slider Gallery"
|
208 |
msgstr "Galería Publicaciones"
|
209 |
|
210 |
+
#: ../metaboxes.php:148 ../metaboxes.php:992 ../metaboxes.php:1138
|
211 |
#, fuzzy
|
212 |
msgid "Add images for gallery here"
|
213 |
msgstr "Añadir imágenes a Galería"
|
217 |
msgid "Max Slider Height"
|
218 |
msgstr "Altura de slider"
|
219 |
|
220 |
+
#: ../metaboxes.php:154 ../metaboxes.php:567
|
221 |
#, fuzzy
|
222 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
223 |
msgstr ""
|
269 |
msgid "Video Post Default"
|
270 |
msgstr "Entradas de blog predeterminada"
|
271 |
|
272 |
+
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:550
|
273 |
+
#: ../metaboxes.php:752 ../metaboxes.php:986
|
274 |
msgid "Video"
|
275 |
msgstr "Video"
|
276 |
|
304 |
msgid "Video - (when possible)"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../metaboxes.php:228 ../metaboxes.php:724
|
308 |
msgid "Portfolio Post Options"
|
309 |
msgstr "Opciones publicación del Portfolio"
|
310 |
|
311 |
+
#: ../metaboxes.php:236 ../metaboxes.php:732
|
312 |
msgid "Project Layout"
|
313 |
msgstr "Mostrar Ilustración respecto al texto:"
|
314 |
|
322 |
msgid "Beside 33%"
|
323 |
msgstr "Junto a"
|
324 |
|
325 |
+
#: ../metaboxes.php:243 ../metaboxes.php:738
|
326 |
msgid "Above"
|
327 |
msgstr "Arriba"
|
328 |
|
329 |
+
#: ../metaboxes.php:244 ../metaboxes.php:739
|
330 |
msgid "Three Rows"
|
331 |
msgstr "Tres filas"
|
332 |
|
333 |
+
#: ../metaboxes.php:248 ../metaboxes.php:743
|
334 |
msgid "Project Options"
|
335 |
msgstr "Opciones presentación"
|
336 |
|
337 |
+
#: ../metaboxes.php:253 ../metaboxes.php:748 ../metaboxes.php:987
|
338 |
msgid "Image"
|
339 |
msgstr "Imagen"
|
340 |
|
341 |
+
#: ../metaboxes.php:254 ../metaboxes.php:548
|
342 |
#, fuzzy
|
343 |
msgid "Image Slider (Flex Slider)"
|
344 |
msgstr "Imagen Slider"
|
345 |
|
346 |
+
#: ../metaboxes.php:255 ../metaboxes.php:549 ../metaboxes.php:750
|
347 |
msgid "Carousel Slider"
|
348 |
msgstr "Slider Carrusel"
|
349 |
|
350 |
+
#: ../metaboxes.php:257 ../metaboxes.php:751
|
351 |
+
msgid "Image Grid"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: ../metaboxes.php:262 ../metaboxes.php:757
|
355 |
+
msgid "Columns (Only for Image Grid option)"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: ../metaboxes.php:267 ../metaboxes.php:450 ../metaboxes.php:762
|
359 |
+
#: ../metaboxes.php:892
|
360 |
+
msgid "Four Column"
|
361 |
+
msgstr "Cuatro columnas"
|
362 |
+
|
363 |
+
#: ../metaboxes.php:268 ../metaboxes.php:451 ../metaboxes.php:763
|
364 |
+
#: ../metaboxes.php:893
|
365 |
+
msgid "Three Column"
|
366 |
+
msgstr "Tres columnas"
|
367 |
+
|
368 |
+
#: ../metaboxes.php:269 ../metaboxes.php:452 ../metaboxes.php:764
|
369 |
+
#: ../metaboxes.php:894
|
370 |
+
msgid "Two Column"
|
371 |
+
msgstr "Dos columnas"
|
372 |
+
|
373 |
+
#: ../metaboxes.php:270 ../metaboxes.php:453 ../metaboxes.php:765
|
374 |
+
#, fuzzy
|
375 |
+
msgid "Five Column"
|
376 |
+
msgstr "Cuatro columnas"
|
377 |
+
|
378 |
+
#: ../metaboxes.php:271 ../metaboxes.php:766
|
379 |
+
msgid "Six Column"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: ../metaboxes.php:275
|
383 |
#, fuzzy
|
384 |
msgid "Portfolio Slider/Images"
|
385 |
msgstr "Imágenes Slider Portfolio"
|
386 |
|
387 |
+
#: ../metaboxes.php:276
|
388 |
#, fuzzy
|
389 |
msgid "Add images for post here"
|
390 |
msgstr "Añadir imágenes a Galería"
|
391 |
|
392 |
+
#: ../metaboxes.php:281 ../metaboxes.php:566 ../metaboxes.php:770
|
393 |
+
#: ../metaboxes.php:997
|
394 |
msgid "Max Image/Slider Height"
|
395 |
msgstr "Altura Maxima / Imagen Slider"
|
396 |
|
397 |
+
#: ../metaboxes.php:282
|
398 |
#, fuzzy
|
399 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
400 |
msgstr ""
|
401 |
"El valor predeterminado es: 450 <b>(Nota: sólo el número, por ejemplo: 350)</"
|
402 |
"b>"
|
403 |
|
404 |
+
#: ../metaboxes.php:287 ../metaboxes.php:572 ../metaboxes.php:776
|
405 |
+
#: ../metaboxes.php:1003
|
406 |
msgid "Max Image/Slider Width"
|
407 |
msgstr "Ancho Máximo / Imagen Slider"
|
408 |
|
409 |
+
#: ../metaboxes.php:288
|
410 |
#, fuzzy
|
411 |
msgid ""
|
412 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
415 |
"El valor predeterminado es: 670 ó 1140 en <b> diseños </ b> arriba <b> o </ "
|
416 |
"b> tres filas (Nota: sólo el número, por ejemplo: 650) </ b>"
|
417 |
|
418 |
+
#: ../metaboxes.php:293 ../metaboxes.php:792
|
419 |
msgid "Value 01 Title"
|
420 |
msgstr "Textor Título 01"
|
421 |
|
422 |
+
#: ../metaboxes.php:294 ../metaboxes.php:793
|
423 |
msgid "ex. Project Type:"
|
424 |
msgstr "ej: Tipo Proyecto:"
|
425 |
|
426 |
+
#: ../metaboxes.php:299 ../metaboxes.php:798
|
427 |
msgid "Value 01 Description"
|
428 |
msgstr "Texto Descripción 01"
|
429 |
|
430 |
+
#: ../metaboxes.php:300 ../metaboxes.php:799
|
431 |
msgid "ex. Character Illustration"
|
432 |
msgstr "ej.: Características de la Ilustración "
|
433 |
|
434 |
+
#: ../metaboxes.php:305 ../metaboxes.php:804
|
435 |
msgid "Value 02 Title"
|
436 |
msgstr "Texto Título 02"
|
437 |
|
438 |
+
#: ../metaboxes.php:306 ../metaboxes.php:805
|
439 |
msgid "ex. Skills Needed:"
|
440 |
msgstr "ej.: habilidades necesarias:"
|
441 |
|
442 |
+
#: ../metaboxes.php:311 ../metaboxes.php:810
|
443 |
msgid "Value 02 Description"
|
444 |
msgstr "Texto Descripción 02"
|
445 |
|
446 |
+
#: ../metaboxes.php:312 ../metaboxes.php:811
|
447 |
msgid "ex. Photoshop, Illustrator"
|
448 |
msgstr "ej.; Photoshop, Illustrator"
|
449 |
|
450 |
+
#: ../metaboxes.php:317 ../metaboxes.php:816
|
451 |
msgid "Value 03 Title"
|
452 |
msgstr "Texto Títilo 03"
|
453 |
|
454 |
+
#: ../metaboxes.php:318 ../metaboxes.php:817
|
455 |
msgid "ex. Customer:"
|
456 |
msgstr "ej.: Cliente:"
|
457 |
|
458 |
+
#: ../metaboxes.php:323 ../metaboxes.php:822
|
459 |
msgid "Value 03 Description"
|
460 |
msgstr "Texto Descripción 03"
|
461 |
|
462 |
+
#: ../metaboxes.php:324 ../metaboxes.php:823
|
463 |
msgid "ex. Example Inc"
|
464 |
msgstr "ej.: Compañia"
|
465 |
|
466 |
+
#: ../metaboxes.php:329 ../metaboxes.php:828
|
467 |
msgid "Value 04 Title"
|
468 |
msgstr "Texto Título 04"
|
469 |
|
470 |
+
#: ../metaboxes.php:330 ../metaboxes.php:829
|
471 |
msgid "ex. Project Year:"
|
472 |
msgstr "ej.: Año del proyecto:"
|
473 |
|
474 |
+
#: ../metaboxes.php:335 ../metaboxes.php:834
|
475 |
msgid "Value 04 Description"
|
476 |
msgstr "Texto Descripción 04"
|
477 |
|
478 |
+
#: ../metaboxes.php:336 ../metaboxes.php:835
|
479 |
msgid "ex. 2013"
|
480 |
msgstr "ej.: 2013"
|
481 |
|
482 |
+
#: ../metaboxes.php:341 ../metaboxes.php:840
|
483 |
msgid "External Website"
|
484 |
msgstr "Web"
|
485 |
|
486 |
+
#: ../metaboxes.php:342 ../metaboxes.php:841
|
487 |
msgid "ex. Website:"
|
488 |
msgstr "ej.: url:"
|
489 |
|
490 |
+
#: ../metaboxes.php:347 ../metaboxes.php:846
|
491 |
msgid "Website Address"
|
492 |
msgstr "Dirección página web"
|
493 |
|
494 |
+
#: ../metaboxes.php:348 ../metaboxes.php:847
|
495 |
msgid "ex. http://www.example.com"
|
496 |
msgstr "ej.: http:www.ejemplo.com"
|
497 |
|
498 |
+
#: ../metaboxes.php:353 ../metaboxes.php:852
|
499 |
msgid "If Video Project"
|
500 |
msgstr "Video del proyecto"
|
501 |
|
502 |
+
#: ../metaboxes.php:354 ../metaboxes.php:579 ../metaboxes.php:716
|
503 |
+
#: ../metaboxes.php:853 ../metaboxes.php:1020
|
504 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
505 |
msgstr "Espacio para incrustar código, funciona con youtube, vimeo..."
|
506 |
|
507 |
+
#: ../metaboxes.php:363
|
508 |
#, fuzzy
|
509 |
msgid "Bottom Carousel Options"
|
510 |
msgstr "Opciones página de contacto"
|
511 |
|
512 |
+
#: ../metaboxes.php:370 ../metaboxes.php:868
|
513 |
msgid "Carousel Title"
|
514 |
msgstr "Título Carrusel"
|
515 |
|
516 |
+
#: ../metaboxes.php:371 ../metaboxes.php:869
|
517 |
msgid "ex. Similar Projects"
|
518 |
msgstr "ej.: Proyectos similares"
|
519 |
|
520 |
+
#: ../metaboxes.php:376
|
521 |
#, fuzzy
|
522 |
msgid "Bottom Portfolio Carousel"
|
523 |
msgstr "Carrusel Portafolio"
|
524 |
|
525 |
+
#: ../metaboxes.php:377
|
526 |
#, fuzzy
|
527 |
msgid "Display a carousel with portfolio items below project?"
|
528 |
msgstr ""
|
529 |
"¿Mostrar un carrusel con artículos similares debajo de datos del proyecto?"
|
530 |
|
531 |
+
#: ../metaboxes.php:382 ../metaboxes.php:602 ../metaboxes.php:624
|
532 |
+
#: ../metaboxes.php:633 ../metaboxes.php:788 ../metaboxes.php:863
|
533 |
+
#: ../metaboxes.php:963 ../metaboxes.php:1015 ../metaboxes.php:1043
|
534 |
+
#: ../metaboxes.php:1059 ../metaboxes.php:1068
|
535 |
msgid "No"
|
536 |
msgstr "No"
|
537 |
|
538 |
+
#: ../metaboxes.php:383 ../metaboxes.php:601 ../metaboxes.php:623
|
539 |
+
#: ../metaboxes.php:634 ../metaboxes.php:787 ../metaboxes.php:964
|
540 |
+
#: ../metaboxes.php:1014 ../metaboxes.php:1042 ../metaboxes.php:1058
|
541 |
+
#: ../metaboxes.php:1069
|
542 |
msgid "Yes"
|
543 |
msgstr "Sí"
|
544 |
|
545 |
+
#: ../metaboxes.php:387
|
546 |
#, fuzzy
|
547 |
msgid "Carousel Items"
|
548 |
msgstr "Título Carrusel"
|
549 |
|
550 |
+
#: ../metaboxes.php:393
|
551 |
#, fuzzy
|
552 |
msgid "All Portfolio Posts"
|
553 |
msgstr "Opciones publicación del Portfolio"
|
554 |
|
555 |
+
#: ../metaboxes.php:394
|
556 |
msgid "Only of same Portfolio Type"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../metaboxes.php:398
|
560 |
#, fuzzy
|
561 |
msgid "Carousel Order"
|
562 |
msgstr "Slider Carrusel"
|
563 |
|
564 |
+
#: ../metaboxes.php:403 ../metaboxes.php:468 ../metaboxes.php:910
|
565 |
msgid "Menu Order"
|
566 |
msgstr "Orden Menú"
|
567 |
|
568 |
+
#: ../metaboxes.php:404 ../metaboxes.php:469 ../metaboxes.php:911
|
569 |
msgid "Title"
|
570 |
msgstr "Título:"
|
571 |
|
572 |
+
#: ../metaboxes.php:405 ../metaboxes.php:470 ../metaboxes.php:912
|
573 |
msgid "Date"
|
574 |
msgstr "Fecha"
|
575 |
|
576 |
+
#: ../metaboxes.php:406 ../metaboxes.php:471 ../metaboxes.php:913
|
577 |
msgid "Random"
|
578 |
msgstr "Aleatorio"
|
579 |
|
580 |
+
#: ../metaboxes.php:414 ../metaboxes.php:878
|
581 |
msgid "Portfolio Page Options"
|
582 |
msgstr "Opciones Página Portfolio"
|
583 |
|
584 |
+
#: ../metaboxes.php:422 ../shortcodes/pullquote/quote_popup.php:59
|
585 |
msgid "Style"
|
586 |
msgstr "Estilo"
|
587 |
|
588 |
+
#: ../metaboxes.php:428
|
589 |
#, fuzzy
|
590 |
msgid "Post Boxes"
|
591 |
msgstr "Caja Publicación Video"
|
592 |
|
593 |
+
#: ../metaboxes.php:429
|
594 |
msgid "Flat with Margin"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../metaboxes.php:433
|
598 |
#, fuzzy
|
599 |
msgid "Hover Style"
|
600 |
msgstr "Estilo del borde"
|
601 |
|
602 |
+
#: ../metaboxes.php:439
|
603 |
#, fuzzy
|
604 |
msgid "Light"
|
605 |
msgstr "Derecha"
|
606 |
|
607 |
+
#: ../metaboxes.php:440
|
608 |
msgid "Dark"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../metaboxes.php:441 ../shortcodes/btns/btns_popup.php:134
|
612 |
msgid "Primary Color"
|
613 |
msgstr "Color Primario"
|
614 |
|
615 |
+
#: ../metaboxes.php:445 ../metaboxes.php:887
|
616 |
msgid "Columns"
|
617 |
msgstr "Columnas"
|
618 |
|
619 |
+
#: ../metaboxes.php:457 ../metaboxes.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
620 |
msgid "Portfolio Work Types"
|
621 |
msgstr "Tipos de trabajo Porfolio"
|
622 |
|
623 |
+
#: ../metaboxes.php:463 ../metaboxes.php:905
|
624 |
msgid "Order Items By"
|
625 |
msgstr "Ordenar los Elementos por"
|
626 |
|
627 |
+
#: ../metaboxes.php:475 ../metaboxes.php:917
|
628 |
msgid "Items per Page"
|
629 |
msgstr "Artículos por página"
|
630 |
|
631 |
+
#: ../metaboxes.php:476 ../metaboxes.php:918
|
632 |
msgid "How many portfolio items per page"
|
633 |
msgstr "Cuantos artículos portfolio por página"
|
634 |
|
635 |
+
#: ../metaboxes.php:480 ../metaboxes.php:922
|
636 |
msgid "All"
|
637 |
msgstr "Todos"
|
638 |
|
639 |
+
#: ../metaboxes.php:498
|
640 |
#, fuzzy
|
641 |
msgid "Image Ratio?"
|
642 |
msgstr "Imagen"
|
643 |
|
644 |
+
#: ../metaboxes.php:504
|
645 |
msgid "Square 1:1"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../metaboxes.php:505
|
649 |
#, fuzzy
|
650 |
msgid "Portrait 3:4"
|
651 |
msgstr "Imagen lateral izquierda texto"
|
652 |
|
653 |
+
#: ../metaboxes.php:506
|
654 |
#, fuzzy
|
655 |
msgid "Landscape 4:3"
|
656 |
msgstr "Imagen ancho cabecera texto"
|
657 |
|
658 |
+
#: ../metaboxes.php:507
|
659 |
#, fuzzy
|
660 |
msgid "Wide Landscape 4:2"
|
661 |
msgstr "Imagen ancho cabecera texto"
|
662 |
|
663 |
+
#: ../metaboxes.php:511 ../metaboxes.php:946
|
664 |
msgid "Display Item Work Types"
|
665 |
msgstr "Mostrar Categorías | Tipo - Portfolio"
|
666 |
|
667 |
+
#: ../metaboxes.php:517 ../metaboxes.php:952
|
668 |
msgid "Display Item Excerpt"
|
669 |
msgstr "Mostrar Extracto Texto "
|
670 |
|
671 |
+
#: ../metaboxes.php:523
|
672 |
#, fuzzy
|
673 |
msgid "Add Lightbox link in each item"
|
674 |
msgstr ""
|
675 |
"Añadir enlace Lightbox en la parte superior derecha de cada elemento"
|
676 |
|
677 |
+
#: ../metaboxes.php:532 ../metaboxes.php:971
|
678 |
msgid "Feature Page Options"
|
679 |
msgstr "Características Páginas Opciones"
|
680 |
|
681 |
+
#: ../metaboxes.php:541
|
682 |
#, fuzzy
|
683 |
msgid "Header Options"
|
684 |
msgstr "Opciones tipografía cabecera"
|
685 |
|
686 |
+
#: ../metaboxes.php:542
|
687 |
#, fuzzy
|
688 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
689 |
msgstr ""
|
690 |
"Si usa imagen para slider, asegúrese de subir imágenes de al menos 1140 px"
|
691 |
|
692 |
+
#: ../metaboxes.php:547
|
693 |
msgid "Page Title"
|
694 |
msgstr "Título Página"
|
695 |
|
696 |
+
#: ../metaboxes.php:554 ../metaboxes.php:1130
|
697 |
msgid "Slider Images"
|
698 |
msgstr "Imágenes de slider"
|
699 |
|
700 |
+
#: ../metaboxes.php:555
|
701 |
msgid "Add for flex, carousel, and image carousel."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../metaboxes.php:560
|
705 |
#, fuzzy
|
706 |
msgid "If Cyclone Slider"
|
707 |
msgstr "Slider Carrusel"
|
708 |
|
709 |
+
#: ../metaboxes.php:561
|
710 |
msgid ""
|
711 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: ../metaboxes.php:573
|
715 |
#, fuzzy
|
716 |
msgid ""
|
717 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
720 |
"Valor por defecto: 770 ó 1140 en diseño ancho completo <b>(Nota: introducir "
|
721 |
"sólo número, ejemplo: 650, no se aplica en carrusel-slider)</b>"
|
722 |
|
723 |
+
#: ../metaboxes.php:578 ../metaboxes.php:715 ../metaboxes.php:1019
|
724 |
msgid "If Video Post"
|
725 |
msgstr "Si video de publicación "
|
726 |
|
727 |
+
#: ../metaboxes.php:587 ../metaboxes.php:1028
|
728 |
msgid "Contact Page Options"
|
729 |
msgstr "Opciones página de contacto"
|
730 |
|
731 |
+
#: ../metaboxes.php:596 ../metaboxes.php:1037
|
732 |
msgid "Use Contact Form"
|
733 |
msgstr "Usar formulario de contacto"
|
734 |
|
735 |
+
#: ../metaboxes.php:606 ../metaboxes.php:1047
|
736 |
msgid "Contact Form Title"
|
737 |
msgstr "Título Formulario de Contacto"
|
738 |
|
739 |
+
#: ../metaboxes.php:607 ../metaboxes.php:1048
|
740 |
msgid "ex. Send us an Email"
|
741 |
msgstr "ej.: Envíenos un correo electrónico"
|
742 |
|
743 |
+
#: ../metaboxes.php:612
|
744 |
#, fuzzy
|
745 |
msgid "Contact Form Email Recipient"
|
746 |
msgstr "Formulario correo electrónico de contacto"
|
747 |
|
748 |
+
#: ../metaboxes.php:613
|
749 |
msgid "ex. joe@gmail.com"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../metaboxes.php:618 ../metaboxes.php:1053
|
753 |
msgid "Use Simple Math Question"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: ../metaboxes.php:628 ../metaboxes.php:1063
|
757 |
msgid "Use Map"
|
758 |
msgstr "Usar Mapa"
|
759 |
|
760 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
761 |
msgid "Address"
|
762 |
msgstr "Dirección"
|
763 |
|
764 |
+
#: ../metaboxes.php:639 ../metaboxes.php:1074
|
765 |
msgid "Enter your Location"
|
766 |
msgstr "Ingrese su localidad"
|
767 |
|
768 |
+
#: ../metaboxes.php:644 ../metaboxes.php:1079
|
769 |
msgid "Map Type"
|
770 |
msgstr "Tipo de Mapa"
|
771 |
|
772 |
+
#: ../metaboxes.php:649 ../metaboxes.php:1084
|
773 |
msgid "ROADMAP"
|
774 |
msgstr "Callejero"
|
775 |
|
776 |
+
#: ../metaboxes.php:650 ../metaboxes.php:1085
|
777 |
msgid "HYBRID"
|
778 |
msgstr "Híbrido"
|
779 |
|
780 |
+
#: ../metaboxes.php:651 ../metaboxes.php:1086
|
781 |
msgid "TERRAIN"
|
782 |
msgstr "Terreno"
|
783 |
|
784 |
+
#: ../metaboxes.php:652 ../metaboxes.php:1087
|
785 |
msgid "SATELLITE"
|
786 |
msgstr "Satélite"
|
787 |
|
788 |
+
#: ../metaboxes.php:656 ../metaboxes.php:1091
|
789 |
msgid "Map Zoom Level"
|
790 |
msgstr "Nivel Zoom del Mapa"
|
791 |
|
792 |
+
#: ../metaboxes.php:657 ../metaboxes.php:1092
|
793 |
msgid "A good place to start is 15"
|
794 |
msgstr "Punto para comenzar aconsejado es de 15"
|
795 |
|
796 |
+
#: ../metaboxes.php:662 ../metaboxes.php:1097
|
797 |
msgid "1 (World View)"
|
798 |
msgstr "1(Vista Mundo)"
|
799 |
|
800 |
+
#: ../metaboxes.php:682 ../metaboxes.php:1117
|
801 |
msgid "21 (Street View)"
|
802 |
msgstr "21 (Vista calle)"
|
803 |
|
804 |
+
#: ../metaboxes.php:686 ../metaboxes.php:1121
|
805 |
msgid "Map Height"
|
806 |
msgstr "Altura Mapa"
|
807 |
|
808 |
+
#: ../metaboxes.php:687 ../metaboxes.php:1122
|
809 |
msgid "Default is 300"
|
810 |
msgstr "Por defecto es 300"
|
811 |
|
812 |
+
#: ../metaboxes.php:707
|
813 |
msgid "Post Video Box"
|
814 |
msgstr "Caja Publicación Video"
|
815 |
|
816 |
+
#: ../metaboxes.php:737
|
817 |
msgid "Beside"
|
818 |
msgstr "Junto a"
|
819 |
|
820 |
+
#: ../metaboxes.php:749 ../metaboxes.php:985
|
821 |
msgid "Image Slider"
|
822 |
msgstr "Imagen Slider"
|
823 |
|
824 |
+
#: ../metaboxes.php:771
|
825 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
826 |
msgstr ""
|
827 |
"El valor predeterminado es: 450 <b>(Nota: sólo el número, por ejemplo: 350)</"
|
828 |
"b>"
|
829 |
|
830 |
+
#: ../metaboxes.php:777
|
831 |
msgid ""
|
832 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
833 |
"just input number, example: 650)</b>"
|
835 |
"El valor predeterminado es: 670 ó 1140 en <b> diseños </ b> arriba <b> o </ "
|
836 |
"b> tres filas (Nota: sólo el número, por ejemplo: 650) </ b>"
|
837 |
|
838 |
+
#: ../metaboxes.php:782
|
839 |
#, fuzzy
|
840 |
msgid "Auto Play Slider?"
|
841 |
msgstr "¿Reproducción automática?"
|
842 |
|
843 |
+
#: ../metaboxes.php:858
|
844 |
msgid "Similar Portfolio Item Carousel"
|
845 |
msgstr "Carrusel de articulos similares del Portfolio"
|
846 |
|
847 |
+
#: ../metaboxes.php:859
|
848 |
msgid "Display a carousel with similar portfolio items below project?"
|
849 |
msgstr ""
|
850 |
"¿Mostrar un carrusel con artículos similares debajo de datos del proyecto?"
|
851 |
|
852 |
+
#: ../metaboxes.php:864
|
853 |
msgid "Yes - Display Recent Projects"
|
854 |
msgstr "Sí - Mostrar Proyectos Recientes"
|
855 |
|
856 |
+
#: ../metaboxes.php:940
|
857 |
msgid "Set image height"
|
858 |
msgstr "Ajustar altura imagen"
|
859 |
|
860 |
+
#: ../metaboxes.php:941
|
861 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
862 |
msgstr ""
|
863 |
"Valor por defecto proporción 1:1 <b>(Nota: sólo un número, ejemplo: 350)</b>"
|
864 |
|
865 |
+
#: ../metaboxes.php:958
|
866 |
msgid "Add Lightbox link in the top right of each item"
|
867 |
msgstr ""
|
868 |
"Añadir enlace Lightbox en la parte superior derecha de cada elemento"
|
869 |
|
870 |
+
#: ../metaboxes.php:980
|
871 |
msgid "Feature Options"
|
872 |
msgstr "Características Opciones"
|
873 |
|
874 |
+
#: ../metaboxes.php:981
|
875 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
876 |
msgstr ""
|
877 |
"Si usa imagen para slider, asegúrese de subir imágenes de al menos 1140 px"
|
878 |
|
879 |
+
#: ../metaboxes.php:991 ../metaboxes.php:1137
|
880 |
#, fuzzy
|
881 |
msgid "Slider Gallery"
|
882 |
msgstr "Limpiar Galerí¡ía"
|
883 |
|
884 |
+
#: ../metaboxes.php:998
|
885 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
886 |
msgstr ""
|
887 |
"Por defecto es: 400 <b>(Nota: introducir sólo número, ejemplo: 350)</b>"
|
888 |
|
889 |
+
#: ../metaboxes.php:1004
|
890 |
msgid ""
|
891 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
892 |
"to Carousel slider)</b>"
|
894 |
"Valor por defecto: 1140 <b>(Nota: sólo número, ejemplo: 650, no funciona "
|
895 |
"para slider carrusel)</b>"
|
896 |
|
897 |
+
#: ../metaboxes.php:1009
|
898 |
msgid "Use Lightbox for Feature Image"
|
899 |
msgstr "Usar lightbox para imagen destacadas"
|
900 |
|
901 |
+
#: ../metaboxes.php:1010
|
902 |
msgid ""
|
903 |
"If feature option is set to image, choose to use lightbox link with image."
|
904 |
msgstr ""
|
languages/virtue-toolkit-fr_FR.mo
ADDED
Binary file
|
languages/{kadencetoolkit-fr_FR.po → virtue-toolkit-fr_FR.po}
RENAMED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Matthieu Durocher <matthieu@technocyclope.com>\n"
|
7 |
"Language-Team: Matthieu Durocher\n"
|
8 |
"Language: fr_FR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
@@ -45,7 +45,7 @@ msgstr "Ajouter une icône"
|
|
45 |
|
46 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
47 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
48 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
49 |
msgid "Remove"
|
50 |
msgstr "Enlever"
|
51 |
|
@@ -60,18 +60,18 @@ msgid "Add or Upload File"
|
|
60 |
msgstr ""
|
61 |
|
62 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
63 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:760
|
64 |
#, fuzzy
|
65 |
msgid "Remove Image"
|
66 |
msgstr "Retirer l image"
|
67 |
|
68 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
69 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
70 |
msgid "File:"
|
71 |
msgstr ""
|
72 |
|
73 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
74 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
75 |
msgid "Download"
|
76 |
msgstr "Télécharger"
|
77 |
|
@@ -80,9 +80,9 @@ msgid "Clear"
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
83 |
-
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:
|
84 |
-
#: ../metaboxes.php:
|
85 |
-
#: ../metaboxes.php:
|
86 |
msgid "Default"
|
87 |
msgstr "Défaut"
|
88 |
|
@@ -96,6 +96,10 @@ msgstr "Choisir une icône"
|
|
96 |
msgid "Current Color"
|
97 |
msgstr "Couleur principale"
|
98 |
|
|
|
|
|
|
|
|
|
99 |
#: ../cmb/init.php:288
|
100 |
#, fuzzy
|
101 |
msgid "Select / Deselect All"
|
@@ -190,8 +194,8 @@ msgstr "Carrousel d'images"
|
|
190 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:
|
194 |
-
#: ../metaboxes.php:
|
195 |
msgid "None"
|
196 |
msgstr "Aucun"
|
197 |
|
@@ -200,7 +204,7 @@ msgstr "Aucun"
|
|
200 |
msgid "Post Slider Gallery"
|
201 |
msgstr "Galerie du billet"
|
202 |
|
203 |
-
#: ../metaboxes.php:148 ../metaboxes.php:
|
204 |
#, fuzzy
|
205 |
msgid "Add images for gallery here"
|
206 |
msgstr "Ajouter des images à la galerie"
|
@@ -210,7 +214,7 @@ msgstr "Ajouter des images à la galerie"
|
|
210 |
msgid "Max Slider Height"
|
211 |
msgstr "Hauteur maximale de l'image ou du carrousel"
|
212 |
|
213 |
-
#: ../metaboxes.php:154 ../metaboxes.php:
|
214 |
#, fuzzy
|
215 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
216 |
msgstr ""
|
@@ -264,8 +268,8 @@ msgstr "Options du billet"
|
|
264 |
msgid "Video Post Default"
|
265 |
msgstr "Valeurs par défaut des billets"
|
266 |
|
267 |
-
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:
|
268 |
-
#: ../metaboxes.php:
|
269 |
msgid "Video"
|
270 |
msgstr "Vidéo"
|
271 |
|
@@ -300,11 +304,11 @@ msgstr ""
|
|
300 |
msgid "Video - (when possible)"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../metaboxes.php:228 ../metaboxes.php:
|
304 |
msgid "Portfolio Post Options"
|
305 |
msgstr "Options de billet portefolio"
|
306 |
|
307 |
-
#: ../metaboxes.php:236 ../metaboxes.php:
|
308 |
msgid "Project Layout"
|
309 |
msgstr "Disposition de projet"
|
310 |
|
@@ -318,59 +322,91 @@ msgstr "À côté"
|
|
318 |
msgid "Beside 33%"
|
319 |
msgstr "À côté"
|
320 |
|
321 |
-
#: ../metaboxes.php:243 ../metaboxes.php:
|
322 |
msgid "Above"
|
323 |
msgstr "Au-dessus"
|
324 |
|
325 |
-
#: ../metaboxes.php:244 ../metaboxes.php:
|
326 |
msgid "Three Rows"
|
327 |
msgstr "Trois rangées"
|
328 |
|
329 |
-
#: ../metaboxes.php:248 ../metaboxes.php:
|
330 |
msgid "Project Options"
|
331 |
msgstr "Options du projet"
|
332 |
|
333 |
-
#: ../metaboxes.php:253 ../metaboxes.php:
|
334 |
msgid "Image"
|
335 |
msgstr "Image"
|
336 |
|
337 |
-
#: ../metaboxes.php:254 ../metaboxes.php:
|
338 |
#, fuzzy
|
339 |
msgid "Image Slider (Flex Slider)"
|
340 |
msgstr "Carrousel d'images"
|
341 |
|
342 |
-
#: ../metaboxes.php:255 ../metaboxes.php:
|
343 |
msgid "Carousel Slider"
|
344 |
msgstr "Carrousel"
|
345 |
|
346 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
#, fuzzy
|
348 |
msgid "Portfolio Slider/Images"
|
349 |
msgstr "Images du carrousel du portefolio"
|
350 |
|
351 |
-
#: ../metaboxes.php:
|
352 |
#, fuzzy
|
353 |
msgid "Add images for post here"
|
354 |
msgstr "Ajouter des images à la galerie"
|
355 |
|
356 |
-
#: ../metaboxes.php:
|
357 |
-
#: ../metaboxes.php:
|
358 |
msgid "Max Image/Slider Height"
|
359 |
msgstr "Hauteur maximale de l'image ou du carrousel"
|
360 |
|
361 |
-
#: ../metaboxes.php:
|
362 |
#, fuzzy
|
363 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
364 |
msgstr ""
|
365 |
"La valeur par défaut est 450 <b>(Note : entrez juste un nombre, exemple : "
|
366 |
"350)</b>"
|
367 |
|
368 |
-
#: ../metaboxes.php:
|
369 |
-
#: ../metaboxes.php:
|
370 |
msgid "Max Image/Slider Width"
|
371 |
msgstr "Largeur maximale de l'image ou du carrousel"
|
372 |
|
373 |
-
#: ../metaboxes.php:
|
374 |
#, fuzzy
|
375 |
msgid ""
|
376 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
@@ -379,321 +415,304 @@ msgstr ""
|
|
379 |
"La valeur par défaut est 670 et 1140 avec les dispositions <b>au-dessus</b> "
|
380 |
"et <b>trois rangées</b> <b>(Note : entrez juste un nombre, exemple : 650)</b>"
|
381 |
|
382 |
-
#: ../metaboxes.php:
|
383 |
msgid "Value 01 Title"
|
384 |
msgstr "Titre de la valeur 01"
|
385 |
|
386 |
-
#: ../metaboxes.php:
|
387 |
msgid "ex. Project Type:"
|
388 |
msgstr "ex. Type de projet :"
|
389 |
|
390 |
-
#: ../metaboxes.php:
|
391 |
msgid "Value 01 Description"
|
392 |
msgstr "Description de la valeur 01"
|
393 |
|
394 |
-
#: ../metaboxes.php:
|
395 |
msgid "ex. Character Illustration"
|
396 |
msgstr "ex. Illustration de personnage"
|
397 |
|
398 |
-
#: ../metaboxes.php:
|
399 |
msgid "Value 02 Title"
|
400 |
msgstr "Titre de la valeur 02"
|
401 |
|
402 |
-
#: ../metaboxes.php:
|
403 |
msgid "ex. Skills Needed:"
|
404 |
msgstr "ex. Compétences requises :"
|
405 |
|
406 |
-
#: ../metaboxes.php:
|
407 |
msgid "Value 02 Description"
|
408 |
msgstr "Description de la valeur 02"
|
409 |
|
410 |
-
#: ../metaboxes.php:
|
411 |
msgid "ex. Photoshop, Illustrator"
|
412 |
msgstr "ex. Photoshop, Illustrator"
|
413 |
|
414 |
-
#: ../metaboxes.php:
|
415 |
msgid "Value 03 Title"
|
416 |
msgstr "Titre de la valeur 03"
|
417 |
|
418 |
-
#: ../metaboxes.php:
|
419 |
msgid "ex. Customer:"
|
420 |
msgstr "ex. Clientèle :"
|
421 |
|
422 |
-
#: ../metaboxes.php:
|
423 |
msgid "Value 03 Description"
|
424 |
msgstr "Description de la valeur 03"
|
425 |
|
426 |
-
#: ../metaboxes.php:
|
427 |
msgid "ex. Example Inc"
|
428 |
msgstr "ex. Exemple Inc."
|
429 |
|
430 |
-
#: ../metaboxes.php:
|
431 |
msgid "Value 04 Title"
|
432 |
msgstr "Titre de la valeur 04"
|
433 |
|
434 |
-
#: ../metaboxes.php:
|
435 |
msgid "ex. Project Year:"
|
436 |
msgstr "ex. Année du projet :"
|
437 |
|
438 |
-
#: ../metaboxes.php:
|
439 |
msgid "Value 04 Description"
|
440 |
msgstr "Description de la valeur 04"
|
441 |
|
442 |
-
#: ../metaboxes.php:
|
443 |
msgid "ex. 2013"
|
444 |
msgstr "ex. 2013"
|
445 |
|
446 |
-
#: ../metaboxes.php:
|
447 |
msgid "External Website"
|
448 |
msgstr "Site externe"
|
449 |
|
450 |
-
#: ../metaboxes.php:
|
451 |
msgid "ex. Website:"
|
452 |
msgstr "ex. Site :"
|
453 |
|
454 |
-
#: ../metaboxes.php:
|
455 |
msgid "Website Address"
|
456 |
msgstr "Adresse du site"
|
457 |
|
458 |
-
#: ../metaboxes.php:
|
459 |
msgid "ex. http://www.example.com"
|
460 |
msgstr "ex. http://www.exemple.com"
|
461 |
|
462 |
-
#: ../metaboxes.php:
|
463 |
msgid "If Video Project"
|
464 |
msgstr "Si c'est un projet vidéo"
|
465 |
|
466 |
-
#: ../metaboxes.php:
|
467 |
-
#: ../metaboxes.php:
|
468 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
469 |
msgstr "Mettre le code d'intégration ici, fonctionne avec youtube, vimeo..."
|
470 |
|
471 |
-
#: ../metaboxes.php:
|
472 |
#, fuzzy
|
473 |
msgid "Bottom Carousel Options"
|
474 |
msgstr "Options de la page de contact"
|
475 |
|
476 |
-
#: ../metaboxes.php:
|
477 |
msgid "Carousel Title"
|
478 |
msgstr "Titre du carrousel"
|
479 |
|
480 |
-
#: ../metaboxes.php:
|
481 |
msgid "ex. Similar Projects"
|
482 |
msgstr "ex. Projets similaires"
|
483 |
|
484 |
-
#: ../metaboxes.php:
|
485 |
#, fuzzy
|
486 |
msgid "Bottom Portfolio Carousel"
|
487 |
msgstr "Carrousel de portefolio"
|
488 |
|
489 |
-
#: ../metaboxes.php:
|
490 |
#, fuzzy
|
491 |
msgid "Display a carousel with portfolio items below project?"
|
492 |
msgstr ""
|
493 |
"Afficher un carrousel avec des items de portefolio similaires sous le "
|
494 |
"projet ?"
|
495 |
|
496 |
-
#: ../metaboxes.php:
|
497 |
-
#: ../metaboxes.php:
|
498 |
-
#: ../metaboxes.php:
|
499 |
-
#: ../metaboxes.php:
|
500 |
msgid "No"
|
501 |
msgstr "Non"
|
502 |
|
503 |
-
#: ../metaboxes.php:
|
504 |
-
#: ../metaboxes.php:
|
505 |
-
#: ../metaboxes.php:
|
506 |
-
#: ../metaboxes.php:
|
507 |
msgid "Yes"
|
508 |
msgstr "Oui"
|
509 |
|
510 |
-
#: ../metaboxes.php:
|
511 |
#, fuzzy
|
512 |
msgid "Carousel Items"
|
513 |
msgstr "Titre du carrousel"
|
514 |
|
515 |
-
#: ../metaboxes.php:
|
516 |
#, fuzzy
|
517 |
msgid "All Portfolio Posts"
|
518 |
msgstr "Options de billet portefolio"
|
519 |
|
520 |
-
#: ../metaboxes.php:
|
521 |
msgid "Only of same Portfolio Type"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../metaboxes.php:
|
525 |
#, fuzzy
|
526 |
msgid "Carousel Order"
|
527 |
msgstr "Carrousel"
|
528 |
|
529 |
-
#: ../metaboxes.php:
|
530 |
msgid "Menu Order"
|
531 |
msgstr "Tri du menu"
|
532 |
|
533 |
-
#: ../metaboxes.php:
|
534 |
msgid "Title"
|
535 |
msgstr "Titre"
|
536 |
|
537 |
-
#: ../metaboxes.php:
|
538 |
msgid "Date"
|
539 |
msgstr "Date"
|
540 |
|
541 |
-
#: ../metaboxes.php:
|
542 |
msgid "Random"
|
543 |
msgstr "Au hasard"
|
544 |
|
545 |
-
#: ../metaboxes.php:
|
546 |
msgid "Portfolio Page Options"
|
547 |
msgstr "Options de la page portefolio"
|
548 |
|
549 |
-
#: ../metaboxes.php:
|
550 |
msgid "Style"
|
551 |
msgstr "Style"
|
552 |
|
553 |
-
#: ../metaboxes.php:
|
554 |
#, fuzzy
|
555 |
msgid "Post Boxes"
|
556 |
msgstr "Boîte de billet vidéo"
|
557 |
|
558 |
-
#: ../metaboxes.php:
|
559 |
msgid "Flat with Margin"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../metaboxes.php:
|
563 |
#, fuzzy
|
564 |
msgid "Hover Style"
|
565 |
msgstr "Style de bordure"
|
566 |
|
567 |
-
#: ../metaboxes.php:
|
568 |
#, fuzzy
|
569 |
msgid "Light"
|
570 |
msgstr "Droite"
|
571 |
|
572 |
-
#: ../metaboxes.php:
|
573 |
msgid "Dark"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../metaboxes.php:
|
577 |
msgid "Primary Color"
|
578 |
msgstr "Couleur principale"
|
579 |
|
580 |
-
#: ../metaboxes.php:
|
581 |
msgid "Columns"
|
582 |
msgstr "Colonnes"
|
583 |
|
584 |
-
#: ../metaboxes.php:
|
585 |
-
msgid "Four Column"
|
586 |
-
msgstr "Quatre colonnes"
|
587 |
-
|
588 |
-
#: ../metaboxes.php:437 ../metaboxes.php:865
|
589 |
-
msgid "Three Column"
|
590 |
-
msgstr "Trois colonnes"
|
591 |
-
|
592 |
-
#: ../metaboxes.php:438 ../metaboxes.php:866
|
593 |
-
msgid "Two Column"
|
594 |
-
msgstr "Deux colonnes"
|
595 |
-
|
596 |
-
#: ../metaboxes.php:439
|
597 |
-
#, fuzzy
|
598 |
-
msgid "Five Column"
|
599 |
-
msgstr "Quatre colonnes"
|
600 |
-
|
601 |
-
#: ../metaboxes.php:443 ../metaboxes.php:870
|
602 |
msgid "Portfolio Work Types"
|
603 |
msgstr "Types de travail du portefolio"
|
604 |
|
605 |
-
#: ../metaboxes.php:
|
606 |
msgid "Order Items By"
|
607 |
msgstr "Classer les items par"
|
608 |
|
609 |
-
#: ../metaboxes.php:
|
610 |
msgid "Items per Page"
|
611 |
msgstr "Items par page"
|
612 |
|
613 |
-
#: ../metaboxes.php:
|
614 |
msgid "How many portfolio items per page"
|
615 |
msgstr "Combien d'articles de portefolio par page"
|
616 |
|
617 |
-
#: ../metaboxes.php:
|
618 |
msgid "All"
|
619 |
msgstr "Tout"
|
620 |
|
621 |
-
#: ../metaboxes.php:
|
622 |
#, fuzzy
|
623 |
msgid "Image Ratio?"
|
624 |
msgstr "Image"
|
625 |
|
626 |
-
#: ../metaboxes.php:
|
627 |
msgid "Square 1:1"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: ../metaboxes.php:
|
631 |
#, fuzzy
|
632 |
msgid "Portrait 3:4"
|
633 |
msgstr "Image à la française"
|
634 |
|
635 |
-
#: ../metaboxes.php:
|
636 |
#, fuzzy
|
637 |
msgid "Landscape 4:3"
|
638 |
msgstr "Image à l'italienne"
|
639 |
|
640 |
-
#: ../metaboxes.php:
|
641 |
#, fuzzy
|
642 |
msgid "Wide Landscape 4:2"
|
643 |
msgstr "Image à l'italienne"
|
644 |
|
645 |
-
#: ../metaboxes.php:
|
646 |
msgid "Display Item Work Types"
|
647 |
msgstr "Afficher les types d'items de travail "
|
648 |
|
649 |
-
#: ../metaboxes.php:
|
650 |
msgid "Display Item Excerpt"
|
651 |
msgstr "Afficher l'extrait de l'item"
|
652 |
|
653 |
-
#: ../metaboxes.php:
|
654 |
#, fuzzy
|
655 |
msgid "Add Lightbox link in each item"
|
656 |
msgstr "Ajouter un lien de Visionneuse en haut à droite de chaque item"
|
657 |
|
658 |
-
#: ../metaboxes.php:
|
659 |
msgid "Feature Page Options"
|
660 |
msgstr "Options de la page En vedette"
|
661 |
|
662 |
-
#: ../metaboxes.php:
|
663 |
#, fuzzy
|
664 |
msgid "Header Options"
|
665 |
msgstr "Options des polices d'entête"
|
666 |
|
667 |
-
#: ../metaboxes.php:
|
668 |
#, fuzzy
|
669 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
670 |
msgstr ""
|
671 |
"Si le carrousel d'images est utilisé, assurez-vous que les images "
|
672 |
"téléversées ont au moins 1140 pixels de largeur."
|
673 |
|
674 |
-
#: ../metaboxes.php:
|
675 |
msgid "Page Title"
|
676 |
msgstr "Titre de la page"
|
677 |
|
678 |
-
#: ../metaboxes.php:
|
679 |
msgid "Slider Images"
|
680 |
msgstr "Images du carrousel"
|
681 |
|
682 |
-
#: ../metaboxes.php:
|
683 |
msgid "Add for flex, carousel, and image carousel."
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../metaboxes.php:
|
687 |
#, fuzzy
|
688 |
msgid "If Cyclone Slider"
|
689 |
msgstr "Carrousel"
|
690 |
|
691 |
-
#: ../metaboxes.php:
|
692 |
msgid ""
|
693 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../metaboxes.php:
|
697 |
#, fuzzy
|
698 |
msgid ""
|
699 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
@@ -703,114 +722,114 @@ msgstr ""
|
|
703 |
"<b>(Note : entrez juste un nombre, exemple : 650, ne s'applique pas au "
|
704 |
"carrousel)</b>"
|
705 |
|
706 |
-
#: ../metaboxes.php:
|
707 |
msgid "If Video Post"
|
708 |
msgstr "Si c'est un billet vidéo"
|
709 |
|
710 |
-
#: ../metaboxes.php:
|
711 |
msgid "Contact Page Options"
|
712 |
msgstr "Options de la page de contact"
|
713 |
|
714 |
-
#: ../metaboxes.php:
|
715 |
msgid "Use Contact Form"
|
716 |
msgstr "Utiliser le formulaire de contact"
|
717 |
|
718 |
-
#: ../metaboxes.php:
|
719 |
msgid "Contact Form Title"
|
720 |
msgstr "Titre du formulaire de contact"
|
721 |
|
722 |
-
#: ../metaboxes.php:
|
723 |
msgid "ex. Send us an Email"
|
724 |
msgstr "ex. Envoyez-nous un courriel"
|
725 |
|
726 |
-
#: ../metaboxes.php:
|
727 |
#, fuzzy
|
728 |
msgid "Contact Form Email Recipient"
|
729 |
msgstr "Adresse de courriel du formulaire de contact"
|
730 |
|
731 |
-
#: ../metaboxes.php:
|
732 |
msgid "ex. joe@gmail.com"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: ../metaboxes.php:
|
736 |
msgid "Use Simple Math Question"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: ../metaboxes.php:
|
740 |
msgid "Use Map"
|
741 |
msgstr "Utiliser la carte"
|
742 |
|
743 |
-
#: ../metaboxes.php:
|
744 |
msgid "Address"
|
745 |
msgstr "Adresse"
|
746 |
|
747 |
-
#: ../metaboxes.php:
|
748 |
msgid "Enter your Location"
|
749 |
msgstr "Entrez votre localisation"
|
750 |
|
751 |
-
#: ../metaboxes.php:
|
752 |
msgid "Map Type"
|
753 |
msgstr "Type de carte"
|
754 |
|
755 |
-
#: ../metaboxes.php:
|
756 |
msgid "ROADMAP"
|
757 |
msgstr "Carte routière"
|
758 |
|
759 |
-
#: ../metaboxes.php:
|
760 |
msgid "HYBRID"
|
761 |
msgstr "Combinée"
|
762 |
|
763 |
-
#: ../metaboxes.php:
|
764 |
msgid "TERRAIN"
|
765 |
msgstr "Topographique"
|
766 |
|
767 |
-
#: ../metaboxes.php:
|
768 |
msgid "SATELLITE"
|
769 |
msgstr "Satellite"
|
770 |
|
771 |
-
#: ../metaboxes.php:
|
772 |
msgid "Map Zoom Level"
|
773 |
msgstr "Niveau d'agrandissement de la carte"
|
774 |
|
775 |
-
#: ../metaboxes.php:
|
776 |
msgid "A good place to start is 15"
|
777 |
msgstr "Un bon choix initial est 15"
|
778 |
|
779 |
-
#: ../metaboxes.php:
|
780 |
msgid "1 (World View)"
|
781 |
msgstr "1 (Vue globale)"
|
782 |
|
783 |
-
#: ../metaboxes.php:
|
784 |
msgid "21 (Street View)"
|
785 |
msgstr "21 (Vue de la rue)"
|
786 |
|
787 |
-
#: ../metaboxes.php:
|
788 |
msgid "Map Height"
|
789 |
msgstr "Hauteur de la carte"
|
790 |
|
791 |
-
#: ../metaboxes.php:
|
792 |
msgid "Default is 300"
|
793 |
msgstr "La valeur par défaut est 300"
|
794 |
|
795 |
-
#: ../metaboxes.php:
|
796 |
msgid "Post Video Box"
|
797 |
msgstr "Boîte de billet vidéo"
|
798 |
|
799 |
-
#: ../metaboxes.php:
|
800 |
msgid "Beside"
|
801 |
msgstr "À côté"
|
802 |
|
803 |
-
#: ../metaboxes.php:
|
804 |
msgid "Image Slider"
|
805 |
msgstr "Carrousel d'images"
|
806 |
|
807 |
-
#: ../metaboxes.php:
|
808 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
809 |
msgstr ""
|
810 |
"La valeur par défaut est 450 <b>(Note : entrez juste un nombre, exemple : "
|
811 |
"350)</b>"
|
812 |
|
813 |
-
#: ../metaboxes.php:
|
814 |
msgid ""
|
815 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
816 |
"just input number, example: 650)</b>"
|
@@ -818,56 +837,61 @@ msgstr ""
|
|
818 |
"La valeur par défaut est 670 et 1140 avec les dispositions <b>au-dessus</b> "
|
819 |
"et <b>trois rangées</b> <b>(Note : entrez juste un nombre, exemple : 650)</b>"
|
820 |
|
821 |
-
#: ../metaboxes.php:
|
822 |
#, fuzzy
|
823 |
msgid "Auto Play Slider?"
|
824 |
msgstr "Lecture automatique ?"
|
825 |
|
826 |
-
#: ../metaboxes.php:
|
827 |
msgid "Similar Portfolio Item Carousel"
|
828 |
msgstr "Carrousel d'items de portefolio similaires"
|
829 |
|
830 |
-
#: ../metaboxes.php:
|
831 |
msgid "Display a carousel with similar portfolio items below project?"
|
832 |
msgstr ""
|
833 |
"Afficher un carrousel avec des items de portefolio similaires sous le "
|
834 |
"projet ?"
|
835 |
|
836 |
-
#: ../metaboxes.php:
|
837 |
msgid "Yes - Display Recent Projects"
|
838 |
msgstr "Oui, afficher les projets récents"
|
839 |
|
840 |
-
#: ../metaboxes.php:
|
841 |
msgid "Set image height"
|
842 |
msgstr "Régler la hauteur de l'image"
|
843 |
|
844 |
-
#: ../metaboxes.php:
|
845 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
846 |
msgstr ""
|
847 |
"La proportion par défaut est 1:1 <b>(Note : entrez juste un nombre, "
|
848 |
"exemple : 350)</b>"
|
849 |
|
850 |
-
#: ../metaboxes.php:
|
851 |
msgid "Add Lightbox link in the top right of each item"
|
852 |
msgstr "Ajouter un lien de Visionneuse en haut à droite de chaque item"
|
853 |
|
854 |
-
#: ../metaboxes.php:
|
855 |
msgid "Feature Options"
|
856 |
msgstr "Options de la section En vedette"
|
857 |
|
858 |
-
#: ../metaboxes.php:
|
859 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
860 |
msgstr ""
|
861 |
"Si le carrousel d'images est utilisé, assurez-vous que les images "
|
862 |
"téléversées ont au moins 1140 pixels de largeur."
|
863 |
|
864 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
865 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
866 |
msgstr ""
|
867 |
"La valeur par défaut est 400 <b>(Note : entrez juste un nombre, exemple : "
|
868 |
"350)</b>"
|
869 |
|
870 |
-
#: ../metaboxes.php:
|
871 |
msgid ""
|
872 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
873 |
"to Carousel slider)</b>"
|
@@ -875,96 +899,92 @@ msgstr ""
|
|
875 |
"La valeur par défaut est 1140 (Note : entrez juste un nombre, exemple : 650, "
|
876 |
"ne s'applique pas au carrousel)</b>"
|
877 |
|
878 |
-
#: ../metaboxes.php:
|
879 |
msgid "Use Lightbox for Feature Image"
|
880 |
msgstr "Utilisez la Visionneuse pour l'image en vedette"
|
881 |
|
882 |
-
#: ../metaboxes.php:
|
883 |
msgid ""
|
884 |
"If feature option is set to image, choose to use lightbox link with image."
|
885 |
msgstr ""
|
886 |
"Si l'option En vedette est réglée à image, choisir d'utiliser le lien "
|
887 |
"visionneuse avec l'image."
|
888 |
|
889 |
-
#: ../
|
890 |
-
#, fuzzy
|
891 |
-
msgid "Slider Gallery"
|
892 |
-
msgstr "Effacer la galerie"
|
893 |
-
|
894 |
-
#: ../page-contact.php:12 ../template-contact.php:7
|
895 |
#, fuzzy
|
896 |
msgid "This field is required."
|
897 |
msgstr "Ce champ doit contenir une date valide."
|
898 |
|
899 |
-
#: ../page-contact.php:
|
900 |
#, fuzzy
|
901 |
msgid "Please enter a valid email address."
|
902 |
msgstr "Entrez une adresse de courriel valide."
|
903 |
|
904 |
-
#: ../page-contact.php:
|
905 |
msgid "Check your math."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: ../page-contact.php:
|
909 |
msgid "Please enter your name."
|
910 |
msgstr "S'il vous plaît entrez votre nom."
|
911 |
|
912 |
-
#: ../page-contact.php:
|
913 |
msgid "Please enter your email address."
|
914 |
msgstr "S'il vous plaît, entrez votre adresse courriel."
|
915 |
|
916 |
-
#: ../page-contact.php:
|
917 |
msgid "You entered an invalid email address."
|
918 |
msgstr "Vous avez entré une adresse email valide."
|
919 |
|
920 |
-
#: ../page-contact.php:
|
921 |
msgid "Please enter a message."
|
922 |
msgstr "S'il vous plaît entrez un message."
|
923 |
|
924 |
-
#: ../page-contact.php:
|
925 |
-
#: ../template-contact.php:
|
926 |
#, fuzzy
|
927 |
msgid "Contact"
|
928 |
msgstr "Informations de contact"
|
929 |
|
930 |
-
#: ../page-contact.php:
|
931 |
msgid "From"
|
932 |
msgstr "De"
|
933 |
|
934 |
-
#: ../page-contact.php:
|
935 |
msgid "Name"
|
936 |
msgstr "Nom complet"
|
937 |
|
938 |
-
#: ../page-contact.php:
|
939 |
msgid "Email"
|
940 |
msgstr "Courriel"
|
941 |
|
942 |
-
#: ../page-contact.php:
|
943 |
#, fuzzy
|
944 |
msgid "Comments"
|
945 |
msgstr "Commentaire"
|
946 |
|
947 |
-
#: ../page-contact.php:
|
948 |
msgid "Thanks, your email was sent successfully."
|
949 |
msgstr "Merci, votre courriel a été envoyé avec succès."
|
950 |
|
951 |
-
#: ../page-contact.php:
|
952 |
msgid "Sorry, an error occured."
|
953 |
msgstr "Désolé, une erreur est survenue."
|
954 |
|
955 |
-
#: ../page-contact.php:
|
956 |
msgid "Name:"
|
957 |
msgstr "Nom complet :"
|
958 |
|
959 |
-
#: ../page-contact.php:195
|
960 |
-
msgid "Email:
|
961 |
-
msgstr "Courriel :
|
962 |
|
963 |
-
#: ../page-contact.php:
|
964 |
-
|
|
|
965 |
msgstr "Message :"
|
966 |
|
967 |
-
#: ../page-contact.php:
|
968 |
msgid "Send Email"
|
969 |
msgstr "Envoyez"
|
970 |
|
@@ -1346,14 +1366,11 @@ msgstr ""
|
|
1346 |
msgid "YouTube Link"
|
1347 |
msgstr "Lien de l'icône"
|
1348 |
|
1349 |
-
|
1350 |
-
|
1351 |
-
msgstr "Courriel :"
|
1352 |
|
1353 |
-
|
1354 |
-
|
1355 |
-
msgid "Message:"
|
1356 |
-
msgstr "Message :"
|
1357 |
|
1358 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
1359 |
#~ msgstr "Désolé, la page que vous tentiez d'atteindre n'existe pas."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
+
"POT-Creation-Date: 2015-11-19 15:53-0700\n"
|
5 |
+
"PO-Revision-Date: 2015-11-19 15:53-0700\n"
|
6 |
"Last-Translator: Matthieu Durocher <matthieu@technocyclope.com>\n"
|
7 |
"Language-Team: Matthieu Durocher\n"
|
8 |
"Language: fr_FR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.5\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
45 |
|
46 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
47 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
48 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:282
|
49 |
msgid "Remove"
|
50 |
msgstr "Enlever"
|
51 |
|
60 |
msgstr ""
|
61 |
|
62 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
63 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:760 ../cmb/init.php:281
|
64 |
#, fuzzy
|
65 |
msgid "Remove Image"
|
66 |
msgstr "Retirer l image"
|
67 |
|
68 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
69 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:283
|
70 |
msgid "File:"
|
71 |
msgstr ""
|
72 |
|
73 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
74 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:284
|
75 |
msgid "Download"
|
76 |
msgstr "Télécharger"
|
77 |
|
80 |
msgstr ""
|
81 |
|
82 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
83 |
+
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:381
|
84 |
+
#: ../metaboxes.php:392 ../metaboxes.php:427 ../metaboxes.php:438
|
85 |
+
#: ../metaboxes.php:503
|
86 |
msgid "Default"
|
87 |
msgstr "Défaut"
|
88 |
|
96 |
msgid "Current Color"
|
97 |
msgstr "Couleur principale"
|
98 |
|
99 |
+
#: ../cmb/init.php:280
|
100 |
+
msgid "Use this file"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
#: ../cmb/init.php:288
|
104 |
#, fuzzy
|
105 |
msgid "Select / Deselect All"
|
194 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:258
|
198 |
+
#: ../metaboxes.php:753
|
199 |
msgid "None"
|
200 |
msgstr "Aucun"
|
201 |
|
204 |
msgid "Post Slider Gallery"
|
205 |
msgstr "Galerie du billet"
|
206 |
|
207 |
+
#: ../metaboxes.php:148 ../metaboxes.php:992 ../metaboxes.php:1138
|
208 |
#, fuzzy
|
209 |
msgid "Add images for gallery here"
|
210 |
msgstr "Ajouter des images à la galerie"
|
214 |
msgid "Max Slider Height"
|
215 |
msgstr "Hauteur maximale de l'image ou du carrousel"
|
216 |
|
217 |
+
#: ../metaboxes.php:154 ../metaboxes.php:567
|
218 |
#, fuzzy
|
219 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
220 |
msgstr ""
|
268 |
msgid "Video Post Default"
|
269 |
msgstr "Valeurs par défaut des billets"
|
270 |
|
271 |
+
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:550
|
272 |
+
#: ../metaboxes.php:752 ../metaboxes.php:986
|
273 |
msgid "Video"
|
274 |
msgstr "Vidéo"
|
275 |
|
304 |
msgid "Video - (when possible)"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../metaboxes.php:228 ../metaboxes.php:724
|
308 |
msgid "Portfolio Post Options"
|
309 |
msgstr "Options de billet portefolio"
|
310 |
|
311 |
+
#: ../metaboxes.php:236 ../metaboxes.php:732
|
312 |
msgid "Project Layout"
|
313 |
msgstr "Disposition de projet"
|
314 |
|
322 |
msgid "Beside 33%"
|
323 |
msgstr "À côté"
|
324 |
|
325 |
+
#: ../metaboxes.php:243 ../metaboxes.php:738
|
326 |
msgid "Above"
|
327 |
msgstr "Au-dessus"
|
328 |
|
329 |
+
#: ../metaboxes.php:244 ../metaboxes.php:739
|
330 |
msgid "Three Rows"
|
331 |
msgstr "Trois rangées"
|
332 |
|
333 |
+
#: ../metaboxes.php:248 ../metaboxes.php:743
|
334 |
msgid "Project Options"
|
335 |
msgstr "Options du projet"
|
336 |
|
337 |
+
#: ../metaboxes.php:253 ../metaboxes.php:748 ../metaboxes.php:987
|
338 |
msgid "Image"
|
339 |
msgstr "Image"
|
340 |
|
341 |
+
#: ../metaboxes.php:254 ../metaboxes.php:548
|
342 |
#, fuzzy
|
343 |
msgid "Image Slider (Flex Slider)"
|
344 |
msgstr "Carrousel d'images"
|
345 |
|
346 |
+
#: ../metaboxes.php:255 ../metaboxes.php:549 ../metaboxes.php:750
|
347 |
msgid "Carousel Slider"
|
348 |
msgstr "Carrousel"
|
349 |
|
350 |
+
#: ../metaboxes.php:257 ../metaboxes.php:751
|
351 |
+
msgid "Image Grid"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: ../metaboxes.php:262 ../metaboxes.php:757
|
355 |
+
msgid "Columns (Only for Image Grid option)"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: ../metaboxes.php:267 ../metaboxes.php:450 ../metaboxes.php:762
|
359 |
+
#: ../metaboxes.php:892
|
360 |
+
msgid "Four Column"
|
361 |
+
msgstr "Quatre colonnes"
|
362 |
+
|
363 |
+
#: ../metaboxes.php:268 ../metaboxes.php:451 ../metaboxes.php:763
|
364 |
+
#: ../metaboxes.php:893
|
365 |
+
msgid "Three Column"
|
366 |
+
msgstr "Trois colonnes"
|
367 |
+
|
368 |
+
#: ../metaboxes.php:269 ../metaboxes.php:452 ../metaboxes.php:764
|
369 |
+
#: ../metaboxes.php:894
|
370 |
+
msgid "Two Column"
|
371 |
+
msgstr "Deux colonnes"
|
372 |
+
|
373 |
+
#: ../metaboxes.php:270 ../metaboxes.php:453 ../metaboxes.php:765
|
374 |
+
#, fuzzy
|
375 |
+
msgid "Five Column"
|
376 |
+
msgstr "Quatre colonnes"
|
377 |
+
|
378 |
+
#: ../metaboxes.php:271 ../metaboxes.php:766
|
379 |
+
msgid "Six Column"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: ../metaboxes.php:275
|
383 |
#, fuzzy
|
384 |
msgid "Portfolio Slider/Images"
|
385 |
msgstr "Images du carrousel du portefolio"
|
386 |
|
387 |
+
#: ../metaboxes.php:276
|
388 |
#, fuzzy
|
389 |
msgid "Add images for post here"
|
390 |
msgstr "Ajouter des images à la galerie"
|
391 |
|
392 |
+
#: ../metaboxes.php:281 ../metaboxes.php:566 ../metaboxes.php:770
|
393 |
+
#: ../metaboxes.php:997
|
394 |
msgid "Max Image/Slider Height"
|
395 |
msgstr "Hauteur maximale de l'image ou du carrousel"
|
396 |
|
397 |
+
#: ../metaboxes.php:282
|
398 |
#, fuzzy
|
399 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
400 |
msgstr ""
|
401 |
"La valeur par défaut est 450 <b>(Note : entrez juste un nombre, exemple : "
|
402 |
"350)</b>"
|
403 |
|
404 |
+
#: ../metaboxes.php:287 ../metaboxes.php:572 ../metaboxes.php:776
|
405 |
+
#: ../metaboxes.php:1003
|
406 |
msgid "Max Image/Slider Width"
|
407 |
msgstr "Largeur maximale de l'image ou du carrousel"
|
408 |
|
409 |
+
#: ../metaboxes.php:288
|
410 |
#, fuzzy
|
411 |
msgid ""
|
412 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
415 |
"La valeur par défaut est 670 et 1140 avec les dispositions <b>au-dessus</b> "
|
416 |
"et <b>trois rangées</b> <b>(Note : entrez juste un nombre, exemple : 650)</b>"
|
417 |
|
418 |
+
#: ../metaboxes.php:293 ../metaboxes.php:792
|
419 |
msgid "Value 01 Title"
|
420 |
msgstr "Titre de la valeur 01"
|
421 |
|
422 |
+
#: ../metaboxes.php:294 ../metaboxes.php:793
|
423 |
msgid "ex. Project Type:"
|
424 |
msgstr "ex. Type de projet :"
|
425 |
|
426 |
+
#: ../metaboxes.php:299 ../metaboxes.php:798
|
427 |
msgid "Value 01 Description"
|
428 |
msgstr "Description de la valeur 01"
|
429 |
|
430 |
+
#: ../metaboxes.php:300 ../metaboxes.php:799
|
431 |
msgid "ex. Character Illustration"
|
432 |
msgstr "ex. Illustration de personnage"
|
433 |
|
434 |
+
#: ../metaboxes.php:305 ../metaboxes.php:804
|
435 |
msgid "Value 02 Title"
|
436 |
msgstr "Titre de la valeur 02"
|
437 |
|
438 |
+
#: ../metaboxes.php:306 ../metaboxes.php:805
|
439 |
msgid "ex. Skills Needed:"
|
440 |
msgstr "ex. Compétences requises :"
|
441 |
|
442 |
+
#: ../metaboxes.php:311 ../metaboxes.php:810
|
443 |
msgid "Value 02 Description"
|
444 |
msgstr "Description de la valeur 02"
|
445 |
|
446 |
+
#: ../metaboxes.php:312 ../metaboxes.php:811
|
447 |
msgid "ex. Photoshop, Illustrator"
|
448 |
msgstr "ex. Photoshop, Illustrator"
|
449 |
|
450 |
+
#: ../metaboxes.php:317 ../metaboxes.php:816
|
451 |
msgid "Value 03 Title"
|
452 |
msgstr "Titre de la valeur 03"
|
453 |
|
454 |
+
#: ../metaboxes.php:318 ../metaboxes.php:817
|
455 |
msgid "ex. Customer:"
|
456 |
msgstr "ex. Clientèle :"
|
457 |
|
458 |
+
#: ../metaboxes.php:323 ../metaboxes.php:822
|
459 |
msgid "Value 03 Description"
|
460 |
msgstr "Description de la valeur 03"
|
461 |
|
462 |
+
#: ../metaboxes.php:324 ../metaboxes.php:823
|
463 |
msgid "ex. Example Inc"
|
464 |
msgstr "ex. Exemple Inc."
|
465 |
|
466 |
+
#: ../metaboxes.php:329 ../metaboxes.php:828
|
467 |
msgid "Value 04 Title"
|
468 |
msgstr "Titre de la valeur 04"
|
469 |
|
470 |
+
#: ../metaboxes.php:330 ../metaboxes.php:829
|
471 |
msgid "ex. Project Year:"
|
472 |
msgstr "ex. Année du projet :"
|
473 |
|
474 |
+
#: ../metaboxes.php:335 ../metaboxes.php:834
|
475 |
msgid "Value 04 Description"
|
476 |
msgstr "Description de la valeur 04"
|
477 |
|
478 |
+
#: ../metaboxes.php:336 ../metaboxes.php:835
|
479 |
msgid "ex. 2013"
|
480 |
msgstr "ex. 2013"
|
481 |
|
482 |
+
#: ../metaboxes.php:341 ../metaboxes.php:840
|
483 |
msgid "External Website"
|
484 |
msgstr "Site externe"
|
485 |
|
486 |
+
#: ../metaboxes.php:342 ../metaboxes.php:841
|
487 |
msgid "ex. Website:"
|
488 |
msgstr "ex. Site :"
|
489 |
|
490 |
+
#: ../metaboxes.php:347 ../metaboxes.php:846
|
491 |
msgid "Website Address"
|
492 |
msgstr "Adresse du site"
|
493 |
|
494 |
+
#: ../metaboxes.php:348 ../metaboxes.php:847
|
495 |
msgid "ex. http://www.example.com"
|
496 |
msgstr "ex. http://www.exemple.com"
|
497 |
|
498 |
+
#: ../metaboxes.php:353 ../metaboxes.php:852
|
499 |
msgid "If Video Project"
|
500 |
msgstr "Si c'est un projet vidéo"
|
501 |
|
502 |
+
#: ../metaboxes.php:354 ../metaboxes.php:579 ../metaboxes.php:716
|
503 |
+
#: ../metaboxes.php:853 ../metaboxes.php:1020
|
504 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
505 |
msgstr "Mettre le code d'intégration ici, fonctionne avec youtube, vimeo..."
|
506 |
|
507 |
+
#: ../metaboxes.php:363
|
508 |
#, fuzzy
|
509 |
msgid "Bottom Carousel Options"
|
510 |
msgstr "Options de la page de contact"
|
511 |
|
512 |
+
#: ../metaboxes.php:370 ../metaboxes.php:868
|
513 |
msgid "Carousel Title"
|
514 |
msgstr "Titre du carrousel"
|
515 |
|
516 |
+
#: ../metaboxes.php:371 ../metaboxes.php:869
|
517 |
msgid "ex. Similar Projects"
|
518 |
msgstr "ex. Projets similaires"
|
519 |
|
520 |
+
#: ../metaboxes.php:376
|
521 |
#, fuzzy
|
522 |
msgid "Bottom Portfolio Carousel"
|
523 |
msgstr "Carrousel de portefolio"
|
524 |
|
525 |
+
#: ../metaboxes.php:377
|
526 |
#, fuzzy
|
527 |
msgid "Display a carousel with portfolio items below project?"
|
528 |
msgstr ""
|
529 |
"Afficher un carrousel avec des items de portefolio similaires sous le "
|
530 |
"projet ?"
|
531 |
|
532 |
+
#: ../metaboxes.php:382 ../metaboxes.php:602 ../metaboxes.php:624
|
533 |
+
#: ../metaboxes.php:633 ../metaboxes.php:788 ../metaboxes.php:863
|
534 |
+
#: ../metaboxes.php:963 ../metaboxes.php:1015 ../metaboxes.php:1043
|
535 |
+
#: ../metaboxes.php:1059 ../metaboxes.php:1068
|
536 |
msgid "No"
|
537 |
msgstr "Non"
|
538 |
|
539 |
+
#: ../metaboxes.php:383 ../metaboxes.php:601 ../metaboxes.php:623
|
540 |
+
#: ../metaboxes.php:634 ../metaboxes.php:787 ../metaboxes.php:964
|
541 |
+
#: ../metaboxes.php:1014 ../metaboxes.php:1042 ../metaboxes.php:1058
|
542 |
+
#: ../metaboxes.php:1069
|
543 |
msgid "Yes"
|
544 |
msgstr "Oui"
|
545 |
|
546 |
+
#: ../metaboxes.php:387
|
547 |
#, fuzzy
|
548 |
msgid "Carousel Items"
|
549 |
msgstr "Titre du carrousel"
|
550 |
|
551 |
+
#: ../metaboxes.php:393
|
552 |
#, fuzzy
|
553 |
msgid "All Portfolio Posts"
|
554 |
msgstr "Options de billet portefolio"
|
555 |
|
556 |
+
#: ../metaboxes.php:394
|
557 |
msgid "Only of same Portfolio Type"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../metaboxes.php:398
|
561 |
#, fuzzy
|
562 |
msgid "Carousel Order"
|
563 |
msgstr "Carrousel"
|
564 |
|
565 |
+
#: ../metaboxes.php:403 ../metaboxes.php:468 ../metaboxes.php:910
|
566 |
msgid "Menu Order"
|
567 |
msgstr "Tri du menu"
|
568 |
|
569 |
+
#: ../metaboxes.php:404 ../metaboxes.php:469 ../metaboxes.php:911
|
570 |
msgid "Title"
|
571 |
msgstr "Titre"
|
572 |
|
573 |
+
#: ../metaboxes.php:405 ../metaboxes.php:470 ../metaboxes.php:912
|
574 |
msgid "Date"
|
575 |
msgstr "Date"
|
576 |
|
577 |
+
#: ../metaboxes.php:406 ../metaboxes.php:471 ../metaboxes.php:913
|
578 |
msgid "Random"
|
579 |
msgstr "Au hasard"
|
580 |
|
581 |
+
#: ../metaboxes.php:414 ../metaboxes.php:878
|
582 |
msgid "Portfolio Page Options"
|
583 |
msgstr "Options de la page portefolio"
|
584 |
|
585 |
+
#: ../metaboxes.php:422 ../shortcodes/pullquote/quote_popup.php:59
|
586 |
msgid "Style"
|
587 |
msgstr "Style"
|
588 |
|
589 |
+
#: ../metaboxes.php:428
|
590 |
#, fuzzy
|
591 |
msgid "Post Boxes"
|
592 |
msgstr "Boîte de billet vidéo"
|
593 |
|
594 |
+
#: ../metaboxes.php:429
|
595 |
msgid "Flat with Margin"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: ../metaboxes.php:433
|
599 |
#, fuzzy
|
600 |
msgid "Hover Style"
|
601 |
msgstr "Style de bordure"
|
602 |
|
603 |
+
#: ../metaboxes.php:439
|
604 |
#, fuzzy
|
605 |
msgid "Light"
|
606 |
msgstr "Droite"
|
607 |
|
608 |
+
#: ../metaboxes.php:440
|
609 |
msgid "Dark"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../metaboxes.php:441 ../shortcodes/btns/btns_popup.php:134
|
613 |
msgid "Primary Color"
|
614 |
msgstr "Couleur principale"
|
615 |
|
616 |
+
#: ../metaboxes.php:445 ../metaboxes.php:887
|
617 |
msgid "Columns"
|
618 |
msgstr "Colonnes"
|
619 |
|
620 |
+
#: ../metaboxes.php:457 ../metaboxes.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
621 |
msgid "Portfolio Work Types"
|
622 |
msgstr "Types de travail du portefolio"
|
623 |
|
624 |
+
#: ../metaboxes.php:463 ../metaboxes.php:905
|
625 |
msgid "Order Items By"
|
626 |
msgstr "Classer les items par"
|
627 |
|
628 |
+
#: ../metaboxes.php:475 ../metaboxes.php:917
|
629 |
msgid "Items per Page"
|
630 |
msgstr "Items par page"
|
631 |
|
632 |
+
#: ../metaboxes.php:476 ../metaboxes.php:918
|
633 |
msgid "How many portfolio items per page"
|
634 |
msgstr "Combien d'articles de portefolio par page"
|
635 |
|
636 |
+
#: ../metaboxes.php:480 ../metaboxes.php:922
|
637 |
msgid "All"
|
638 |
msgstr "Tout"
|
639 |
|
640 |
+
#: ../metaboxes.php:498
|
641 |
#, fuzzy
|
642 |
msgid "Image Ratio?"
|
643 |
msgstr "Image"
|
644 |
|
645 |
+
#: ../metaboxes.php:504
|
646 |
msgid "Square 1:1"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../metaboxes.php:505
|
650 |
#, fuzzy
|
651 |
msgid "Portrait 3:4"
|
652 |
msgstr "Image à la française"
|
653 |
|
654 |
+
#: ../metaboxes.php:506
|
655 |
#, fuzzy
|
656 |
msgid "Landscape 4:3"
|
657 |
msgstr "Image à l'italienne"
|
658 |
|
659 |
+
#: ../metaboxes.php:507
|
660 |
#, fuzzy
|
661 |
msgid "Wide Landscape 4:2"
|
662 |
msgstr "Image à l'italienne"
|
663 |
|
664 |
+
#: ../metaboxes.php:511 ../metaboxes.php:946
|
665 |
msgid "Display Item Work Types"
|
666 |
msgstr "Afficher les types d'items de travail "
|
667 |
|
668 |
+
#: ../metaboxes.php:517 ../metaboxes.php:952
|
669 |
msgid "Display Item Excerpt"
|
670 |
msgstr "Afficher l'extrait de l'item"
|
671 |
|
672 |
+
#: ../metaboxes.php:523
|
673 |
#, fuzzy
|
674 |
msgid "Add Lightbox link in each item"
|
675 |
msgstr "Ajouter un lien de Visionneuse en haut à droite de chaque item"
|
676 |
|
677 |
+
#: ../metaboxes.php:532 ../metaboxes.php:971
|
678 |
msgid "Feature Page Options"
|
679 |
msgstr "Options de la page En vedette"
|
680 |
|
681 |
+
#: ../metaboxes.php:541
|
682 |
#, fuzzy
|
683 |
msgid "Header Options"
|
684 |
msgstr "Options des polices d'entête"
|
685 |
|
686 |
+
#: ../metaboxes.php:542
|
687 |
#, fuzzy
|
688 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
689 |
msgstr ""
|
690 |
"Si le carrousel d'images est utilisé, assurez-vous que les images "
|
691 |
"téléversées ont au moins 1140 pixels de largeur."
|
692 |
|
693 |
+
#: ../metaboxes.php:547
|
694 |
msgid "Page Title"
|
695 |
msgstr "Titre de la page"
|
696 |
|
697 |
+
#: ../metaboxes.php:554 ../metaboxes.php:1130
|
698 |
msgid "Slider Images"
|
699 |
msgstr "Images du carrousel"
|
700 |
|
701 |
+
#: ../metaboxes.php:555
|
702 |
msgid "Add for flex, carousel, and image carousel."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../metaboxes.php:560
|
706 |
#, fuzzy
|
707 |
msgid "If Cyclone Slider"
|
708 |
msgstr "Carrousel"
|
709 |
|
710 |
+
#: ../metaboxes.php:561
|
711 |
msgid ""
|
712 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../metaboxes.php:573
|
716 |
#, fuzzy
|
717 |
msgid ""
|
718 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
722 |
"<b>(Note : entrez juste un nombre, exemple : 650, ne s'applique pas au "
|
723 |
"carrousel)</b>"
|
724 |
|
725 |
+
#: ../metaboxes.php:578 ../metaboxes.php:715 ../metaboxes.php:1019
|
726 |
msgid "If Video Post"
|
727 |
msgstr "Si c'est un billet vidéo"
|
728 |
|
729 |
+
#: ../metaboxes.php:587 ../metaboxes.php:1028
|
730 |
msgid "Contact Page Options"
|
731 |
msgstr "Options de la page de contact"
|
732 |
|
733 |
+
#: ../metaboxes.php:596 ../metaboxes.php:1037
|
734 |
msgid "Use Contact Form"
|
735 |
msgstr "Utiliser le formulaire de contact"
|
736 |
|
737 |
+
#: ../metaboxes.php:606 ../metaboxes.php:1047
|
738 |
msgid "Contact Form Title"
|
739 |
msgstr "Titre du formulaire de contact"
|
740 |
|
741 |
+
#: ../metaboxes.php:607 ../metaboxes.php:1048
|
742 |
msgid "ex. Send us an Email"
|
743 |
msgstr "ex. Envoyez-nous un courriel"
|
744 |
|
745 |
+
#: ../metaboxes.php:612
|
746 |
#, fuzzy
|
747 |
msgid "Contact Form Email Recipient"
|
748 |
msgstr "Adresse de courriel du formulaire de contact"
|
749 |
|
750 |
+
#: ../metaboxes.php:613
|
751 |
msgid "ex. joe@gmail.com"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../metaboxes.php:618 ../metaboxes.php:1053
|
755 |
msgid "Use Simple Math Question"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../metaboxes.php:628 ../metaboxes.php:1063
|
759 |
msgid "Use Map"
|
760 |
msgstr "Utiliser la carte"
|
761 |
|
762 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
763 |
msgid "Address"
|
764 |
msgstr "Adresse"
|
765 |
|
766 |
+
#: ../metaboxes.php:639 ../metaboxes.php:1074
|
767 |
msgid "Enter your Location"
|
768 |
msgstr "Entrez votre localisation"
|
769 |
|
770 |
+
#: ../metaboxes.php:644 ../metaboxes.php:1079
|
771 |
msgid "Map Type"
|
772 |
msgstr "Type de carte"
|
773 |
|
774 |
+
#: ../metaboxes.php:649 ../metaboxes.php:1084
|
775 |
msgid "ROADMAP"
|
776 |
msgstr "Carte routière"
|
777 |
|
778 |
+
#: ../metaboxes.php:650 ../metaboxes.php:1085
|
779 |
msgid "HYBRID"
|
780 |
msgstr "Combinée"
|
781 |
|
782 |
+
#: ../metaboxes.php:651 ../metaboxes.php:1086
|
783 |
msgid "TERRAIN"
|
784 |
msgstr "Topographique"
|
785 |
|
786 |
+
#: ../metaboxes.php:652 ../metaboxes.php:1087
|
787 |
msgid "SATELLITE"
|
788 |
msgstr "Satellite"
|
789 |
|
790 |
+
#: ../metaboxes.php:656 ../metaboxes.php:1091
|
791 |
msgid "Map Zoom Level"
|
792 |
msgstr "Niveau d'agrandissement de la carte"
|
793 |
|
794 |
+
#: ../metaboxes.php:657 ../metaboxes.php:1092
|
795 |
msgid "A good place to start is 15"
|
796 |
msgstr "Un bon choix initial est 15"
|
797 |
|
798 |
+
#: ../metaboxes.php:662 ../metaboxes.php:1097
|
799 |
msgid "1 (World View)"
|
800 |
msgstr "1 (Vue globale)"
|
801 |
|
802 |
+
#: ../metaboxes.php:682 ../metaboxes.php:1117
|
803 |
msgid "21 (Street View)"
|
804 |
msgstr "21 (Vue de la rue)"
|
805 |
|
806 |
+
#: ../metaboxes.php:686 ../metaboxes.php:1121
|
807 |
msgid "Map Height"
|
808 |
msgstr "Hauteur de la carte"
|
809 |
|
810 |
+
#: ../metaboxes.php:687 ../metaboxes.php:1122
|
811 |
msgid "Default is 300"
|
812 |
msgstr "La valeur par défaut est 300"
|
813 |
|
814 |
+
#: ../metaboxes.php:707
|
815 |
msgid "Post Video Box"
|
816 |
msgstr "Boîte de billet vidéo"
|
817 |
|
818 |
+
#: ../metaboxes.php:737
|
819 |
msgid "Beside"
|
820 |
msgstr "À côté"
|
821 |
|
822 |
+
#: ../metaboxes.php:749 ../metaboxes.php:985
|
823 |
msgid "Image Slider"
|
824 |
msgstr "Carrousel d'images"
|
825 |
|
826 |
+
#: ../metaboxes.php:771
|
827 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
828 |
msgstr ""
|
829 |
"La valeur par défaut est 450 <b>(Note : entrez juste un nombre, exemple : "
|
830 |
"350)</b>"
|
831 |
|
832 |
+
#: ../metaboxes.php:777
|
833 |
msgid ""
|
834 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
835 |
"just input number, example: 650)</b>"
|
837 |
"La valeur par défaut est 670 et 1140 avec les dispositions <b>au-dessus</b> "
|
838 |
"et <b>trois rangées</b> <b>(Note : entrez juste un nombre, exemple : 650)</b>"
|
839 |
|
840 |
+
#: ../metaboxes.php:782
|
841 |
#, fuzzy
|
842 |
msgid "Auto Play Slider?"
|
843 |
msgstr "Lecture automatique ?"
|
844 |
|
845 |
+
#: ../metaboxes.php:858
|
846 |
msgid "Similar Portfolio Item Carousel"
|
847 |
msgstr "Carrousel d'items de portefolio similaires"
|
848 |
|
849 |
+
#: ../metaboxes.php:859
|
850 |
msgid "Display a carousel with similar portfolio items below project?"
|
851 |
msgstr ""
|
852 |
"Afficher un carrousel avec des items de portefolio similaires sous le "
|
853 |
"projet ?"
|
854 |
|
855 |
+
#: ../metaboxes.php:864
|
856 |
msgid "Yes - Display Recent Projects"
|
857 |
msgstr "Oui, afficher les projets récents"
|
858 |
|
859 |
+
#: ../metaboxes.php:940
|
860 |
msgid "Set image height"
|
861 |
msgstr "Régler la hauteur de l'image"
|
862 |
|
863 |
+
#: ../metaboxes.php:941
|
864 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
865 |
msgstr ""
|
866 |
"La proportion par défaut est 1:1 <b>(Note : entrez juste un nombre, "
|
867 |
"exemple : 350)</b>"
|
868 |
|
869 |
+
#: ../metaboxes.php:958
|
870 |
msgid "Add Lightbox link in the top right of each item"
|
871 |
msgstr "Ajouter un lien de Visionneuse en haut à droite de chaque item"
|
872 |
|
873 |
+
#: ../metaboxes.php:980
|
874 |
msgid "Feature Options"
|
875 |
msgstr "Options de la section En vedette"
|
876 |
|
877 |
+
#: ../metaboxes.php:981
|
878 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
879 |
msgstr ""
|
880 |
"Si le carrousel d'images est utilisé, assurez-vous que les images "
|
881 |
"téléversées ont au moins 1140 pixels de largeur."
|
882 |
|
883 |
+
#: ../metaboxes.php:991 ../metaboxes.php:1137
|
884 |
+
#, fuzzy
|
885 |
+
msgid "Slider Gallery"
|
886 |
+
msgstr "Effacer la galerie"
|
887 |
+
|
888 |
+
#: ../metaboxes.php:998
|
889 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
890 |
msgstr ""
|
891 |
"La valeur par défaut est 400 <b>(Note : entrez juste un nombre, exemple : "
|
892 |
"350)</b>"
|
893 |
|
894 |
+
#: ../metaboxes.php:1004
|
895 |
msgid ""
|
896 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
897 |
"to Carousel slider)</b>"
|
899 |
"La valeur par défaut est 1140 (Note : entrez juste un nombre, exemple : 650, "
|
900 |
"ne s'applique pas au carrousel)</b>"
|
901 |
|
902 |
+
#: ../metaboxes.php:1009
|
903 |
msgid "Use Lightbox for Feature Image"
|
904 |
msgstr "Utilisez la Visionneuse pour l'image en vedette"
|
905 |
|
906 |
+
#: ../metaboxes.php:1010
|
907 |
msgid ""
|
908 |
"If feature option is set to image, choose to use lightbox link with image."
|
909 |
msgstr ""
|
910 |
"Si l'option En vedette est réglée à image, choisir d'utiliser le lien "
|
911 |
"visionneuse avec l'image."
|
912 |
|
913 |
+
#: ../page-contact.php:13 ../template-contact.php:13
|
|
|
|
|
|
|
|
|
|
|
914 |
#, fuzzy
|
915 |
msgid "This field is required."
|
916 |
msgstr "Ce champ doit contenir une date valide."
|
917 |
|
918 |
+
#: ../page-contact.php:14 ../template-contact.php:14
|
919 |
#, fuzzy
|
920 |
msgid "Please enter a valid email address."
|
921 |
msgstr "Entrez une adresse de courriel valide."
|
922 |
|
923 |
+
#: ../page-contact.php:97 ../template-contact.php:98
|
924 |
msgid "Check your math."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: ../page-contact.php:102 ../template-contact.php:103
|
928 |
msgid "Please enter your name."
|
929 |
msgstr "S'il vous plaît entrez votre nom."
|
930 |
|
931 |
+
#: ../page-contact.php:109 ../template-contact.php:110
|
932 |
msgid "Please enter your email address."
|
933 |
msgstr "S'il vous plaît, entrez votre adresse courriel."
|
934 |
|
935 |
+
#: ../page-contact.php:112 ../template-contact.php:113
|
936 |
msgid "You entered an invalid email address."
|
937 |
msgstr "Vous avez entré une adresse email valide."
|
938 |
|
939 |
+
#: ../page-contact.php:119 ../template-contact.php:120
|
940 |
msgid "Please enter a message."
|
941 |
msgstr "S'il vous plaît entrez un message."
|
942 |
|
943 |
+
#: ../page-contact.php:136 ../pagetemplater.php:28 ../pagetemplater.php:116
|
944 |
+
#: ../template-contact.php:137
|
945 |
#, fuzzy
|
946 |
msgid "Contact"
|
947 |
msgstr "Informations de contact"
|
948 |
|
949 |
+
#: ../page-contact.php:136 ../template-contact.php:137
|
950 |
msgid "From"
|
951 |
msgstr "De"
|
952 |
|
953 |
+
#: ../page-contact.php:137 ../template-contact.php:138
|
954 |
msgid "Name"
|
955 |
msgstr "Nom complet"
|
956 |
|
957 |
+
#: ../page-contact.php:138 ../template-contact.php:139
|
958 |
msgid "Email"
|
959 |
msgstr "Courriel"
|
960 |
|
961 |
+
#: ../page-contact.php:139 ../template-contact.php:140
|
962 |
#, fuzzy
|
963 |
msgid "Comments"
|
964 |
msgstr "Commentaire"
|
965 |
|
966 |
+
#: ../page-contact.php:177 ../template-contact.php:175
|
967 |
msgid "Thanks, your email was sent successfully."
|
968 |
msgstr "Merci, votre courriel a été envoyé avec succès."
|
969 |
|
970 |
+
#: ../page-contact.php:182 ../template-contact.php:179
|
971 |
msgid "Sorry, an error occured."
|
972 |
msgstr "Désolé, une erreur est survenue."
|
973 |
|
974 |
+
#: ../page-contact.php:188 ../template-contact.php:185
|
975 |
msgid "Name:"
|
976 |
msgstr "Nom complet :"
|
977 |
|
978 |
+
#: ../page-contact.php:196 ../template-contact.php:195
|
979 |
+
msgid "Email:"
|
980 |
+
msgstr "Courriel :"
|
981 |
|
982 |
+
#: ../page-contact.php:204 ../template-contact.php:202
|
983 |
+
#, fuzzy
|
984 |
+
msgid "Message:"
|
985 |
msgstr "Message :"
|
986 |
|
987 |
+
#: ../page-contact.php:224 ../template-contact.php:220
|
988 |
msgid "Send Email"
|
989 |
msgstr "Envoyez"
|
990 |
|
1366 |
msgid "YouTube Link"
|
1367 |
msgstr "Lien de l'icône"
|
1368 |
|
1369 |
+
#~ msgid "Email: "
|
1370 |
+
#~ msgstr "Courriel : "
|
|
|
1371 |
|
1372 |
+
#~ msgid "Message: "
|
1373 |
+
#~ msgstr "Message :"
|
|
|
|
|
1374 |
|
1375 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
1376 |
#~ msgstr "Désolé, la page que vous tentiez d'atteindre n'existe pas."
|
languages/virtue-toolkit-it_IT.mo
ADDED
Binary file
|
languages/{kadencetoolkit-it_IT.po → virtue-toolkit-it_IT.po}
RENAMED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: Dovy Paukstys <dovy@reduxframework.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Generator: Poedit 1.
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
@@ -60,7 +60,7 @@ msgstr "Aggiungi icona"
|
|
60 |
# @ virtue
|
61 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
62 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
63 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
64 |
msgid "Remove"
|
65 |
msgstr "Rimuovere"
|
66 |
|
@@ -76,19 +76,19 @@ msgstr ""
|
|
76 |
|
77 |
# @ virtue
|
78 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
79 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:760
|
80 |
#, fuzzy
|
81 |
msgid "Remove Image"
|
82 |
msgstr "Rimuovi immagine"
|
83 |
|
84 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
85 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
86 |
msgid "File:"
|
87 |
msgstr ""
|
88 |
|
89 |
# @ redux-framework
|
90 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
91 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
92 |
msgid "Download"
|
93 |
msgstr "Scarica"
|
94 |
|
@@ -99,9 +99,9 @@ msgstr ""
|
|
99 |
# @ virtue
|
100 |
# @ redux-framework
|
101 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
102 |
-
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:
|
103 |
-
#: ../metaboxes.php:
|
104 |
-
#: ../metaboxes.php:
|
105 |
msgid "Default"
|
106 |
msgstr "Predefinito"
|
107 |
|
@@ -117,6 +117,10 @@ msgstr "Seleziona un'icona"
|
|
117 |
msgid "Current Color"
|
118 |
msgstr "Colore primario"
|
119 |
|
|
|
|
|
|
|
|
|
120 |
# @ woocommerce
|
121 |
#: ../cmb/init.php:288
|
122 |
#, fuzzy
|
@@ -229,8 +233,8 @@ msgid "Carousel Slider - (Caroufedsel Slider)"
|
|
229 |
msgstr ""
|
230 |
|
231 |
# @ virtue
|
232 |
-
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:
|
233 |
-
#: ../metaboxes.php:
|
234 |
msgid "None"
|
235 |
msgstr "Nessuno"
|
236 |
|
@@ -241,7 +245,7 @@ msgid "Post Slider Gallery"
|
|
241 |
msgstr "Galleria post"
|
242 |
|
243 |
# @ virtue
|
244 |
-
#: ../metaboxes.php:148 ../metaboxes.php:
|
245 |
#, fuzzy
|
246 |
msgid "Add images for gallery here"
|
247 |
msgstr "Aggiungi le immagini alla galleria"
|
@@ -253,7 +257,7 @@ msgid "Max Slider Height"
|
|
253 |
msgstr "Altezza massima dell'immagine slider"
|
254 |
|
255 |
# @ virtue
|
256 |
-
#: ../metaboxes.php:154 ../metaboxes.php:
|
257 |
#, fuzzy
|
258 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
259 |
msgstr ""
|
@@ -316,8 +320,8 @@ msgid "Video Post Default"
|
|
316 |
msgstr "Impostazioni predefinite dei messaggi del Blog"
|
317 |
|
318 |
# @ virtue
|
319 |
-
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:
|
320 |
-
#: ../metaboxes.php:
|
321 |
msgid "Video"
|
322 |
msgstr "Video"
|
323 |
|
@@ -356,12 +360,12 @@ msgid "Video - (when possible)"
|
|
356 |
msgstr ""
|
357 |
|
358 |
# @ virtue
|
359 |
-
#: ../metaboxes.php:228 ../metaboxes.php:
|
360 |
msgid "Portfolio Post Options"
|
361 |
msgstr "Portfolio, opzioni messaggio"
|
362 |
|
363 |
# @ virtue
|
364 |
-
#: ../metaboxes.php:236 ../metaboxes.php:
|
365 |
msgid "Project Layout"
|
366 |
msgstr "Layout del progetto"
|
367 |
|
@@ -378,57 +382,93 @@ msgid "Beside 33%"
|
|
378 |
msgstr "Vicino"
|
379 |
|
380 |
# @ virtue
|
381 |
-
#: ../metaboxes.php:243 ../metaboxes.php:
|
382 |
msgid "Above"
|
383 |
msgstr "Sopra"
|
384 |
|
385 |
# @ virtue
|
386 |
-
#: ../metaboxes.php:244 ../metaboxes.php:
|
387 |
msgid "Three Rows"
|
388 |
msgstr "Tre righe"
|
389 |
|
390 |
# @ virtue
|
391 |
-
#: ../metaboxes.php:248 ../metaboxes.php:
|
392 |
msgid "Project Options"
|
393 |
msgstr "Opzioni progetto"
|
394 |
|
395 |
# @ virtue
|
396 |
-
#: ../metaboxes.php:253 ../metaboxes.php:
|
397 |
msgid "Image"
|
398 |
msgstr "Immagine"
|
399 |
|
400 |
# @ virtue
|
401 |
-
#: ../metaboxes.php:254 ../metaboxes.php:
|
402 |
#, fuzzy
|
403 |
msgid "Image Slider (Flex Slider)"
|
404 |
msgstr "Slider immagini"
|
405 |
|
406 |
# @ virtue
|
407 |
-
#: ../metaboxes.php:255 ../metaboxes.php:
|
408 |
#, fuzzy
|
409 |
msgid "Carousel Slider"
|
410 |
msgstr "Slider titolo"
|
411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
# @ virtue
|
413 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
#, fuzzy
|
415 |
msgid "Portfolio Slider/Images"
|
416 |
msgstr "Slider immagini del portfolio"
|
417 |
|
418 |
# @ virtue
|
419 |
-
#: ../metaboxes.php:
|
420 |
#, fuzzy
|
421 |
msgid "Add images for post here"
|
422 |
msgstr "Aggiungi le immagini alla galleria"
|
423 |
|
424 |
# @ virtue
|
425 |
-
#: ../metaboxes.php:
|
426 |
-
#: ../metaboxes.php:
|
427 |
msgid "Max Image/Slider Height"
|
428 |
msgstr "Altezza massima dell'immagine slider"
|
429 |
|
430 |
# @ virtue
|
431 |
-
#: ../metaboxes.php:
|
432 |
#, fuzzy
|
433 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
434 |
msgstr ""
|
@@ -436,13 +476,13 @@ msgstr ""
|
|
436 |
"350)</b>"
|
437 |
|
438 |
# @ virtue
|
439 |
-
#: ../metaboxes.php:
|
440 |
-
#: ../metaboxes.php:
|
441 |
msgid "Max Image/Slider Width"
|
442 |
msgstr "Larghezza massima dell'immagine slider"
|
443 |
|
444 |
# @ virtue
|
445 |
-
#: ../metaboxes.php:
|
446 |
#, fuzzy
|
447 |
msgid ""
|
448 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
@@ -452,353 +492,332 @@ msgstr ""
|
|
452 |
"sufficiente il numero di ingresso, ad esempio: 650)</b>"
|
453 |
|
454 |
# @ virtue
|
455 |
-
#: ../metaboxes.php:
|
456 |
msgid "Value 01 Title"
|
457 |
msgstr "Titolo valore 01"
|
458 |
|
459 |
# @ virtue
|
460 |
-
#: ../metaboxes.php:
|
461 |
msgid "ex. Project Type:"
|
462 |
msgstr "Es. Tipologia progetto"
|
463 |
|
464 |
# @ virtue
|
465 |
-
#: ../metaboxes.php:
|
466 |
msgid "Value 01 Description"
|
467 |
msgstr "Descrizione valore 01"
|
468 |
|
469 |
# @ virtue
|
470 |
-
#: ../metaboxes.php:
|
471 |
msgid "ex. Character Illustration"
|
472 |
msgstr "Es. Carattere illustrazione"
|
473 |
|
474 |
# @ virtue
|
475 |
-
#: ../metaboxes.php:
|
476 |
msgid "Value 02 Title"
|
477 |
msgstr "Titolo Valore 02"
|
478 |
|
479 |
# @ virtue
|
480 |
-
#: ../metaboxes.php:
|
481 |
msgid "ex. Skills Needed:"
|
482 |
msgstr "es. competenze necessarie:"
|
483 |
|
484 |
# @ virtue
|
485 |
-
#: ../metaboxes.php:
|
486 |
msgid "Value 02 Description"
|
487 |
msgstr "Descrizione valore 02"
|
488 |
|
489 |
# @ virtue
|
490 |
-
#: ../metaboxes.php:
|
491 |
msgid "ex. Photoshop, Illustrator"
|
492 |
msgstr "Es. Photoshop, Illustrator"
|
493 |
|
494 |
# @ virtue
|
495 |
-
#: ../metaboxes.php:
|
496 |
msgid "Value 03 Title"
|
497 |
msgstr "Titolo valore 03"
|
498 |
|
499 |
# @ virtue
|
500 |
-
#: ../metaboxes.php:
|
501 |
msgid "ex. Customer:"
|
502 |
msgstr "Es. cliente:"
|
503 |
|
504 |
# @ virtue
|
505 |
-
#: ../metaboxes.php:
|
506 |
msgid "Value 03 Description"
|
507 |
msgstr "Descrizione valore 03"
|
508 |
|
509 |
# @ virtue
|
510 |
-
#: ../metaboxes.php:
|
511 |
msgid "ex. Example Inc"
|
512 |
msgstr "Es. Example Inc"
|
513 |
|
514 |
# @ virtue
|
515 |
-
#: ../metaboxes.php:
|
516 |
msgid "Value 04 Title"
|
517 |
msgstr "Titolo valore 04"
|
518 |
|
519 |
# @ virtue
|
520 |
-
#: ../metaboxes.php:
|
521 |
msgid "ex. Project Year:"
|
522 |
msgstr "Es. anno di progetto:"
|
523 |
|
524 |
# @ virtue
|
525 |
-
#: ../metaboxes.php:
|
526 |
msgid "Value 04 Description"
|
527 |
msgstr "Descrizione valore 04"
|
528 |
|
529 |
# @ virtue
|
530 |
-
#: ../metaboxes.php:
|
531 |
msgid "ex. 2013"
|
532 |
msgstr "Es. 2013"
|
533 |
|
534 |
# @ virtue
|
535 |
-
#: ../metaboxes.php:
|
536 |
msgid "External Website"
|
537 |
msgstr "Sito web esterno"
|
538 |
|
539 |
# @ virtue
|
540 |
-
#: ../metaboxes.php:
|
541 |
msgid "ex. Website:"
|
542 |
msgstr "Es. sito web:"
|
543 |
|
544 |
# @ virtue
|
545 |
-
#: ../metaboxes.php:
|
546 |
msgid "Website Address"
|
547 |
msgstr "Indirizzo sito internet"
|
548 |
|
549 |
# @ virtue
|
550 |
-
#: ../metaboxes.php:
|
551 |
msgid "ex. http://www.example.com"
|
552 |
msgstr "Es. http://www.example.com"
|
553 |
|
554 |
# @ virtue
|
555 |
-
#: ../metaboxes.php:
|
556 |
msgid "If Video Project"
|
557 |
msgstr "If Video Project"
|
558 |
|
559 |
# @ virtue
|
560 |
-
#: ../metaboxes.php:
|
561 |
-
#: ../metaboxes.php:
|
562 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
563 |
msgstr "Inserire il codice embed qui, funziona con youtube, vimeo ..."
|
564 |
|
565 |
# @ virtue
|
566 |
-
#: ../metaboxes.php:
|
567 |
#, fuzzy
|
568 |
msgid "Bottom Carousel Options"
|
569 |
msgstr "Opzioni della pagina di contatto"
|
570 |
|
571 |
# @ virtue
|
572 |
-
#: ../metaboxes.php:
|
573 |
msgid "Carousel Title"
|
574 |
msgstr "Slider titolo"
|
575 |
|
576 |
# @ virtue
|
577 |
-
#: ../metaboxes.php:
|
578 |
msgid "ex. Similar Projects"
|
579 |
msgstr "Es. progetti simili"
|
580 |
|
581 |
# @ virtue
|
582 |
-
#: ../metaboxes.php:
|
583 |
#, fuzzy
|
584 |
msgid "Bottom Portfolio Carousel"
|
585 |
msgstr "Slider portfolio"
|
586 |
|
587 |
# @ virtue
|
588 |
-
#: ../metaboxes.php:
|
589 |
#, fuzzy
|
590 |
msgid "Display a carousel with portfolio items below project?"
|
591 |
msgstr ""
|
592 |
"Visualizza uno slider con articolo portfolio simile di seguito al progetto?"
|
593 |
|
594 |
# @ virtue
|
595 |
-
#: ../metaboxes.php:
|
596 |
-
#: ../metaboxes.php:
|
597 |
-
#: ../metaboxes.php:
|
598 |
-
#: ../metaboxes.php:
|
599 |
msgid "No"
|
600 |
msgstr "No"
|
601 |
|
602 |
# @ virtue
|
603 |
-
#: ../metaboxes.php:
|
604 |
-
#: ../metaboxes.php:
|
605 |
-
#: ../metaboxes.php:
|
606 |
-
#: ../metaboxes.php:
|
607 |
msgid "Yes"
|
608 |
msgstr "Si"
|
609 |
|
610 |
# @ virtue
|
611 |
-
#: ../metaboxes.php:
|
612 |
#, fuzzy
|
613 |
msgid "Carousel Items"
|
614 |
msgstr "Slider titolo"
|
615 |
|
616 |
# @ virtue
|
617 |
-
#: ../metaboxes.php:
|
618 |
#, fuzzy
|
619 |
msgid "All Portfolio Posts"
|
620 |
msgstr "Portfolio, opzioni messaggio"
|
621 |
|
622 |
-
#: ../metaboxes.php:
|
623 |
msgid "Only of same Portfolio Type"
|
624 |
msgstr ""
|
625 |
|
626 |
# @ virtue
|
627 |
-
#: ../metaboxes.php:
|
628 |
#, fuzzy
|
629 |
msgid "Carousel Order"
|
630 |
msgstr "Slider titolo"
|
631 |
|
632 |
# @ virtue
|
633 |
-
#: ../metaboxes.php:
|
634 |
msgid "Menu Order"
|
635 |
msgstr "Ordine menu"
|
636 |
|
637 |
# @ virtue
|
638 |
# @ redux-framework
|
639 |
-
#: ../metaboxes.php:
|
640 |
msgid "Title"
|
641 |
msgstr "Titolo"
|
642 |
|
643 |
# @ virtue
|
644 |
# @ woocommerce
|
645 |
-
#: ../metaboxes.php:
|
646 |
msgid "Date"
|
647 |
msgstr "Data"
|
648 |
|
649 |
# @ virtue
|
650 |
-
#: ../metaboxes.php:
|
651 |
msgid "Random"
|
652 |
msgstr "Casuale"
|
653 |
|
654 |
# @ virtue
|
655 |
-
#: ../metaboxes.php:
|
656 |
msgid "Portfolio Page Options"
|
657 |
msgstr "Opzioni pagina portfolio"
|
658 |
|
659 |
-
#: ../metaboxes.php:
|
660 |
msgid "Style"
|
661 |
msgstr ""
|
662 |
|
663 |
# @ virtue
|
664 |
-
#: ../metaboxes.php:
|
665 |
#, fuzzy
|
666 |
msgid "Post Boxes"
|
667 |
msgstr "Box videomessaggio"
|
668 |
|
669 |
-
#: ../metaboxes.php:
|
670 |
msgid "Flat with Margin"
|
671 |
msgstr ""
|
672 |
|
673 |
# @ woocommerce
|
674 |
-
#: ../metaboxes.php:
|
675 |
#, fuzzy
|
676 |
msgid "Hover Style"
|
677 |
msgstr "Totale ordine"
|
678 |
|
679 |
# @ woocommerce
|
680 |
-
#: ../metaboxes.php:
|
681 |
#, fuzzy
|
682 |
msgid "Light"
|
683 |
msgstr "Peso"
|
684 |
|
685 |
-
#: ../metaboxes.php:
|
686 |
msgid "Dark"
|
687 |
msgstr ""
|
688 |
|
689 |
# @ virtue
|
690 |
-
#: ../metaboxes.php:
|
691 |
msgid "Primary Color"
|
692 |
msgstr "Colore primario"
|
693 |
|
694 |
# @ virtue
|
695 |
-
#: ../metaboxes.php:
|
696 |
msgid "Columns"
|
697 |
msgstr "Colonne"
|
698 |
|
699 |
# @ virtue
|
700 |
-
#: ../metaboxes.php:
|
701 |
-
msgid "Four Column"
|
702 |
-
msgstr "Quattro colonne"
|
703 |
-
|
704 |
-
# @ virtue
|
705 |
-
#: ../metaboxes.php:437 ../metaboxes.php:865
|
706 |
-
msgid "Three Column"
|
707 |
-
msgstr "Tre colonne"
|
708 |
-
|
709 |
-
# @ virtue
|
710 |
-
#: ../metaboxes.php:438 ../metaboxes.php:866
|
711 |
-
msgid "Two Column"
|
712 |
-
msgstr "Due colonne"
|
713 |
-
|
714 |
-
# @ virtue
|
715 |
-
#: ../metaboxes.php:439
|
716 |
-
#, fuzzy
|
717 |
-
msgid "Five Column"
|
718 |
-
msgstr "Quattro colonne"
|
719 |
-
|
720 |
-
# @ virtue
|
721 |
-
#: ../metaboxes.php:443 ../metaboxes.php:870
|
722 |
msgid "Portfolio Work Types"
|
723 |
msgstr "Tipologie di portfolio lavoro"
|
724 |
|
725 |
# @ virtue
|
726 |
-
#: ../metaboxes.php:
|
727 |
msgid "Order Items By"
|
728 |
msgstr "Ordina gli elementi per"
|
729 |
|
730 |
# @ virtue
|
731 |
-
#: ../metaboxes.php:
|
732 |
msgid "Items per Page"
|
733 |
msgstr "Articoli per pagina"
|
734 |
|
735 |
# @ virtue
|
736 |
-
#: ../metaboxes.php:
|
737 |
msgid "How many portfolio items per page"
|
738 |
msgstr "Quanti articoli del portfolio per pagina"
|
739 |
|
740 |
# @ virtue
|
741 |
# @ redux-framework
|
742 |
-
#: ../metaboxes.php:
|
743 |
msgid "All"
|
744 |
msgstr "Tutti"
|
745 |
|
746 |
# @ virtue
|
747 |
-
#: ../metaboxes.php:
|
748 |
#, fuzzy
|
749 |
msgid "Image Ratio?"
|
750 |
msgstr "Immagine"
|
751 |
|
752 |
-
#: ../metaboxes.php:
|
753 |
msgid "Square 1:1"
|
754 |
msgstr ""
|
755 |
|
756 |
# @ virtue
|
757 |
-
#: ../metaboxes.php:
|
758 |
#, fuzzy
|
759 |
msgid "Portrait 3:4"
|
760 |
msgstr "Immagine verticale"
|
761 |
|
762 |
# @ virtue
|
763 |
-
#: ../metaboxes.php:
|
764 |
#, fuzzy
|
765 |
msgid "Landscape 4:3"
|
766 |
msgstr "Immagine orizzontale"
|
767 |
|
768 |
# @ virtue
|
769 |
-
#: ../metaboxes.php:
|
770 |
#, fuzzy
|
771 |
msgid "Wide Landscape 4:2"
|
772 |
msgstr "Immagine orizzontale"
|
773 |
|
774 |
# @ virtue
|
775 |
-
#: ../metaboxes.php:
|
776 |
msgid "Display Item Work Types"
|
777 |
msgstr "Visualizza articoli di tipologia lavoro"
|
778 |
|
779 |
# @ virtue
|
780 |
-
#: ../metaboxes.php:
|
781 |
msgid "Display Item Excerpt"
|
782 |
msgstr "Visualizza un estratto del articolo"
|
783 |
|
784 |
-
#: ../metaboxes.php:
|
785 |
#, fuzzy
|
786 |
msgid "Add Lightbox link in each item"
|
787 |
msgstr "Aggiungi un link Lightbox in alto a destra di ogni elemento"
|
788 |
|
789 |
# @ virtue
|
790 |
-
#: ../metaboxes.php:
|
791 |
msgid "Feature Page Options"
|
792 |
msgstr "Opzioni pagina in evidenza"
|
793 |
|
794 |
# @ virtue
|
795 |
-
#: ../metaboxes.php:
|
796 |
#, fuzzy
|
797 |
msgid "Header Options"
|
798 |
msgstr "Opzioni font del Header"
|
799 |
|
800 |
# @ virtue
|
801 |
-
#: ../metaboxes.php:
|
802 |
#, fuzzy
|
803 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
804 |
msgstr ""
|
@@ -806,32 +825,32 @@ msgstr ""
|
|
806 |
"1170px di larghezza."
|
807 |
|
808 |
# @ virtue
|
809 |
-
#: ../metaboxes.php:
|
810 |
msgid "Page Title"
|
811 |
msgstr "Titolo pagina"
|
812 |
|
813 |
# @ virtue
|
814 |
-
#: ../metaboxes.php:
|
815 |
msgid "Slider Images"
|
816 |
msgstr "Slider immagini"
|
817 |
|
818 |
-
#: ../metaboxes.php:
|
819 |
msgid "Add for flex, carousel, and image carousel."
|
820 |
msgstr ""
|
821 |
|
822 |
# @ virtue
|
823 |
-
#: ../metaboxes.php:
|
824 |
#, fuzzy
|
825 |
msgid "If Cyclone Slider"
|
826 |
msgstr "Slider titolo"
|
827 |
|
828 |
-
#: ../metaboxes.php:
|
829 |
msgid ""
|
830 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
831 |
msgstr ""
|
832 |
|
833 |
# @ virtue
|
834 |
-
#: ../metaboxes.php:
|
835 |
#, fuzzy
|
836 |
msgid ""
|
837 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
@@ -841,138 +860,138 @@ msgstr ""
|
|
841 |
"ingresso, ad esempio: 650, non si applica allo slider)</b>"
|
842 |
|
843 |
# @ virtue
|
844 |
-
#: ../metaboxes.php:
|
845 |
msgid "If Video Post"
|
846 |
msgstr "If Video Post"
|
847 |
|
848 |
# @ virtue
|
849 |
-
#: ../metaboxes.php:
|
850 |
msgid "Contact Page Options"
|
851 |
msgstr "Opzioni della pagina di contatto"
|
852 |
|
853 |
# @ virtue
|
854 |
-
#: ../metaboxes.php:
|
855 |
msgid "Use Contact Form"
|
856 |
msgstr "Usa il form di contatto"
|
857 |
|
858 |
# @ virtue
|
859 |
-
#: ../metaboxes.php:
|
860 |
msgid "Contact Form Title"
|
861 |
msgstr "Titolo form di contatto"
|
862 |
|
863 |
# @ virtue
|
864 |
-
#: ../metaboxes.php:
|
865 |
msgid "ex. Send us an Email"
|
866 |
msgstr "Es. Spedisci a noi una email"
|
867 |
|
868 |
# @ virtue
|
869 |
-
#: ../metaboxes.php:
|
870 |
#, fuzzy
|
871 |
msgid "Contact Form Email Recipient"
|
872 |
msgstr "Modulo di contatto Email"
|
873 |
|
874 |
-
#: ../metaboxes.php:
|
875 |
msgid "ex. joe@gmail.com"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../metaboxes.php:
|
879 |
msgid "Use Simple Math Question"
|
880 |
msgstr ""
|
881 |
|
882 |
# @ virtue
|
883 |
-
#: ../metaboxes.php:
|
884 |
msgid "Use Map"
|
885 |
msgstr "Usa mappa"
|
886 |
|
887 |
# @ virtue
|
888 |
-
#: ../metaboxes.php:
|
889 |
msgid "Address"
|
890 |
msgstr "Indirizzo"
|
891 |
|
892 |
# @ virtue
|
893 |
-
#: ../metaboxes.php:
|
894 |
msgid "Enter your Location"
|
895 |
msgstr "Inserisci la tua località"
|
896 |
|
897 |
# @ virtue
|
898 |
-
#: ../metaboxes.php:
|
899 |
msgid "Map Type"
|
900 |
msgstr "Tipologia mappa"
|
901 |
|
902 |
# @ virtue
|
903 |
-
#: ../metaboxes.php:
|
904 |
msgid "ROADMAP"
|
905 |
msgstr "ROADMAP"
|
906 |
|
907 |
# @ virtue
|
908 |
-
#: ../metaboxes.php:
|
909 |
msgid "HYBRID"
|
910 |
msgstr "HYBRID"
|
911 |
|
912 |
# @ virtue
|
913 |
-
#: ../metaboxes.php:
|
914 |
msgid "TERRAIN"
|
915 |
msgstr "TERRAIN"
|
916 |
|
917 |
# @ virtue
|
918 |
-
#: ../metaboxes.php:
|
919 |
msgid "SATELLITE"
|
920 |
msgstr "SATELLITE"
|
921 |
|
922 |
# @ virtue
|
923 |
-
#: ../metaboxes.php:
|
924 |
msgid "Map Zoom Level"
|
925 |
msgstr "Livello di zoon mappa"
|
926 |
|
927 |
# @ virtue
|
928 |
-
#: ../metaboxes.php:
|
929 |
msgid "A good place to start is 15"
|
930 |
msgstr "Un buon punto di partenza è 15"
|
931 |
|
932 |
# @ virtue
|
933 |
-
#: ../metaboxes.php:
|
934 |
msgid "1 (World View)"
|
935 |
msgstr "1 (vista mondo)"
|
936 |
|
937 |
# @ virtue
|
938 |
-
#: ../metaboxes.php:
|
939 |
msgid "21 (Street View)"
|
940 |
msgstr "21 (Street View)"
|
941 |
|
942 |
# @ virtue
|
943 |
-
#: ../metaboxes.php:
|
944 |
msgid "Map Height"
|
945 |
msgstr "Altezza mappa"
|
946 |
|
947 |
# @ virtue
|
948 |
-
#: ../metaboxes.php:
|
949 |
msgid "Default is 300"
|
950 |
msgstr "Default è 300"
|
951 |
|
952 |
# @ virtue
|
953 |
-
#: ../metaboxes.php:
|
954 |
msgid "Post Video Box"
|
955 |
msgstr "Box videomessaggio"
|
956 |
|
957 |
# @ virtue
|
958 |
-
#: ../metaboxes.php:
|
959 |
msgid "Beside"
|
960 |
msgstr "Vicino"
|
961 |
|
962 |
# @ virtue
|
963 |
-
#: ../metaboxes.php:
|
964 |
msgid "Image Slider"
|
965 |
msgstr "Slider immagini"
|
966 |
|
967 |
# @ virtue
|
968 |
-
#: ../metaboxes.php:
|
969 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
970 |
msgstr ""
|
971 |
"Predefinito: 450 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
|
972 |
"350)</b>"
|
973 |
|
974 |
# @ virtue
|
975 |
-
#: ../metaboxes.php:
|
976 |
#, fuzzy
|
977 |
msgid ""
|
978 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
@@ -982,50 +1001,50 @@ msgstr ""
|
|
982 |
"sufficiente il numero di ingresso, ad esempio: 650)</b>"
|
983 |
|
984 |
# @ virtue
|
985 |
-
#: ../metaboxes.php:
|
986 |
#, fuzzy
|
987 |
msgid "Auto Play Slider?"
|
988 |
msgstr "Auto Play?"
|
989 |
|
990 |
# @ virtue
|
991 |
-
#: ../metaboxes.php:
|
992 |
msgid "Similar Portfolio Item Carousel"
|
993 |
msgstr "Slider articolo portfolio simile"
|
994 |
|
995 |
# @ virtue
|
996 |
-
#: ../metaboxes.php:
|
997 |
msgid "Display a carousel with similar portfolio items below project?"
|
998 |
msgstr ""
|
999 |
"Visualizza uno slider con articolo portfolio simile di seguito al progetto?"
|
1000 |
|
1001 |
# @ virtue
|
1002 |
-
#: ../metaboxes.php:
|
1003 |
msgid "Yes - Display Recent Projects"
|
1004 |
msgstr "Si - Visualizza progetti recenti"
|
1005 |
|
1006 |
# @ virtue
|
1007 |
-
#: ../metaboxes.php:
|
1008 |
msgid "Set image height"
|
1009 |
msgstr "Imposta altezza immagine"
|
1010 |
|
1011 |
# @ virtue
|
1012 |
-
#: ../metaboxes.php:
|
1013 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
1014 |
msgstr ""
|
1015 |
"Predefinito: rapporto 1:1 <b>(Nota: è sufficiente il numero di ingresso, ad "
|
1016 |
"esempio: 350)</b>"
|
1017 |
|
1018 |
-
#: ../metaboxes.php:
|
1019 |
msgid "Add Lightbox link in the top right of each item"
|
1020 |
msgstr "Aggiungi un link Lightbox in alto a destra di ogni elemento"
|
1021 |
|
1022 |
# @ virtue
|
1023 |
-
#: ../metaboxes.php:
|
1024 |
msgid "Feature Options"
|
1025 |
msgstr "Opzioni in evidenza"
|
1026 |
|
1027 |
# @ virtue
|
1028 |
-
#: ../metaboxes.php:
|
1029 |
#, fuzzy
|
1030 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
1031 |
msgstr ""
|
@@ -1033,14 +1052,20 @@ msgstr ""
|
|
1033 |
"1170px di larghezza."
|
1034 |
|
1035 |
# @ virtue
|
1036 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1037 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
1038 |
msgstr ""
|
1039 |
"Predefinito: 400 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
|
1040 |
"350)</b>"
|
1041 |
|
1042 |
# @ virtue
|
1043 |
-
#: ../metaboxes.php:
|
1044 |
#, fuzzy
|
1045 |
msgid ""
|
1046 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
@@ -1050,114 +1075,110 @@ msgstr ""
|
|
1050 |
"650, non si applica allo slider)</b>"
|
1051 |
|
1052 |
# @ virtue
|
1053 |
-
#: ../metaboxes.php:
|
1054 |
msgid "Use Lightbox for Feature Image"
|
1055 |
msgstr "Usa Lightbox per l'immagine in evidenza"
|
1056 |
|
1057 |
# @ virtue
|
1058 |
-
#: ../metaboxes.php:
|
1059 |
msgid ""
|
1060 |
"If feature option is set to image, choose to use lightbox link with image."
|
1061 |
msgstr ""
|
1062 |
"Se opzione in evidenza è impostata su immagine, scegliere di utilizzare "
|
1063 |
"lightbox link per l'immagine."
|
1064 |
|
1065 |
-
|
1066 |
-
#: ../metaboxes.php:1105
|
1067 |
-
#, fuzzy
|
1068 |
-
msgid "Slider Gallery"
|
1069 |
-
msgstr "Galleria post"
|
1070 |
-
|
1071 |
-
#: ../page-contact.php:12 ../template-contact.php:7
|
1072 |
msgid "This field is required."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
# @ virtue
|
1076 |
-
#: ../page-contact.php:
|
1077 |
#, fuzzy
|
1078 |
msgid "Please enter a valid email address."
|
1079 |
msgstr "Per favore, inserisci il tuo indirizzo email."
|
1080 |
|
1081 |
-
#: ../page-contact.php:
|
1082 |
msgid "Check your math."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
# @ virtue
|
1086 |
-
#: ../page-contact.php:
|
1087 |
msgid "Please enter your name."
|
1088 |
msgstr "Per favore, inserisci il tuo nome."
|
1089 |
|
1090 |
# @ virtue
|
1091 |
-
#: ../page-contact.php:
|
1092 |
msgid "Please enter your email address."
|
1093 |
msgstr "Per favore, inserisci il tuo indirizzo email."
|
1094 |
|
1095 |
# @ virtue
|
1096 |
-
#: ../page-contact.php:
|
1097 |
msgid "You entered an invalid email address."
|
1098 |
msgstr "Hai inserito un indirizzo mail non valido."
|
1099 |
|
1100 |
# @ virtue
|
1101 |
-
#: ../page-contact.php:
|
1102 |
msgid "Please enter a message."
|
1103 |
msgstr "Per favore, inserisci un messaggio."
|
1104 |
|
1105 |
# @ virtue
|
1106 |
-
#: ../page-contact.php:
|
1107 |
-
#: ../template-contact.php:
|
1108 |
#, fuzzy
|
1109 |
msgid "Contact"
|
1110 |
msgstr " Contatti"
|
1111 |
|
1112 |
# @ virtue
|
1113 |
-
#: ../page-contact.php:
|
1114 |
msgid "From"
|
1115 |
msgstr "Da"
|
1116 |
|
1117 |
# @ virtue
|
1118 |
# @ woocommerce
|
1119 |
-
#: ../page-contact.php:
|
1120 |
msgid "Name"
|
1121 |
msgstr "Nome"
|
1122 |
|
1123 |
# @ woocommerce
|
1124 |
-
#: ../page-contact.php:
|
1125 |
msgid "Email"
|
1126 |
msgstr "Email"
|
1127 |
|
1128 |
# @ virtue
|
1129 |
-
#: ../page-contact.php:
|
1130 |
#, fuzzy
|
1131 |
msgid "Comments"
|
1132 |
msgstr "Commento"
|
1133 |
|
1134 |
# @ virtue
|
1135 |
-
#: ../page-contact.php:
|
1136 |
msgid "Thanks, your email was sent successfully."
|
1137 |
msgstr "Grazie, la tua email è stata inviata con successo."
|
1138 |
|
1139 |
# @ virtue
|
1140 |
-
#: ../page-contact.php:
|
1141 |
msgid "Sorry, an error occured."
|
1142 |
msgstr "Mi dispiace, c'è stato un errore."
|
1143 |
|
1144 |
# @ virtue
|
1145 |
-
#: ../page-contact.php:
|
1146 |
msgid "Name:"
|
1147 |
msgstr "Nome:"
|
1148 |
|
1149 |
# @ virtue
|
1150 |
-
|
1151 |
-
|
|
|
1152 |
msgstr "Email:"
|
1153 |
|
1154 |
# @ virtue
|
1155 |
-
#: ../page-contact.php:
|
1156 |
-
|
|
|
1157 |
msgstr "Messaggio:"
|
1158 |
|
1159 |
# @ virtue
|
1160 |
-
#: ../page-contact.php:
|
1161 |
msgid "Send Email"
|
1162 |
msgstr "Invia Email"
|
1163 |
|
@@ -1573,16 +1594,12 @@ msgid "YouTube Link"
|
|
1573 |
msgstr "Link icona"
|
1574 |
|
1575 |
# @ virtue
|
1576 |
-
|
1577 |
-
|
1578 |
-
msgid "Email:"
|
1579 |
-
msgstr "Email:"
|
1580 |
|
1581 |
# @ virtue
|
1582 |
-
|
1583 |
-
|
1584 |
-
msgid "Message:"
|
1585 |
-
msgstr "Messaggio:"
|
1586 |
|
1587 |
# @ virtue
|
1588 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-19 15:52-0700\n"
|
6 |
+
"PO-Revision-Date: 2015-11-19 15:52-0700\n"
|
7 |
"Last-Translator: Dovy Paukstys <dovy@reduxframework.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 1.8.5\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
60 |
# @ virtue
|
61 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
62 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
63 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:282
|
64 |
msgid "Remove"
|
65 |
msgstr "Rimuovere"
|
66 |
|
76 |
|
77 |
# @ virtue
|
78 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
79 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:760 ../cmb/init.php:281
|
80 |
#, fuzzy
|
81 |
msgid "Remove Image"
|
82 |
msgstr "Rimuovi immagine"
|
83 |
|
84 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
85 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:283
|
86 |
msgid "File:"
|
87 |
msgstr ""
|
88 |
|
89 |
# @ redux-framework
|
90 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
91 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:284
|
92 |
msgid "Download"
|
93 |
msgstr "Scarica"
|
94 |
|
99 |
# @ virtue
|
100 |
# @ redux-framework
|
101 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
102 |
+
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:381
|
103 |
+
#: ../metaboxes.php:392 ../metaboxes.php:427 ../metaboxes.php:438
|
104 |
+
#: ../metaboxes.php:503
|
105 |
msgid "Default"
|
106 |
msgstr "Predefinito"
|
107 |
|
117 |
msgid "Current Color"
|
118 |
msgstr "Colore primario"
|
119 |
|
120 |
+
#: ../cmb/init.php:280
|
121 |
+
msgid "Use this file"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
# @ woocommerce
|
125 |
#: ../cmb/init.php:288
|
126 |
#, fuzzy
|
233 |
msgstr ""
|
234 |
|
235 |
# @ virtue
|
236 |
+
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:258
|
237 |
+
#: ../metaboxes.php:753
|
238 |
msgid "None"
|
239 |
msgstr "Nessuno"
|
240 |
|
245 |
msgstr "Galleria post"
|
246 |
|
247 |
# @ virtue
|
248 |
+
#: ../metaboxes.php:148 ../metaboxes.php:992 ../metaboxes.php:1138
|
249 |
#, fuzzy
|
250 |
msgid "Add images for gallery here"
|
251 |
msgstr "Aggiungi le immagini alla galleria"
|
257 |
msgstr "Altezza massima dell'immagine slider"
|
258 |
|
259 |
# @ virtue
|
260 |
+
#: ../metaboxes.php:154 ../metaboxes.php:567
|
261 |
#, fuzzy
|
262 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
263 |
msgstr ""
|
320 |
msgstr "Impostazioni predefinite dei messaggi del Blog"
|
321 |
|
322 |
# @ virtue
|
323 |
+
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:550
|
324 |
+
#: ../metaboxes.php:752 ../metaboxes.php:986
|
325 |
msgid "Video"
|
326 |
msgstr "Video"
|
327 |
|
360 |
msgstr ""
|
361 |
|
362 |
# @ virtue
|
363 |
+
#: ../metaboxes.php:228 ../metaboxes.php:724
|
364 |
msgid "Portfolio Post Options"
|
365 |
msgstr "Portfolio, opzioni messaggio"
|
366 |
|
367 |
# @ virtue
|
368 |
+
#: ../metaboxes.php:236 ../metaboxes.php:732
|
369 |
msgid "Project Layout"
|
370 |
msgstr "Layout del progetto"
|
371 |
|
382 |
msgstr "Vicino"
|
383 |
|
384 |
# @ virtue
|
385 |
+
#: ../metaboxes.php:243 ../metaboxes.php:738
|
386 |
msgid "Above"
|
387 |
msgstr "Sopra"
|
388 |
|
389 |
# @ virtue
|
390 |
+
#: ../metaboxes.php:244 ../metaboxes.php:739
|
391 |
msgid "Three Rows"
|
392 |
msgstr "Tre righe"
|
393 |
|
394 |
# @ virtue
|
395 |
+
#: ../metaboxes.php:248 ../metaboxes.php:743
|
396 |
msgid "Project Options"
|
397 |
msgstr "Opzioni progetto"
|
398 |
|
399 |
# @ virtue
|
400 |
+
#: ../metaboxes.php:253 ../metaboxes.php:748 ../metaboxes.php:987
|
401 |
msgid "Image"
|
402 |
msgstr "Immagine"
|
403 |
|
404 |
# @ virtue
|
405 |
+
#: ../metaboxes.php:254 ../metaboxes.php:548
|
406 |
#, fuzzy
|
407 |
msgid "Image Slider (Flex Slider)"
|
408 |
msgstr "Slider immagini"
|
409 |
|
410 |
# @ virtue
|
411 |
+
#: ../metaboxes.php:255 ../metaboxes.php:549 ../metaboxes.php:750
|
412 |
#, fuzzy
|
413 |
msgid "Carousel Slider"
|
414 |
msgstr "Slider titolo"
|
415 |
|
416 |
+
#: ../metaboxes.php:257 ../metaboxes.php:751
|
417 |
+
msgid "Image Grid"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: ../metaboxes.php:262 ../metaboxes.php:757
|
421 |
+
msgid "Columns (Only for Image Grid option)"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
# @ virtue
|
425 |
+
#: ../metaboxes.php:267 ../metaboxes.php:450 ../metaboxes.php:762
|
426 |
+
#: ../metaboxes.php:892
|
427 |
+
msgid "Four Column"
|
428 |
+
msgstr "Quattro colonne"
|
429 |
+
|
430 |
+
# @ virtue
|
431 |
+
#: ../metaboxes.php:268 ../metaboxes.php:451 ../metaboxes.php:763
|
432 |
+
#: ../metaboxes.php:893
|
433 |
+
msgid "Three Column"
|
434 |
+
msgstr "Tre colonne"
|
435 |
+
|
436 |
+
# @ virtue
|
437 |
+
#: ../metaboxes.php:269 ../metaboxes.php:452 ../metaboxes.php:764
|
438 |
+
#: ../metaboxes.php:894
|
439 |
+
msgid "Two Column"
|
440 |
+
msgstr "Due colonne"
|
441 |
+
|
442 |
# @ virtue
|
443 |
+
#: ../metaboxes.php:270 ../metaboxes.php:453 ../metaboxes.php:765
|
444 |
+
#, fuzzy
|
445 |
+
msgid "Five Column"
|
446 |
+
msgstr "Quattro colonne"
|
447 |
+
|
448 |
+
#: ../metaboxes.php:271 ../metaboxes.php:766
|
449 |
+
msgid "Six Column"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
# @ virtue
|
453 |
+
#: ../metaboxes.php:275
|
454 |
#, fuzzy
|
455 |
msgid "Portfolio Slider/Images"
|
456 |
msgstr "Slider immagini del portfolio"
|
457 |
|
458 |
# @ virtue
|
459 |
+
#: ../metaboxes.php:276
|
460 |
#, fuzzy
|
461 |
msgid "Add images for post here"
|
462 |
msgstr "Aggiungi le immagini alla galleria"
|
463 |
|
464 |
# @ virtue
|
465 |
+
#: ../metaboxes.php:281 ../metaboxes.php:566 ../metaboxes.php:770
|
466 |
+
#: ../metaboxes.php:997
|
467 |
msgid "Max Image/Slider Height"
|
468 |
msgstr "Altezza massima dell'immagine slider"
|
469 |
|
470 |
# @ virtue
|
471 |
+
#: ../metaboxes.php:282
|
472 |
#, fuzzy
|
473 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
474 |
msgstr ""
|
476 |
"350)</b>"
|
477 |
|
478 |
# @ virtue
|
479 |
+
#: ../metaboxes.php:287 ../metaboxes.php:572 ../metaboxes.php:776
|
480 |
+
#: ../metaboxes.php:1003
|
481 |
msgid "Max Image/Slider Width"
|
482 |
msgstr "Larghezza massima dell'immagine slider"
|
483 |
|
484 |
# @ virtue
|
485 |
+
#: ../metaboxes.php:288
|
486 |
#, fuzzy
|
487 |
msgid ""
|
488 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
492 |
"sufficiente il numero di ingresso, ad esempio: 650)</b>"
|
493 |
|
494 |
# @ virtue
|
495 |
+
#: ../metaboxes.php:293 ../metaboxes.php:792
|
496 |
msgid "Value 01 Title"
|
497 |
msgstr "Titolo valore 01"
|
498 |
|
499 |
# @ virtue
|
500 |
+
#: ../metaboxes.php:294 ../metaboxes.php:793
|
501 |
msgid "ex. Project Type:"
|
502 |
msgstr "Es. Tipologia progetto"
|
503 |
|
504 |
# @ virtue
|
505 |
+
#: ../metaboxes.php:299 ../metaboxes.php:798
|
506 |
msgid "Value 01 Description"
|
507 |
msgstr "Descrizione valore 01"
|
508 |
|
509 |
# @ virtue
|
510 |
+
#: ../metaboxes.php:300 ../metaboxes.php:799
|
511 |
msgid "ex. Character Illustration"
|
512 |
msgstr "Es. Carattere illustrazione"
|
513 |
|
514 |
# @ virtue
|
515 |
+
#: ../metaboxes.php:305 ../metaboxes.php:804
|
516 |
msgid "Value 02 Title"
|
517 |
msgstr "Titolo Valore 02"
|
518 |
|
519 |
# @ virtue
|
520 |
+
#: ../metaboxes.php:306 ../metaboxes.php:805
|
521 |
msgid "ex. Skills Needed:"
|
522 |
msgstr "es. competenze necessarie:"
|
523 |
|
524 |
# @ virtue
|
525 |
+
#: ../metaboxes.php:311 ../metaboxes.php:810
|
526 |
msgid "Value 02 Description"
|
527 |
msgstr "Descrizione valore 02"
|
528 |
|
529 |
# @ virtue
|
530 |
+
#: ../metaboxes.php:312 ../metaboxes.php:811
|
531 |
msgid "ex. Photoshop, Illustrator"
|
532 |
msgstr "Es. Photoshop, Illustrator"
|
533 |
|
534 |
# @ virtue
|
535 |
+
#: ../metaboxes.php:317 ../metaboxes.php:816
|
536 |
msgid "Value 03 Title"
|
537 |
msgstr "Titolo valore 03"
|
538 |
|
539 |
# @ virtue
|
540 |
+
#: ../metaboxes.php:318 ../metaboxes.php:817
|
541 |
msgid "ex. Customer:"
|
542 |
msgstr "Es. cliente:"
|
543 |
|
544 |
# @ virtue
|
545 |
+
#: ../metaboxes.php:323 ../metaboxes.php:822
|
546 |
msgid "Value 03 Description"
|
547 |
msgstr "Descrizione valore 03"
|
548 |
|
549 |
# @ virtue
|
550 |
+
#: ../metaboxes.php:324 ../metaboxes.php:823
|
551 |
msgid "ex. Example Inc"
|
552 |
msgstr "Es. Example Inc"
|
553 |
|
554 |
# @ virtue
|
555 |
+
#: ../metaboxes.php:329 ../metaboxes.php:828
|
556 |
msgid "Value 04 Title"
|
557 |
msgstr "Titolo valore 04"
|
558 |
|
559 |
# @ virtue
|
560 |
+
#: ../metaboxes.php:330 ../metaboxes.php:829
|
561 |
msgid "ex. Project Year:"
|
562 |
msgstr "Es. anno di progetto:"
|
563 |
|
564 |
# @ virtue
|
565 |
+
#: ../metaboxes.php:335 ../metaboxes.php:834
|
566 |
msgid "Value 04 Description"
|
567 |
msgstr "Descrizione valore 04"
|
568 |
|
569 |
# @ virtue
|
570 |
+
#: ../metaboxes.php:336 ../metaboxes.php:835
|
571 |
msgid "ex. 2013"
|
572 |
msgstr "Es. 2013"
|
573 |
|
574 |
# @ virtue
|
575 |
+
#: ../metaboxes.php:341 ../metaboxes.php:840
|
576 |
msgid "External Website"
|
577 |
msgstr "Sito web esterno"
|
578 |
|
579 |
# @ virtue
|
580 |
+
#: ../metaboxes.php:342 ../metaboxes.php:841
|
581 |
msgid "ex. Website:"
|
582 |
msgstr "Es. sito web:"
|
583 |
|
584 |
# @ virtue
|
585 |
+
#: ../metaboxes.php:347 ../metaboxes.php:846
|
586 |
msgid "Website Address"
|
587 |
msgstr "Indirizzo sito internet"
|
588 |
|
589 |
# @ virtue
|
590 |
+
#: ../metaboxes.php:348 ../metaboxes.php:847
|
591 |
msgid "ex. http://www.example.com"
|
592 |
msgstr "Es. http://www.example.com"
|
593 |
|
594 |
# @ virtue
|
595 |
+
#: ../metaboxes.php:353 ../metaboxes.php:852
|
596 |
msgid "If Video Project"
|
597 |
msgstr "If Video Project"
|
598 |
|
599 |
# @ virtue
|
600 |
+
#: ../metaboxes.php:354 ../metaboxes.php:579 ../metaboxes.php:716
|
601 |
+
#: ../metaboxes.php:853 ../metaboxes.php:1020
|
602 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
603 |
msgstr "Inserire il codice embed qui, funziona con youtube, vimeo ..."
|
604 |
|
605 |
# @ virtue
|
606 |
+
#: ../metaboxes.php:363
|
607 |
#, fuzzy
|
608 |
msgid "Bottom Carousel Options"
|
609 |
msgstr "Opzioni della pagina di contatto"
|
610 |
|
611 |
# @ virtue
|
612 |
+
#: ../metaboxes.php:370 ../metaboxes.php:868
|
613 |
msgid "Carousel Title"
|
614 |
msgstr "Slider titolo"
|
615 |
|
616 |
# @ virtue
|
617 |
+
#: ../metaboxes.php:371 ../metaboxes.php:869
|
618 |
msgid "ex. Similar Projects"
|
619 |
msgstr "Es. progetti simili"
|
620 |
|
621 |
# @ virtue
|
622 |
+
#: ../metaboxes.php:376
|
623 |
#, fuzzy
|
624 |
msgid "Bottom Portfolio Carousel"
|
625 |
msgstr "Slider portfolio"
|
626 |
|
627 |
# @ virtue
|
628 |
+
#: ../metaboxes.php:377
|
629 |
#, fuzzy
|
630 |
msgid "Display a carousel with portfolio items below project?"
|
631 |
msgstr ""
|
632 |
"Visualizza uno slider con articolo portfolio simile di seguito al progetto?"
|
633 |
|
634 |
# @ virtue
|
635 |
+
#: ../metaboxes.php:382 ../metaboxes.php:602 ../metaboxes.php:624
|
636 |
+
#: ../metaboxes.php:633 ../metaboxes.php:788 ../metaboxes.php:863
|
637 |
+
#: ../metaboxes.php:963 ../metaboxes.php:1015 ../metaboxes.php:1043
|
638 |
+
#: ../metaboxes.php:1059 ../metaboxes.php:1068
|
639 |
msgid "No"
|
640 |
msgstr "No"
|
641 |
|
642 |
# @ virtue
|
643 |
+
#: ../metaboxes.php:383 ../metaboxes.php:601 ../metaboxes.php:623
|
644 |
+
#: ../metaboxes.php:634 ../metaboxes.php:787 ../metaboxes.php:964
|
645 |
+
#: ../metaboxes.php:1014 ../metaboxes.php:1042 ../metaboxes.php:1058
|
646 |
+
#: ../metaboxes.php:1069
|
647 |
msgid "Yes"
|
648 |
msgstr "Si"
|
649 |
|
650 |
# @ virtue
|
651 |
+
#: ../metaboxes.php:387
|
652 |
#, fuzzy
|
653 |
msgid "Carousel Items"
|
654 |
msgstr "Slider titolo"
|
655 |
|
656 |
# @ virtue
|
657 |
+
#: ../metaboxes.php:393
|
658 |
#, fuzzy
|
659 |
msgid "All Portfolio Posts"
|
660 |
msgstr "Portfolio, opzioni messaggio"
|
661 |
|
662 |
+
#: ../metaboxes.php:394
|
663 |
msgid "Only of same Portfolio Type"
|
664 |
msgstr ""
|
665 |
|
666 |
# @ virtue
|
667 |
+
#: ../metaboxes.php:398
|
668 |
#, fuzzy
|
669 |
msgid "Carousel Order"
|
670 |
msgstr "Slider titolo"
|
671 |
|
672 |
# @ virtue
|
673 |
+
#: ../metaboxes.php:403 ../metaboxes.php:468 ../metaboxes.php:910
|
674 |
msgid "Menu Order"
|
675 |
msgstr "Ordine menu"
|
676 |
|
677 |
# @ virtue
|
678 |
# @ redux-framework
|
679 |
+
#: ../metaboxes.php:404 ../metaboxes.php:469 ../metaboxes.php:911
|
680 |
msgid "Title"
|
681 |
msgstr "Titolo"
|
682 |
|
683 |
# @ virtue
|
684 |
# @ woocommerce
|
685 |
+
#: ../metaboxes.php:405 ../metaboxes.php:470 ../metaboxes.php:912
|
686 |
msgid "Date"
|
687 |
msgstr "Data"
|
688 |
|
689 |
# @ virtue
|
690 |
+
#: ../metaboxes.php:406 ../metaboxes.php:471 ../metaboxes.php:913
|
691 |
msgid "Random"
|
692 |
msgstr "Casuale"
|
693 |
|
694 |
# @ virtue
|
695 |
+
#: ../metaboxes.php:414 ../metaboxes.php:878
|
696 |
msgid "Portfolio Page Options"
|
697 |
msgstr "Opzioni pagina portfolio"
|
698 |
|
699 |
+
#: ../metaboxes.php:422 ../shortcodes/pullquote/quote_popup.php:59
|
700 |
msgid "Style"
|
701 |
msgstr ""
|
702 |
|
703 |
# @ virtue
|
704 |
+
#: ../metaboxes.php:428
|
705 |
#, fuzzy
|
706 |
msgid "Post Boxes"
|
707 |
msgstr "Box videomessaggio"
|
708 |
|
709 |
+
#: ../metaboxes.php:429
|
710 |
msgid "Flat with Margin"
|
711 |
msgstr ""
|
712 |
|
713 |
# @ woocommerce
|
714 |
+
#: ../metaboxes.php:433
|
715 |
#, fuzzy
|
716 |
msgid "Hover Style"
|
717 |
msgstr "Totale ordine"
|
718 |
|
719 |
# @ woocommerce
|
720 |
+
#: ../metaboxes.php:439
|
721 |
#, fuzzy
|
722 |
msgid "Light"
|
723 |
msgstr "Peso"
|
724 |
|
725 |
+
#: ../metaboxes.php:440
|
726 |
msgid "Dark"
|
727 |
msgstr ""
|
728 |
|
729 |
# @ virtue
|
730 |
+
#: ../metaboxes.php:441 ../shortcodes/btns/btns_popup.php:134
|
731 |
msgid "Primary Color"
|
732 |
msgstr "Colore primario"
|
733 |
|
734 |
# @ virtue
|
735 |
+
#: ../metaboxes.php:445 ../metaboxes.php:887
|
736 |
msgid "Columns"
|
737 |
msgstr "Colonne"
|
738 |
|
739 |
# @ virtue
|
740 |
+
#: ../metaboxes.php:457 ../metaboxes.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
741 |
msgid "Portfolio Work Types"
|
742 |
msgstr "Tipologie di portfolio lavoro"
|
743 |
|
744 |
# @ virtue
|
745 |
+
#: ../metaboxes.php:463 ../metaboxes.php:905
|
746 |
msgid "Order Items By"
|
747 |
msgstr "Ordina gli elementi per"
|
748 |
|
749 |
# @ virtue
|
750 |
+
#: ../metaboxes.php:475 ../metaboxes.php:917
|
751 |
msgid "Items per Page"
|
752 |
msgstr "Articoli per pagina"
|
753 |
|
754 |
# @ virtue
|
755 |
+
#: ../metaboxes.php:476 ../metaboxes.php:918
|
756 |
msgid "How many portfolio items per page"
|
757 |
msgstr "Quanti articoli del portfolio per pagina"
|
758 |
|
759 |
# @ virtue
|
760 |
# @ redux-framework
|
761 |
+
#: ../metaboxes.php:480 ../metaboxes.php:922
|
762 |
msgid "All"
|
763 |
msgstr "Tutti"
|
764 |
|
765 |
# @ virtue
|
766 |
+
#: ../metaboxes.php:498
|
767 |
#, fuzzy
|
768 |
msgid "Image Ratio?"
|
769 |
msgstr "Immagine"
|
770 |
|
771 |
+
#: ../metaboxes.php:504
|
772 |
msgid "Square 1:1"
|
773 |
msgstr ""
|
774 |
|
775 |
# @ virtue
|
776 |
+
#: ../metaboxes.php:505
|
777 |
#, fuzzy
|
778 |
msgid "Portrait 3:4"
|
779 |
msgstr "Immagine verticale"
|
780 |
|
781 |
# @ virtue
|
782 |
+
#: ../metaboxes.php:506
|
783 |
#, fuzzy
|
784 |
msgid "Landscape 4:3"
|
785 |
msgstr "Immagine orizzontale"
|
786 |
|
787 |
# @ virtue
|
788 |
+
#: ../metaboxes.php:507
|
789 |
#, fuzzy
|
790 |
msgid "Wide Landscape 4:2"
|
791 |
msgstr "Immagine orizzontale"
|
792 |
|
793 |
# @ virtue
|
794 |
+
#: ../metaboxes.php:511 ../metaboxes.php:946
|
795 |
msgid "Display Item Work Types"
|
796 |
msgstr "Visualizza articoli di tipologia lavoro"
|
797 |
|
798 |
# @ virtue
|
799 |
+
#: ../metaboxes.php:517 ../metaboxes.php:952
|
800 |
msgid "Display Item Excerpt"
|
801 |
msgstr "Visualizza un estratto del articolo"
|
802 |
|
803 |
+
#: ../metaboxes.php:523
|
804 |
#, fuzzy
|
805 |
msgid "Add Lightbox link in each item"
|
806 |
msgstr "Aggiungi un link Lightbox in alto a destra di ogni elemento"
|
807 |
|
808 |
# @ virtue
|
809 |
+
#: ../metaboxes.php:532 ../metaboxes.php:971
|
810 |
msgid "Feature Page Options"
|
811 |
msgstr "Opzioni pagina in evidenza"
|
812 |
|
813 |
# @ virtue
|
814 |
+
#: ../metaboxes.php:541
|
815 |
#, fuzzy
|
816 |
msgid "Header Options"
|
817 |
msgstr "Opzioni font del Header"
|
818 |
|
819 |
# @ virtue
|
820 |
+
#: ../metaboxes.php:542
|
821 |
#, fuzzy
|
822 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
823 |
msgstr ""
|
825 |
"1170px di larghezza."
|
826 |
|
827 |
# @ virtue
|
828 |
+
#: ../metaboxes.php:547
|
829 |
msgid "Page Title"
|
830 |
msgstr "Titolo pagina"
|
831 |
|
832 |
# @ virtue
|
833 |
+
#: ../metaboxes.php:554 ../metaboxes.php:1130
|
834 |
msgid "Slider Images"
|
835 |
msgstr "Slider immagini"
|
836 |
|
837 |
+
#: ../metaboxes.php:555
|
838 |
msgid "Add for flex, carousel, and image carousel."
|
839 |
msgstr ""
|
840 |
|
841 |
# @ virtue
|
842 |
+
#: ../metaboxes.php:560
|
843 |
#, fuzzy
|
844 |
msgid "If Cyclone Slider"
|
845 |
msgstr "Slider titolo"
|
846 |
|
847 |
+
#: ../metaboxes.php:561
|
848 |
msgid ""
|
849 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
850 |
msgstr ""
|
851 |
|
852 |
# @ virtue
|
853 |
+
#: ../metaboxes.php:573
|
854 |
#, fuzzy
|
855 |
msgid ""
|
856 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
860 |
"ingresso, ad esempio: 650, non si applica allo slider)</b>"
|
861 |
|
862 |
# @ virtue
|
863 |
+
#: ../metaboxes.php:578 ../metaboxes.php:715 ../metaboxes.php:1019
|
864 |
msgid "If Video Post"
|
865 |
msgstr "If Video Post"
|
866 |
|
867 |
# @ virtue
|
868 |
+
#: ../metaboxes.php:587 ../metaboxes.php:1028
|
869 |
msgid "Contact Page Options"
|
870 |
msgstr "Opzioni della pagina di contatto"
|
871 |
|
872 |
# @ virtue
|
873 |
+
#: ../metaboxes.php:596 ../metaboxes.php:1037
|
874 |
msgid "Use Contact Form"
|
875 |
msgstr "Usa il form di contatto"
|
876 |
|
877 |
# @ virtue
|
878 |
+
#: ../metaboxes.php:606 ../metaboxes.php:1047
|
879 |
msgid "Contact Form Title"
|
880 |
msgstr "Titolo form di contatto"
|
881 |
|
882 |
# @ virtue
|
883 |
+
#: ../metaboxes.php:607 ../metaboxes.php:1048
|
884 |
msgid "ex. Send us an Email"
|
885 |
msgstr "Es. Spedisci a noi una email"
|
886 |
|
887 |
# @ virtue
|
888 |
+
#: ../metaboxes.php:612
|
889 |
#, fuzzy
|
890 |
msgid "Contact Form Email Recipient"
|
891 |
msgstr "Modulo di contatto Email"
|
892 |
|
893 |
+
#: ../metaboxes.php:613
|
894 |
msgid "ex. joe@gmail.com"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../metaboxes.php:618 ../metaboxes.php:1053
|
898 |
msgid "Use Simple Math Question"
|
899 |
msgstr ""
|
900 |
|
901 |
# @ virtue
|
902 |
+
#: ../metaboxes.php:628 ../metaboxes.php:1063
|
903 |
msgid "Use Map"
|
904 |
msgstr "Usa mappa"
|
905 |
|
906 |
# @ virtue
|
907 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
908 |
msgid "Address"
|
909 |
msgstr "Indirizzo"
|
910 |
|
911 |
# @ virtue
|
912 |
+
#: ../metaboxes.php:639 ../metaboxes.php:1074
|
913 |
msgid "Enter your Location"
|
914 |
msgstr "Inserisci la tua località"
|
915 |
|
916 |
# @ virtue
|
917 |
+
#: ../metaboxes.php:644 ../metaboxes.php:1079
|
918 |
msgid "Map Type"
|
919 |
msgstr "Tipologia mappa"
|
920 |
|
921 |
# @ virtue
|
922 |
+
#: ../metaboxes.php:649 ../metaboxes.php:1084
|
923 |
msgid "ROADMAP"
|
924 |
msgstr "ROADMAP"
|
925 |
|
926 |
# @ virtue
|
927 |
+
#: ../metaboxes.php:650 ../metaboxes.php:1085
|
928 |
msgid "HYBRID"
|
929 |
msgstr "HYBRID"
|
930 |
|
931 |
# @ virtue
|
932 |
+
#: ../metaboxes.php:651 ../metaboxes.php:1086
|
933 |
msgid "TERRAIN"
|
934 |
msgstr "TERRAIN"
|
935 |
|
936 |
# @ virtue
|
937 |
+
#: ../metaboxes.php:652 ../metaboxes.php:1087
|
938 |
msgid "SATELLITE"
|
939 |
msgstr "SATELLITE"
|
940 |
|
941 |
# @ virtue
|
942 |
+
#: ../metaboxes.php:656 ../metaboxes.php:1091
|
943 |
msgid "Map Zoom Level"
|
944 |
msgstr "Livello di zoon mappa"
|
945 |
|
946 |
# @ virtue
|
947 |
+
#: ../metaboxes.php:657 ../metaboxes.php:1092
|
948 |
msgid "A good place to start is 15"
|
949 |
msgstr "Un buon punto di partenza è 15"
|
950 |
|
951 |
# @ virtue
|
952 |
+
#: ../metaboxes.php:662 ../metaboxes.php:1097
|
953 |
msgid "1 (World View)"
|
954 |
msgstr "1 (vista mondo)"
|
955 |
|
956 |
# @ virtue
|
957 |
+
#: ../metaboxes.php:682 ../metaboxes.php:1117
|
958 |
msgid "21 (Street View)"
|
959 |
msgstr "21 (Street View)"
|
960 |
|
961 |
# @ virtue
|
962 |
+
#: ../metaboxes.php:686 ../metaboxes.php:1121
|
963 |
msgid "Map Height"
|
964 |
msgstr "Altezza mappa"
|
965 |
|
966 |
# @ virtue
|
967 |
+
#: ../metaboxes.php:687 ../metaboxes.php:1122
|
968 |
msgid "Default is 300"
|
969 |
msgstr "Default è 300"
|
970 |
|
971 |
# @ virtue
|
972 |
+
#: ../metaboxes.php:707
|
973 |
msgid "Post Video Box"
|
974 |
msgstr "Box videomessaggio"
|
975 |
|
976 |
# @ virtue
|
977 |
+
#: ../metaboxes.php:737
|
978 |
msgid "Beside"
|
979 |
msgstr "Vicino"
|
980 |
|
981 |
# @ virtue
|
982 |
+
#: ../metaboxes.php:749 ../metaboxes.php:985
|
983 |
msgid "Image Slider"
|
984 |
msgstr "Slider immagini"
|
985 |
|
986 |
# @ virtue
|
987 |
+
#: ../metaboxes.php:771
|
988 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
989 |
msgstr ""
|
990 |
"Predefinito: 450 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
|
991 |
"350)</b>"
|
992 |
|
993 |
# @ virtue
|
994 |
+
#: ../metaboxes.php:777
|
995 |
#, fuzzy
|
996 |
msgid ""
|
997 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
1001 |
"sufficiente il numero di ingresso, ad esempio: 650)</b>"
|
1002 |
|
1003 |
# @ virtue
|
1004 |
+
#: ../metaboxes.php:782
|
1005 |
#, fuzzy
|
1006 |
msgid "Auto Play Slider?"
|
1007 |
msgstr "Auto Play?"
|
1008 |
|
1009 |
# @ virtue
|
1010 |
+
#: ../metaboxes.php:858
|
1011 |
msgid "Similar Portfolio Item Carousel"
|
1012 |
msgstr "Slider articolo portfolio simile"
|
1013 |
|
1014 |
# @ virtue
|
1015 |
+
#: ../metaboxes.php:859
|
1016 |
msgid "Display a carousel with similar portfolio items below project?"
|
1017 |
msgstr ""
|
1018 |
"Visualizza uno slider con articolo portfolio simile di seguito al progetto?"
|
1019 |
|
1020 |
# @ virtue
|
1021 |
+
#: ../metaboxes.php:864
|
1022 |
msgid "Yes - Display Recent Projects"
|
1023 |
msgstr "Si - Visualizza progetti recenti"
|
1024 |
|
1025 |
# @ virtue
|
1026 |
+
#: ../metaboxes.php:940
|
1027 |
msgid "Set image height"
|
1028 |
msgstr "Imposta altezza immagine"
|
1029 |
|
1030 |
# @ virtue
|
1031 |
+
#: ../metaboxes.php:941
|
1032 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
1033 |
msgstr ""
|
1034 |
"Predefinito: rapporto 1:1 <b>(Nota: è sufficiente il numero di ingresso, ad "
|
1035 |
"esempio: 350)</b>"
|
1036 |
|
1037 |
+
#: ../metaboxes.php:958
|
1038 |
msgid "Add Lightbox link in the top right of each item"
|
1039 |
msgstr "Aggiungi un link Lightbox in alto a destra di ogni elemento"
|
1040 |
|
1041 |
# @ virtue
|
1042 |
+
#: ../metaboxes.php:980
|
1043 |
msgid "Feature Options"
|
1044 |
msgstr "Opzioni in evidenza"
|
1045 |
|
1046 |
# @ virtue
|
1047 |
+
#: ../metaboxes.php:981
|
1048 |
#, fuzzy
|
1049 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
1050 |
msgstr ""
|
1052 |
"1170px di larghezza."
|
1053 |
|
1054 |
# @ virtue
|
1055 |
+
#: ../metaboxes.php:991 ../metaboxes.php:1137
|
1056 |
+
#, fuzzy
|
1057 |
+
msgid "Slider Gallery"
|
1058 |
+
msgstr "Galleria post"
|
1059 |
+
|
1060 |
+
# @ virtue
|
1061 |
+
#: ../metaboxes.php:998
|
1062 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
1063 |
msgstr ""
|
1064 |
"Predefinito: 400 <b>(Nota: è sufficiente il numero di ingresso, ad esempio: "
|
1065 |
"350)</b>"
|
1066 |
|
1067 |
# @ virtue
|
1068 |
+
#: ../metaboxes.php:1004
|
1069 |
#, fuzzy
|
1070 |
msgid ""
|
1071 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
1075 |
"650, non si applica allo slider)</b>"
|
1076 |
|
1077 |
# @ virtue
|
1078 |
+
#: ../metaboxes.php:1009
|
1079 |
msgid "Use Lightbox for Feature Image"
|
1080 |
msgstr "Usa Lightbox per l'immagine in evidenza"
|
1081 |
|
1082 |
# @ virtue
|
1083 |
+
#: ../metaboxes.php:1010
|
1084 |
msgid ""
|
1085 |
"If feature option is set to image, choose to use lightbox link with image."
|
1086 |
msgstr ""
|
1087 |
"Se opzione in evidenza è impostata su immagine, scegliere di utilizzare "
|
1088 |
"lightbox link per l'immagine."
|
1089 |
|
1090 |
+
#: ../page-contact.php:13 ../template-contact.php:13
|
|
|
|
|
|
|
|
|
|
|
|
|
1091 |
msgid "This field is required."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
# @ virtue
|
1095 |
+
#: ../page-contact.php:14 ../template-contact.php:14
|
1096 |
#, fuzzy
|
1097 |
msgid "Please enter a valid email address."
|
1098 |
msgstr "Per favore, inserisci il tuo indirizzo email."
|
1099 |
|
1100 |
+
#: ../page-contact.php:97 ../template-contact.php:98
|
1101 |
msgid "Check your math."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
# @ virtue
|
1105 |
+
#: ../page-contact.php:102 ../template-contact.php:103
|
1106 |
msgid "Please enter your name."
|
1107 |
msgstr "Per favore, inserisci il tuo nome."
|
1108 |
|
1109 |
# @ virtue
|
1110 |
+
#: ../page-contact.php:109 ../template-contact.php:110
|
1111 |
msgid "Please enter your email address."
|
1112 |
msgstr "Per favore, inserisci il tuo indirizzo email."
|
1113 |
|
1114 |
# @ virtue
|
1115 |
+
#: ../page-contact.php:112 ../template-contact.php:113
|
1116 |
msgid "You entered an invalid email address."
|
1117 |
msgstr "Hai inserito un indirizzo mail non valido."
|
1118 |
|
1119 |
# @ virtue
|
1120 |
+
#: ../page-contact.php:119 ../template-contact.php:120
|
1121 |
msgid "Please enter a message."
|
1122 |
msgstr "Per favore, inserisci un messaggio."
|
1123 |
|
1124 |
# @ virtue
|
1125 |
+
#: ../page-contact.php:136 ../pagetemplater.php:28 ../pagetemplater.php:116
|
1126 |
+
#: ../template-contact.php:137
|
1127 |
#, fuzzy
|
1128 |
msgid "Contact"
|
1129 |
msgstr " Contatti"
|
1130 |
|
1131 |
# @ virtue
|
1132 |
+
#: ../page-contact.php:136 ../template-contact.php:137
|
1133 |
msgid "From"
|
1134 |
msgstr "Da"
|
1135 |
|
1136 |
# @ virtue
|
1137 |
# @ woocommerce
|
1138 |
+
#: ../page-contact.php:137 ../template-contact.php:138
|
1139 |
msgid "Name"
|
1140 |
msgstr "Nome"
|
1141 |
|
1142 |
# @ woocommerce
|
1143 |
+
#: ../page-contact.php:138 ../template-contact.php:139
|
1144 |
msgid "Email"
|
1145 |
msgstr "Email"
|
1146 |
|
1147 |
# @ virtue
|
1148 |
+
#: ../page-contact.php:139 ../template-contact.php:140
|
1149 |
#, fuzzy
|
1150 |
msgid "Comments"
|
1151 |
msgstr "Commento"
|
1152 |
|
1153 |
# @ virtue
|
1154 |
+
#: ../page-contact.php:177 ../template-contact.php:175
|
1155 |
msgid "Thanks, your email was sent successfully."
|
1156 |
msgstr "Grazie, la tua email è stata inviata con successo."
|
1157 |
|
1158 |
# @ virtue
|
1159 |
+
#: ../page-contact.php:182 ../template-contact.php:179
|
1160 |
msgid "Sorry, an error occured."
|
1161 |
msgstr "Mi dispiace, c'è stato un errore."
|
1162 |
|
1163 |
# @ virtue
|
1164 |
+
#: ../page-contact.php:188 ../template-contact.php:185
|
1165 |
msgid "Name:"
|
1166 |
msgstr "Nome:"
|
1167 |
|
1168 |
# @ virtue
|
1169 |
+
# @ woocommerce
|
1170 |
+
#: ../page-contact.php:196 ../template-contact.php:195
|
1171 |
+
msgid "Email:"
|
1172 |
msgstr "Email:"
|
1173 |
|
1174 |
# @ virtue
|
1175 |
+
#: ../page-contact.php:204 ../template-contact.php:202
|
1176 |
+
#, fuzzy
|
1177 |
+
msgid "Message:"
|
1178 |
msgstr "Messaggio:"
|
1179 |
|
1180 |
# @ virtue
|
1181 |
+
#: ../page-contact.php:224 ../template-contact.php:220
|
1182 |
msgid "Send Email"
|
1183 |
msgstr "Invia Email"
|
1184 |
|
1594 |
msgstr "Link icona"
|
1595 |
|
1596 |
# @ virtue
|
1597 |
+
#~ msgid "Email: "
|
1598 |
+
#~ msgstr "Email:"
|
|
|
|
|
1599 |
|
1600 |
# @ virtue
|
1601 |
+
#~ msgid "Message: "
|
1602 |
+
#~ msgstr "Messaggio:"
|
|
|
|
|
1603 |
|
1604 |
# @ virtue
|
1605 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
languages/virtue-toolkit-pt_BR.mo
ADDED
Binary file
|
languages/{kadencetoolkit-pt_BR.po → virtue-toolkit-pt_BR.po}
RENAMED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Victor Debone <victor@debone.com.br>\n"
|
7 |
"Language-Team: Victor Debone <victor@debone.com.br>\n"
|
8 |
"Language: pt_BR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr_e;esc_attr__\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
@@ -76,9 +76,9 @@ msgid "Clear"
|
|
76 |
msgstr "Limpar"
|
77 |
|
78 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
79 |
-
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:
|
80 |
-
#: ../metaboxes.php:
|
81 |
-
#: ../metaboxes.php:
|
82 |
msgid "Default"
|
83 |
msgstr "Padrão"
|
84 |
|
@@ -185,8 +185,8 @@ msgstr "Slider de Imagens (Flex Slider)"
|
|
185 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
186 |
msgstr "Slider de Imagens (Flex Slider)"
|
187 |
|
188 |
-
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:
|
189 |
-
#: ../metaboxes.php:
|
190 |
msgid "None"
|
191 |
msgstr "Nenhum"
|
192 |
|
@@ -195,7 +195,7 @@ msgstr "Nenhum"
|
|
195 |
msgid "Post Slider Gallery"
|
196 |
msgstr "Virtue: Galeria"
|
197 |
|
198 |
-
#: ../metaboxes.php:148 ../metaboxes.php:
|
199 |
#, fuzzy
|
200 |
msgid "Add images for gallery here"
|
201 |
msgstr "Adicionar Imagens para a Galeria"
|
@@ -205,7 +205,7 @@ msgstr "Adicionar Imagens para a Galeria"
|
|
205 |
msgid "Max Slider Height"
|
206 |
msgstr "Altura Máxima do Slider/Imagem"
|
207 |
|
208 |
-
#: ../metaboxes.php:154 ../metaboxes.php:
|
209 |
#, fuzzy
|
210 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
211 |
msgstr "O padrão é: 400 (Nota: coloque somente números, exemplo: 350)"
|
@@ -256,8 +256,8 @@ msgstr "Opções do Post"
|
|
256 |
msgid "Video Post Default"
|
257 |
msgstr "Padrões de Posts"
|
258 |
|
259 |
-
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:
|
260 |
-
#: ../metaboxes.php:
|
261 |
msgid "Video"
|
262 |
msgstr "Vídeo"
|
263 |
|
@@ -291,11 +291,11 @@ msgstr ""
|
|
291 |
msgid "Video - (when possible)"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../metaboxes.php:228 ../metaboxes.php:
|
295 |
msgid "Portfolio Post Options"
|
296 |
msgstr "Opções do Post do Portfólio"
|
297 |
|
298 |
-
#: ../metaboxes.php:236 ../metaboxes.php:
|
299 |
msgid "Project Layout"
|
300 |
msgstr "Layout do Projeto"
|
301 |
|
@@ -309,56 +309,87 @@ msgstr "Ao lado"
|
|
309 |
msgid "Beside 33%"
|
310 |
msgstr "Ao lado"
|
311 |
|
312 |
-
#: ../metaboxes.php:243 ../metaboxes.php:
|
313 |
msgid "Above"
|
314 |
msgstr "Acima"
|
315 |
|
316 |
-
#: ../metaboxes.php:244 ../metaboxes.php:
|
317 |
msgid "Three Rows"
|
318 |
msgstr "Três linhas"
|
319 |
|
320 |
-
#: ../metaboxes.php:248 ../metaboxes.php:
|
321 |
msgid "Project Options"
|
322 |
msgstr "Opções do Projeto"
|
323 |
|
324 |
-
#: ../metaboxes.php:253 ../metaboxes.php:
|
325 |
msgid "Image"
|
326 |
msgstr "Imagem"
|
327 |
|
328 |
-
#: ../metaboxes.php:254 ../metaboxes.php:
|
329 |
msgid "Image Slider (Flex Slider)"
|
330 |
msgstr "Slider de Imagens (Flex Slider)"
|
331 |
|
332 |
-
#: ../metaboxes.php:255 ../metaboxes.php:
|
333 |
msgid "Carousel Slider"
|
334 |
msgstr "Slider do Carrossel"
|
335 |
|
336 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
#, fuzzy
|
338 |
msgid "Portfolio Slider/Images"
|
339 |
msgstr "Imagens do Slider do Portfólio"
|
340 |
|
341 |
-
#: ../metaboxes.php:
|
342 |
#, fuzzy
|
343 |
msgid "Add images for post here"
|
344 |
msgstr "Adicionar Imagens para a Galeria"
|
345 |
|
346 |
-
#: ../metaboxes.php:
|
347 |
-
#: ../metaboxes.php:
|
348 |
msgid "Max Image/Slider Height"
|
349 |
msgstr "Altura Máxima do Slider/Imagem"
|
350 |
|
351 |
-
#: ../metaboxes.php:
|
352 |
#, fuzzy
|
353 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
354 |
msgstr "O padrão é: 450 (Nota: coloque somente números, exemplo: 350)"
|
355 |
|
356 |
-
#: ../metaboxes.php:
|
357 |
-
#: ../metaboxes.php:
|
358 |
msgid "Max Image/Slider Width"
|
359 |
msgstr "Largura Máxima do Slider/Imagem"
|
360 |
|
361 |
-
#: ../metaboxes.php:
|
362 |
#, fuzzy
|
363 |
msgid ""
|
364 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
@@ -367,312 +398,296 @@ msgstr ""
|
|
367 |
"O padrão é: 670 ou 1140 nos layouts acima ou de três linhas (Nota: insira "
|
368 |
"somente números, exemplo: 650)"
|
369 |
|
370 |
-
#: ../metaboxes.php:
|
371 |
msgid "Value 01 Title"
|
372 |
msgstr "Título do Valor 01"
|
373 |
|
374 |
-
#: ../metaboxes.php:
|
375 |
msgid "ex. Project Type:"
|
376 |
msgstr "ex: Tipo do Projeto:"
|
377 |
|
378 |
-
#: ../metaboxes.php:
|
379 |
msgid "Value 01 Description"
|
380 |
msgstr "Descrição do Valor 01"
|
381 |
|
382 |
-
#: ../metaboxes.php:
|
383 |
msgid "ex. Character Illustration"
|
384 |
msgstr "ex: Ilustração de Personagens"
|
385 |
|
386 |
-
#: ../metaboxes.php:
|
387 |
msgid "Value 02 Title"
|
388 |
msgstr "Título do Valor 02"
|
389 |
|
390 |
-
#: ../metaboxes.php:
|
391 |
msgid "ex. Skills Needed:"
|
392 |
msgstr "ex: Habilidades Necessárias:"
|
393 |
|
394 |
-
#: ../metaboxes.php:
|
395 |
msgid "Value 02 Description"
|
396 |
msgstr "Descrição do Valor 02"
|
397 |
|
398 |
-
#: ../metaboxes.php:
|
399 |
msgid "ex. Photoshop, Illustrator"
|
400 |
msgstr "ex: Photoshop, Illustrator"
|
401 |
|
402 |
-
#: ../metaboxes.php:
|
403 |
msgid "Value 03 Title"
|
404 |
msgstr "Título do Valor 03"
|
405 |
|
406 |
-
#: ../metaboxes.php:
|
407 |
msgid "ex. Customer:"
|
408 |
msgstr "ex: Cliente:"
|
409 |
|
410 |
-
#: ../metaboxes.php:
|
411 |
msgid "Value 03 Description"
|
412 |
msgstr "Descrição do Valor 03"
|
413 |
|
414 |
-
#: ../metaboxes.php:
|
415 |
msgid "ex. Example Inc"
|
416 |
msgstr "ex: Exemplo Inc"
|
417 |
|
418 |
-
#: ../metaboxes.php:
|
419 |
msgid "Value 04 Title"
|
420 |
msgstr "Título do Valor 04"
|
421 |
|
422 |
-
#: ../metaboxes.php:
|
423 |
msgid "ex. Project Year:"
|
424 |
msgstr "ex: Ano do Projeto:"
|
425 |
|
426 |
-
#: ../metaboxes.php:
|
427 |
msgid "Value 04 Description"
|
428 |
msgstr "Descrição do Valor 04"
|
429 |
|
430 |
-
#: ../metaboxes.php:
|
431 |
msgid "ex. 2013"
|
432 |
msgstr "ex: 2013"
|
433 |
|
434 |
-
#: ../metaboxes.php:
|
435 |
msgid "External Website"
|
436 |
msgstr "Site Externo"
|
437 |
|
438 |
-
#: ../metaboxes.php:
|
439 |
msgid "ex. Website:"
|
440 |
msgstr "ex: Site:"
|
441 |
|
442 |
-
#: ../metaboxes.php:
|
443 |
msgid "Website Address"
|
444 |
msgstr "Endereço do Website"
|
445 |
|
446 |
-
#: ../metaboxes.php:
|
447 |
msgid "ex. http://www.example.com"
|
448 |
msgstr "ex: http://www.example.com.br"
|
449 |
|
450 |
-
#: ../metaboxes.php:
|
451 |
msgid "If Video Project"
|
452 |
msgstr "Caso Projeto de vídeo"
|
453 |
|
454 |
-
#: ../metaboxes.php:
|
455 |
-
#: ../metaboxes.php:
|
456 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
457 |
msgstr "Cole o código do vídeo aqui, funciona com You Tube, Vimeo..."
|
458 |
|
459 |
-
#: ../metaboxes.php:
|
460 |
msgid "Bottom Carousel Options"
|
461 |
msgstr "Opções do Carrossel Inferior"
|
462 |
|
463 |
-
#: ../metaboxes.php:
|
464 |
msgid "Carousel Title"
|
465 |
msgstr "Título do Carrossel"
|
466 |
|
467 |
-
#: ../metaboxes.php:
|
468 |
msgid "ex. Similar Projects"
|
469 |
msgstr "ex: Projetos similares"
|
470 |
|
471 |
-
#: ../metaboxes.php:
|
472 |
msgid "Bottom Portfolio Carousel"
|
473 |
msgstr "Carrossel do Portfólio Inferior"
|
474 |
|
475 |
-
#: ../metaboxes.php:
|
476 |
#, fuzzy
|
477 |
msgid "Display a carousel with portfolio items below project?"
|
478 |
msgstr "Mostrar um carrossel com os itens do portfólio embaixo do projeto?"
|
479 |
|
480 |
-
#: ../metaboxes.php:
|
481 |
-
#: ../metaboxes.php:
|
482 |
-
#: ../metaboxes.php:
|
483 |
-
#: ../metaboxes.php:
|
484 |
msgid "No"
|
485 |
msgstr "Não"
|
486 |
|
487 |
-
#: ../metaboxes.php:
|
488 |
-
#: ../metaboxes.php:
|
489 |
-
#: ../metaboxes.php:
|
490 |
-
#: ../metaboxes.php:
|
491 |
msgid "Yes"
|
492 |
msgstr "sim"
|
493 |
|
494 |
-
#: ../metaboxes.php:
|
495 |
msgid "Carousel Items"
|
496 |
msgstr "Itens do Carrossel"
|
497 |
|
498 |
-
#: ../metaboxes.php:
|
499 |
msgid "All Portfolio Posts"
|
500 |
msgstr "Todos Posts do Portfólio"
|
501 |
|
502 |
-
#: ../metaboxes.php:
|
503 |
msgid "Only of same Portfolio Type"
|
504 |
msgstr "Somente do mesmo tipo de Portfólio"
|
505 |
|
506 |
-
#: ../metaboxes.php:
|
507 |
msgid "Carousel Order"
|
508 |
msgstr "Ordem do Carrossel"
|
509 |
|
510 |
-
#: ../metaboxes.php:
|
511 |
msgid "Menu Order"
|
512 |
msgstr "Ordem do Menu"
|
513 |
|
514 |
-
#: ../metaboxes.php:
|
515 |
msgid "Title"
|
516 |
msgstr "Título"
|
517 |
|
518 |
-
#: ../metaboxes.php:
|
519 |
msgid "Date"
|
520 |
msgstr "Data"
|
521 |
|
522 |
-
#: ../metaboxes.php:
|
523 |
msgid "Random"
|
524 |
msgstr "Aleatório"
|
525 |
|
526 |
-
#: ../metaboxes.php:
|
527 |
msgid "Portfolio Page Options"
|
528 |
msgstr "Opções da Página do Portfólio"
|
529 |
|
530 |
-
#: ../metaboxes.php:
|
531 |
msgid "Style"
|
532 |
msgstr "Estilo"
|
533 |
|
534 |
-
#: ../metaboxes.php:
|
535 |
#, fuzzy
|
536 |
msgid "Post Boxes"
|
537 |
msgstr "Vídeo do Produto"
|
538 |
|
539 |
-
#: ../metaboxes.php:
|
540 |
msgid "Flat with Margin"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ../metaboxes.php:
|
544 |
#, fuzzy
|
545 |
msgid "Hover Style"
|
546 |
msgstr "Estilo do Cabeçalho"
|
547 |
|
548 |
-
#: ../metaboxes.php:
|
549 |
#, fuzzy
|
550 |
msgid "Light"
|
551 |
msgstr "Direita"
|
552 |
|
553 |
-
#: ../metaboxes.php:
|
554 |
msgid "Dark"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../metaboxes.php:
|
558 |
msgid "Primary Color"
|
559 |
msgstr "Cor Primária"
|
560 |
|
561 |
-
#: ../metaboxes.php:
|
562 |
msgid "Columns"
|
563 |
msgstr "Colunas"
|
564 |
|
565 |
-
#: ../metaboxes.php:
|
566 |
-
msgid "Four Column"
|
567 |
-
msgstr "Quatro Colunas"
|
568 |
-
|
569 |
-
#: ../metaboxes.php:437 ../metaboxes.php:865
|
570 |
-
msgid "Three Column"
|
571 |
-
msgstr "Três colunas"
|
572 |
-
|
573 |
-
#: ../metaboxes.php:438 ../metaboxes.php:866
|
574 |
-
msgid "Two Column"
|
575 |
-
msgstr "Duas Colunas"
|
576 |
-
|
577 |
-
#: ../metaboxes.php:439
|
578 |
-
msgid "Five Column"
|
579 |
-
msgstr "Cinco Colunas"
|
580 |
-
|
581 |
-
#: ../metaboxes.php:443 ../metaboxes.php:870
|
582 |
msgid "Portfolio Work Types"
|
583 |
msgstr "Tipos de Trabalho do Portfólio"
|
584 |
|
585 |
-
#: ../metaboxes.php:
|
586 |
msgid "Order Items By"
|
587 |
msgstr "Ordenar itens por"
|
588 |
|
589 |
-
#: ../metaboxes.php:
|
590 |
msgid "Items per Page"
|
591 |
msgstr "Itens por Página"
|
592 |
|
593 |
-
#: ../metaboxes.php:
|
594 |
msgid "How many portfolio items per page"
|
595 |
msgstr "Quantos itens do portfólio por página"
|
596 |
|
597 |
-
#: ../metaboxes.php:
|
598 |
msgid "All"
|
599 |
msgstr "Todos"
|
600 |
|
601 |
-
#: ../metaboxes.php:
|
602 |
#, fuzzy
|
603 |
msgid "Image Ratio?"
|
604 |
msgstr "URL da Imagem"
|
605 |
|
606 |
-
#: ../metaboxes.php:
|
607 |
msgid "Square 1:1"
|
608 |
msgstr "Quadrado 1:1"
|
609 |
|
610 |
-
#: ../metaboxes.php:
|
611 |
msgid "Portrait 3:4"
|
612 |
msgstr "Retrato 3:4"
|
613 |
|
614 |
-
#: ../metaboxes.php:
|
615 |
msgid "Landscape 4:3"
|
616 |
msgstr "Paisagem 4:3"
|
617 |
|
618 |
-
#: ../metaboxes.php:
|
619 |
msgid "Wide Landscape 4:2"
|
620 |
msgstr "Paisagem 4:2 Larga"
|
621 |
|
622 |
-
#: ../metaboxes.php:
|
623 |
msgid "Display Item Work Types"
|
624 |
msgstr "Mostrar tipos de trabalho do item"
|
625 |
|
626 |
-
#: ../metaboxes.php:
|
627 |
msgid "Display Item Excerpt"
|
628 |
msgstr "Mostrar resumo do item"
|
629 |
|
630 |
-
#: ../metaboxes.php:
|
631 |
#, fuzzy
|
632 |
msgid "Add Lightbox link in each item"
|
633 |
msgstr "Adicionar link do Lightbox no topo direito de cada item"
|
634 |
|
635 |
-
#: ../metaboxes.php:
|
636 |
msgid "Feature Page Options"
|
637 |
msgstr "Opções da Página de Destaque"
|
638 |
|
639 |
-
#: ../metaboxes.php:
|
640 |
#, fuzzy
|
641 |
msgid "Header Options"
|
642 |
msgstr "Opções da Fonte do Cabeçalho"
|
643 |
|
644 |
-
#: ../metaboxes.php:
|
645 |
#, fuzzy
|
646 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
647 |
msgstr ""
|
648 |
"Se o slider é imagem tenha certeza que elas tenham pelo menos 1170px de "
|
649 |
"largura."
|
650 |
|
651 |
-
#: ../metaboxes.php:
|
652 |
msgid "Page Title"
|
653 |
msgstr "Título da Página"
|
654 |
|
655 |
-
#: ../metaboxes.php:
|
656 |
msgid "Slider Images"
|
657 |
msgstr "Imagens do Slider"
|
658 |
|
659 |
-
#: ../metaboxes.php:
|
660 |
#, fuzzy
|
661 |
msgid "Add for flex, carousel, and image carousel."
|
662 |
msgstr "Adiciona um Carrossel em qualquer espaço de widgets"
|
663 |
|
664 |
-
#: ../metaboxes.php:
|
665 |
msgid "If Cyclone Slider"
|
666 |
msgstr "Caso Cyclone Slider"
|
667 |
|
668 |
-
#: ../metaboxes.php:
|
669 |
#, fuzzy
|
670 |
msgid ""
|
671 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
672 |
msgstr ""
|
673 |
"Cole o shortcode do slider aqui (exemplo: [cycloneslider id=\"slide1\"])"
|
674 |
|
675 |
-
#: ../metaboxes.php:
|
676 |
#, fuzzy
|
677 |
msgid ""
|
678 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
@@ -681,114 +696,114 @@ msgstr ""
|
|
681 |
"O padrão é: 770 ou 1140 nos posts largos (Nota: insira somente números, "
|
682 |
"exemplo: 650, não aplica ao slider Carrossel)"
|
683 |
|
684 |
-
#: ../metaboxes.php:
|
685 |
msgid "If Video Post"
|
686 |
msgstr "Caso post de vídeo"
|
687 |
|
688 |
-
#: ../metaboxes.php:
|
689 |
msgid "Contact Page Options"
|
690 |
msgstr "Opções da página de Contato"
|
691 |
|
692 |
-
#: ../metaboxes.php:
|
693 |
msgid "Use Contact Form"
|
694 |
msgstr "Usar Formulário de Contato"
|
695 |
|
696 |
-
#: ../metaboxes.php:
|
697 |
msgid "Contact Form Title"
|
698 |
msgstr "Título do form de Contato"
|
699 |
|
700 |
-
#: ../metaboxes.php:
|
701 |
msgid "ex. Send us an Email"
|
702 |
msgstr "ex: Envie-nos um email"
|
703 |
|
704 |
-
#: ../metaboxes.php:
|
705 |
#, fuzzy
|
706 |
msgid "Contact Form Email Recipient"
|
707 |
msgstr "Email do form de Contato"
|
708 |
|
709 |
-
#: ../metaboxes.php:
|
710 |
msgid "ex. joe@gmail.com"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../metaboxes.php:
|
714 |
msgid "Use Simple Math Question"
|
715 |
msgstr "Usar questão simples de matemática"
|
716 |
|
717 |
-
#: ../metaboxes.php:
|
718 |
msgid "Use Map"
|
719 |
msgstr "Usar Mapa"
|
720 |
|
721 |
-
#: ../metaboxes.php:
|
722 |
msgid "Address"
|
723 |
msgstr "Endereço"
|
724 |
|
725 |
-
#: ../metaboxes.php:
|
726 |
msgid "Enter your Location"
|
727 |
msgstr "Insira seu local"
|
728 |
|
729 |
-
#: ../metaboxes.php:
|
730 |
msgid "Map Type"
|
731 |
msgstr "Tipo do Mapa"
|
732 |
|
733 |
-
#: ../metaboxes.php:
|
734 |
msgid "ROADMAP"
|
735 |
msgstr "MAPA COM RUAS"
|
736 |
|
737 |
-
#: ../metaboxes.php:
|
738 |
msgid "HYBRID"
|
739 |
msgstr "HÍBRIDO"
|
740 |
|
741 |
-
#: ../metaboxes.php:
|
742 |
msgid "TERRAIN"
|
743 |
msgstr "TERRENO"
|
744 |
|
745 |
-
#: ../metaboxes.php:
|
746 |
msgid "SATELLITE"
|
747 |
msgstr "SATÉLITE"
|
748 |
|
749 |
-
#: ../metaboxes.php:
|
750 |
msgid "Map Zoom Level"
|
751 |
msgstr "Nível de Zoom do Mapa"
|
752 |
|
753 |
-
#: ../metaboxes.php:
|
754 |
msgid "A good place to start is 15"
|
755 |
msgstr "Um bom lugar para começar é 15"
|
756 |
|
757 |
-
#: ../metaboxes.php:
|
758 |
msgid "1 (World View)"
|
759 |
msgstr "1 (Visualização Global)"
|
760 |
|
761 |
-
#: ../metaboxes.php:
|
762 |
msgid "21 (Street View)"
|
763 |
msgstr "21 (Visualização de Rua)"
|
764 |
|
765 |
-
#: ../metaboxes.php:
|
766 |
msgid "Map Height"
|
767 |
msgstr "Altura do Mapa"
|
768 |
|
769 |
-
#: ../metaboxes.php:
|
770 |
msgid "Default is 300"
|
771 |
msgstr "O padrão é 300"
|
772 |
|
773 |
-
#: ../metaboxes.php:
|
774 |
#, fuzzy
|
775 |
msgid "Post Video Box"
|
776 |
msgstr "Vídeo do Produto"
|
777 |
|
778 |
-
#: ../metaboxes.php:
|
779 |
msgid "Beside"
|
780 |
msgstr "Ao lado"
|
781 |
|
782 |
-
#: ../metaboxes.php:
|
783 |
msgid "Image Slider"
|
784 |
msgstr "Slider de Imagens"
|
785 |
|
786 |
-
#: ../metaboxes.php:
|
787 |
#, fuzzy
|
788 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
789 |
msgstr "O padrão é: 450 (Nota: coloque somente números, exemplo: 350)"
|
790 |
|
791 |
-
#: ../metaboxes.php:
|
792 |
#, fuzzy
|
793 |
msgid ""
|
794 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
@@ -797,57 +812,62 @@ msgstr ""
|
|
797 |
"O padrão é: 670 ou 1140 nos layouts acima ou de três linhas (Nota: insira "
|
798 |
"somente números, exemplo: 650)"
|
799 |
|
800 |
-
#: ../metaboxes.php:
|
801 |
msgid "Auto Play Slider?"
|
802 |
msgstr "Play automático do Slider?"
|
803 |
|
804 |
-
#: ../metaboxes.php:
|
805 |
#, fuzzy
|
806 |
msgid "Similar Portfolio Item Carousel"
|
807 |
msgstr "Carrossel do Portfólio"
|
808 |
|
809 |
-
#: ../metaboxes.php:
|
810 |
#, fuzzy
|
811 |
msgid "Display a carousel with similar portfolio items below project?"
|
812 |
msgstr "Mostrar um carrossel com os itens do portfólio embaixo do projeto?"
|
813 |
|
814 |
-
#: ../metaboxes.php:
|
815 |
#, fuzzy
|
816 |
msgid "Yes - Display Recent Projects"
|
817 |
msgstr "Sim - Mostrar posts mais recentes"
|
818 |
|
819 |
-
#: ../metaboxes.php:
|
820 |
#, fuzzy
|
821 |
msgid "Set image height"
|
822 |
msgstr "Definir altura da imagem caso recortar"
|
823 |
|
824 |
-
#: ../metaboxes.php:
|
825 |
#, fuzzy
|
826 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
827 |
msgstr ""
|
828 |
"O padrão de proporção é 1:1 (Nota: coloque somente números, exemplo: 320)"
|
829 |
|
830 |
-
#: ../metaboxes.php:
|
831 |
msgid "Add Lightbox link in the top right of each item"
|
832 |
msgstr "Adicionar link do Lightbox no topo direito de cada item"
|
833 |
|
834 |
-
#: ../metaboxes.php:
|
835 |
msgid "Feature Options"
|
836 |
msgstr "Opções do Destaque"
|
837 |
|
838 |
-
#: ../metaboxes.php:
|
839 |
#, fuzzy
|
840 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
841 |
msgstr ""
|
842 |
"Se o slider é imagem tenha certeza que elas tenham pelo menos 1170px de "
|
843 |
"largura."
|
844 |
|
845 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
846 |
#, fuzzy
|
847 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
848 |
msgstr "O padrão é: 400 (Nota: coloque somente números, exemplo: 350)"
|
849 |
|
850 |
-
#: ../metaboxes.php:
|
851 |
#, fuzzy
|
852 |
msgid ""
|
853 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
@@ -856,95 +876,91 @@ msgstr ""
|
|
856 |
"O padrão é: 1140 nos posts largos (Nota: coloque somente números, por "
|
857 |
"exemplo: 650, não se aplica pro slider Carrossel)"
|
858 |
|
859 |
-
#: ../metaboxes.php:
|
860 |
msgid "Use Lightbox for Feature Image"
|
861 |
msgstr "Usar Lightbox para Imagens Destacadas"
|
862 |
|
863 |
-
#: ../metaboxes.php:
|
864 |
msgid ""
|
865 |
"If feature option is set to image, choose to use lightbox link with image."
|
866 |
msgstr ""
|
867 |
"Caso a opção de destaque esteja como imagem, escolha usar ou não um lightbox "
|
868 |
"para ela."
|
869 |
|
870 |
-
#: ../
|
871 |
-
#, fuzzy
|
872 |
-
msgid "Slider Gallery"
|
873 |
-
msgstr "Limpar Galeria"
|
874 |
-
|
875 |
-
#: ../page-contact.php:12 ../template-contact.php:7
|
876 |
msgid "This field is required."
|
877 |
msgstr "Esse campo é obrigatório."
|
878 |
|
879 |
-
#: ../page-contact.php:
|
880 |
msgid "Please enter a valid email address."
|
881 |
msgstr "Por favor insira um email válido."
|
882 |
|
883 |
-
#: ../page-contact.php:
|
884 |
msgid "Check your math."
|
885 |
msgstr "Verifique sua conta."
|
886 |
|
887 |
-
#: ../page-contact.php:
|
888 |
msgid "Please enter your name."
|
889 |
msgstr "Por favor insira seu nome."
|
890 |
|
891 |
-
#: ../page-contact.php:
|
892 |
msgid "Please enter your email address."
|
893 |
msgstr "Por favor insira seu email."
|
894 |
|
895 |
-
#: ../page-contact.php:
|
896 |
msgid "You entered an invalid email address."
|
897 |
msgstr "Você inseriu um email inválido."
|
898 |
|
899 |
-
#: ../page-contact.php:
|
900 |
msgid "Please enter a message."
|
901 |
msgstr "Por favor insira uma mensagem."
|
902 |
|
903 |
-
#: ../page-contact.php:
|
904 |
-
#: ../template-contact.php:
|
905 |
#, fuzzy
|
906 |
msgid "Contact"
|
907 |
msgstr "Contato"
|
908 |
|
909 |
-
#: ../page-contact.php:
|
910 |
msgid "From"
|
911 |
msgstr "De"
|
912 |
|
913 |
-
#: ../page-contact.php:
|
914 |
msgid "Name"
|
915 |
msgstr "Nome"
|
916 |
|
917 |
-
#: ../page-contact.php:
|
918 |
#, fuzzy
|
919 |
msgid "Email"
|
920 |
msgstr "Email:"
|
921 |
|
922 |
-
#: ../page-contact.php:
|
923 |
#, fuzzy
|
924 |
msgid "Comments"
|
925 |
msgstr "Comentário"
|
926 |
|
927 |
-
#: ../page-contact.php:
|
928 |
msgid "Thanks, your email was sent successfully."
|
929 |
msgstr "Obrigado, o seu email foi enviado com sucesso."
|
930 |
|
931 |
-
#: ../page-contact.php:
|
932 |
msgid "Sorry, an error occured."
|
933 |
msgstr "Desculpe, ocorreu um erro."
|
934 |
|
935 |
-
#: ../page-contact.php:
|
936 |
msgid "Name:"
|
937 |
msgstr "Nome:"
|
938 |
|
939 |
-
#: ../page-contact.php:195
|
940 |
-
msgid "Email:
|
941 |
-
msgstr "Email:
|
942 |
|
943 |
-
#: ../page-contact.php:
|
944 |
-
|
|
|
945 |
msgstr "Mensagem:"
|
946 |
|
947 |
-
#: ../page-contact.php:
|
948 |
msgid "Send Email"
|
949 |
msgstr "Enviar email"
|
950 |
|
@@ -1322,14 +1338,11 @@ msgstr ""
|
|
1322 |
msgid "YouTube Link"
|
1323 |
msgstr "YouTube"
|
1324 |
|
1325 |
-
|
1326 |
-
|
1327 |
-
msgstr "Email:"
|
1328 |
|
1329 |
-
|
1330 |
-
|
1331 |
-
msgid "Message:"
|
1332 |
-
msgstr "Mensagem:"
|
1333 |
|
1334 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
1335 |
#~ msgstr ""
|
@@ -3574,9 +3587,6 @@ msgstr "Mensagem:"
|
|
3574 |
#~ msgid "Product Video Tab"
|
3575 |
#~ msgstr "Aba do Vídeo do Produto"
|
3576 |
|
3577 |
-
#~ msgid "Six Column"
|
3578 |
-
#~ msgstr "Seis Colunas"
|
3579 |
-
|
3580 |
#~ msgid "Filter?"
|
3581 |
#~ msgstr "Filtrar?"
|
3582 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
+
"POT-Creation-Date: 2015-11-19 15:46-0700\n"
|
5 |
+
"PO-Revision-Date: 2015-11-19 15:46-0700\n"
|
6 |
"Last-Translator: Victor Debone <victor@debone.com.br>\n"
|
7 |
"Language-Team: Victor Debone <victor@debone.com.br>\n"
|
8 |
"Language: pt_BR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.5\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr_e;esc_attr__\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
76 |
msgstr "Limpar"
|
77 |
|
78 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
79 |
+
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:381
|
80 |
+
#: ../metaboxes.php:392 ../metaboxes.php:427 ../metaboxes.php:438
|
81 |
+
#: ../metaboxes.php:503
|
82 |
msgid "Default"
|
83 |
msgstr "Padrão"
|
84 |
|
185 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
186 |
msgstr "Slider de Imagens (Flex Slider)"
|
187 |
|
188 |
+
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:258
|
189 |
+
#: ../metaboxes.php:753
|
190 |
msgid "None"
|
191 |
msgstr "Nenhum"
|
192 |
|
195 |
msgid "Post Slider Gallery"
|
196 |
msgstr "Virtue: Galeria"
|
197 |
|
198 |
+
#: ../metaboxes.php:148 ../metaboxes.php:992 ../metaboxes.php:1138
|
199 |
#, fuzzy
|
200 |
msgid "Add images for gallery here"
|
201 |
msgstr "Adicionar Imagens para a Galeria"
|
205 |
msgid "Max Slider Height"
|
206 |
msgstr "Altura Máxima do Slider/Imagem"
|
207 |
|
208 |
+
#: ../metaboxes.php:154 ../metaboxes.php:567
|
209 |
#, fuzzy
|
210 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
211 |
msgstr "O padrão é: 400 (Nota: coloque somente números, exemplo: 350)"
|
256 |
msgid "Video Post Default"
|
257 |
msgstr "Padrões de Posts"
|
258 |
|
259 |
+
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:550
|
260 |
+
#: ../metaboxes.php:752 ../metaboxes.php:986
|
261 |
msgid "Video"
|
262 |
msgstr "Vídeo"
|
263 |
|
291 |
msgid "Video - (when possible)"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../metaboxes.php:228 ../metaboxes.php:724
|
295 |
msgid "Portfolio Post Options"
|
296 |
msgstr "Opções do Post do Portfólio"
|
297 |
|
298 |
+
#: ../metaboxes.php:236 ../metaboxes.php:732
|
299 |
msgid "Project Layout"
|
300 |
msgstr "Layout do Projeto"
|
301 |
|
309 |
msgid "Beside 33%"
|
310 |
msgstr "Ao lado"
|
311 |
|
312 |
+
#: ../metaboxes.php:243 ../metaboxes.php:738
|
313 |
msgid "Above"
|
314 |
msgstr "Acima"
|
315 |
|
316 |
+
#: ../metaboxes.php:244 ../metaboxes.php:739
|
317 |
msgid "Three Rows"
|
318 |
msgstr "Três linhas"
|
319 |
|
320 |
+
#: ../metaboxes.php:248 ../metaboxes.php:743
|
321 |
msgid "Project Options"
|
322 |
msgstr "Opções do Projeto"
|
323 |
|
324 |
+
#: ../metaboxes.php:253 ../metaboxes.php:748 ../metaboxes.php:987
|
325 |
msgid "Image"
|
326 |
msgstr "Imagem"
|
327 |
|
328 |
+
#: ../metaboxes.php:254 ../metaboxes.php:548
|
329 |
msgid "Image Slider (Flex Slider)"
|
330 |
msgstr "Slider de Imagens (Flex Slider)"
|
331 |
|
332 |
+
#: ../metaboxes.php:255 ../metaboxes.php:549 ../metaboxes.php:750
|
333 |
msgid "Carousel Slider"
|
334 |
msgstr "Slider do Carrossel"
|
335 |
|
336 |
+
#: ../metaboxes.php:257 ../metaboxes.php:751
|
337 |
+
msgid "Image Grid"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: ../metaboxes.php:262 ../metaboxes.php:757
|
341 |
+
msgid "Columns (Only for Image Grid option)"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: ../metaboxes.php:267 ../metaboxes.php:450 ../metaboxes.php:762
|
345 |
+
#: ../metaboxes.php:892
|
346 |
+
msgid "Four Column"
|
347 |
+
msgstr "Quatro Colunas"
|
348 |
+
|
349 |
+
#: ../metaboxes.php:268 ../metaboxes.php:451 ../metaboxes.php:763
|
350 |
+
#: ../metaboxes.php:893
|
351 |
+
msgid "Three Column"
|
352 |
+
msgstr "Três colunas"
|
353 |
+
|
354 |
+
#: ../metaboxes.php:269 ../metaboxes.php:452 ../metaboxes.php:764
|
355 |
+
#: ../metaboxes.php:894
|
356 |
+
msgid "Two Column"
|
357 |
+
msgstr "Duas Colunas"
|
358 |
+
|
359 |
+
#: ../metaboxes.php:270 ../metaboxes.php:453 ../metaboxes.php:765
|
360 |
+
msgid "Five Column"
|
361 |
+
msgstr "Cinco Colunas"
|
362 |
+
|
363 |
+
#: ../metaboxes.php:271 ../metaboxes.php:766
|
364 |
+
msgid "Six Column"
|
365 |
+
msgstr "Seis Colunas"
|
366 |
+
|
367 |
+
#: ../metaboxes.php:275
|
368 |
#, fuzzy
|
369 |
msgid "Portfolio Slider/Images"
|
370 |
msgstr "Imagens do Slider do Portfólio"
|
371 |
|
372 |
+
#: ../metaboxes.php:276
|
373 |
#, fuzzy
|
374 |
msgid "Add images for post here"
|
375 |
msgstr "Adicionar Imagens para a Galeria"
|
376 |
|
377 |
+
#: ../metaboxes.php:281 ../metaboxes.php:566 ../metaboxes.php:770
|
378 |
+
#: ../metaboxes.php:997
|
379 |
msgid "Max Image/Slider Height"
|
380 |
msgstr "Altura Máxima do Slider/Imagem"
|
381 |
|
382 |
+
#: ../metaboxes.php:282
|
383 |
#, fuzzy
|
384 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
385 |
msgstr "O padrão é: 450 (Nota: coloque somente números, exemplo: 350)"
|
386 |
|
387 |
+
#: ../metaboxes.php:287 ../metaboxes.php:572 ../metaboxes.php:776
|
388 |
+
#: ../metaboxes.php:1003
|
389 |
msgid "Max Image/Slider Width"
|
390 |
msgstr "Largura Máxima do Slider/Imagem"
|
391 |
|
392 |
+
#: ../metaboxes.php:288
|
393 |
#, fuzzy
|
394 |
msgid ""
|
395 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
398 |
"O padrão é: 670 ou 1140 nos layouts acima ou de três linhas (Nota: insira "
|
399 |
"somente números, exemplo: 650)"
|
400 |
|
401 |
+
#: ../metaboxes.php:293 ../metaboxes.php:792
|
402 |
msgid "Value 01 Title"
|
403 |
msgstr "Título do Valor 01"
|
404 |
|
405 |
+
#: ../metaboxes.php:294 ../metaboxes.php:793
|
406 |
msgid "ex. Project Type:"
|
407 |
msgstr "ex: Tipo do Projeto:"
|
408 |
|
409 |
+
#: ../metaboxes.php:299 ../metaboxes.php:798
|
410 |
msgid "Value 01 Description"
|
411 |
msgstr "Descrição do Valor 01"
|
412 |
|
413 |
+
#: ../metaboxes.php:300 ../metaboxes.php:799
|
414 |
msgid "ex. Character Illustration"
|
415 |
msgstr "ex: Ilustração de Personagens"
|
416 |
|
417 |
+
#: ../metaboxes.php:305 ../metaboxes.php:804
|
418 |
msgid "Value 02 Title"
|
419 |
msgstr "Título do Valor 02"
|
420 |
|
421 |
+
#: ../metaboxes.php:306 ../metaboxes.php:805
|
422 |
msgid "ex. Skills Needed:"
|
423 |
msgstr "ex: Habilidades Necessárias:"
|
424 |
|
425 |
+
#: ../metaboxes.php:311 ../metaboxes.php:810
|
426 |
msgid "Value 02 Description"
|
427 |
msgstr "Descrição do Valor 02"
|
428 |
|
429 |
+
#: ../metaboxes.php:312 ../metaboxes.php:811
|
430 |
msgid "ex. Photoshop, Illustrator"
|
431 |
msgstr "ex: Photoshop, Illustrator"
|
432 |
|
433 |
+
#: ../metaboxes.php:317 ../metaboxes.php:816
|
434 |
msgid "Value 03 Title"
|
435 |
msgstr "Título do Valor 03"
|
436 |
|
437 |
+
#: ../metaboxes.php:318 ../metaboxes.php:817
|
438 |
msgid "ex. Customer:"
|
439 |
msgstr "ex: Cliente:"
|
440 |
|
441 |
+
#: ../metaboxes.php:323 ../metaboxes.php:822
|
442 |
msgid "Value 03 Description"
|
443 |
msgstr "Descrição do Valor 03"
|
444 |
|
445 |
+
#: ../metaboxes.php:324 ../metaboxes.php:823
|
446 |
msgid "ex. Example Inc"
|
447 |
msgstr "ex: Exemplo Inc"
|
448 |
|
449 |
+
#: ../metaboxes.php:329 ../metaboxes.php:828
|
450 |
msgid "Value 04 Title"
|
451 |
msgstr "Título do Valor 04"
|
452 |
|
453 |
+
#: ../metaboxes.php:330 ../metaboxes.php:829
|
454 |
msgid "ex. Project Year:"
|
455 |
msgstr "ex: Ano do Projeto:"
|
456 |
|
457 |
+
#: ../metaboxes.php:335 ../metaboxes.php:834
|
458 |
msgid "Value 04 Description"
|
459 |
msgstr "Descrição do Valor 04"
|
460 |
|
461 |
+
#: ../metaboxes.php:336 ../metaboxes.php:835
|
462 |
msgid "ex. 2013"
|
463 |
msgstr "ex: 2013"
|
464 |
|
465 |
+
#: ../metaboxes.php:341 ../metaboxes.php:840
|
466 |
msgid "External Website"
|
467 |
msgstr "Site Externo"
|
468 |
|
469 |
+
#: ../metaboxes.php:342 ../metaboxes.php:841
|
470 |
msgid "ex. Website:"
|
471 |
msgstr "ex: Site:"
|
472 |
|
473 |
+
#: ../metaboxes.php:347 ../metaboxes.php:846
|
474 |
msgid "Website Address"
|
475 |
msgstr "Endereço do Website"
|
476 |
|
477 |
+
#: ../metaboxes.php:348 ../metaboxes.php:847
|
478 |
msgid "ex. http://www.example.com"
|
479 |
msgstr "ex: http://www.example.com.br"
|
480 |
|
481 |
+
#: ../metaboxes.php:353 ../metaboxes.php:852
|
482 |
msgid "If Video Project"
|
483 |
msgstr "Caso Projeto de vídeo"
|
484 |
|
485 |
+
#: ../metaboxes.php:354 ../metaboxes.php:579 ../metaboxes.php:716
|
486 |
+
#: ../metaboxes.php:853 ../metaboxes.php:1020
|
487 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
488 |
msgstr "Cole o código do vídeo aqui, funciona com You Tube, Vimeo..."
|
489 |
|
490 |
+
#: ../metaboxes.php:363
|
491 |
msgid "Bottom Carousel Options"
|
492 |
msgstr "Opções do Carrossel Inferior"
|
493 |
|
494 |
+
#: ../metaboxes.php:370 ../metaboxes.php:868
|
495 |
msgid "Carousel Title"
|
496 |
msgstr "Título do Carrossel"
|
497 |
|
498 |
+
#: ../metaboxes.php:371 ../metaboxes.php:869
|
499 |
msgid "ex. Similar Projects"
|
500 |
msgstr "ex: Projetos similares"
|
501 |
|
502 |
+
#: ../metaboxes.php:376
|
503 |
msgid "Bottom Portfolio Carousel"
|
504 |
msgstr "Carrossel do Portfólio Inferior"
|
505 |
|
506 |
+
#: ../metaboxes.php:377
|
507 |
#, fuzzy
|
508 |
msgid "Display a carousel with portfolio items below project?"
|
509 |
msgstr "Mostrar um carrossel com os itens do portfólio embaixo do projeto?"
|
510 |
|
511 |
+
#: ../metaboxes.php:382 ../metaboxes.php:602 ../metaboxes.php:624
|
512 |
+
#: ../metaboxes.php:633 ../metaboxes.php:788 ../metaboxes.php:863
|
513 |
+
#: ../metaboxes.php:963 ../metaboxes.php:1015 ../metaboxes.php:1043
|
514 |
+
#: ../metaboxes.php:1059 ../metaboxes.php:1068
|
515 |
msgid "No"
|
516 |
msgstr "Não"
|
517 |
|
518 |
+
#: ../metaboxes.php:383 ../metaboxes.php:601 ../metaboxes.php:623
|
519 |
+
#: ../metaboxes.php:634 ../metaboxes.php:787 ../metaboxes.php:964
|
520 |
+
#: ../metaboxes.php:1014 ../metaboxes.php:1042 ../metaboxes.php:1058
|
521 |
+
#: ../metaboxes.php:1069
|
522 |
msgid "Yes"
|
523 |
msgstr "sim"
|
524 |
|
525 |
+
#: ../metaboxes.php:387
|
526 |
msgid "Carousel Items"
|
527 |
msgstr "Itens do Carrossel"
|
528 |
|
529 |
+
#: ../metaboxes.php:393
|
530 |
msgid "All Portfolio Posts"
|
531 |
msgstr "Todos Posts do Portfólio"
|
532 |
|
533 |
+
#: ../metaboxes.php:394
|
534 |
msgid "Only of same Portfolio Type"
|
535 |
msgstr "Somente do mesmo tipo de Portfólio"
|
536 |
|
537 |
+
#: ../metaboxes.php:398
|
538 |
msgid "Carousel Order"
|
539 |
msgstr "Ordem do Carrossel"
|
540 |
|
541 |
+
#: ../metaboxes.php:403 ../metaboxes.php:468 ../metaboxes.php:910
|
542 |
msgid "Menu Order"
|
543 |
msgstr "Ordem do Menu"
|
544 |
|
545 |
+
#: ../metaboxes.php:404 ../metaboxes.php:469 ../metaboxes.php:911
|
546 |
msgid "Title"
|
547 |
msgstr "Título"
|
548 |
|
549 |
+
#: ../metaboxes.php:405 ../metaboxes.php:470 ../metaboxes.php:912
|
550 |
msgid "Date"
|
551 |
msgstr "Data"
|
552 |
|
553 |
+
#: ../metaboxes.php:406 ../metaboxes.php:471 ../metaboxes.php:913
|
554 |
msgid "Random"
|
555 |
msgstr "Aleatório"
|
556 |
|
557 |
+
#: ../metaboxes.php:414 ../metaboxes.php:878
|
558 |
msgid "Portfolio Page Options"
|
559 |
msgstr "Opções da Página do Portfólio"
|
560 |
|
561 |
+
#: ../metaboxes.php:422 ../shortcodes/pullquote/quote_popup.php:59
|
562 |
msgid "Style"
|
563 |
msgstr "Estilo"
|
564 |
|
565 |
+
#: ../metaboxes.php:428
|
566 |
#, fuzzy
|
567 |
msgid "Post Boxes"
|
568 |
msgstr "Vídeo do Produto"
|
569 |
|
570 |
+
#: ../metaboxes.php:429
|
571 |
msgid "Flat with Margin"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: ../metaboxes.php:433
|
575 |
#, fuzzy
|
576 |
msgid "Hover Style"
|
577 |
msgstr "Estilo do Cabeçalho"
|
578 |
|
579 |
+
#: ../metaboxes.php:439
|
580 |
#, fuzzy
|
581 |
msgid "Light"
|
582 |
msgstr "Direita"
|
583 |
|
584 |
+
#: ../metaboxes.php:440
|
585 |
msgid "Dark"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../metaboxes.php:441 ../shortcodes/btns/btns_popup.php:134
|
589 |
msgid "Primary Color"
|
590 |
msgstr "Cor Primária"
|
591 |
|
592 |
+
#: ../metaboxes.php:445 ../metaboxes.php:887
|
593 |
msgid "Columns"
|
594 |
msgstr "Colunas"
|
595 |
|
596 |
+
#: ../metaboxes.php:457 ../metaboxes.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
597 |
msgid "Portfolio Work Types"
|
598 |
msgstr "Tipos de Trabalho do Portfólio"
|
599 |
|
600 |
+
#: ../metaboxes.php:463 ../metaboxes.php:905
|
601 |
msgid "Order Items By"
|
602 |
msgstr "Ordenar itens por"
|
603 |
|
604 |
+
#: ../metaboxes.php:475 ../metaboxes.php:917
|
605 |
msgid "Items per Page"
|
606 |
msgstr "Itens por Página"
|
607 |
|
608 |
+
#: ../metaboxes.php:476 ../metaboxes.php:918
|
609 |
msgid "How many portfolio items per page"
|
610 |
msgstr "Quantos itens do portfólio por página"
|
611 |
|
612 |
+
#: ../metaboxes.php:480 ../metaboxes.php:922
|
613 |
msgid "All"
|
614 |
msgstr "Todos"
|
615 |
|
616 |
+
#: ../metaboxes.php:498
|
617 |
#, fuzzy
|
618 |
msgid "Image Ratio?"
|
619 |
msgstr "URL da Imagem"
|
620 |
|
621 |
+
#: ../metaboxes.php:504
|
622 |
msgid "Square 1:1"
|
623 |
msgstr "Quadrado 1:1"
|
624 |
|
625 |
+
#: ../metaboxes.php:505
|
626 |
msgid "Portrait 3:4"
|
627 |
msgstr "Retrato 3:4"
|
628 |
|
629 |
+
#: ../metaboxes.php:506
|
630 |
msgid "Landscape 4:3"
|
631 |
msgstr "Paisagem 4:3"
|
632 |
|
633 |
+
#: ../metaboxes.php:507
|
634 |
msgid "Wide Landscape 4:2"
|
635 |
msgstr "Paisagem 4:2 Larga"
|
636 |
|
637 |
+
#: ../metaboxes.php:511 ../metaboxes.php:946
|
638 |
msgid "Display Item Work Types"
|
639 |
msgstr "Mostrar tipos de trabalho do item"
|
640 |
|
641 |
+
#: ../metaboxes.php:517 ../metaboxes.php:952
|
642 |
msgid "Display Item Excerpt"
|
643 |
msgstr "Mostrar resumo do item"
|
644 |
|
645 |
+
#: ../metaboxes.php:523
|
646 |
#, fuzzy
|
647 |
msgid "Add Lightbox link in each item"
|
648 |
msgstr "Adicionar link do Lightbox no topo direito de cada item"
|
649 |
|
650 |
+
#: ../metaboxes.php:532 ../metaboxes.php:971
|
651 |
msgid "Feature Page Options"
|
652 |
msgstr "Opções da Página de Destaque"
|
653 |
|
654 |
+
#: ../metaboxes.php:541
|
655 |
#, fuzzy
|
656 |
msgid "Header Options"
|
657 |
msgstr "Opções da Fonte do Cabeçalho"
|
658 |
|
659 |
+
#: ../metaboxes.php:542
|
660 |
#, fuzzy
|
661 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
662 |
msgstr ""
|
663 |
"Se o slider é imagem tenha certeza que elas tenham pelo menos 1170px de "
|
664 |
"largura."
|
665 |
|
666 |
+
#: ../metaboxes.php:547
|
667 |
msgid "Page Title"
|
668 |
msgstr "Título da Página"
|
669 |
|
670 |
+
#: ../metaboxes.php:554 ../metaboxes.php:1130
|
671 |
msgid "Slider Images"
|
672 |
msgstr "Imagens do Slider"
|
673 |
|
674 |
+
#: ../metaboxes.php:555
|
675 |
#, fuzzy
|
676 |
msgid "Add for flex, carousel, and image carousel."
|
677 |
msgstr "Adiciona um Carrossel em qualquer espaço de widgets"
|
678 |
|
679 |
+
#: ../metaboxes.php:560
|
680 |
msgid "If Cyclone Slider"
|
681 |
msgstr "Caso Cyclone Slider"
|
682 |
|
683 |
+
#: ../metaboxes.php:561
|
684 |
#, fuzzy
|
685 |
msgid ""
|
686 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
687 |
msgstr ""
|
688 |
"Cole o shortcode do slider aqui (exemplo: [cycloneslider id=\"slide1\"])"
|
689 |
|
690 |
+
#: ../metaboxes.php:573
|
691 |
#, fuzzy
|
692 |
msgid ""
|
693 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
696 |
"O padrão é: 770 ou 1140 nos posts largos (Nota: insira somente números, "
|
697 |
"exemplo: 650, não aplica ao slider Carrossel)"
|
698 |
|
699 |
+
#: ../metaboxes.php:578 ../metaboxes.php:715 ../metaboxes.php:1019
|
700 |
msgid "If Video Post"
|
701 |
msgstr "Caso post de vídeo"
|
702 |
|
703 |
+
#: ../metaboxes.php:587 ../metaboxes.php:1028
|
704 |
msgid "Contact Page Options"
|
705 |
msgstr "Opções da página de Contato"
|
706 |
|
707 |
+
#: ../metaboxes.php:596 ../metaboxes.php:1037
|
708 |
msgid "Use Contact Form"
|
709 |
msgstr "Usar Formulário de Contato"
|
710 |
|
711 |
+
#: ../metaboxes.php:606 ../metaboxes.php:1047
|
712 |
msgid "Contact Form Title"
|
713 |
msgstr "Título do form de Contato"
|
714 |
|
715 |
+
#: ../metaboxes.php:607 ../metaboxes.php:1048
|
716 |
msgid "ex. Send us an Email"
|
717 |
msgstr "ex: Envie-nos um email"
|
718 |
|
719 |
+
#: ../metaboxes.php:612
|
720 |
#, fuzzy
|
721 |
msgid "Contact Form Email Recipient"
|
722 |
msgstr "Email do form de Contato"
|
723 |
|
724 |
+
#: ../metaboxes.php:613
|
725 |
msgid "ex. joe@gmail.com"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../metaboxes.php:618 ../metaboxes.php:1053
|
729 |
msgid "Use Simple Math Question"
|
730 |
msgstr "Usar questão simples de matemática"
|
731 |
|
732 |
+
#: ../metaboxes.php:628 ../metaboxes.php:1063
|
733 |
msgid "Use Map"
|
734 |
msgstr "Usar Mapa"
|
735 |
|
736 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
737 |
msgid "Address"
|
738 |
msgstr "Endereço"
|
739 |
|
740 |
+
#: ../metaboxes.php:639 ../metaboxes.php:1074
|
741 |
msgid "Enter your Location"
|
742 |
msgstr "Insira seu local"
|
743 |
|
744 |
+
#: ../metaboxes.php:644 ../metaboxes.php:1079
|
745 |
msgid "Map Type"
|
746 |
msgstr "Tipo do Mapa"
|
747 |
|
748 |
+
#: ../metaboxes.php:649 ../metaboxes.php:1084
|
749 |
msgid "ROADMAP"
|
750 |
msgstr "MAPA COM RUAS"
|
751 |
|
752 |
+
#: ../metaboxes.php:650 ../metaboxes.php:1085
|
753 |
msgid "HYBRID"
|
754 |
msgstr "HÍBRIDO"
|
755 |
|
756 |
+
#: ../metaboxes.php:651 ../metaboxes.php:1086
|
757 |
msgid "TERRAIN"
|
758 |
msgstr "TERRENO"
|
759 |
|
760 |
+
#: ../metaboxes.php:652 ../metaboxes.php:1087
|
761 |
msgid "SATELLITE"
|
762 |
msgstr "SATÉLITE"
|
763 |
|
764 |
+
#: ../metaboxes.php:656 ../metaboxes.php:1091
|
765 |
msgid "Map Zoom Level"
|
766 |
msgstr "Nível de Zoom do Mapa"
|
767 |
|
768 |
+
#: ../metaboxes.php:657 ../metaboxes.php:1092
|
769 |
msgid "A good place to start is 15"
|
770 |
msgstr "Um bom lugar para começar é 15"
|
771 |
|
772 |
+
#: ../metaboxes.php:662 ../metaboxes.php:1097
|
773 |
msgid "1 (World View)"
|
774 |
msgstr "1 (Visualização Global)"
|
775 |
|
776 |
+
#: ../metaboxes.php:682 ../metaboxes.php:1117
|
777 |
msgid "21 (Street View)"
|
778 |
msgstr "21 (Visualização de Rua)"
|
779 |
|
780 |
+
#: ../metaboxes.php:686 ../metaboxes.php:1121
|
781 |
msgid "Map Height"
|
782 |
msgstr "Altura do Mapa"
|
783 |
|
784 |
+
#: ../metaboxes.php:687 ../metaboxes.php:1122
|
785 |
msgid "Default is 300"
|
786 |
msgstr "O padrão é 300"
|
787 |
|
788 |
+
#: ../metaboxes.php:707
|
789 |
#, fuzzy
|
790 |
msgid "Post Video Box"
|
791 |
msgstr "Vídeo do Produto"
|
792 |
|
793 |
+
#: ../metaboxes.php:737
|
794 |
msgid "Beside"
|
795 |
msgstr "Ao lado"
|
796 |
|
797 |
+
#: ../metaboxes.php:749 ../metaboxes.php:985
|
798 |
msgid "Image Slider"
|
799 |
msgstr "Slider de Imagens"
|
800 |
|
801 |
+
#: ../metaboxes.php:771
|
802 |
#, fuzzy
|
803 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
804 |
msgstr "O padrão é: 450 (Nota: coloque somente números, exemplo: 350)"
|
805 |
|
806 |
+
#: ../metaboxes.php:777
|
807 |
#, fuzzy
|
808 |
msgid ""
|
809 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
812 |
"O padrão é: 670 ou 1140 nos layouts acima ou de três linhas (Nota: insira "
|
813 |
"somente números, exemplo: 650)"
|
814 |
|
815 |
+
#: ../metaboxes.php:782
|
816 |
msgid "Auto Play Slider?"
|
817 |
msgstr "Play automático do Slider?"
|
818 |
|
819 |
+
#: ../metaboxes.php:858
|
820 |
#, fuzzy
|
821 |
msgid "Similar Portfolio Item Carousel"
|
822 |
msgstr "Carrossel do Portfólio"
|
823 |
|
824 |
+
#: ../metaboxes.php:859
|
825 |
#, fuzzy
|
826 |
msgid "Display a carousel with similar portfolio items below project?"
|
827 |
msgstr "Mostrar um carrossel com os itens do portfólio embaixo do projeto?"
|
828 |
|
829 |
+
#: ../metaboxes.php:864
|
830 |
#, fuzzy
|
831 |
msgid "Yes - Display Recent Projects"
|
832 |
msgstr "Sim - Mostrar posts mais recentes"
|
833 |
|
834 |
+
#: ../metaboxes.php:940
|
835 |
#, fuzzy
|
836 |
msgid "Set image height"
|
837 |
msgstr "Definir altura da imagem caso recortar"
|
838 |
|
839 |
+
#: ../metaboxes.php:941
|
840 |
#, fuzzy
|
841 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
842 |
msgstr ""
|
843 |
"O padrão de proporção é 1:1 (Nota: coloque somente números, exemplo: 320)"
|
844 |
|
845 |
+
#: ../metaboxes.php:958
|
846 |
msgid "Add Lightbox link in the top right of each item"
|
847 |
msgstr "Adicionar link do Lightbox no topo direito de cada item"
|
848 |
|
849 |
+
#: ../metaboxes.php:980
|
850 |
msgid "Feature Options"
|
851 |
msgstr "Opções do Destaque"
|
852 |
|
853 |
+
#: ../metaboxes.php:981
|
854 |
#, fuzzy
|
855 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
856 |
msgstr ""
|
857 |
"Se o slider é imagem tenha certeza que elas tenham pelo menos 1170px de "
|
858 |
"largura."
|
859 |
|
860 |
+
#: ../metaboxes.php:991 ../metaboxes.php:1137
|
861 |
+
#, fuzzy
|
862 |
+
msgid "Slider Gallery"
|
863 |
+
msgstr "Limpar Galeria"
|
864 |
+
|
865 |
+
#: ../metaboxes.php:998
|
866 |
#, fuzzy
|
867 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
868 |
msgstr "O padrão é: 400 (Nota: coloque somente números, exemplo: 350)"
|
869 |
|
870 |
+
#: ../metaboxes.php:1004
|
871 |
#, fuzzy
|
872 |
msgid ""
|
873 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
876 |
"O padrão é: 1140 nos posts largos (Nota: coloque somente números, por "
|
877 |
"exemplo: 650, não se aplica pro slider Carrossel)"
|
878 |
|
879 |
+
#: ../metaboxes.php:1009
|
880 |
msgid "Use Lightbox for Feature Image"
|
881 |
msgstr "Usar Lightbox para Imagens Destacadas"
|
882 |
|
883 |
+
#: ../metaboxes.php:1010
|
884 |
msgid ""
|
885 |
"If feature option is set to image, choose to use lightbox link with image."
|
886 |
msgstr ""
|
887 |
"Caso a opção de destaque esteja como imagem, escolha usar ou não um lightbox "
|
888 |
"para ela."
|
889 |
|
890 |
+
#: ../page-contact.php:13 ../template-contact.php:13
|
|
|
|
|
|
|
|
|
|
|
891 |
msgid "This field is required."
|
892 |
msgstr "Esse campo é obrigatório."
|
893 |
|
894 |
+
#: ../page-contact.php:14 ../template-contact.php:14
|
895 |
msgid "Please enter a valid email address."
|
896 |
msgstr "Por favor insira um email válido."
|
897 |
|
898 |
+
#: ../page-contact.php:97 ../template-contact.php:98
|
899 |
msgid "Check your math."
|
900 |
msgstr "Verifique sua conta."
|
901 |
|
902 |
+
#: ../page-contact.php:102 ../template-contact.php:103
|
903 |
msgid "Please enter your name."
|
904 |
msgstr "Por favor insira seu nome."
|
905 |
|
906 |
+
#: ../page-contact.php:109 ../template-contact.php:110
|
907 |
msgid "Please enter your email address."
|
908 |
msgstr "Por favor insira seu email."
|
909 |
|
910 |
+
#: ../page-contact.php:112 ../template-contact.php:113
|
911 |
msgid "You entered an invalid email address."
|
912 |
msgstr "Você inseriu um email inválido."
|
913 |
|
914 |
+
#: ../page-contact.php:119 ../template-contact.php:120
|
915 |
msgid "Please enter a message."
|
916 |
msgstr "Por favor insira uma mensagem."
|
917 |
|
918 |
+
#: ../page-contact.php:136 ../pagetemplater.php:28 ../pagetemplater.php:116
|
919 |
+
#: ../template-contact.php:137
|
920 |
#, fuzzy
|
921 |
msgid "Contact"
|
922 |
msgstr "Contato"
|
923 |
|
924 |
+
#: ../page-contact.php:136 ../template-contact.php:137
|
925 |
msgid "From"
|
926 |
msgstr "De"
|
927 |
|
928 |
+
#: ../page-contact.php:137 ../template-contact.php:138
|
929 |
msgid "Name"
|
930 |
msgstr "Nome"
|
931 |
|
932 |
+
#: ../page-contact.php:138 ../template-contact.php:139
|
933 |
#, fuzzy
|
934 |
msgid "Email"
|
935 |
msgstr "Email:"
|
936 |
|
937 |
+
#: ../page-contact.php:139 ../template-contact.php:140
|
938 |
#, fuzzy
|
939 |
msgid "Comments"
|
940 |
msgstr "Comentário"
|
941 |
|
942 |
+
#: ../page-contact.php:177 ../template-contact.php:175
|
943 |
msgid "Thanks, your email was sent successfully."
|
944 |
msgstr "Obrigado, o seu email foi enviado com sucesso."
|
945 |
|
946 |
+
#: ../page-contact.php:182 ../template-contact.php:179
|
947 |
msgid "Sorry, an error occured."
|
948 |
msgstr "Desculpe, ocorreu um erro."
|
949 |
|
950 |
+
#: ../page-contact.php:188 ../template-contact.php:185
|
951 |
msgid "Name:"
|
952 |
msgstr "Nome:"
|
953 |
|
954 |
+
#: ../page-contact.php:196 ../template-contact.php:195
|
955 |
+
msgid "Email:"
|
956 |
+
msgstr "Email:"
|
957 |
|
958 |
+
#: ../page-contact.php:204 ../template-contact.php:202
|
959 |
+
#, fuzzy
|
960 |
+
msgid "Message:"
|
961 |
msgstr "Mensagem:"
|
962 |
|
963 |
+
#: ../page-contact.php:224 ../template-contact.php:220
|
964 |
msgid "Send Email"
|
965 |
msgstr "Enviar email"
|
966 |
|
1338 |
msgid "YouTube Link"
|
1339 |
msgstr "YouTube"
|
1340 |
|
1341 |
+
#~ msgid "Email: "
|
1342 |
+
#~ msgstr "Email: "
|
|
|
1343 |
|
1344 |
+
#~ msgid "Message: "
|
1345 |
+
#~ msgstr "Mensagem:"
|
|
|
|
|
1346 |
|
1347 |
#~ msgid "Sorry, but the page you were trying to view does not exist."
|
1348 |
#~ msgstr ""
|
3587 |
#~ msgid "Product Video Tab"
|
3588 |
#~ msgstr "Aba do Vídeo do Produto"
|
3589 |
|
|
|
|
|
|
|
3590 |
#~ msgid "Filter?"
|
3591 |
#~ msgstr "Filtrar?"
|
3592 |
|
languages/virtue-toolkit-ru_RU.mo
ADDED
Binary file
|
languages/{kadencetoolkit-ru_RU.po → virtue-toolkit-ru_RU.po}
RENAMED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: ru\n"
|
@@ -12,253 +12,255 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
15 |
-
"X-Generator: Poedit 1.
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
19 |
-
"X-Poedit-Basepath:
|
20 |
"X-Textdomain-Support: no\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
# @ virtue
|
24 |
-
#: cmb/helpers/cmb_Meta_Box_ajax.php:47
|
25 |
msgid "Please Try Again"
|
26 |
msgstr "Пожалуйста, повторите попытку"
|
27 |
|
28 |
# @ virtue
|
29 |
-
#: cmb/helpers/cmb_Meta_Box_ajax.php:131
|
30 |
msgid "Remove Embed"
|
31 |
msgstr "Удалить Embed(?)"
|
32 |
|
33 |
# @ virtue
|
34 |
-
#: cmb/helpers/cmb_Meta_Box_ajax.php:134
|
35 |
#, php-format
|
36 |
msgid "No oEmbed Results Found for %s. View more info at"
|
37 |
msgstr "Результаты oEmbed не найдены %s. Посмотреть больше информации на"
|
38 |
|
39 |
-
#: cmb/helpers/cmb_Meta_Box_field.php:459
|
40 |
msgid "Add Group"
|
41 |
msgstr ""
|
42 |
|
43 |
# @ virtue
|
44 |
-
#: cmb/helpers/cmb_Meta_Box_field.php:460
|
45 |
#, fuzzy
|
46 |
msgid "Remove Group"
|
47 |
msgstr "Удалить"
|
48 |
|
49 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:250
|
50 |
msgid "Add Row"
|
51 |
msgstr ""
|
52 |
|
53 |
# @ virtue
|
54 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:306
|
55 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:706
|
56 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:768
|
57 |
msgid "Remove"
|
58 |
msgstr "Удалить"
|
59 |
|
60 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:601
|
61 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:635
|
62 |
msgid "No terms"
|
63 |
msgstr ""
|
64 |
|
65 |
# @ virtue
|
66 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:674
|
67 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:728
|
68 |
msgid "Add or Upload File"
|
69 |
msgstr "Добавить или загрузить файл"
|
70 |
|
71 |
# @ virtue
|
72 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:695
|
73 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:760
|
74 |
#, fuzzy
|
75 |
msgid "Remove Image"
|
76 |
msgstr "Удалить изображение"
|
77 |
|
78 |
# @ virtue
|
79 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:706
|
80 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:768
|
81 |
msgid "File:"
|
82 |
msgstr "Файл:"
|
83 |
|
84 |
# @ virtue
|
85 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:706
|
86 |
-
#: cmb/helpers/cmb_Meta_Box_types.php:768
|
87 |
msgid "Download"
|
88 |
msgstr "Скачать"
|
89 |
|
90 |
# @ virtue
|
91 |
-
#: cmb/init.php:258 shortcodes/divider/divider_popup.php:76
|
92 |
msgid "Clear"
|
93 |
msgstr "Очистить"
|
94 |
|
95 |
# @ virtue
|
96 |
-
#: cmb/init.php:259 metaboxes.php:62 metaboxes.php:73
|
97 |
-
#: metaboxes.php:
|
98 |
-
#: metaboxes.php:
|
|
|
99 |
msgid "Default"
|
100 |
msgstr "По умолчанию"
|
101 |
|
102 |
-
#: cmb/init.php:260
|
103 |
msgid "Select Color"
|
104 |
msgstr ""
|
105 |
|
106 |
# @ virtue
|
107 |
-
#: cmb/init.php:261
|
108 |
#, fuzzy
|
109 |
msgid "Current Color"
|
110 |
msgstr "Основной цвет"
|
111 |
|
112 |
# @ virtue
|
113 |
-
#: cmb/init.php:288
|
114 |
#, fuzzy
|
115 |
msgid "Select / Deselect All"
|
116 |
msgstr "Выберите штат…"
|
117 |
|
118 |
# @ virtue
|
119 |
-
#: cmb/init.php:1178
|
120 |
msgid "Save"
|
121 |
msgstr "Сохранить"
|
122 |
|
123 |
# @ virtue
|
124 |
-
#: metaboxes.php:17
|
125 |
#, fuzzy
|
126 |
msgid "Add/Edit Gallery"
|
127 |
msgstr "Добавить в галерею"
|
128 |
|
129 |
# @ virtue
|
130 |
-
#: metaboxes.php:18
|
131 |
#, fuzzy
|
132 |
msgid "Clear Gallery"
|
133 |
msgstr "Галерея постов"
|
134 |
|
135 |
# @ virtue
|
136 |
-
#: metaboxes.php:44
|
137 |
msgid "Page Title and Subtitle"
|
138 |
msgstr "Заголовок и подзаголовок страницы"
|
139 |
|
140 |
# @ virtue
|
141 |
-
#: metaboxes.php:51 metaboxes.php:95
|
142 |
msgid "Subtitle"
|
143 |
msgstr "Подзаголовок"
|
144 |
|
145 |
# @ virtue
|
146 |
-
#: metaboxes.php:52
|
147 |
msgid "Subtitle will go below page title"
|
148 |
msgstr "Подзаголовок, размещаемый под заголовком страницы"
|
149 |
|
150 |
# @ virtue
|
151 |
-
#: metaboxes.php:57 metaboxes.php:101
|
152 |
#, fuzzy
|
153 |
msgid "Hide Page Title"
|
154 |
msgstr "Заголовок страницы"
|
155 |
|
156 |
-
#: metaboxes.php:63 metaboxes.php:107
|
157 |
msgid "Show"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: metaboxes.php:64 metaboxes.php:108
|
161 |
msgid "Hide"
|
162 |
msgstr ""
|
163 |
|
164 |
# @ virtue
|
165 |
-
#: metaboxes.php:68 metaboxes.php:112
|
166 |
#, fuzzy
|
167 |
msgid "Page Title background behind Header"
|
168 |
msgstr "Заголовок и подзаголовок страницы"
|
169 |
|
170 |
-
#: metaboxes.php:74 metaboxes.php:118
|
171 |
msgid "Place behind Header"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: metaboxes.php:75 metaboxes.php:119
|
175 |
msgid "Don't place behind Header"
|
176 |
msgstr ""
|
177 |
|
178 |
# @ virtue
|
179 |
-
#: metaboxes.php:82
|
180 |
#, fuzzy
|
181 |
msgid "Post Title and Subtitle"
|
182 |
msgstr "Заголовок и подзаголовок страницы"
|
183 |
|
184 |
# @ virtue
|
185 |
-
#: metaboxes.php:89 metaboxes.php:90
|
186 |
#, fuzzy
|
187 |
msgid "Post Header Title"
|
188 |
msgstr "Заголовок страницы"
|
189 |
|
190 |
# @ virtue
|
191 |
-
#: metaboxes.php:96
|
192 |
#, fuzzy
|
193 |
msgid "Subtitle will go below post title"
|
194 |
msgstr "Подзаголовок, размещаемый под заголовком страницы"
|
195 |
|
196 |
# @ virtue
|
197 |
-
#: metaboxes.php:126
|
198 |
#, fuzzy
|
199 |
msgid "Gallery Post Options"
|
200 |
msgstr "Опции поста"
|
201 |
|
202 |
# @ virtue
|
203 |
-
#: metaboxes.php:135 metaboxes.php:190
|
204 |
#, fuzzy
|
205 |
msgid "Post Head Content"
|
206 |
msgstr "Содержимое заголовка страницы"
|
207 |
|
208 |
# @ virtue
|
209 |
-
#: metaboxes.php:140 metaboxes.php:170
|
210 |
#, fuzzy
|
211 |
msgid "Gallery Post Default"
|
212 |
msgstr "Настройки краткого содержания записи блога по умолчанию"
|
213 |
|
214 |
# @ virtue
|
215 |
-
#: metaboxes.php:141
|
216 |
#, fuzzy
|
217 |
msgid "Image Slider - (Flex Slider)"
|
218 |
msgstr "Слайдер изображений"
|
219 |
|
220 |
-
#: metaboxes.php:142
|
221 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
222 |
msgstr ""
|
223 |
|
224 |
# @ virtue
|
225 |
-
#: metaboxes.php:143 metaboxes.php:197 metaboxes.php:
|
|
|
226 |
msgid "None"
|
227 |
msgstr "Никакие"
|
228 |
|
229 |
# @ virtue
|
230 |
-
#: metaboxes.php:147
|
231 |
#, fuzzy
|
232 |
msgid "Post Slider Gallery"
|
233 |
msgstr "Галерея постов"
|
234 |
|
235 |
# @ virtue
|
236 |
-
#: metaboxes.php:148 metaboxes.php:
|
237 |
#, fuzzy
|
238 |
msgid "Add images for gallery here"
|
239 |
msgstr "Добавить изображения в галерею"
|
240 |
|
241 |
# @ virtue
|
242 |
-
#: metaboxes.php:153
|
243 |
#, fuzzy
|
244 |
msgid "Max Slider Height"
|
245 |
msgstr "Максимальная высота Изображения/Слайдера"
|
246 |
|
247 |
# @ virtue
|
248 |
-
#: metaboxes.php:154 metaboxes.php:
|
249 |
#, fuzzy
|
250 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
251 |
msgstr ""
|
252 |
"По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
|
253 |
|
254 |
# @ virtue
|
255 |
-
#: metaboxes.php:159
|
256 |
#, fuzzy
|
257 |
msgid "Max Slider Width"
|
258 |
msgstr "Максимальная ширина Изображения/Слайдера"
|
259 |
|
260 |
# @ virtue
|
261 |
-
#: metaboxes.php:160
|
262 |
#, fuzzy
|
263 |
msgid ""
|
264 |
"Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
|
@@ -268,58 +270,58 @@ msgstr ""
|
|
268 |
"например: 350)</b>"
|
269 |
|
270 |
# @ virtue
|
271 |
-
#: metaboxes.php:165 metaboxes.php:213
|
272 |
msgid "Post Summary"
|
273 |
msgstr "Разместить краткое содержание"
|
274 |
|
275 |
# @ virtue
|
276 |
-
#: metaboxes.php:171 metaboxes.php:220
|
277 |
#, fuzzy
|
278 |
msgid "Portrait Image (feature image)"
|
279 |
msgstr "Слайдер портретных изображений"
|
280 |
|
281 |
# @ virtue
|
282 |
-
#: metaboxes.php:172 metaboxes.php:221
|
283 |
#, fuzzy
|
284 |
msgid "Landscape Image (feature image)"
|
285 |
msgstr "Слайдер пейзажных изображений"
|
286 |
|
287 |
# @ virtue
|
288 |
-
#: metaboxes.php:173
|
289 |
msgid "Portrait Image Slider"
|
290 |
msgstr "Слайдер портретных изображений"
|
291 |
|
292 |
# @ virtue
|
293 |
-
#: metaboxes.php:174
|
294 |
msgid "Landscape Image Slider"
|
295 |
msgstr "Слайдер пейзажных изображений"
|
296 |
|
297 |
# @ virtue
|
298 |
-
#: metaboxes.php:181
|
299 |
#, fuzzy
|
300 |
msgid "Video Post Options"
|
301 |
msgstr "Опции поста"
|
302 |
|
303 |
# @ virtue
|
304 |
-
#: metaboxes.php:195 metaboxes.php:218
|
305 |
#, fuzzy
|
306 |
msgid "Video Post Default"
|
307 |
msgstr "Настройки краткого содержания записи блога по умолчанию"
|
308 |
|
309 |
# @ virtue
|
310 |
-
#: metaboxes.php:196 metaboxes.php:256 metaboxes.php:
|
311 |
-
#: metaboxes.php:
|
312 |
msgid "Video"
|
313 |
msgstr "Видео"
|
314 |
|
315 |
# @ virtue
|
316 |
-
#: metaboxes.php:201
|
317 |
#, fuzzy
|
318 |
msgid "Video Post embed code"
|
319 |
msgstr "Код встраиваемого видео"
|
320 |
|
321 |
# @ virtue
|
322 |
-
#: metaboxes.php:202
|
323 |
#, fuzzy
|
324 |
msgid ""
|
325 |
"Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
|
@@ -327,106 +329,144 @@ msgid ""
|
|
327 |
msgstr "Разместите ваш встроенный код здесь, работает для youtube, vimeo..."
|
328 |
|
329 |
# @ virtue
|
330 |
-
#: metaboxes.php:207
|
331 |
#, fuzzy
|
332 |
msgid "Max Video Width"
|
333 |
msgstr "Максимальная ширина Изображения/Слайдера"
|
334 |
|
335 |
-
#: metaboxes.php:208
|
336 |
msgid ""
|
337 |
"Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
|
338 |
"example: 650, does not apply to carousel slider)"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: metaboxes.php:219
|
342 |
msgid "Video - (when possible)"
|
343 |
msgstr ""
|
344 |
|
345 |
# @ virtue
|
346 |
-
#: metaboxes.php:228 metaboxes.php:
|
347 |
msgid "Portfolio Post Options"
|
348 |
msgstr "Опции поста портфолио"
|
349 |
|
350 |
# @ virtue
|
351 |
-
#: metaboxes.php:236 metaboxes.php:
|
352 |
msgid "Project Layout"
|
353 |
msgstr "Формат проекта"
|
354 |
|
355 |
# @ virtue
|
356 |
-
#: metaboxes.php:241
|
357 |
#, fuzzy
|
358 |
msgid "Beside 40%"
|
359 |
msgstr "Рядом"
|
360 |
|
361 |
# @ virtue
|
362 |
-
#: metaboxes.php:242
|
363 |
#, fuzzy
|
364 |
msgid "Beside 33%"
|
365 |
msgstr "Рядом"
|
366 |
|
367 |
# @ virtue
|
368 |
-
#: metaboxes.php:243 metaboxes.php:
|
369 |
msgid "Above"
|
370 |
msgstr "Сверху"
|
371 |
|
372 |
# @ virtue
|
373 |
-
#: metaboxes.php:244 metaboxes.php:
|
374 |
msgid "Three Rows"
|
375 |
msgstr "Три ряда"
|
376 |
|
377 |
# @ virtue
|
378 |
-
#: metaboxes.php:248 metaboxes.php:
|
379 |
msgid "Project Options"
|
380 |
msgstr "Опции проекта"
|
381 |
|
382 |
# @ virtue
|
383 |
-
#: metaboxes.php:253 metaboxes.php:
|
384 |
msgid "Image"
|
385 |
msgstr "Изображение"
|
386 |
|
387 |
# @ virtue
|
388 |
-
#: metaboxes.php:254 metaboxes.php:
|
389 |
#, fuzzy
|
390 |
msgid "Image Slider (Flex Slider)"
|
391 |
msgstr "Слайдер изображений"
|
392 |
|
393 |
# @ virtue
|
394 |
-
#: metaboxes.php:255 metaboxes.php:
|
395 |
#, fuzzy
|
396 |
msgid "Carousel Slider"
|
397 |
msgstr "Заголовок карусели"
|
398 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
# @ virtue
|
400 |
-
#: metaboxes.php:
|
401 |
#, fuzzy
|
402 |
msgid "Portfolio Slider/Images"
|
403 |
msgstr "Изображения для слайдера портфолио"
|
404 |
|
405 |
# @ virtue
|
406 |
-
#: metaboxes.php:
|
407 |
#, fuzzy
|
408 |
msgid "Add images for post here"
|
409 |
msgstr "Добавить изображения в галерею"
|
410 |
|
411 |
# @ virtue
|
412 |
-
#: metaboxes.php:
|
|
|
413 |
msgid "Max Image/Slider Height"
|
414 |
msgstr "Максимальная высота Изображения/Слайдера"
|
415 |
|
416 |
# @ virtue
|
417 |
-
#: metaboxes.php:
|
418 |
#, fuzzy
|
419 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
420 |
msgstr ""
|
421 |
"По умолчанию: 450 <b>(Внимание, просто введите значение, например: 350)</b>"
|
422 |
|
423 |
# @ virtue
|
424 |
-
#: metaboxes.php:
|
|
|
425 |
msgid "Max Image/Slider Width"
|
426 |
msgstr "Максимальная ширина Изображения/Слайдера"
|
427 |
|
428 |
# @ virtue
|
429 |
-
#: metaboxes.php:
|
430 |
#, fuzzy
|
431 |
msgid ""
|
432 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
@@ -436,373 +476,354 @@ msgstr ""
|
|
436 |
"например: 350)</b>"
|
437 |
|
438 |
# @ virtue
|
439 |
-
#: metaboxes.php:
|
440 |
msgid "Value 01 Title"
|
441 |
msgstr "Название параметра 01"
|
442 |
|
443 |
# @ virtue
|
444 |
-
#: metaboxes.php:
|
445 |
msgid "ex. Project Type:"
|
446 |
msgstr "например: Тип проекта:"
|
447 |
|
448 |
# @ virtue
|
449 |
-
#: metaboxes.php:
|
450 |
msgid "Value 01 Description"
|
451 |
msgstr "Описание параметра 01"
|
452 |
|
453 |
# @ virtue
|
454 |
-
#: metaboxes.php:
|
455 |
msgid "ex. Character Illustration"
|
456 |
msgstr "например: Описание иллюстрации"
|
457 |
|
458 |
# @ virtue
|
459 |
-
#: metaboxes.php:
|
460 |
msgid "Value 02 Title"
|
461 |
msgstr "Название параметра 02"
|
462 |
|
463 |
# @ virtue
|
464 |
-
#: metaboxes.php:
|
465 |
msgid "ex. Skills Needed:"
|
466 |
msgstr "например: Требуемые навыки:"
|
467 |
|
468 |
# @ virtue
|
469 |
-
#: metaboxes.php:
|
470 |
msgid "Value 02 Description"
|
471 |
msgstr "Описание параметра 02"
|
472 |
|
473 |
# @ virtue
|
474 |
-
#: metaboxes.php:
|
475 |
msgid "ex. Photoshop, Illustrator"
|
476 |
msgstr "например: Фотошоп, Иллюстратор"
|
477 |
|
478 |
# @ virtue
|
479 |
-
#: metaboxes.php:
|
480 |
msgid "Value 03 Title"
|
481 |
msgstr "Название параметра 03"
|
482 |
|
483 |
# @ virtue
|
484 |
-
#: metaboxes.php:
|
485 |
msgid "ex. Customer:"
|
486 |
msgstr "например: Клиент:"
|
487 |
|
488 |
# @ virtue
|
489 |
-
#: metaboxes.php:
|
490 |
msgid "Value 03 Description"
|
491 |
msgstr "Описание параметра 03"
|
492 |
|
493 |
# @ virtue
|
494 |
-
#: metaboxes.php:
|
495 |
msgid "ex. Example Inc"
|
496 |
msgstr "например: Ромашка Инкорпорейтед"
|
497 |
|
498 |
# @ virtue
|
499 |
-
#: metaboxes.php:
|
500 |
msgid "Value 04 Title"
|
501 |
msgstr "Название параметра 04"
|
502 |
|
503 |
# @ virtue
|
504 |
-
#: metaboxes.php:
|
505 |
msgid "ex. Project Year:"
|
506 |
msgstr "например: Год проекта:"
|
507 |
|
508 |
# @ virtue
|
509 |
-
#: metaboxes.php:
|
510 |
msgid "Value 04 Description"
|
511 |
msgstr "Описание параметра 04"
|
512 |
|
513 |
# @ virtue
|
514 |
-
#: metaboxes.php:
|
515 |
msgid "ex. 2013"
|
516 |
msgstr "например: 2013"
|
517 |
|
518 |
# @ virtue
|
519 |
-
#: metaboxes.php:
|
520 |
msgid "External Website"
|
521 |
msgstr "Внешний сайт"
|
522 |
|
523 |
# @ virtue
|
524 |
-
#: metaboxes.php:
|
525 |
msgid "ex. Website:"
|
526 |
msgstr "например: Сайт:"
|
527 |
|
528 |
# @ virtue
|
529 |
-
#: metaboxes.php:
|
530 |
msgid "Website Address"
|
531 |
msgstr "Адрес сайта"
|
532 |
|
533 |
# @ virtue
|
534 |
-
#: metaboxes.php:
|
535 |
msgid "ex. http://www.example.com"
|
536 |
msgstr "например: https://www.example.com"
|
537 |
|
538 |
# @ virtue
|
539 |
-
#: metaboxes.php:
|
540 |
msgid "If Video Project"
|
541 |
msgstr "Видео-проект"
|
542 |
|
543 |
# @ virtue
|
544 |
-
#: metaboxes.php:
|
545 |
-
#: metaboxes.php:
|
546 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
547 |
msgstr "Разместите ваш встроенный код здесь, работает для youtube, vimeo..."
|
548 |
|
549 |
# @ virtue
|
550 |
-
#: metaboxes.php:
|
551 |
#, fuzzy
|
552 |
msgid "Bottom Carousel Options"
|
553 |
msgstr "Опции страницы контактов"
|
554 |
|
555 |
# @ virtue
|
556 |
-
#: metaboxes.php:
|
557 |
msgid "Carousel Title"
|
558 |
msgstr "Заголовок карусели"
|
559 |
|
560 |
# @ virtue
|
561 |
-
#: metaboxes.php:
|
562 |
msgid "ex. Similar Projects"
|
563 |
msgstr "например, Подобные проекты"
|
564 |
|
565 |
# @ virtue
|
566 |
-
#: metaboxes.php:
|
567 |
#, fuzzy
|
568 |
msgid "Bottom Portfolio Carousel"
|
569 |
msgstr "Карусель портфолио"
|
570 |
|
571 |
# @ virtue
|
572 |
-
#: metaboxes.php:
|
573 |
#, fuzzy
|
574 |
msgid "Display a carousel with portfolio items below project?"
|
575 |
msgstr "Отображать карусель с подобными элементами портфолио под проектом?"
|
576 |
|
577 |
# @ virtue
|
578 |
-
#: metaboxes.php:
|
579 |
-
#: metaboxes.php:
|
580 |
-
#: metaboxes.php:
|
|
|
581 |
msgid "No"
|
582 |
msgstr "Нет"
|
583 |
|
584 |
# @ virtue
|
585 |
-
#: metaboxes.php:
|
586 |
-
#: metaboxes.php:
|
587 |
-
#: metaboxes.php:
|
|
|
588 |
msgid "Yes"
|
589 |
msgstr "Да"
|
590 |
|
591 |
# @ virtue
|
592 |
-
#: metaboxes.php:
|
593 |
#, fuzzy
|
594 |
msgid "Carousel Items"
|
595 |
msgstr "Заголовок карусели"
|
596 |
|
597 |
# @ virtue
|
598 |
-
#: metaboxes.php:
|
599 |
#, fuzzy
|
600 |
msgid "All Portfolio Posts"
|
601 |
msgstr "Опции поста портфолио"
|
602 |
|
603 |
-
#: metaboxes.php:
|
604 |
msgid "Only of same Portfolio Type"
|
605 |
msgstr ""
|
606 |
|
607 |
# @ virtue
|
608 |
-
#: metaboxes.php:
|
609 |
#, fuzzy
|
610 |
msgid "Carousel Order"
|
611 |
msgstr "Заголовок карусели"
|
612 |
|
613 |
# @ virtue
|
614 |
-
#: metaboxes.php:
|
615 |
msgid "Menu Order"
|
616 |
msgstr "Порядок меню"
|
617 |
|
618 |
# @ virtue
|
619 |
-
#: metaboxes.php:
|
620 |
msgid "Title"
|
621 |
msgstr "Заголовок"
|
622 |
|
623 |
# @ virtue
|
624 |
-
#: metaboxes.php:
|
625 |
msgid "Date"
|
626 |
msgstr "Дата"
|
627 |
|
628 |
# @ virtue
|
629 |
-
#: metaboxes.php:
|
630 |
msgid "Random"
|
631 |
msgstr "Случайно"
|
632 |
|
633 |
# @ virtue
|
634 |
-
#: metaboxes.php:
|
635 |
msgid "Portfolio Page Options"
|
636 |
msgstr "Опции страницы Портфолио"
|
637 |
|
638 |
-
#: metaboxes.php:
|
639 |
msgid "Style"
|
640 |
msgstr ""
|
641 |
|
642 |
# @ virtue
|
643 |
-
#: metaboxes.php:
|
644 |
#, fuzzy
|
645 |
msgid "Post Boxes"
|
646 |
msgstr "Разместить видео-пост"
|
647 |
|
648 |
-
#: metaboxes.php:
|
649 |
msgid "Flat with Margin"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: metaboxes.php:
|
653 |
msgid "Hover Style"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: metaboxes.php:
|
657 |
msgid "Light"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: metaboxes.php:
|
661 |
msgid "Dark"
|
662 |
msgstr ""
|
663 |
|
664 |
# @ virtue
|
665 |
-
#: metaboxes.php:
|
666 |
msgid "Primary Color"
|
667 |
msgstr "Основной цвет"
|
668 |
|
669 |
# @ virtue
|
670 |
-
#: metaboxes.php:
|
671 |
msgid "Columns"
|
672 |
msgstr "Колонки"
|
673 |
|
674 |
# @ virtue
|
675 |
-
#: metaboxes.php:
|
676 |
-
msgid "Four Column"
|
677 |
-
msgstr "Четыре колонки"
|
678 |
-
|
679 |
-
# @ virtue
|
680 |
-
#: metaboxes.php:437 metaboxes.php:865
|
681 |
-
msgid "Three Column"
|
682 |
-
msgstr "Три колонки"
|
683 |
-
|
684 |
-
# @ virtue
|
685 |
-
#: metaboxes.php:438 metaboxes.php:866
|
686 |
-
msgid "Two Column"
|
687 |
-
msgstr "Две колонки"
|
688 |
-
|
689 |
-
# @ virtue
|
690 |
-
#: metaboxes.php:439
|
691 |
-
#, fuzzy
|
692 |
-
msgid "Five Column"
|
693 |
-
msgstr "Четыре колонки"
|
694 |
-
|
695 |
-
# @ virtue
|
696 |
-
#: metaboxes.php:443 metaboxes.php:870
|
697 |
msgid "Portfolio Work Types"
|
698 |
msgstr "Виды работ портфолио"
|
699 |
|
700 |
# @ virtue
|
701 |
-
#: metaboxes.php:
|
702 |
msgid "Order Items By"
|
703 |
msgstr "Сортировать элементы по"
|
704 |
|
705 |
# @ virtue
|
706 |
-
#: metaboxes.php:
|
707 |
msgid "Items per Page"
|
708 |
msgstr "Элементов на страницу"
|
709 |
|
710 |
# @ virtue
|
711 |
-
#: metaboxes.php:
|
712 |
msgid "How many portfolio items per page"
|
713 |
msgstr "Количество элементов портфолио на одной странице"
|
714 |
|
715 |
# @ virtue
|
716 |
-
#: metaboxes.php:
|
717 |
msgid "All"
|
718 |
msgstr "Все"
|
719 |
|
720 |
# @ virtue
|
721 |
-
#: metaboxes.php:
|
722 |
#, fuzzy
|
723 |
msgid "Image Ratio?"
|
724 |
msgstr "Настройки повторяемости изображения"
|
725 |
|
726 |
-
#: metaboxes.php:
|
727 |
msgid "Square 1:1"
|
728 |
msgstr ""
|
729 |
|
730 |
# @ virtue
|
731 |
-
#: metaboxes.php:
|
732 |
#, fuzzy
|
733 |
msgid "Portrait 3:4"
|
734 |
msgstr "Портретное изображение"
|
735 |
|
736 |
# @ virtue
|
737 |
-
#: metaboxes.php:
|
738 |
#, fuzzy
|
739 |
msgid "Landscape 4:3"
|
740 |
msgstr "Пейзажное изображение"
|
741 |
|
742 |
# @ virtue
|
743 |
-
#: metaboxes.php:
|
744 |
#, fuzzy
|
745 |
msgid "Wide Landscape 4:2"
|
746 |
msgstr "Пейзажное изображение"
|
747 |
|
748 |
# @ virtue
|
749 |
-
#: metaboxes.php:
|
750 |
msgid "Display Item Work Types"
|
751 |
msgstr "Отображать виды работ элемента"
|
752 |
|
753 |
# @ virtue
|
754 |
-
#: metaboxes.php:
|
755 |
msgid "Display Item Excerpt"
|
756 |
msgstr "Отображать выдержки описания элемента"
|
757 |
|
758 |
# @ virtue
|
759 |
-
#: metaboxes.php:
|
760 |
#, fuzzy
|
761 |
msgid "Add Lightbox link in each item"
|
762 |
msgstr "Добавить ссылку Lightbox в правом верхнем углу каждого элемента"
|
763 |
|
764 |
# @ virtue
|
765 |
-
#: metaboxes.php:
|
766 |
msgid "Feature Page Options"
|
767 |
msgstr "Опции страницы свойств"
|
768 |
|
769 |
# @ virtue
|
770 |
-
#: metaboxes.php:
|
771 |
#, fuzzy
|
772 |
msgid "Header Options"
|
773 |
msgstr "Настройки шрифтов заголовков"
|
774 |
|
775 |
-
#: metaboxes.php:
|
776 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
777 |
msgstr ""
|
778 |
|
779 |
# @ virtue
|
780 |
-
#: metaboxes.php:
|
781 |
msgid "Page Title"
|
782 |
msgstr "Заголовок страницы"
|
783 |
|
784 |
# @ virtue
|
785 |
-
#: metaboxes.php:
|
786 |
msgid "Slider Images"
|
787 |
msgstr "Изображения слайдера"
|
788 |
|
789 |
-
#: metaboxes.php:
|
790 |
msgid "Add for flex, carousel, and image carousel."
|
791 |
msgstr ""
|
792 |
|
793 |
# @ virtue
|
794 |
-
#: metaboxes.php:
|
795 |
#, fuzzy
|
796 |
msgid "If Cyclone Slider"
|
797 |
msgstr "Слайдер изображений"
|
798 |
|
799 |
-
#: metaboxes.php:
|
800 |
msgid ""
|
801 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
802 |
msgstr ""
|
803 |
|
804 |
# @ virtue
|
805 |
-
#: metaboxes.php:
|
806 |
#, fuzzy
|
807 |
msgid ""
|
808 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
@@ -812,137 +833,137 @@ msgstr ""
|
|
812 |
"например: 350)</b>"
|
813 |
|
814 |
# @ virtue
|
815 |
-
#: metaboxes.php:
|
816 |
msgid "If Video Post"
|
817 |
msgstr "Если видео-пост"
|
818 |
|
819 |
# @ virtue
|
820 |
-
#: metaboxes.php:
|
821 |
msgid "Contact Page Options"
|
822 |
msgstr "Опции страницы контактов"
|
823 |
|
824 |
# @ virtue
|
825 |
-
#: metaboxes.php:
|
826 |
msgid "Use Contact Form"
|
827 |
msgstr "Использовать контактную форму"
|
828 |
|
829 |
# @ virtue
|
830 |
-
#: metaboxes.php:
|
831 |
msgid "Contact Form Title"
|
832 |
msgstr "Заголовок контактной формы"
|
833 |
|
834 |
# @ virtue
|
835 |
-
#: metaboxes.php:
|
836 |
msgid "ex. Send us an Email"
|
837 |
msgstr "например, Отправьте нам сообщение по электронной почте"
|
838 |
|
839 |
# @ virtue
|
840 |
-
#: metaboxes.php:
|
841 |
#, fuzzy
|
842 |
msgid "Contact Form Email Recipient"
|
843 |
msgstr "Адрес электронной почты для контактной формы"
|
844 |
|
845 |
-
#: metaboxes.php:
|
846 |
msgid "ex. joe@gmail.com"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: metaboxes.php:
|
850 |
msgid "Use Simple Math Question"
|
851 |
msgstr ""
|
852 |
|
853 |
# @ virtue
|
854 |
-
#: metaboxes.php:
|
855 |
msgid "Use Map"
|
856 |
msgstr "Использовать карту"
|
857 |
|
858 |
# @ virtue
|
859 |
-
#: metaboxes.php:
|
860 |
msgid "Address"
|
861 |
msgstr "Адрес"
|
862 |
|
863 |
# @ virtue
|
864 |
-
#: metaboxes.php:
|
865 |
msgid "Enter your Location"
|
866 |
msgstr "Введите ваше местоположение"
|
867 |
|
868 |
# @ virtue
|
869 |
-
#: metaboxes.php:
|
870 |
msgid "Map Type"
|
871 |
msgstr "Тип карты"
|
872 |
|
873 |
# @ virtue
|
874 |
-
#: metaboxes.php:
|
875 |
msgid "ROADMAP"
|
876 |
msgstr "ДОРОГИ"
|
877 |
|
878 |
# @ virtue
|
879 |
-
#: metaboxes.php:
|
880 |
msgid "HYBRID"
|
881 |
msgstr "ГИБРИД"
|
882 |
|
883 |
# @ virtue
|
884 |
-
#: metaboxes.php:
|
885 |
msgid "TERRAIN"
|
886 |
msgstr "МЕСТНОСТЬ"
|
887 |
|
888 |
# @ virtue
|
889 |
-
#: metaboxes.php:
|
890 |
msgid "SATELLITE"
|
891 |
msgstr "СПУТНИК"
|
892 |
|
893 |
# @ virtue
|
894 |
-
#: metaboxes.php:
|
895 |
msgid "Map Zoom Level"
|
896 |
msgstr "Масштаб"
|
897 |
|
898 |
# @ virtue
|
899 |
-
#: metaboxes.php:
|
900 |
msgid "A good place to start is 15"
|
901 |
msgstr "Наболее подходящий начальный масштаб 15"
|
902 |
|
903 |
# @ virtue
|
904 |
-
#: metaboxes.php:
|
905 |
msgid "1 (World View)"
|
906 |
msgstr "1 (Вид карты мира)"
|
907 |
|
908 |
# @ virtue
|
909 |
-
#: metaboxes.php:
|
910 |
msgid "21 (Street View)"
|
911 |
msgstr "21 (Вид улиц)"
|
912 |
|
913 |
# @ virtue
|
914 |
-
#: metaboxes.php:
|
915 |
msgid "Map Height"
|
916 |
msgstr "Высота карты"
|
917 |
|
918 |
# @ virtue
|
919 |
-
#: metaboxes.php:
|
920 |
msgid "Default is 300"
|
921 |
msgstr "По умолчанию 300"
|
922 |
|
923 |
# @ virtue
|
924 |
-
#: metaboxes.php:
|
925 |
msgid "Post Video Box"
|
926 |
msgstr "Разместить видео-пост"
|
927 |
|
928 |
# @ virtue
|
929 |
-
#: metaboxes.php:
|
930 |
msgid "Beside"
|
931 |
msgstr "Рядом"
|
932 |
|
933 |
# @ virtue
|
934 |
-
#: metaboxes.php:
|
935 |
msgid "Image Slider"
|
936 |
msgstr "Слайдер изображений"
|
937 |
|
938 |
# @ virtue
|
939 |
-
#: metaboxes.php:
|
940 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
941 |
msgstr ""
|
942 |
"По умолчанию: 450 <b>(Внимание, просто введите значение, например: 350)</b>"
|
943 |
|
944 |
# @ virtue
|
945 |
-
#: metaboxes.php:
|
946 |
#, fuzzy
|
947 |
msgid ""
|
948 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
@@ -952,60 +973,66 @@ msgstr ""
|
|
952 |
"например: 350)</b>"
|
953 |
|
954 |
# @ virtue
|
955 |
-
#: metaboxes.php:
|
956 |
#, fuzzy
|
957 |
msgid "Auto Play Slider?"
|
958 |
msgstr "Автозапуск?"
|
959 |
|
960 |
# @ virtue
|
961 |
-
#: metaboxes.php:
|
962 |
msgid "Similar Portfolio Item Carousel"
|
963 |
msgstr "Карусель похожих элементов портфолио"
|
964 |
|
965 |
# @ virtue
|
966 |
-
#: metaboxes.php:
|
967 |
msgid "Display a carousel with similar portfolio items below project?"
|
968 |
msgstr "Отображать карусель с подобными элементами портфолио под проектом?"
|
969 |
|
970 |
# @ virtue
|
971 |
-
#: metaboxes.php:
|
972 |
msgid "Yes - Display Recent Projects"
|
973 |
msgstr "Да - отображать недавние проекты"
|
974 |
|
975 |
# @ virtue
|
976 |
-
#: metaboxes.php:
|
977 |
msgid "Set image height"
|
978 |
msgstr "Установить высоту изображения"
|
979 |
|
980 |
# @ virtue
|
981 |
-
#: metaboxes.php:
|
982 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
983 |
msgstr ""
|
984 |
"По умолчанию соотношение 1:1 <b>(Внимание, просто введите значение, "
|
985 |
"например: 350)</b>"
|
986 |
|
987 |
# @ virtue
|
988 |
-
#: metaboxes.php:
|
989 |
msgid "Add Lightbox link in the top right of each item"
|
990 |
msgstr "Добавить ссылку Lightbox в правом верхнем углу каждого элемента"
|
991 |
|
992 |
# @ virtue
|
993 |
-
#: metaboxes.php:
|
994 |
msgid "Feature Options"
|
995 |
msgstr "Опции свойства"
|
996 |
|
997 |
-
#: metaboxes.php:
|
998 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
999 |
msgstr ""
|
1000 |
|
1001 |
# @ virtue
|
1002 |
-
#: metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1003 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
1004 |
msgstr ""
|
1005 |
"По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
|
1006 |
|
1007 |
# @ virtue
|
1008 |
-
#: metaboxes.php:
|
1009 |
#, fuzzy
|
1010 |
msgid ""
|
1011 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
@@ -1014,519 +1041,519 @@ msgstr ""
|
|
1014 |
"По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
|
1015 |
|
1016 |
# @ virtue
|
1017 |
-
#: metaboxes.php:
|
1018 |
msgid "Use Lightbox for Feature Image"
|
1019 |
msgstr "Использовать Lightbox для миниатюр"
|
1020 |
|
1021 |
# @ virtue
|
1022 |
-
#: metaboxes.php:
|
1023 |
msgid ""
|
1024 |
"If feature option is set to image, choose to use lightbox link with image."
|
1025 |
msgstr ""
|
1026 |
"Если опция фичи установлена в изображение, выберите использовать Lightbox с "
|
1027 |
"изображением."
|
1028 |
|
1029 |
-
|
1030 |
-
#: metaboxes.php:1105
|
1031 |
-
#, fuzzy
|
1032 |
-
msgid "Slider Gallery"
|
1033 |
-
msgstr "Изображения слайдера"
|
1034 |
-
|
1035 |
-
#: page-contact.php:12 template-contact.php:7
|
1036 |
msgid "This field is required."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
# @ virtue
|
1040 |
-
#: page-contact.php:
|
1041 |
#, fuzzy
|
1042 |
msgid "Please enter a valid email address."
|
1043 |
msgstr "Пожалуйста, укажите адрес своей электронной почты."
|
1044 |
|
1045 |
-
#: page-contact.php:
|
1046 |
msgid "Check your math."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
# @ virtue
|
1050 |
-
#: page-contact.php:
|
1051 |
msgid "Please enter your name."
|
1052 |
msgstr "Пожалуйста, укажите свое имя."
|
1053 |
|
1054 |
# @ virtue
|
1055 |
-
#: page-contact.php:
|
1056 |
msgid "Please enter your email address."
|
1057 |
msgstr "Пожалуйста, укажите адрес своей электронной почты."
|
1058 |
|
1059 |
# @ virtue
|
1060 |
-
#: page-contact.php:
|
1061 |
msgid "You entered an invalid email address."
|
1062 |
msgstr "Вы ввели некорректный адрес электронной почты."
|
1063 |
|
1064 |
# @ virtue
|
1065 |
-
#: page-contact.php:
|
1066 |
msgid "Please enter a message."
|
1067 |
msgstr "Пожалуйста, введите текст сообщения."
|
1068 |
|
1069 |
# @ virtue
|
1070 |
-
#: page-contact.php:
|
1071 |
-
#: template-contact.php:
|
1072 |
#, fuzzy
|
1073 |
msgid "Contact"
|
1074 |
msgstr " Контакт"
|
1075 |
|
1076 |
# @ virtue
|
1077 |
-
#: page-contact.php:
|
1078 |
msgid "From"
|
1079 |
msgstr "От"
|
1080 |
|
1081 |
# @ virtue
|
1082 |
-
#: page-contact.php:
|
1083 |
msgid "Name"
|
1084 |
msgstr "Имя"
|
1085 |
|
1086 |
# @ virtue
|
1087 |
-
#: page-contact.php:
|
1088 |
msgid "Email"
|
1089 |
msgstr "Электронная почта"
|
1090 |
|
1091 |
# @ virtue
|
1092 |
-
#: page-contact.php:
|
1093 |
#, fuzzy
|
1094 |
msgid "Comments"
|
1095 |
msgstr "Комментарий"
|
1096 |
|
1097 |
# @ virtue
|
1098 |
-
#: page-contact.php:
|
1099 |
msgid "Thanks, your email was sent successfully."
|
1100 |
msgstr "Спасибо, ваше сообщение успешно отправлено."
|
1101 |
|
1102 |
# @ virtue
|
1103 |
-
#: page-contact.php:
|
1104 |
msgid "Sorry, an error occured."
|
1105 |
msgstr "Извините, возникла ошибка."
|
1106 |
|
1107 |
# @ virtue
|
1108 |
-
#: page-contact.php:
|
1109 |
msgid "Name:"
|
1110 |
msgstr "Имя:"
|
1111 |
|
1112 |
# @ virtue
|
1113 |
-
#: page-contact.php:195
|
1114 |
-
msgid "Email:
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
# @ virtue
|
1118 |
-
#: page-contact.php:
|
1119 |
-
|
|
|
1120 |
msgstr "Сообщение:"
|
1121 |
|
1122 |
# @ virtue
|
1123 |
-
#: page-contact.php:
|
1124 |
msgid "Send Email"
|
1125 |
msgstr "Отправить сообщение"
|
1126 |
|
1127 |
# @ virtue
|
1128 |
-
#: post-types.php:5 post-types.php:17
|
1129 |
msgid "Portfolio"
|
1130 |
msgstr "Портфолио"
|
1131 |
|
1132 |
# @ virtue
|
1133 |
-
#: post-types.php:6
|
1134 |
#, fuzzy
|
1135 |
msgid "Portfolio Item"
|
1136 |
msgstr "Портфолио"
|
1137 |
|
1138 |
# @ virtue
|
1139 |
-
#: post-types.php:7
|
1140 |
#, fuzzy
|
1141 |
msgid "Add New"
|
1142 |
msgstr "Добавить отзыв"
|
1143 |
|
1144 |
# @ virtue
|
1145 |
-
#: post-types.php:8
|
1146 |
#, fuzzy
|
1147 |
msgid "Add New Portfolio Item"
|
1148 |
msgstr "Страница портфолио всех проектов"
|
1149 |
|
1150 |
# @ virtue
|
1151 |
-
#: post-types.php:9
|
1152 |
#, fuzzy
|
1153 |
msgid "Edit Portfolio Item"
|
1154 |
msgstr "Портфолио"
|
1155 |
|
1156 |
# @ virtue
|
1157 |
-
#: post-types.php:10
|
1158 |
#, fuzzy
|
1159 |
msgid "New Portfolio Item"
|
1160 |
msgstr "Портфолио"
|
1161 |
|
1162 |
# @ virtue
|
1163 |
-
#: post-types.php:11
|
1164 |
#, fuzzy
|
1165 |
msgid "All Portfolio"
|
1166 |
msgstr "Портфолио"
|
1167 |
|
1168 |
# @ virtue
|
1169 |
-
#: post-types.php:12
|
1170 |
#, fuzzy
|
1171 |
msgid "View Portfolio Item"
|
1172 |
msgstr "Портфолио"
|
1173 |
|
1174 |
# @ virtue
|
1175 |
-
#: post-types.php:13
|
1176 |
#, fuzzy
|
1177 |
msgid "Search Portfolio"
|
1178 |
msgstr "Портфолио"
|
1179 |
|
1180 |
# @ virtue
|
1181 |
-
#: post-types.php:14
|
1182 |
#, fuzzy
|
1183 |
msgid "No Portfolio Item found"
|
1184 |
msgstr "Карусель похожих элементов портфолио"
|
1185 |
|
1186 |
-
#: post-types.php:15
|
1187 |
msgid "No Portfolio Items found in Trash"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
# @ virtue
|
1191 |
-
#: post-types.php:37
|
1192 |
#, fuzzy
|
1193 |
msgid "Portfolio Type"
|
1194 |
msgstr "Виды работ портфолио"
|
1195 |
|
1196 |
# @ virtue
|
1197 |
-
#: post-types.php:38
|
1198 |
msgid "Type"
|
1199 |
msgstr "Тип"
|
1200 |
|
1201 |
# @ virtue
|
1202 |
-
#: post-types.php:39
|
1203 |
#, fuzzy
|
1204 |
msgid "Search Type"
|
1205 |
msgstr "Искать"
|
1206 |
|
1207 |
# @ virtue
|
1208 |
-
#: post-types.php:40
|
1209 |
#, fuzzy
|
1210 |
msgid "All Type"
|
1211 |
msgstr "Тип"
|
1212 |
|
1213 |
# @ virtue
|
1214 |
-
#: post-types.php:41
|
1215 |
#, fuzzy
|
1216 |
msgid "Parent Type"
|
1217 |
msgstr "например: Тип проекта:"
|
1218 |
|
1219 |
# @ virtue
|
1220 |
-
#: post-types.php:42
|
1221 |
#, fuzzy
|
1222 |
msgid "Parent Type:"
|
1223 |
msgstr "например: Тип проекта:"
|
1224 |
|
1225 |
# @ virtue
|
1226 |
-
#: post-types.php:43
|
1227 |
#, fuzzy
|
1228 |
msgid "Edit Type"
|
1229 |
msgstr "Тип"
|
1230 |
|
1231 |
# @ virtue
|
1232 |
-
#: post-types.php:44
|
1233 |
#, fuzzy
|
1234 |
msgid "Update Type"
|
1235 |
msgstr "Пересчитать итог"
|
1236 |
|
1237 |
-
#: post-types.php:45
|
1238 |
msgid "Add New Type"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: post-types.php:46
|
1242 |
msgid "New Type Name"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: shortcode_ajax.php:4 shortcode_ajax.php:12 shortcode_ajax.php:20
|
1246 |
-
#: shortcode_ajax.php:28 shortcode_ajax.php:36 shortcode_ajax.php:44
|
1247 |
-
#: shortcode_ajax.php:52 shortcode_ajax.php:60
|
1248 |
msgid "You are not allowed to be here"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: shortcodes.php:149 shortcodes.php:152 shortcodes.php:175
|
|
|
1252 |
msgid "please specify correct url"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: shortcodes/accordion/accordion_popup.php:10
|
1256 |
msgid "Insert Accordion or Tabs"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: shortcodes/accordion/accordion_popup.php:59
|
1260 |
msgid "Accordion or Tabs"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: shortcodes/accordion/accordion_popup.php:61
|
1264 |
msgid "Accordion"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: shortcodes/accordion/accordion_popup.php:62
|
1268 |
msgid "Tabs"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: shortcodes/accordion/accordion_popup.php:66
|
1272 |
-
#: shortcodes/btns/btns_popup.php:230
|
1273 |
-
#: shortcodes/
|
1274 |
-
#: shortcodes/
|
|
|
|
|
1275 |
msgid "Insert"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: shortcodes/btns/btns_popup.php:10
|
1279 |
msgid "Insert Button"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: shortcodes/btns/btns_popup.php:99
|
1283 |
msgid "Button Text"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: shortcodes/btns/btns_popup.php:105
|
1287 |
msgid "Text Color"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: shortcodes/btns/btns_popup.php:107 shortcodes/btns/btns_popup.php:140
|
1291 |
-
#: shortcodes/btns/btns_popup.php:163 shortcodes/btns/btns_popup.php:196
|
1292 |
msgid "White"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: shortcodes/btns/btns_popup.php:108 shortcodes/btns/btns_popup.php:141
|
1296 |
-
#: shortcodes/btns/btns_popup.php:164 shortcodes/btns/btns_popup.php:197
|
1297 |
msgid "Off-White"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: shortcodes/btns/btns_popup.php:109 shortcodes/btns/btns_popup.php:135
|
1301 |
-
#: shortcodes/btns/btns_popup.php:165 shortcodes/btns/btns_popup.php:191
|
1302 |
msgid "Black"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: shortcodes/btns/btns_popup.php:110 shortcodes/btns/btns_popup.php:136
|
1306 |
-
#: shortcodes/btns/btns_popup.php:166 shortcodes/btns/btns_popup.php:192
|
1307 |
msgid "Light-Gray"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: shortcodes/btns/btns_popup.php:111 shortcodes/btns/btns_popup.php:137
|
1311 |
-
#: shortcodes/btns/btns_popup.php:167 shortcodes/btns/btns_popup.php:193
|
1312 |
msgid "Gray"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: shortcodes/btns/btns_popup.php:112 shortcodes/btns/btns_popup.php:138
|
1316 |
-
#: shortcodes/btns/btns_popup.php:168 shortcodes/btns/btns_popup.php:194
|
1317 |
msgid "Dark-Gray"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: shortcodes/btns/btns_popup.php:113 shortcodes/btns/btns_popup.php:139
|
1321 |
-
#: shortcodes/btns/btns_popup.php:169 shortcodes/btns/btns_popup.php:195
|
1322 |
msgid "Silver"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: shortcodes/btns/btns_popup.php:114 shortcodes/btns/btns_popup.php:142
|
1326 |
-
#: shortcodes/btns/btns_popup.php:170 shortcodes/btns/btns_popup.php:198
|
1327 |
msgid "Red"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: shortcodes/btns/btns_popup.php:115 shortcodes/btns/btns_popup.php:143
|
1331 |
-
#: shortcodes/btns/btns_popup.php:171 shortcodes/btns/btns_popup.php:199
|
1332 |
msgid "Blue"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: shortcodes/btns/btns_popup.php:116 shortcodes/btns/btns_popup.php:144
|
1336 |
-
#: shortcodes/btns/btns_popup.php:172 shortcodes/btns/btns_popup.php:200
|
1337 |
msgid "Green"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
# @ virtue
|
1341 |
-
#: shortcodes/btns/btns_popup.php:117 shortcodes/btns/btns_popup.php:145
|
1342 |
-
#: shortcodes/btns/btns_popup.php:173 shortcodes/btns/btns_popup.php:201
|
1343 |
#, fuzzy
|
1344 |
msgid "Yellow"
|
1345 |
msgstr "Подписаться"
|
1346 |
|
1347 |
-
#: shortcodes/btns/btns_popup.php:118 shortcodes/btns/btns_popup.php:146
|
1348 |
-
#: shortcodes/btns/btns_popup.php:174 shortcodes/btns/btns_popup.php:202
|
1349 |
msgid "Orange"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: shortcodes/btns/btns_popup.php:119 shortcodes/btns/btns_popup.php:147
|
1353 |
-
#: shortcodes/btns/btns_popup.php:175 shortcodes/btns/btns_popup.php:203
|
1354 |
msgid "Pink"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: shortcodes/btns/btns_popup.php:120 shortcodes/btns/btns_popup.php:148
|
1358 |
-
#: shortcodes/btns/btns_popup.php:176 shortcodes/btns/btns_popup.php:204
|
1359 |
msgid "Purple"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: shortcodes/btns/btns_popup.php:121 shortcodes/btns/btns_popup.php:149
|
1363 |
-
#: shortcodes/btns/btns_popup.php:177 shortcodes/btns/btns_popup.php:205
|
1364 |
msgid "Brown"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: shortcodes/btns/btns_popup.php:122 shortcodes/btns/btns_popup.php:150
|
1368 |
-
#: shortcodes/btns/btns_popup.php:178 shortcodes/btns/btns_popup.php:206
|
1369 |
msgid "Maroon"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: shortcodes/btns/btns_popup.php:126 shortcodes/btns/btns_popup.php:155
|
1373 |
-
#: shortcodes/btns/btns_popup.php:182 shortcodes/btns/btns_popup.php:210
|
1374 |
msgid "Or Type Hex Color"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
# @ virtue
|
1378 |
-
#: shortcodes/btns/btns_popup.php:132
|
1379 |
#, fuzzy
|
1380 |
msgid "Button Color"
|
1381 |
msgstr "Цвет фона"
|
1382 |
|
1383 |
-
#: shortcodes/btns/btns_popup.php:161
|
1384 |
msgid "Text Hover Color"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
# @ virtue
|
1388 |
-
#: shortcodes/btns/btns_popup.php:188
|
1389 |
#, fuzzy
|
1390 |
msgid "Button Background Hover Color"
|
1391 |
msgstr "Цвет фона"
|
1392 |
|
1393 |
# @ virtue
|
1394 |
-
#: shortcodes/btns/btns_popup.php:190
|
1395 |
#, fuzzy
|
1396 |
msgid "30% Primary Color"
|
1397 |
msgstr "Основной цвет"
|
1398 |
|
1399 |
-
#: shortcodes/btns/btns_popup.php:216
|
1400 |
msgid "Button Link"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: shortcodes/btns/btns_popup.php:222
|
1404 |
msgid "Button Link Target"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: shortcodes/btns/btns_popup.php:224
|
1408 |
msgid "Same Window"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: shortcodes/btns/btns_popup.php:225
|
1412 |
msgid "New Window/Tab"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
# @ virtue
|
1416 |
-
#: shortcodes/columns/columns_popup.php:10
|
1417 |
#, fuzzy
|
1418 |
msgid "Insert Columns"
|
1419 |
msgstr "Колонки"
|
1420 |
|
1421 |
-
#: shortcodes/divider/divider_popup.php:10
|
1422 |
msgid "Insert Divider"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
# @ virtue
|
1426 |
-
#: shortcodes/divider/divider_popup.php:70
|
1427 |
#, fuzzy
|
1428 |
msgid "Choose a Divider"
|
1429 |
msgstr "Выберите боковую панель"
|
1430 |
|
1431 |
-
#: shortcodes/divider/divider_popup.php:72
|
1432 |
msgid "Line"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: shortcodes/divider/divider_popup.php:73
|
1436 |
msgid "Padding Small"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: shortcodes/divider/divider_popup.php:74
|
1440 |
msgid "Padding Medium"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: shortcodes/divider/divider_popup.php:75
|
1444 |
msgid "Padding Large"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: shortcodes/icons/icon_popup.php:10
|
1448 |
msgid "Insert Icon"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: shortcodes/pullquote/quote_popup.php:10
|
1452 |
msgid "Insert Styled Quote"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: shortcodes/pullquote/quote_popup.php:61
|
1456 |
msgid "Pull-Quote"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: shortcodes/pullquote/quote_popup.php:62
|
1460 |
msgid "Block-Quote"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: shortcodes/pullquote/quote_popup.php:68
|
1464 |
msgid "Align"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: shortcodes/pullquote/quote_popup.php:70
|
1468 |
msgid "Center"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: shortcodes/pullquote/quote_popup.php:71
|
1472 |
msgid "Left"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: shortcodes/pullquote/quote_popup.php:72
|
1476 |
msgid "Right"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: shortcodes/vimeo/vimeo_popup.php:10
|
1480 |
msgid "Insert Vimeo Video"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
# @ virtue
|
1484 |
-
#: shortcodes/vimeo/vimeo_popup.php:66
|
1485 |
#, fuzzy
|
1486 |
msgid "Vimeo Link"
|
1487 |
msgstr "Vimeo:"
|
1488 |
|
1489 |
-
#: shortcodes/vimeo/vimeo_popup.php:70
|
|
|
1490 |
msgid "Width"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: shortcodes/vimeo/vimeo_popup.php:72
|
1494 |
-
#: shortcodes/vimeo/vimeo_popup.php:
|
1495 |
-
#: shortcodes/
|
1496 |
-
#: shortcodes/youtube/youtube_popup.php:
|
|
|
|
|
1497 |
msgid "note just use number"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
# @ virtue
|
1501 |
-
#: shortcodes/vimeo/vimeo_popup.php:75
|
|
|
1502 |
#, fuzzy
|
1503 |
msgid "Height"
|
1504 |
msgstr "Высота карты"
|
1505 |
|
1506 |
# @ virtue
|
1507 |
-
#: shortcodes/vimeo/vimeo_popup.php:80
|
|
|
1508 |
#, fuzzy
|
1509 |
msgid "(Optional) Max Width"
|
1510 |
msgstr "Максимальная ширина слайдера"
|
1511 |
|
1512 |
-
#: shortcodes/youtube/youtube_popup.php:10
|
1513 |
msgid "Insert YouTube Video"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: shortcodes/youtube/youtube_popup.php:66
|
1517 |
msgid "YouTube Link"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
# @ virtue
|
1521 |
-
|
1522 |
-
|
1523 |
-
msgstr "Адрес эл.почты:"
|
1524 |
|
1525 |
# @ virtue
|
1526 |
-
|
1527 |
-
|
1528 |
-
msgid "Message:"
|
1529 |
-
msgstr "Сообщение:"
|
1530 |
|
1531 |
# @ virtue
|
1532 |
#~ msgid " (taxes estimated for %s)"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-19 15:46-0700\n"
|
6 |
+
"PO-Revision-Date: 2015-11-19 15:46-0700\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: ru\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
15 |
+
"X-Generator: Poedit 1.8.5\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
18 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
19 |
+
"X-Poedit-Basepath: ..\n"
|
20 |
"X-Textdomain-Support: no\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
# @ virtue
|
24 |
+
#: ../cmb/helpers/cmb_Meta_Box_ajax.php:47
|
25 |
msgid "Please Try Again"
|
26 |
msgstr "Пожалуйста, повторите попытку"
|
27 |
|
28 |
# @ virtue
|
29 |
+
#: ../cmb/helpers/cmb_Meta_Box_ajax.php:131
|
30 |
msgid "Remove Embed"
|
31 |
msgstr "Удалить Embed(?)"
|
32 |
|
33 |
# @ virtue
|
34 |
+
#: ../cmb/helpers/cmb_Meta_Box_ajax.php:134
|
35 |
#, php-format
|
36 |
msgid "No oEmbed Results Found for %s. View more info at"
|
37 |
msgstr "Результаты oEmbed не найдены %s. Посмотреть больше информации на"
|
38 |
|
39 |
+
#: ../cmb/helpers/cmb_Meta_Box_field.php:459
|
40 |
msgid "Add Group"
|
41 |
msgstr ""
|
42 |
|
43 |
# @ virtue
|
44 |
+
#: ../cmb/helpers/cmb_Meta_Box_field.php:460
|
45 |
#, fuzzy
|
46 |
msgid "Remove Group"
|
47 |
msgstr "Удалить"
|
48 |
|
49 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:250
|
50 |
msgid "Add Row"
|
51 |
msgstr ""
|
52 |
|
53 |
# @ virtue
|
54 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
55 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
56 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
57 |
msgid "Remove"
|
58 |
msgstr "Удалить"
|
59 |
|
60 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:601
|
61 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:635
|
62 |
msgid "No terms"
|
63 |
msgstr ""
|
64 |
|
65 |
# @ virtue
|
66 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:674
|
67 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:728
|
68 |
msgid "Add or Upload File"
|
69 |
msgstr "Добавить или загрузить файл"
|
70 |
|
71 |
# @ virtue
|
72 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
73 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:760
|
74 |
#, fuzzy
|
75 |
msgid "Remove Image"
|
76 |
msgstr "Удалить изображение"
|
77 |
|
78 |
# @ virtue
|
79 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
80 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
81 |
msgid "File:"
|
82 |
msgstr "Файл:"
|
83 |
|
84 |
# @ virtue
|
85 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
86 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
87 |
msgid "Download"
|
88 |
msgstr "Скачать"
|
89 |
|
90 |
# @ virtue
|
91 |
+
#: ../cmb/init.php:258 ../shortcodes/divider/divider_popup.php:76
|
92 |
msgid "Clear"
|
93 |
msgstr "Очистить"
|
94 |
|
95 |
# @ virtue
|
96 |
+
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
97 |
+
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:381
|
98 |
+
#: ../metaboxes.php:392 ../metaboxes.php:427 ../metaboxes.php:438
|
99 |
+
#: ../metaboxes.php:503
|
100 |
msgid "Default"
|
101 |
msgstr "По умолчанию"
|
102 |
|
103 |
+
#: ../cmb/init.php:260
|
104 |
msgid "Select Color"
|
105 |
msgstr ""
|
106 |
|
107 |
# @ virtue
|
108 |
+
#: ../cmb/init.php:261
|
109 |
#, fuzzy
|
110 |
msgid "Current Color"
|
111 |
msgstr "Основной цвет"
|
112 |
|
113 |
# @ virtue
|
114 |
+
#: ../cmb/init.php:288
|
115 |
#, fuzzy
|
116 |
msgid "Select / Deselect All"
|
117 |
msgstr "Выберите штат…"
|
118 |
|
119 |
# @ virtue
|
120 |
+
#: ../cmb/init.php:1178
|
121 |
msgid "Save"
|
122 |
msgstr "Сохранить"
|
123 |
|
124 |
# @ virtue
|
125 |
+
#: ../metaboxes.php:17
|
126 |
#, fuzzy
|
127 |
msgid "Add/Edit Gallery"
|
128 |
msgstr "Добавить в галерею"
|
129 |
|
130 |
# @ virtue
|
131 |
+
#: ../metaboxes.php:18
|
132 |
#, fuzzy
|
133 |
msgid "Clear Gallery"
|
134 |
msgstr "Галерея постов"
|
135 |
|
136 |
# @ virtue
|
137 |
+
#: ../metaboxes.php:44
|
138 |
msgid "Page Title and Subtitle"
|
139 |
msgstr "Заголовок и подзаголовок страницы"
|
140 |
|
141 |
# @ virtue
|
142 |
+
#: ../metaboxes.php:51 ../metaboxes.php:95
|
143 |
msgid "Subtitle"
|
144 |
msgstr "Подзаголовок"
|
145 |
|
146 |
# @ virtue
|
147 |
+
#: ../metaboxes.php:52
|
148 |
msgid "Subtitle will go below page title"
|
149 |
msgstr "Подзаголовок, размещаемый под заголовком страницы"
|
150 |
|
151 |
# @ virtue
|
152 |
+
#: ../metaboxes.php:57 ../metaboxes.php:101
|
153 |
#, fuzzy
|
154 |
msgid "Hide Page Title"
|
155 |
msgstr "Заголовок страницы"
|
156 |
|
157 |
+
#: ../metaboxes.php:63 ../metaboxes.php:107
|
158 |
msgid "Show"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../metaboxes.php:64 ../metaboxes.php:108
|
162 |
msgid "Hide"
|
163 |
msgstr ""
|
164 |
|
165 |
# @ virtue
|
166 |
+
#: ../metaboxes.php:68 ../metaboxes.php:112
|
167 |
#, fuzzy
|
168 |
msgid "Page Title background behind Header"
|
169 |
msgstr "Заголовок и подзаголовок страницы"
|
170 |
|
171 |
+
#: ../metaboxes.php:74 ../metaboxes.php:118
|
172 |
msgid "Place behind Header"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: ../metaboxes.php:75 ../metaboxes.php:119
|
176 |
msgid "Don't place behind Header"
|
177 |
msgstr ""
|
178 |
|
179 |
# @ virtue
|
180 |
+
#: ../metaboxes.php:82
|
181 |
#, fuzzy
|
182 |
msgid "Post Title and Subtitle"
|
183 |
msgstr "Заголовок и подзаголовок страницы"
|
184 |
|
185 |
# @ virtue
|
186 |
+
#: ../metaboxes.php:89 ../metaboxes.php:90
|
187 |
#, fuzzy
|
188 |
msgid "Post Header Title"
|
189 |
msgstr "Заголовок страницы"
|
190 |
|
191 |
# @ virtue
|
192 |
+
#: ../metaboxes.php:96
|
193 |
#, fuzzy
|
194 |
msgid "Subtitle will go below post title"
|
195 |
msgstr "Подзаголовок, размещаемый под заголовком страницы"
|
196 |
|
197 |
# @ virtue
|
198 |
+
#: ../metaboxes.php:126
|
199 |
#, fuzzy
|
200 |
msgid "Gallery Post Options"
|
201 |
msgstr "Опции поста"
|
202 |
|
203 |
# @ virtue
|
204 |
+
#: ../metaboxes.php:135 ../metaboxes.php:190
|
205 |
#, fuzzy
|
206 |
msgid "Post Head Content"
|
207 |
msgstr "Содержимое заголовка страницы"
|
208 |
|
209 |
# @ virtue
|
210 |
+
#: ../metaboxes.php:140 ../metaboxes.php:170
|
211 |
#, fuzzy
|
212 |
msgid "Gallery Post Default"
|
213 |
msgstr "Настройки краткого содержания записи блога по умолчанию"
|
214 |
|
215 |
# @ virtue
|
216 |
+
#: ../metaboxes.php:141
|
217 |
#, fuzzy
|
218 |
msgid "Image Slider - (Flex Slider)"
|
219 |
msgstr "Слайдер изображений"
|
220 |
|
221 |
+
#: ../metaboxes.php:142
|
222 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
223 |
msgstr ""
|
224 |
|
225 |
# @ virtue
|
226 |
+
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:258
|
227 |
+
#: ../metaboxes.php:753
|
228 |
msgid "None"
|
229 |
msgstr "Никакие"
|
230 |
|
231 |
# @ virtue
|
232 |
+
#: ../metaboxes.php:147
|
233 |
#, fuzzy
|
234 |
msgid "Post Slider Gallery"
|
235 |
msgstr "Галерея постов"
|
236 |
|
237 |
# @ virtue
|
238 |
+
#: ../metaboxes.php:148 ../metaboxes.php:992 ../metaboxes.php:1138
|
239 |
#, fuzzy
|
240 |
msgid "Add images for gallery here"
|
241 |
msgstr "Добавить изображения в галерею"
|
242 |
|
243 |
# @ virtue
|
244 |
+
#: ../metaboxes.php:153
|
245 |
#, fuzzy
|
246 |
msgid "Max Slider Height"
|
247 |
msgstr "Максимальная высота Изображения/Слайдера"
|
248 |
|
249 |
# @ virtue
|
250 |
+
#: ../metaboxes.php:154 ../metaboxes.php:567
|
251 |
#, fuzzy
|
252 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
253 |
msgstr ""
|
254 |
"По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
|
255 |
|
256 |
# @ virtue
|
257 |
+
#: ../metaboxes.php:159
|
258 |
#, fuzzy
|
259 |
msgid "Max Slider Width"
|
260 |
msgstr "Максимальная ширина Изображения/Слайдера"
|
261 |
|
262 |
# @ virtue
|
263 |
+
#: ../metaboxes.php:160
|
264 |
#, fuzzy
|
265 |
msgid ""
|
266 |
"Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
|
270 |
"например: 350)</b>"
|
271 |
|
272 |
# @ virtue
|
273 |
+
#: ../metaboxes.php:165 ../metaboxes.php:213
|
274 |
msgid "Post Summary"
|
275 |
msgstr "Разместить краткое содержание"
|
276 |
|
277 |
# @ virtue
|
278 |
+
#: ../metaboxes.php:171 ../metaboxes.php:220
|
279 |
#, fuzzy
|
280 |
msgid "Portrait Image (feature image)"
|
281 |
msgstr "Слайдер портретных изображений"
|
282 |
|
283 |
# @ virtue
|
284 |
+
#: ../metaboxes.php:172 ../metaboxes.php:221
|
285 |
#, fuzzy
|
286 |
msgid "Landscape Image (feature image)"
|
287 |
msgstr "Слайдер пейзажных изображений"
|
288 |
|
289 |
# @ virtue
|
290 |
+
#: ../metaboxes.php:173
|
291 |
msgid "Portrait Image Slider"
|
292 |
msgstr "Слайдер портретных изображений"
|
293 |
|
294 |
# @ virtue
|
295 |
+
#: ../metaboxes.php:174
|
296 |
msgid "Landscape Image Slider"
|
297 |
msgstr "Слайдер пейзажных изображений"
|
298 |
|
299 |
# @ virtue
|
300 |
+
#: ../metaboxes.php:181
|
301 |
#, fuzzy
|
302 |
msgid "Video Post Options"
|
303 |
msgstr "Опции поста"
|
304 |
|
305 |
# @ virtue
|
306 |
+
#: ../metaboxes.php:195 ../metaboxes.php:218
|
307 |
#, fuzzy
|
308 |
msgid "Video Post Default"
|
309 |
msgstr "Настройки краткого содержания записи блога по умолчанию"
|
310 |
|
311 |
# @ virtue
|
312 |
+
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:550
|
313 |
+
#: ../metaboxes.php:752 ../metaboxes.php:986
|
314 |
msgid "Video"
|
315 |
msgstr "Видео"
|
316 |
|
317 |
# @ virtue
|
318 |
+
#: ../metaboxes.php:201
|
319 |
#, fuzzy
|
320 |
msgid "Video Post embed code"
|
321 |
msgstr "Код встраиваемого видео"
|
322 |
|
323 |
# @ virtue
|
324 |
+
#: ../metaboxes.php:202
|
325 |
#, fuzzy
|
326 |
msgid ""
|
327 |
"Place Embed Code Here, works with youtube, vimeo. (Use the featured image "
|
329 |
msgstr "Разместите ваш встроенный код здесь, работает для youtube, vimeo..."
|
330 |
|
331 |
# @ virtue
|
332 |
+
#: ../metaboxes.php:207
|
333 |
#, fuzzy
|
334 |
msgid "Max Video Width"
|
335 |
msgstr "Максимальная ширина Изображения/Слайдера"
|
336 |
|
337 |
+
#: ../metaboxes.php:208
|
338 |
msgid ""
|
339 |
"Default is: 848 or 1140 on fullwidth posts (Note: just input number, "
|
340 |
"example: 650, does not apply to carousel slider)"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../metaboxes.php:219
|
344 |
msgid "Video - (when possible)"
|
345 |
msgstr ""
|
346 |
|
347 |
# @ virtue
|
348 |
+
#: ../metaboxes.php:228 ../metaboxes.php:724
|
349 |
msgid "Portfolio Post Options"
|
350 |
msgstr "Опции поста портфолио"
|
351 |
|
352 |
# @ virtue
|
353 |
+
#: ../metaboxes.php:236 ../metaboxes.php:732
|
354 |
msgid "Project Layout"
|
355 |
msgstr "Формат проекта"
|
356 |
|
357 |
# @ virtue
|
358 |
+
#: ../metaboxes.php:241
|
359 |
#, fuzzy
|
360 |
msgid "Beside 40%"
|
361 |
msgstr "Рядом"
|
362 |
|
363 |
# @ virtue
|
364 |
+
#: ../metaboxes.php:242
|
365 |
#, fuzzy
|
366 |
msgid "Beside 33%"
|
367 |
msgstr "Рядом"
|
368 |
|
369 |
# @ virtue
|
370 |
+
#: ../metaboxes.php:243 ../metaboxes.php:738
|
371 |
msgid "Above"
|
372 |
msgstr "Сверху"
|
373 |
|
374 |
# @ virtue
|
375 |
+
#: ../metaboxes.php:244 ../metaboxes.php:739
|
376 |
msgid "Three Rows"
|
377 |
msgstr "Три ряда"
|
378 |
|
379 |
# @ virtue
|
380 |
+
#: ../metaboxes.php:248 ../metaboxes.php:743
|
381 |
msgid "Project Options"
|
382 |
msgstr "Опции проекта"
|
383 |
|
384 |
# @ virtue
|
385 |
+
#: ../metaboxes.php:253 ../metaboxes.php:748 ../metaboxes.php:987
|
386 |
msgid "Image"
|
387 |
msgstr "Изображение"
|
388 |
|
389 |
# @ virtue
|
390 |
+
#: ../metaboxes.php:254 ../metaboxes.php:548
|
391 |
#, fuzzy
|
392 |
msgid "Image Slider (Flex Slider)"
|
393 |
msgstr "Слайдер изображений"
|
394 |
|
395 |
# @ virtue
|
396 |
+
#: ../metaboxes.php:255 ../metaboxes.php:549 ../metaboxes.php:750
|
397 |
#, fuzzy
|
398 |
msgid "Carousel Slider"
|
399 |
msgstr "Заголовок карусели"
|
400 |
|
401 |
+
#: ../metaboxes.php:257 ../metaboxes.php:751
|
402 |
+
msgid "Image Grid"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: ../metaboxes.php:262 ../metaboxes.php:757
|
406 |
+
msgid "Columns (Only for Image Grid option)"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
# @ virtue
|
410 |
+
#: ../metaboxes.php:267 ../metaboxes.php:450 ../metaboxes.php:762
|
411 |
+
#: ../metaboxes.php:892
|
412 |
+
msgid "Four Column"
|
413 |
+
msgstr "Четыре колонки"
|
414 |
+
|
415 |
+
# @ virtue
|
416 |
+
#: ../metaboxes.php:268 ../metaboxes.php:451 ../metaboxes.php:763
|
417 |
+
#: ../metaboxes.php:893
|
418 |
+
msgid "Three Column"
|
419 |
+
msgstr "Три колонки"
|
420 |
+
|
421 |
+
# @ virtue
|
422 |
+
#: ../metaboxes.php:269 ../metaboxes.php:452 ../metaboxes.php:764
|
423 |
+
#: ../metaboxes.php:894
|
424 |
+
msgid "Two Column"
|
425 |
+
msgstr "Две колонки"
|
426 |
+
|
427 |
+
# @ virtue
|
428 |
+
#: ../metaboxes.php:270 ../metaboxes.php:453 ../metaboxes.php:765
|
429 |
+
#, fuzzy
|
430 |
+
msgid "Five Column"
|
431 |
+
msgstr "Четыре колонки"
|
432 |
+
|
433 |
+
#: ../metaboxes.php:271 ../metaboxes.php:766
|
434 |
+
msgid "Six Column"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
# @ virtue
|
438 |
+
#: ../metaboxes.php:275
|
439 |
#, fuzzy
|
440 |
msgid "Portfolio Slider/Images"
|
441 |
msgstr "Изображения для слайдера портфолио"
|
442 |
|
443 |
# @ virtue
|
444 |
+
#: ../metaboxes.php:276
|
445 |
#, fuzzy
|
446 |
msgid "Add images for post here"
|
447 |
msgstr "Добавить изображения в галерею"
|
448 |
|
449 |
# @ virtue
|
450 |
+
#: ../metaboxes.php:281 ../metaboxes.php:566 ../metaboxes.php:770
|
451 |
+
#: ../metaboxes.php:997
|
452 |
msgid "Max Image/Slider Height"
|
453 |
msgstr "Максимальная высота Изображения/Слайдера"
|
454 |
|
455 |
# @ virtue
|
456 |
+
#: ../metaboxes.php:282
|
457 |
#, fuzzy
|
458 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
459 |
msgstr ""
|
460 |
"По умолчанию: 450 <b>(Внимание, просто введите значение, например: 350)</b>"
|
461 |
|
462 |
# @ virtue
|
463 |
+
#: ../metaboxes.php:287 ../metaboxes.php:572 ../metaboxes.php:776
|
464 |
+
#: ../metaboxes.php:1003
|
465 |
msgid "Max Image/Slider Width"
|
466 |
msgstr "Максимальная ширина Изображения/Слайдера"
|
467 |
|
468 |
# @ virtue
|
469 |
+
#: ../metaboxes.php:288
|
470 |
#, fuzzy
|
471 |
msgid ""
|
472 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
476 |
"например: 350)</b>"
|
477 |
|
478 |
# @ virtue
|
479 |
+
#: ../metaboxes.php:293 ../metaboxes.php:792
|
480 |
msgid "Value 01 Title"
|
481 |
msgstr "Название параметра 01"
|
482 |
|
483 |
# @ virtue
|
484 |
+
#: ../metaboxes.php:294 ../metaboxes.php:793
|
485 |
msgid "ex. Project Type:"
|
486 |
msgstr "например: Тип проекта:"
|
487 |
|
488 |
# @ virtue
|
489 |
+
#: ../metaboxes.php:299 ../metaboxes.php:798
|
490 |
msgid "Value 01 Description"
|
491 |
msgstr "Описание параметра 01"
|
492 |
|
493 |
# @ virtue
|
494 |
+
#: ../metaboxes.php:300 ../metaboxes.php:799
|
495 |
msgid "ex. Character Illustration"
|
496 |
msgstr "например: Описание иллюстрации"
|
497 |
|
498 |
# @ virtue
|
499 |
+
#: ../metaboxes.php:305 ../metaboxes.php:804
|
500 |
msgid "Value 02 Title"
|
501 |
msgstr "Название параметра 02"
|
502 |
|
503 |
# @ virtue
|
504 |
+
#: ../metaboxes.php:306 ../metaboxes.php:805
|
505 |
msgid "ex. Skills Needed:"
|
506 |
msgstr "например: Требуемые навыки:"
|
507 |
|
508 |
# @ virtue
|
509 |
+
#: ../metaboxes.php:311 ../metaboxes.php:810
|
510 |
msgid "Value 02 Description"
|
511 |
msgstr "Описание параметра 02"
|
512 |
|
513 |
# @ virtue
|
514 |
+
#: ../metaboxes.php:312 ../metaboxes.php:811
|
515 |
msgid "ex. Photoshop, Illustrator"
|
516 |
msgstr "например: Фотошоп, Иллюстратор"
|
517 |
|
518 |
# @ virtue
|
519 |
+
#: ../metaboxes.php:317 ../metaboxes.php:816
|
520 |
msgid "Value 03 Title"
|
521 |
msgstr "Название параметра 03"
|
522 |
|
523 |
# @ virtue
|
524 |
+
#: ../metaboxes.php:318 ../metaboxes.php:817
|
525 |
msgid "ex. Customer:"
|
526 |
msgstr "например: Клиент:"
|
527 |
|
528 |
# @ virtue
|
529 |
+
#: ../metaboxes.php:323 ../metaboxes.php:822
|
530 |
msgid "Value 03 Description"
|
531 |
msgstr "Описание параметра 03"
|
532 |
|
533 |
# @ virtue
|
534 |
+
#: ../metaboxes.php:324 ../metaboxes.php:823
|
535 |
msgid "ex. Example Inc"
|
536 |
msgstr "например: Ромашка Инкорпорейтед"
|
537 |
|
538 |
# @ virtue
|
539 |
+
#: ../metaboxes.php:329 ../metaboxes.php:828
|
540 |
msgid "Value 04 Title"
|
541 |
msgstr "Название параметра 04"
|
542 |
|
543 |
# @ virtue
|
544 |
+
#: ../metaboxes.php:330 ../metaboxes.php:829
|
545 |
msgid "ex. Project Year:"
|
546 |
msgstr "например: Год проекта:"
|
547 |
|
548 |
# @ virtue
|
549 |
+
#: ../metaboxes.php:335 ../metaboxes.php:834
|
550 |
msgid "Value 04 Description"
|
551 |
msgstr "Описание параметра 04"
|
552 |
|
553 |
# @ virtue
|
554 |
+
#: ../metaboxes.php:336 ../metaboxes.php:835
|
555 |
msgid "ex. 2013"
|
556 |
msgstr "например: 2013"
|
557 |
|
558 |
# @ virtue
|
559 |
+
#: ../metaboxes.php:341 ../metaboxes.php:840
|
560 |
msgid "External Website"
|
561 |
msgstr "Внешний сайт"
|
562 |
|
563 |
# @ virtue
|
564 |
+
#: ../metaboxes.php:342 ../metaboxes.php:841
|
565 |
msgid "ex. Website:"
|
566 |
msgstr "например: Сайт:"
|
567 |
|
568 |
# @ virtue
|
569 |
+
#: ../metaboxes.php:347 ../metaboxes.php:846
|
570 |
msgid "Website Address"
|
571 |
msgstr "Адрес сайта"
|
572 |
|
573 |
# @ virtue
|
574 |
+
#: ../metaboxes.php:348 ../metaboxes.php:847
|
575 |
msgid "ex. http://www.example.com"
|
576 |
msgstr "например: https://www.example.com"
|
577 |
|
578 |
# @ virtue
|
579 |
+
#: ../metaboxes.php:353 ../metaboxes.php:852
|
580 |
msgid "If Video Project"
|
581 |
msgstr "Видео-проект"
|
582 |
|
583 |
# @ virtue
|
584 |
+
#: ../metaboxes.php:354 ../metaboxes.php:579 ../metaboxes.php:716
|
585 |
+
#: ../metaboxes.php:853 ../metaboxes.php:1020
|
586 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
587 |
msgstr "Разместите ваш встроенный код здесь, работает для youtube, vimeo..."
|
588 |
|
589 |
# @ virtue
|
590 |
+
#: ../metaboxes.php:363
|
591 |
#, fuzzy
|
592 |
msgid "Bottom Carousel Options"
|
593 |
msgstr "Опции страницы контактов"
|
594 |
|
595 |
# @ virtue
|
596 |
+
#: ../metaboxes.php:370 ../metaboxes.php:868
|
597 |
msgid "Carousel Title"
|
598 |
msgstr "Заголовок карусели"
|
599 |
|
600 |
# @ virtue
|
601 |
+
#: ../metaboxes.php:371 ../metaboxes.php:869
|
602 |
msgid "ex. Similar Projects"
|
603 |
msgstr "например, Подобные проекты"
|
604 |
|
605 |
# @ virtue
|
606 |
+
#: ../metaboxes.php:376
|
607 |
#, fuzzy
|
608 |
msgid "Bottom Portfolio Carousel"
|
609 |
msgstr "Карусель портфолио"
|
610 |
|
611 |
# @ virtue
|
612 |
+
#: ../metaboxes.php:377
|
613 |
#, fuzzy
|
614 |
msgid "Display a carousel with portfolio items below project?"
|
615 |
msgstr "Отображать карусель с подобными элементами портфолио под проектом?"
|
616 |
|
617 |
# @ virtue
|
618 |
+
#: ../metaboxes.php:382 ../metaboxes.php:602 ../metaboxes.php:624
|
619 |
+
#: ../metaboxes.php:633 ../metaboxes.php:788 ../metaboxes.php:863
|
620 |
+
#: ../metaboxes.php:963 ../metaboxes.php:1015 ../metaboxes.php:1043
|
621 |
+
#: ../metaboxes.php:1059 ../metaboxes.php:1068
|
622 |
msgid "No"
|
623 |
msgstr "Нет"
|
624 |
|
625 |
# @ virtue
|
626 |
+
#: ../metaboxes.php:383 ../metaboxes.php:601 ../metaboxes.php:623
|
627 |
+
#: ../metaboxes.php:634 ../metaboxes.php:787 ../metaboxes.php:964
|
628 |
+
#: ../metaboxes.php:1014 ../metaboxes.php:1042 ../metaboxes.php:1058
|
629 |
+
#: ../metaboxes.php:1069
|
630 |
msgid "Yes"
|
631 |
msgstr "Да"
|
632 |
|
633 |
# @ virtue
|
634 |
+
#: ../metaboxes.php:387
|
635 |
#, fuzzy
|
636 |
msgid "Carousel Items"
|
637 |
msgstr "Заголовок карусели"
|
638 |
|
639 |
# @ virtue
|
640 |
+
#: ../metaboxes.php:393
|
641 |
#, fuzzy
|
642 |
msgid "All Portfolio Posts"
|
643 |
msgstr "Опции поста портфолио"
|
644 |
|
645 |
+
#: ../metaboxes.php:394
|
646 |
msgid "Only of same Portfolio Type"
|
647 |
msgstr ""
|
648 |
|
649 |
# @ virtue
|
650 |
+
#: ../metaboxes.php:398
|
651 |
#, fuzzy
|
652 |
msgid "Carousel Order"
|
653 |
msgstr "Заголовок карусели"
|
654 |
|
655 |
# @ virtue
|
656 |
+
#: ../metaboxes.php:403 ../metaboxes.php:468 ../metaboxes.php:910
|
657 |
msgid "Menu Order"
|
658 |
msgstr "Порядок меню"
|
659 |
|
660 |
# @ virtue
|
661 |
+
#: ../metaboxes.php:404 ../metaboxes.php:469 ../metaboxes.php:911
|
662 |
msgid "Title"
|
663 |
msgstr "Заголовок"
|
664 |
|
665 |
# @ virtue
|
666 |
+
#: ../metaboxes.php:405 ../metaboxes.php:470 ../metaboxes.php:912
|
667 |
msgid "Date"
|
668 |
msgstr "Дата"
|
669 |
|
670 |
# @ virtue
|
671 |
+
#: ../metaboxes.php:406 ../metaboxes.php:471 ../metaboxes.php:913
|
672 |
msgid "Random"
|
673 |
msgstr "Случайно"
|
674 |
|
675 |
# @ virtue
|
676 |
+
#: ../metaboxes.php:414 ../metaboxes.php:878
|
677 |
msgid "Portfolio Page Options"
|
678 |
msgstr "Опции страницы Портфолио"
|
679 |
|
680 |
+
#: ../metaboxes.php:422 ../shortcodes/pullquote/quote_popup.php:59
|
681 |
msgid "Style"
|
682 |
msgstr ""
|
683 |
|
684 |
# @ virtue
|
685 |
+
#: ../metaboxes.php:428
|
686 |
#, fuzzy
|
687 |
msgid "Post Boxes"
|
688 |
msgstr "Разместить видео-пост"
|
689 |
|
690 |
+
#: ../metaboxes.php:429
|
691 |
msgid "Flat with Margin"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../metaboxes.php:433
|
695 |
msgid "Hover Style"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../metaboxes.php:439
|
699 |
msgid "Light"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../metaboxes.php:440
|
703 |
msgid "Dark"
|
704 |
msgstr ""
|
705 |
|
706 |
# @ virtue
|
707 |
+
#: ../metaboxes.php:441 ../shortcodes/btns/btns_popup.php:134
|
708 |
msgid "Primary Color"
|
709 |
msgstr "Основной цвет"
|
710 |
|
711 |
# @ virtue
|
712 |
+
#: ../metaboxes.php:445 ../metaboxes.php:887
|
713 |
msgid "Columns"
|
714 |
msgstr "Колонки"
|
715 |
|
716 |
# @ virtue
|
717 |
+
#: ../metaboxes.php:457 ../metaboxes.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
718 |
msgid "Portfolio Work Types"
|
719 |
msgstr "Виды работ портфолио"
|
720 |
|
721 |
# @ virtue
|
722 |
+
#: ../metaboxes.php:463 ../metaboxes.php:905
|
723 |
msgid "Order Items By"
|
724 |
msgstr "Сортировать элементы по"
|
725 |
|
726 |
# @ virtue
|
727 |
+
#: ../metaboxes.php:475 ../metaboxes.php:917
|
728 |
msgid "Items per Page"
|
729 |
msgstr "Элементов на страницу"
|
730 |
|
731 |
# @ virtue
|
732 |
+
#: ../metaboxes.php:476 ../metaboxes.php:918
|
733 |
msgid "How many portfolio items per page"
|
734 |
msgstr "Количество элементов портфолио на одной странице"
|
735 |
|
736 |
# @ virtue
|
737 |
+
#: ../metaboxes.php:480 ../metaboxes.php:922
|
738 |
msgid "All"
|
739 |
msgstr "Все"
|
740 |
|
741 |
# @ virtue
|
742 |
+
#: ../metaboxes.php:498
|
743 |
#, fuzzy
|
744 |
msgid "Image Ratio?"
|
745 |
msgstr "Настройки повторяемости изображения"
|
746 |
|
747 |
+
#: ../metaboxes.php:504
|
748 |
msgid "Square 1:1"
|
749 |
msgstr ""
|
750 |
|
751 |
# @ virtue
|
752 |
+
#: ../metaboxes.php:505
|
753 |
#, fuzzy
|
754 |
msgid "Portrait 3:4"
|
755 |
msgstr "Портретное изображение"
|
756 |
|
757 |
# @ virtue
|
758 |
+
#: ../metaboxes.php:506
|
759 |
#, fuzzy
|
760 |
msgid "Landscape 4:3"
|
761 |
msgstr "Пейзажное изображение"
|
762 |
|
763 |
# @ virtue
|
764 |
+
#: ../metaboxes.php:507
|
765 |
#, fuzzy
|
766 |
msgid "Wide Landscape 4:2"
|
767 |
msgstr "Пейзажное изображение"
|
768 |
|
769 |
# @ virtue
|
770 |
+
#: ../metaboxes.php:511 ../metaboxes.php:946
|
771 |
msgid "Display Item Work Types"
|
772 |
msgstr "Отображать виды работ элемента"
|
773 |
|
774 |
# @ virtue
|
775 |
+
#: ../metaboxes.php:517 ../metaboxes.php:952
|
776 |
msgid "Display Item Excerpt"
|
777 |
msgstr "Отображать выдержки описания элемента"
|
778 |
|
779 |
# @ virtue
|
780 |
+
#: ../metaboxes.php:523
|
781 |
#, fuzzy
|
782 |
msgid "Add Lightbox link in each item"
|
783 |
msgstr "Добавить ссылку Lightbox в правом верхнем углу каждого элемента"
|
784 |
|
785 |
# @ virtue
|
786 |
+
#: ../metaboxes.php:532 ../metaboxes.php:971
|
787 |
msgid "Feature Page Options"
|
788 |
msgstr "Опции страницы свойств"
|
789 |
|
790 |
# @ virtue
|
791 |
+
#: ../metaboxes.php:541
|
792 |
#, fuzzy
|
793 |
msgid "Header Options"
|
794 |
msgstr "Настройки шрифтов заголовков"
|
795 |
|
796 |
+
#: ../metaboxes.php:542
|
797 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
798 |
msgstr ""
|
799 |
|
800 |
# @ virtue
|
801 |
+
#: ../metaboxes.php:547
|
802 |
msgid "Page Title"
|
803 |
msgstr "Заголовок страницы"
|
804 |
|
805 |
# @ virtue
|
806 |
+
#: ../metaboxes.php:554 ../metaboxes.php:1130
|
807 |
msgid "Slider Images"
|
808 |
msgstr "Изображения слайдера"
|
809 |
|
810 |
+
#: ../metaboxes.php:555
|
811 |
msgid "Add for flex, carousel, and image carousel."
|
812 |
msgstr ""
|
813 |
|
814 |
# @ virtue
|
815 |
+
#: ../metaboxes.php:560
|
816 |
#, fuzzy
|
817 |
msgid "If Cyclone Slider"
|
818 |
msgstr "Слайдер изображений"
|
819 |
|
820 |
+
#: ../metaboxes.php:561
|
821 |
msgid ""
|
822 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
823 |
msgstr ""
|
824 |
|
825 |
# @ virtue
|
826 |
+
#: ../metaboxes.php:573
|
827 |
#, fuzzy
|
828 |
msgid ""
|
829 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
833 |
"например: 350)</b>"
|
834 |
|
835 |
# @ virtue
|
836 |
+
#: ../metaboxes.php:578 ../metaboxes.php:715 ../metaboxes.php:1019
|
837 |
msgid "If Video Post"
|
838 |
msgstr "Если видео-пост"
|
839 |
|
840 |
# @ virtue
|
841 |
+
#: ../metaboxes.php:587 ../metaboxes.php:1028
|
842 |
msgid "Contact Page Options"
|
843 |
msgstr "Опции страницы контактов"
|
844 |
|
845 |
# @ virtue
|
846 |
+
#: ../metaboxes.php:596 ../metaboxes.php:1037
|
847 |
msgid "Use Contact Form"
|
848 |
msgstr "Использовать контактную форму"
|
849 |
|
850 |
# @ virtue
|
851 |
+
#: ../metaboxes.php:606 ../metaboxes.php:1047
|
852 |
msgid "Contact Form Title"
|
853 |
msgstr "Заголовок контактной формы"
|
854 |
|
855 |
# @ virtue
|
856 |
+
#: ../metaboxes.php:607 ../metaboxes.php:1048
|
857 |
msgid "ex. Send us an Email"
|
858 |
msgstr "например, Отправьте нам сообщение по электронной почте"
|
859 |
|
860 |
# @ virtue
|
861 |
+
#: ../metaboxes.php:612
|
862 |
#, fuzzy
|
863 |
msgid "Contact Form Email Recipient"
|
864 |
msgstr "Адрес электронной почты для контактной формы"
|
865 |
|
866 |
+
#: ../metaboxes.php:613
|
867 |
msgid "ex. joe@gmail.com"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: ../metaboxes.php:618 ../metaboxes.php:1053
|
871 |
msgid "Use Simple Math Question"
|
872 |
msgstr ""
|
873 |
|
874 |
# @ virtue
|
875 |
+
#: ../metaboxes.php:628 ../metaboxes.php:1063
|
876 |
msgid "Use Map"
|
877 |
msgstr "Использовать карту"
|
878 |
|
879 |
# @ virtue
|
880 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
881 |
msgid "Address"
|
882 |
msgstr "Адрес"
|
883 |
|
884 |
# @ virtue
|
885 |
+
#: ../metaboxes.php:639 ../metaboxes.php:1074
|
886 |
msgid "Enter your Location"
|
887 |
msgstr "Введите ваше местоположение"
|
888 |
|
889 |
# @ virtue
|
890 |
+
#: ../metaboxes.php:644 ../metaboxes.php:1079
|
891 |
msgid "Map Type"
|
892 |
msgstr "Тип карты"
|
893 |
|
894 |
# @ virtue
|
895 |
+
#: ../metaboxes.php:649 ../metaboxes.php:1084
|
896 |
msgid "ROADMAP"
|
897 |
msgstr "ДОРОГИ"
|
898 |
|
899 |
# @ virtue
|
900 |
+
#: ../metaboxes.php:650 ../metaboxes.php:1085
|
901 |
msgid "HYBRID"
|
902 |
msgstr "ГИБРИД"
|
903 |
|
904 |
# @ virtue
|
905 |
+
#: ../metaboxes.php:651 ../metaboxes.php:1086
|
906 |
msgid "TERRAIN"
|
907 |
msgstr "МЕСТНОСТЬ"
|
908 |
|
909 |
# @ virtue
|
910 |
+
#: ../metaboxes.php:652 ../metaboxes.php:1087
|
911 |
msgid "SATELLITE"
|
912 |
msgstr "СПУТНИК"
|
913 |
|
914 |
# @ virtue
|
915 |
+
#: ../metaboxes.php:656 ../metaboxes.php:1091
|
916 |
msgid "Map Zoom Level"
|
917 |
msgstr "Масштаб"
|
918 |
|
919 |
# @ virtue
|
920 |
+
#: ../metaboxes.php:657 ../metaboxes.php:1092
|
921 |
msgid "A good place to start is 15"
|
922 |
msgstr "Наболее подходящий начальный масштаб 15"
|
923 |
|
924 |
# @ virtue
|
925 |
+
#: ../metaboxes.php:662 ../metaboxes.php:1097
|
926 |
msgid "1 (World View)"
|
927 |
msgstr "1 (Вид карты мира)"
|
928 |
|
929 |
# @ virtue
|
930 |
+
#: ../metaboxes.php:682 ../metaboxes.php:1117
|
931 |
msgid "21 (Street View)"
|
932 |
msgstr "21 (Вид улиц)"
|
933 |
|
934 |
# @ virtue
|
935 |
+
#: ../metaboxes.php:686 ../metaboxes.php:1121
|
936 |
msgid "Map Height"
|
937 |
msgstr "Высота карты"
|
938 |
|
939 |
# @ virtue
|
940 |
+
#: ../metaboxes.php:687 ../metaboxes.php:1122
|
941 |
msgid "Default is 300"
|
942 |
msgstr "По умолчанию 300"
|
943 |
|
944 |
# @ virtue
|
945 |
+
#: ../metaboxes.php:707
|
946 |
msgid "Post Video Box"
|
947 |
msgstr "Разместить видео-пост"
|
948 |
|
949 |
# @ virtue
|
950 |
+
#: ../metaboxes.php:737
|
951 |
msgid "Beside"
|
952 |
msgstr "Рядом"
|
953 |
|
954 |
# @ virtue
|
955 |
+
#: ../metaboxes.php:749 ../metaboxes.php:985
|
956 |
msgid "Image Slider"
|
957 |
msgstr "Слайдер изображений"
|
958 |
|
959 |
# @ virtue
|
960 |
+
#: ../metaboxes.php:771
|
961 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
962 |
msgstr ""
|
963 |
"По умолчанию: 450 <b>(Внимание, просто введите значение, например: 350)</b>"
|
964 |
|
965 |
# @ virtue
|
966 |
+
#: ../metaboxes.php:777
|
967 |
#, fuzzy
|
968 |
msgid ""
|
969 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
973 |
"например: 350)</b>"
|
974 |
|
975 |
# @ virtue
|
976 |
+
#: ../metaboxes.php:782
|
977 |
#, fuzzy
|
978 |
msgid "Auto Play Slider?"
|
979 |
msgstr "Автозапуск?"
|
980 |
|
981 |
# @ virtue
|
982 |
+
#: ../metaboxes.php:858
|
983 |
msgid "Similar Portfolio Item Carousel"
|
984 |
msgstr "Карусель похожих элементов портфолио"
|
985 |
|
986 |
# @ virtue
|
987 |
+
#: ../metaboxes.php:859
|
988 |
msgid "Display a carousel with similar portfolio items below project?"
|
989 |
msgstr "Отображать карусель с подобными элементами портфолио под проектом?"
|
990 |
|
991 |
# @ virtue
|
992 |
+
#: ../metaboxes.php:864
|
993 |
msgid "Yes - Display Recent Projects"
|
994 |
msgstr "Да - отображать недавние проекты"
|
995 |
|
996 |
# @ virtue
|
997 |
+
#: ../metaboxes.php:940
|
998 |
msgid "Set image height"
|
999 |
msgstr "Установить высоту изображения"
|
1000 |
|
1001 |
# @ virtue
|
1002 |
+
#: ../metaboxes.php:941
|
1003 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
1004 |
msgstr ""
|
1005 |
"По умолчанию соотношение 1:1 <b>(Внимание, просто введите значение, "
|
1006 |
"например: 350)</b>"
|
1007 |
|
1008 |
# @ virtue
|
1009 |
+
#: ../metaboxes.php:958
|
1010 |
msgid "Add Lightbox link in the top right of each item"
|
1011 |
msgstr "Добавить ссылку Lightbox в правом верхнем углу каждого элемента"
|
1012 |
|
1013 |
# @ virtue
|
1014 |
+
#: ../metaboxes.php:980
|
1015 |
msgid "Feature Options"
|
1016 |
msgstr "Опции свойства"
|
1017 |
|
1018 |
+
#: ../metaboxes.php:981
|
1019 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
# @ virtue
|
1023 |
+
#: ../metaboxes.php:991 ../metaboxes.php:1137
|
1024 |
+
#, fuzzy
|
1025 |
+
msgid "Slider Gallery"
|
1026 |
+
msgstr "Изображения слайдера"
|
1027 |
+
|
1028 |
+
# @ virtue
|
1029 |
+
#: ../metaboxes.php:998
|
1030 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
1031 |
msgstr ""
|
1032 |
"По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
|
1033 |
|
1034 |
# @ virtue
|
1035 |
+
#: ../metaboxes.php:1004
|
1036 |
#, fuzzy
|
1037 |
msgid ""
|
1038 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
1041 |
"По умолчанию: 400 <b>(Внимание, просто введите значение, например: 350)</b>"
|
1042 |
|
1043 |
# @ virtue
|
1044 |
+
#: ../metaboxes.php:1009
|
1045 |
msgid "Use Lightbox for Feature Image"
|
1046 |
msgstr "Использовать Lightbox для миниатюр"
|
1047 |
|
1048 |
# @ virtue
|
1049 |
+
#: ../metaboxes.php:1010
|
1050 |
msgid ""
|
1051 |
"If feature option is set to image, choose to use lightbox link with image."
|
1052 |
msgstr ""
|
1053 |
"Если опция фичи установлена в изображение, выберите использовать Lightbox с "
|
1054 |
"изображением."
|
1055 |
|
1056 |
+
#: ../page-contact.php:13 ../template-contact.php:13
|
|
|
|
|
|
|
|
|
|
|
|
|
1057 |
msgid "This field is required."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
# @ virtue
|
1061 |
+
#: ../page-contact.php:14 ../template-contact.php:14
|
1062 |
#, fuzzy
|
1063 |
msgid "Please enter a valid email address."
|
1064 |
msgstr "Пожалуйста, укажите адрес своей электронной почты."
|
1065 |
|
1066 |
+
#: ../page-contact.php:97 ../template-contact.php:98
|
1067 |
msgid "Check your math."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
# @ virtue
|
1071 |
+
#: ../page-contact.php:102 ../template-contact.php:103
|
1072 |
msgid "Please enter your name."
|
1073 |
msgstr "Пожалуйста, укажите свое имя."
|
1074 |
|
1075 |
# @ virtue
|
1076 |
+
#: ../page-contact.php:109 ../template-contact.php:110
|
1077 |
msgid "Please enter your email address."
|
1078 |
msgstr "Пожалуйста, укажите адрес своей электронной почты."
|
1079 |
|
1080 |
# @ virtue
|
1081 |
+
#: ../page-contact.php:112 ../template-contact.php:113
|
1082 |
msgid "You entered an invalid email address."
|
1083 |
msgstr "Вы ввели некорректный адрес электронной почты."
|
1084 |
|
1085 |
# @ virtue
|
1086 |
+
#: ../page-contact.php:119 ../template-contact.php:120
|
1087 |
msgid "Please enter a message."
|
1088 |
msgstr "Пожалуйста, введите текст сообщения."
|
1089 |
|
1090 |
# @ virtue
|
1091 |
+
#: ../page-contact.php:136 ../pagetemplater.php:28 ../pagetemplater.php:116
|
1092 |
+
#: ../template-contact.php:137
|
1093 |
#, fuzzy
|
1094 |
msgid "Contact"
|
1095 |
msgstr " Контакт"
|
1096 |
|
1097 |
# @ virtue
|
1098 |
+
#: ../page-contact.php:136 ../template-contact.php:137
|
1099 |
msgid "From"
|
1100 |
msgstr "От"
|
1101 |
|
1102 |
# @ virtue
|
1103 |
+
#: ../page-contact.php:137 ../template-contact.php:138
|
1104 |
msgid "Name"
|
1105 |
msgstr "Имя"
|
1106 |
|
1107 |
# @ virtue
|
1108 |
+
#: ../page-contact.php:138 ../template-contact.php:139
|
1109 |
msgid "Email"
|
1110 |
msgstr "Электронная почта"
|
1111 |
|
1112 |
# @ virtue
|
1113 |
+
#: ../page-contact.php:139 ../template-contact.php:140
|
1114 |
#, fuzzy
|
1115 |
msgid "Comments"
|
1116 |
msgstr "Комментарий"
|
1117 |
|
1118 |
# @ virtue
|
1119 |
+
#: ../page-contact.php:177 ../template-contact.php:175
|
1120 |
msgid "Thanks, your email was sent successfully."
|
1121 |
msgstr "Спасибо, ваше сообщение успешно отправлено."
|
1122 |
|
1123 |
# @ virtue
|
1124 |
+
#: ../page-contact.php:182 ../template-contact.php:179
|
1125 |
msgid "Sorry, an error occured."
|
1126 |
msgstr "Извините, возникла ошибка."
|
1127 |
|
1128 |
# @ virtue
|
1129 |
+
#: ../page-contact.php:188 ../template-contact.php:185
|
1130 |
msgid "Name:"
|
1131 |
msgstr "Имя:"
|
1132 |
|
1133 |
# @ virtue
|
1134 |
+
#: ../page-contact.php:196 ../template-contact.php:195
|
1135 |
+
msgid "Email:"
|
1136 |
+
msgstr "Адрес эл.почты:"
|
1137 |
|
1138 |
# @ virtue
|
1139 |
+
#: ../page-contact.php:204 ../template-contact.php:202
|
1140 |
+
#, fuzzy
|
1141 |
+
msgid "Message:"
|
1142 |
msgstr "Сообщение:"
|
1143 |
|
1144 |
# @ virtue
|
1145 |
+
#: ../page-contact.php:224 ../template-contact.php:220
|
1146 |
msgid "Send Email"
|
1147 |
msgstr "Отправить сообщение"
|
1148 |
|
1149 |
# @ virtue
|
1150 |
+
#: ../post-types.php:5 ../post-types.php:17
|
1151 |
msgid "Portfolio"
|
1152 |
msgstr "Портфолио"
|
1153 |
|
1154 |
# @ virtue
|
1155 |
+
#: ../post-types.php:6
|
1156 |
#, fuzzy
|
1157 |
msgid "Portfolio Item"
|
1158 |
msgstr "Портфолио"
|
1159 |
|
1160 |
# @ virtue
|
1161 |
+
#: ../post-types.php:7
|
1162 |
#, fuzzy
|
1163 |
msgid "Add New"
|
1164 |
msgstr "Добавить отзыв"
|
1165 |
|
1166 |
# @ virtue
|
1167 |
+
#: ../post-types.php:8
|
1168 |
#, fuzzy
|
1169 |
msgid "Add New Portfolio Item"
|
1170 |
msgstr "Страница портфолио всех проектов"
|
1171 |
|
1172 |
# @ virtue
|
1173 |
+
#: ../post-types.php:9
|
1174 |
#, fuzzy
|
1175 |
msgid "Edit Portfolio Item"
|
1176 |
msgstr "Портфолио"
|
1177 |
|
1178 |
# @ virtue
|
1179 |
+
#: ../post-types.php:10
|
1180 |
#, fuzzy
|
1181 |
msgid "New Portfolio Item"
|
1182 |
msgstr "Портфолио"
|
1183 |
|
1184 |
# @ virtue
|
1185 |
+
#: ../post-types.php:11
|
1186 |
#, fuzzy
|
1187 |
msgid "All Portfolio"
|
1188 |
msgstr "Портфолио"
|
1189 |
|
1190 |
# @ virtue
|
1191 |
+
#: ../post-types.php:12
|
1192 |
#, fuzzy
|
1193 |
msgid "View Portfolio Item"
|
1194 |
msgstr "Портфолио"
|
1195 |
|
1196 |
# @ virtue
|
1197 |
+
#: ../post-types.php:13
|
1198 |
#, fuzzy
|
1199 |
msgid "Search Portfolio"
|
1200 |
msgstr "Портфолио"
|
1201 |
|
1202 |
# @ virtue
|
1203 |
+
#: ../post-types.php:14
|
1204 |
#, fuzzy
|
1205 |
msgid "No Portfolio Item found"
|
1206 |
msgstr "Карусель похожих элементов портфолио"
|
1207 |
|
1208 |
+
#: ../post-types.php:15
|
1209 |
msgid "No Portfolio Items found in Trash"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
# @ virtue
|
1213 |
+
#: ../post-types.php:37
|
1214 |
#, fuzzy
|
1215 |
msgid "Portfolio Type"
|
1216 |
msgstr "Виды работ портфолио"
|
1217 |
|
1218 |
# @ virtue
|
1219 |
+
#: ../post-types.php:38
|
1220 |
msgid "Type"
|
1221 |
msgstr "Тип"
|
1222 |
|
1223 |
# @ virtue
|
1224 |
+
#: ../post-types.php:39
|
1225 |
#, fuzzy
|
1226 |
msgid "Search Type"
|
1227 |
msgstr "Искать"
|
1228 |
|
1229 |
# @ virtue
|
1230 |
+
#: ../post-types.php:40
|
1231 |
#, fuzzy
|
1232 |
msgid "All Type"
|
1233 |
msgstr "Тип"
|
1234 |
|
1235 |
# @ virtue
|
1236 |
+
#: ../post-types.php:41
|
1237 |
#, fuzzy
|
1238 |
msgid "Parent Type"
|
1239 |
msgstr "например: Тип проекта:"
|
1240 |
|
1241 |
# @ virtue
|
1242 |
+
#: ../post-types.php:42
|
1243 |
#, fuzzy
|
1244 |
msgid "Parent Type:"
|
1245 |
msgstr "например: Тип проекта:"
|
1246 |
|
1247 |
# @ virtue
|
1248 |
+
#: ../post-types.php:43
|
1249 |
#, fuzzy
|
1250 |
msgid "Edit Type"
|
1251 |
msgstr "Тип"
|
1252 |
|
1253 |
# @ virtue
|
1254 |
+
#: ../post-types.php:44
|
1255 |
#, fuzzy
|
1256 |
msgid "Update Type"
|
1257 |
msgstr "Пересчитать итог"
|
1258 |
|
1259 |
+
#: ../post-types.php:45
|
1260 |
msgid "Add New Type"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: ../post-types.php:46
|
1264 |
msgid "New Type Name"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../shortcode_ajax.php:4 ../shortcode_ajax.php:12 ../shortcode_ajax.php:20
|
1268 |
+
#: ../shortcode_ajax.php:28 ../shortcode_ajax.php:36 ../shortcode_ajax.php:44
|
1269 |
+
#: ../shortcode_ajax.php:52 ../shortcode_ajax.php:60
|
1270 |
msgid "You are not allowed to be here"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: ../shortcodes.php:149 ../shortcodes.php:152 ../shortcodes.php:175
|
1274 |
+
#: ../shortcodes.php:178
|
1275 |
msgid "please specify correct url"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: ../shortcodes/accordion/accordion_popup.php:10
|
1279 |
msgid "Insert Accordion or Tabs"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../shortcodes/accordion/accordion_popup.php:59
|
1283 |
msgid "Accordion or Tabs"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../shortcodes/accordion/accordion_popup.php:61
|
1287 |
msgid "Accordion"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../shortcodes/accordion/accordion_popup.php:62
|
1291 |
msgid "Tabs"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../shortcodes/accordion/accordion_popup.php:66
|
1295 |
+
#: ../shortcodes/btns/btns_popup.php:230
|
1296 |
+
#: ../shortcodes/divider/divider_popup.php:80
|
1297 |
+
#: ../shortcodes/pullquote/quote_popup.php:77
|
1298 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:85
|
1299 |
+
#: ../shortcodes/youtube/youtube_popup.php:85
|
1300 |
msgid "Insert"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: ../shortcodes/btns/btns_popup.php:10
|
1304 |
msgid "Insert Button"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: ../shortcodes/btns/btns_popup.php:99
|
1308 |
msgid "Button Text"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: ../shortcodes/btns/btns_popup.php:105
|
1312 |
msgid "Text Color"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: ../shortcodes/btns/btns_popup.php:107 ../shortcodes/btns/btns_popup.php:140
|
1316 |
+
#: ../shortcodes/btns/btns_popup.php:163 ../shortcodes/btns/btns_popup.php:196
|
1317 |
msgid "White"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../shortcodes/btns/btns_popup.php:108 ../shortcodes/btns/btns_popup.php:141
|
1321 |
+
#: ../shortcodes/btns/btns_popup.php:164 ../shortcodes/btns/btns_popup.php:197
|
1322 |
msgid "Off-White"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: ../shortcodes/btns/btns_popup.php:109 ../shortcodes/btns/btns_popup.php:135
|
1326 |
+
#: ../shortcodes/btns/btns_popup.php:165 ../shortcodes/btns/btns_popup.php:191
|
1327 |
msgid "Black"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: ../shortcodes/btns/btns_popup.php:110 ../shortcodes/btns/btns_popup.php:136
|
1331 |
+
#: ../shortcodes/btns/btns_popup.php:166 ../shortcodes/btns/btns_popup.php:192
|
1332 |
msgid "Light-Gray"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: ../shortcodes/btns/btns_popup.php:111 ../shortcodes/btns/btns_popup.php:137
|
1336 |
+
#: ../shortcodes/btns/btns_popup.php:167 ../shortcodes/btns/btns_popup.php:193
|
1337 |
msgid "Gray"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../shortcodes/btns/btns_popup.php:112 ../shortcodes/btns/btns_popup.php:138
|
1341 |
+
#: ../shortcodes/btns/btns_popup.php:168 ../shortcodes/btns/btns_popup.php:194
|
1342 |
msgid "Dark-Gray"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: ../shortcodes/btns/btns_popup.php:113 ../shortcodes/btns/btns_popup.php:139
|
1346 |
+
#: ../shortcodes/btns/btns_popup.php:169 ../shortcodes/btns/btns_popup.php:195
|
1347 |
msgid "Silver"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: ../shortcodes/btns/btns_popup.php:114 ../shortcodes/btns/btns_popup.php:142
|
1351 |
+
#: ../shortcodes/btns/btns_popup.php:170 ../shortcodes/btns/btns_popup.php:198
|
1352 |
msgid "Red"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../shortcodes/btns/btns_popup.php:115 ../shortcodes/btns/btns_popup.php:143
|
1356 |
+
#: ../shortcodes/btns/btns_popup.php:171 ../shortcodes/btns/btns_popup.php:199
|
1357 |
msgid "Blue"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: ../shortcodes/btns/btns_popup.php:116 ../shortcodes/btns/btns_popup.php:144
|
1361 |
+
#: ../shortcodes/btns/btns_popup.php:172 ../shortcodes/btns/btns_popup.php:200
|
1362 |
msgid "Green"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
# @ virtue
|
1366 |
+
#: ../shortcodes/btns/btns_popup.php:117 ../shortcodes/btns/btns_popup.php:145
|
1367 |
+
#: ../shortcodes/btns/btns_popup.php:173 ../shortcodes/btns/btns_popup.php:201
|
1368 |
#, fuzzy
|
1369 |
msgid "Yellow"
|
1370 |
msgstr "Подписаться"
|
1371 |
|
1372 |
+
#: ../shortcodes/btns/btns_popup.php:118 ../shortcodes/btns/btns_popup.php:146
|
1373 |
+
#: ../shortcodes/btns/btns_popup.php:174 ../shortcodes/btns/btns_popup.php:202
|
1374 |
msgid "Orange"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: ../shortcodes/btns/btns_popup.php:119 ../shortcodes/btns/btns_popup.php:147
|
1378 |
+
#: ../shortcodes/btns/btns_popup.php:175 ../shortcodes/btns/btns_popup.php:203
|
1379 |
msgid "Pink"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: ../shortcodes/btns/btns_popup.php:120 ../shortcodes/btns/btns_popup.php:148
|
1383 |
+
#: ../shortcodes/btns/btns_popup.php:176 ../shortcodes/btns/btns_popup.php:204
|
1384 |
msgid "Purple"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../shortcodes/btns/btns_popup.php:121 ../shortcodes/btns/btns_popup.php:149
|
1388 |
+
#: ../shortcodes/btns/btns_popup.php:177 ../shortcodes/btns/btns_popup.php:205
|
1389 |
msgid "Brown"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: ../shortcodes/btns/btns_popup.php:122 ../shortcodes/btns/btns_popup.php:150
|
1393 |
+
#: ../shortcodes/btns/btns_popup.php:178 ../shortcodes/btns/btns_popup.php:206
|
1394 |
msgid "Maroon"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../shortcodes/btns/btns_popup.php:126 ../shortcodes/btns/btns_popup.php:155
|
1398 |
+
#: ../shortcodes/btns/btns_popup.php:182 ../shortcodes/btns/btns_popup.php:210
|
1399 |
msgid "Or Type Hex Color"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
# @ virtue
|
1403 |
+
#: ../shortcodes/btns/btns_popup.php:132
|
1404 |
#, fuzzy
|
1405 |
msgid "Button Color"
|
1406 |
msgstr "Цвет фона"
|
1407 |
|
1408 |
+
#: ../shortcodes/btns/btns_popup.php:161
|
1409 |
msgid "Text Hover Color"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
# @ virtue
|
1413 |
+
#: ../shortcodes/btns/btns_popup.php:188
|
1414 |
#, fuzzy
|
1415 |
msgid "Button Background Hover Color"
|
1416 |
msgstr "Цвет фона"
|
1417 |
|
1418 |
# @ virtue
|
1419 |
+
#: ../shortcodes/btns/btns_popup.php:190
|
1420 |
#, fuzzy
|
1421 |
msgid "30% Primary Color"
|
1422 |
msgstr "Основной цвет"
|
1423 |
|
1424 |
+
#: ../shortcodes/btns/btns_popup.php:216
|
1425 |
msgid "Button Link"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: ../shortcodes/btns/btns_popup.php:222
|
1429 |
msgid "Button Link Target"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: ../shortcodes/btns/btns_popup.php:224
|
1433 |
msgid "Same Window"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: ../shortcodes/btns/btns_popup.php:225
|
1437 |
msgid "New Window/Tab"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
# @ virtue
|
1441 |
+
#: ../shortcodes/columns/columns_popup.php:10
|
1442 |
#, fuzzy
|
1443 |
msgid "Insert Columns"
|
1444 |
msgstr "Колонки"
|
1445 |
|
1446 |
+
#: ../shortcodes/divider/divider_popup.php:10
|
1447 |
msgid "Insert Divider"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
# @ virtue
|
1451 |
+
#: ../shortcodes/divider/divider_popup.php:70
|
1452 |
#, fuzzy
|
1453 |
msgid "Choose a Divider"
|
1454 |
msgstr "Выберите боковую панель"
|
1455 |
|
1456 |
+
#: ../shortcodes/divider/divider_popup.php:72
|
1457 |
msgid "Line"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
+
#: ../shortcodes/divider/divider_popup.php:73
|
1461 |
msgid "Padding Small"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: ../shortcodes/divider/divider_popup.php:74
|
1465 |
msgid "Padding Medium"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: ../shortcodes/divider/divider_popup.php:75
|
1469 |
msgid "Padding Large"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: ../shortcodes/icons/icon_popup.php:10
|
1473 |
msgid "Insert Icon"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: ../shortcodes/pullquote/quote_popup.php:10
|
1477 |
msgid "Insert Styled Quote"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: ../shortcodes/pullquote/quote_popup.php:61
|
1481 |
msgid "Pull-Quote"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: ../shortcodes/pullquote/quote_popup.php:62
|
1485 |
msgid "Block-Quote"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: ../shortcodes/pullquote/quote_popup.php:68
|
1489 |
msgid "Align"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: ../shortcodes/pullquote/quote_popup.php:70
|
1493 |
msgid "Center"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: ../shortcodes/pullquote/quote_popup.php:71
|
1497 |
msgid "Left"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: ../shortcodes/pullquote/quote_popup.php:72
|
1501 |
msgid "Right"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:10
|
1505 |
msgid "Insert Vimeo Video"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
# @ virtue
|
1509 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:66
|
1510 |
#, fuzzy
|
1511 |
msgid "Vimeo Link"
|
1512 |
msgstr "Vimeo:"
|
1513 |
|
1514 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:70
|
1515 |
+
#: ../shortcodes/youtube/youtube_popup.php:70
|
1516 |
msgid "Width"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:72
|
1520 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:77
|
1521 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:82
|
1522 |
+
#: ../shortcodes/youtube/youtube_popup.php:72
|
1523 |
+
#: ../shortcodes/youtube/youtube_popup.php:77
|
1524 |
+
#: ../shortcodes/youtube/youtube_popup.php:82
|
1525 |
msgid "note just use number"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
# @ virtue
|
1529 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:75
|
1530 |
+
#: ../shortcodes/youtube/youtube_popup.php:75
|
1531 |
#, fuzzy
|
1532 |
msgid "Height"
|
1533 |
msgstr "Высота карты"
|
1534 |
|
1535 |
# @ virtue
|
1536 |
+
#: ../shortcodes/vimeo/vimeo_popup.php:80
|
1537 |
+
#: ../shortcodes/youtube/youtube_popup.php:80
|
1538 |
#, fuzzy
|
1539 |
msgid "(Optional) Max Width"
|
1540 |
msgstr "Максимальная ширина слайдера"
|
1541 |
|
1542 |
+
#: ../shortcodes/youtube/youtube_popup.php:10
|
1543 |
msgid "Insert YouTube Video"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: ../shortcodes/youtube/youtube_popup.php:66
|
1547 |
msgid "YouTube Link"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
# @ virtue
|
1551 |
+
#~ msgid "Email: "
|
1552 |
+
#~ msgstr "Email:"
|
|
|
1553 |
|
1554 |
# @ virtue
|
1555 |
+
#~ msgid "Message: "
|
1556 |
+
#~ msgstr "Сообщение:"
|
|
|
|
|
1557 |
|
1558 |
# @ virtue
|
1559 |
#~ msgid " (taxes estimated for %s)"
|
languages/{kadencetoolkit.pot → virtue-toolkit.po}
RENAMED
@@ -1,16 +1,15 @@
|
|
1 |
-
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Kadence Toolkit\n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Kadence Themes\n"
|
9 |
"Language: en\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
@@ -176,7 +175,7 @@ msgid "Carousel Slider - (Caroufedsel Slider)"
|
|
176 |
msgstr ""
|
177 |
|
178 |
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
|
179 |
-
#: ../metaboxes.php:
|
180 |
msgid "None"
|
181 |
msgstr ""
|
182 |
|
@@ -184,7 +183,7 @@ msgstr ""
|
|
184 |
msgid "Post Slider Gallery"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../metaboxes.php:148 ../metaboxes.php:
|
188 |
msgid "Add images for gallery here"
|
189 |
msgstr ""
|
190 |
|
@@ -235,7 +234,7 @@ msgid "Video Post Default"
|
|
235 |
msgstr ""
|
236 |
|
237 |
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
|
238 |
-
#: ../metaboxes.php:
|
239 |
msgid "Video"
|
240 |
msgstr ""
|
241 |
|
@@ -291,7 +290,7 @@ msgstr ""
|
|
291 |
msgid "Project Options"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:
|
295 |
msgid "Image"
|
296 |
msgstr ""
|
297 |
|
@@ -311,8 +310,8 @@ msgstr ""
|
|
311 |
msgid "Add images for post here"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:
|
315 |
-
#: ../metaboxes.php:
|
316 |
msgid "Max Image/Slider Height"
|
317 |
msgstr ""
|
318 |
|
@@ -320,8 +319,8 @@ msgstr ""
|
|
320 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:
|
324 |
-
#: ../metaboxes.php:
|
325 |
msgid "Max Image/Slider Width"
|
326 |
msgstr ""
|
327 |
|
@@ -331,92 +330,92 @@ msgid ""
|
|
331 |
"number, example: 650)"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: ../metaboxes.php:279 ../metaboxes.php:
|
335 |
msgid "Value 01 Title"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../metaboxes.php:280 ../metaboxes.php:
|
339 |
msgid "ex. Project Type:"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: ../metaboxes.php:285 ../metaboxes.php:
|
343 |
msgid "Value 01 Description"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: ../metaboxes.php:286 ../metaboxes.php:
|
347 |
msgid "ex. Character Illustration"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../metaboxes.php:291 ../metaboxes.php:
|
351 |
msgid "Value 02 Title"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: ../metaboxes.php:292 ../metaboxes.php:
|
355 |
msgid "ex. Skills Needed:"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: ../metaboxes.php:297 ../metaboxes.php:
|
359 |
msgid "Value 02 Description"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: ../metaboxes.php:298 ../metaboxes.php:
|
363 |
msgid "ex. Photoshop, Illustrator"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../metaboxes.php:303 ../metaboxes.php:
|
367 |
msgid "Value 03 Title"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ../metaboxes.php:304 ../metaboxes.php:
|
371 |
msgid "ex. Customer:"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: ../metaboxes.php:309 ../metaboxes.php:
|
375 |
msgid "Value 03 Description"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: ../metaboxes.php:310 ../metaboxes.php:
|
379 |
msgid "ex. Example Inc"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: ../metaboxes.php:315 ../metaboxes.php:
|
383 |
msgid "Value 04 Title"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: ../metaboxes.php:316 ../metaboxes.php:
|
387 |
msgid "ex. Project Year:"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ../metaboxes.php:321 ../metaboxes.php:
|
391 |
msgid "Value 04 Description"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ../metaboxes.php:322 ../metaboxes.php:
|
395 |
msgid "ex. 2013"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ../metaboxes.php:327 ../metaboxes.php:
|
399 |
msgid "External Website"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../metaboxes.php:328 ../metaboxes.php:
|
403 |
msgid "ex. Website:"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../metaboxes.php:333 ../metaboxes.php:
|
407 |
msgid "Website Address"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../metaboxes.php:334 ../metaboxes.php:
|
411 |
msgid "ex. http://www.example.com"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: ../metaboxes.php:339 ../metaboxes.php:
|
415 |
msgid "If Video Project"
|
416 |
msgstr ""
|
417 |
|
418 |
#: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
|
419 |
-
#: ../metaboxes.php:
|
420 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
421 |
msgstr ""
|
422 |
|
@@ -424,11 +423,11 @@ msgstr ""
|
|
424 |
msgid "Bottom Carousel Options"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../metaboxes.php:356 ../metaboxes.php:
|
428 |
msgid "Carousel Title"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../metaboxes.php:357 ../metaboxes.php:
|
432 |
msgid "ex. Similar Projects"
|
433 |
msgstr ""
|
434 |
|
@@ -441,16 +440,16 @@ msgid "Display a carousel with portfolio items below project?"
|
|
441 |
msgstr ""
|
442 |
|
443 |
#: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
|
444 |
-
#: ../metaboxes.php:619 ../metaboxes.php:
|
445 |
-
#: ../metaboxes.php:
|
446 |
-
#: ../metaboxes.php:
|
447 |
msgid "No"
|
448 |
msgstr ""
|
449 |
|
450 |
#: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
|
451 |
-
#: ../metaboxes.php:620 ../metaboxes.php:
|
452 |
-
#: ../metaboxes.php:
|
453 |
-
#: ../metaboxes.php:
|
454 |
msgid "Yes"
|
455 |
msgstr ""
|
456 |
|
@@ -470,23 +469,23 @@ msgstr ""
|
|
470 |
msgid "Carousel Order"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:
|
474 |
msgid "Menu Order"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:
|
478 |
msgid "Title"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:
|
482 |
msgid "Date"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:
|
486 |
msgid "Random"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../metaboxes.php:400 ../metaboxes.php:
|
490 |
msgid "Portfolio Page Options"
|
491 |
msgstr ""
|
492 |
|
@@ -518,43 +517,43 @@ msgstr ""
|
|
518 |
msgid "Primary Color"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../metaboxes.php:431 ../metaboxes.php:
|
522 |
msgid "Columns"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../metaboxes.php:436 ../metaboxes.php:
|
526 |
msgid "Four Column"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../metaboxes.php:437 ../metaboxes.php:
|
530 |
msgid "Three Column"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../metaboxes.php:438 ../metaboxes.php:
|
534 |
msgid "Two Column"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../metaboxes.php:439
|
538 |
msgid "Five Column"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../metaboxes.php:443 ../metaboxes.php:
|
542 |
msgid "Portfolio Work Types"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../metaboxes.php:449 ../metaboxes.php:
|
546 |
msgid "Order Items By"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../metaboxes.php:461 ../metaboxes.php:
|
550 |
msgid "Items per Page"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../metaboxes.php:462 ../metaboxes.php:
|
554 |
msgid "How many portfolio items per page"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../metaboxes.php:466 ../metaboxes.php:
|
558 |
msgid "All"
|
559 |
msgstr ""
|
560 |
|
@@ -578,11 +577,11 @@ msgstr ""
|
|
578 |
msgid "Wide Landscape 4:2"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../metaboxes.php:497 ../metaboxes.php:
|
582 |
msgid "Display Item Work Types"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../metaboxes.php:503 ../metaboxes.php:
|
586 |
msgid "Display Item Excerpt"
|
587 |
msgstr ""
|
588 |
|
@@ -590,7 +589,7 @@ msgstr ""
|
|
590 |
msgid "Add Lightbox link in each item"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../metaboxes.php:518 ../metaboxes.php:
|
594 |
msgid "Feature Page Options"
|
595 |
msgstr ""
|
596 |
|
@@ -606,7 +605,7 @@ msgstr ""
|
|
606 |
msgid "Page Title"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../metaboxes.php:540 ../metaboxes.php:
|
610 |
msgid "Slider Images"
|
611 |
msgstr ""
|
612 |
|
@@ -629,23 +628,23 @@ msgid ""
|
|
629 |
"does not apply to Carousel slider)"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:
|
633 |
msgid "If Video Post"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../metaboxes.php:573 ../metaboxes.php:
|
637 |
msgid "Contact Page Options"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../metaboxes.php:582 ../metaboxes.php:
|
641 |
msgid "Use Contact Form"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../metaboxes.php:592 ../metaboxes.php:
|
645 |
msgid "Contact Form Title"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: ../metaboxes.php:593 ../metaboxes.php:
|
649 |
msgid "ex. Send us an Email"
|
650 |
msgstr ""
|
651 |
|
@@ -657,63 +656,63 @@ msgstr ""
|
|
657 |
msgid "ex. joe@gmail.com"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../metaboxes.php:604 ../metaboxes.php:
|
661 |
msgid "Use Simple Math Question"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../metaboxes.php:614 ../metaboxes.php:
|
665 |
msgid "Use Map"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../metaboxes.php:624 ../metaboxes.php:
|
669 |
msgid "Address"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../metaboxes.php:625 ../metaboxes.php:
|
673 |
msgid "Enter your Location"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../metaboxes.php:630 ../metaboxes.php:
|
677 |
msgid "Map Type"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../metaboxes.php:635 ../metaboxes.php:
|
681 |
msgid "ROADMAP"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../metaboxes.php:636 ../metaboxes.php:
|
685 |
msgid "HYBRID"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../metaboxes.php:637 ../metaboxes.php:
|
689 |
msgid "TERRAIN"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: ../metaboxes.php:638 ../metaboxes.php:
|
693 |
msgid "SATELLITE"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: ../metaboxes.php:642 ../metaboxes.php:
|
697 |
msgid "Map Zoom Level"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../metaboxes.php:643 ../metaboxes.php:
|
701 |
msgid "A good place to start is 15"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../metaboxes.php:648 ../metaboxes.php:
|
705 |
msgid "1 (World View)"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: ../metaboxes.php:668 ../metaboxes.php:
|
709 |
msgid "21 (Street View)"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: ../metaboxes.php:672 ../metaboxes.php:
|
713 |
msgid "Map Height"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: ../metaboxes.php:673 ../metaboxes.php:
|
717 |
msgid "Default is 300"
|
718 |
msgstr ""
|
719 |
|
@@ -725,75 +724,87 @@ msgstr ""
|
|
725 |
msgid "Beside"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../metaboxes.php:735 ../metaboxes.php:
|
729 |
msgid "Image Slider"
|
730 |
msgstr ""
|
731 |
|
|
|
|
|
|
|
|
|
732 |
#: ../metaboxes.php:743
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: ../metaboxes.php:
|
737 |
msgid ""
|
738 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
739 |
"just input number, example: 650)</b>"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: ../metaboxes.php:
|
743 |
msgid "Auto Play Slider?"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: ../metaboxes.php:
|
747 |
msgid "Similar Portfolio Item Carousel"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: ../metaboxes.php:
|
751 |
msgid "Display a carousel with similar portfolio items below project?"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: ../metaboxes.php:
|
755 |
msgid "Yes - Display Recent Projects"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../metaboxes.php:
|
759 |
msgid "Set image height"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../metaboxes.php:
|
763 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../metaboxes.php:
|
767 |
msgid "Add Lightbox link in the top right of each item"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../metaboxes.php:
|
771 |
msgid "Feature Options"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: ../metaboxes.php:
|
775 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: ../metaboxes.php:
|
779 |
msgid "Slider Gallery"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../metaboxes.php:
|
783 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: ../metaboxes.php:
|
787 |
msgid ""
|
788 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
789 |
"to Carousel slider)</b>"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: ../metaboxes.php:
|
793 |
msgid "Use Lightbox for Feature Image"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../metaboxes.php:
|
797 |
msgid ""
|
798 |
"If feature option is set to image, choose to use lightbox link with image."
|
799 |
msgstr ""
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Kadence Toolkit\n"
|
4 |
+
"POT-Creation-Date: 2015-11-18 17:17-0700\n"
|
5 |
+
"PO-Revision-Date: 2015-11-18 17:17-0700\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Kadence Themes\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.5\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
175 |
msgstr ""
|
176 |
|
177 |
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:257
|
178 |
+
#: ../metaboxes.php:739
|
179 |
msgid "None"
|
180 |
msgstr ""
|
181 |
|
183 |
msgid "Post Slider Gallery"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: ../metaboxes.php:148 ../metaboxes.php:978 ../metaboxes.php:1124
|
187 |
msgid "Add images for gallery here"
|
188 |
msgstr ""
|
189 |
|
234 |
msgstr ""
|
235 |
|
236 |
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:536
|
237 |
+
#: ../metaboxes.php:738 ../metaboxes.php:972
|
238 |
msgid "Video"
|
239 |
msgstr ""
|
240 |
|
290 |
msgid "Project Options"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../metaboxes.php:253 ../metaboxes.php:734 ../metaboxes.php:973
|
294 |
msgid "Image"
|
295 |
msgstr ""
|
296 |
|
310 |
msgid "Add images for post here"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../metaboxes.php:267 ../metaboxes.php:552 ../metaboxes.php:756
|
314 |
+
#: ../metaboxes.php:983
|
315 |
msgid "Max Image/Slider Height"
|
316 |
msgstr ""
|
317 |
|
319 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../metaboxes.php:273 ../metaboxes.php:558 ../metaboxes.php:762
|
323 |
+
#: ../metaboxes.php:989
|
324 |
msgid "Max Image/Slider Width"
|
325 |
msgstr ""
|
326 |
|
330 |
"number, example: 650)"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../metaboxes.php:279 ../metaboxes.php:778
|
334 |
msgid "Value 01 Title"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ../metaboxes.php:280 ../metaboxes.php:779
|
338 |
msgid "ex. Project Type:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../metaboxes.php:285 ../metaboxes.php:784
|
342 |
msgid "Value 01 Description"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../metaboxes.php:286 ../metaboxes.php:785
|
346 |
msgid "ex. Character Illustration"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../metaboxes.php:291 ../metaboxes.php:790
|
350 |
msgid "Value 02 Title"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: ../metaboxes.php:292 ../metaboxes.php:791
|
354 |
msgid "ex. Skills Needed:"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../metaboxes.php:297 ../metaboxes.php:796
|
358 |
msgid "Value 02 Description"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../metaboxes.php:298 ../metaboxes.php:797
|
362 |
msgid "ex. Photoshop, Illustrator"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../metaboxes.php:303 ../metaboxes.php:802
|
366 |
msgid "Value 03 Title"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../metaboxes.php:304 ../metaboxes.php:803
|
370 |
msgid "ex. Customer:"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../metaboxes.php:309 ../metaboxes.php:808
|
374 |
msgid "Value 03 Description"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../metaboxes.php:310 ../metaboxes.php:809
|
378 |
msgid "ex. Example Inc"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../metaboxes.php:315 ../metaboxes.php:814
|
382 |
msgid "Value 04 Title"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../metaboxes.php:316 ../metaboxes.php:815
|
386 |
msgid "ex. Project Year:"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../metaboxes.php:321 ../metaboxes.php:820
|
390 |
msgid "Value 04 Description"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../metaboxes.php:322 ../metaboxes.php:821
|
394 |
msgid "ex. 2013"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../metaboxes.php:327 ../metaboxes.php:826
|
398 |
msgid "External Website"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../metaboxes.php:328 ../metaboxes.php:827
|
402 |
msgid "ex. Website:"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../metaboxes.php:333 ../metaboxes.php:832
|
406 |
msgid "Website Address"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../metaboxes.php:334 ../metaboxes.php:833
|
410 |
msgid "ex. http://www.example.com"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../metaboxes.php:339 ../metaboxes.php:838
|
414 |
msgid "If Video Project"
|
415 |
msgstr ""
|
416 |
|
417 |
#: ../metaboxes.php:340 ../metaboxes.php:565 ../metaboxes.php:702
|
418 |
+
#: ../metaboxes.php:839 ../metaboxes.php:1006
|
419 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
420 |
msgstr ""
|
421 |
|
423 |
msgid "Bottom Carousel Options"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: ../metaboxes.php:356 ../metaboxes.php:854
|
427 |
msgid "Carousel Title"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ../metaboxes.php:357 ../metaboxes.php:855
|
431 |
msgid "ex. Similar Projects"
|
432 |
msgstr ""
|
433 |
|
440 |
msgstr ""
|
441 |
|
442 |
#: ../metaboxes.php:368 ../metaboxes.php:588 ../metaboxes.php:610
|
443 |
+
#: ../metaboxes.php:619 ../metaboxes.php:774 ../metaboxes.php:849
|
444 |
+
#: ../metaboxes.php:949 ../metaboxes.php:1001 ../metaboxes.php:1029
|
445 |
+
#: ../metaboxes.php:1045 ../metaboxes.php:1054
|
446 |
msgid "No"
|
447 |
msgstr ""
|
448 |
|
449 |
#: ../metaboxes.php:369 ../metaboxes.php:587 ../metaboxes.php:609
|
450 |
+
#: ../metaboxes.php:620 ../metaboxes.php:773 ../metaboxes.php:950
|
451 |
+
#: ../metaboxes.php:1000 ../metaboxes.php:1028 ../metaboxes.php:1044
|
452 |
+
#: ../metaboxes.php:1055
|
453 |
msgid "Yes"
|
454 |
msgstr ""
|
455 |
|
469 |
msgid "Carousel Order"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../metaboxes.php:389 ../metaboxes.php:454 ../metaboxes.php:896
|
473 |
msgid "Menu Order"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../metaboxes.php:390 ../metaboxes.php:455 ../metaboxes.php:897
|
477 |
msgid "Title"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../metaboxes.php:391 ../metaboxes.php:456 ../metaboxes.php:898
|
481 |
msgid "Date"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../metaboxes.php:392 ../metaboxes.php:457 ../metaboxes.php:899
|
485 |
msgid "Random"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: ../metaboxes.php:400 ../metaboxes.php:864
|
489 |
msgid "Portfolio Page Options"
|
490 |
msgstr ""
|
491 |
|
517 |
msgid "Primary Color"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../metaboxes.php:431 ../metaboxes.php:873
|
521 |
msgid "Columns"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../metaboxes.php:436 ../metaboxes.php:748 ../metaboxes.php:878
|
525 |
msgid "Four Column"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../metaboxes.php:437 ../metaboxes.php:749 ../metaboxes.php:879
|
529 |
msgid "Three Column"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../metaboxes.php:438 ../metaboxes.php:750 ../metaboxes.php:880
|
533 |
msgid "Two Column"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../metaboxes.php:439 ../metaboxes.php:751
|
537 |
msgid "Five Column"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../metaboxes.php:443 ../metaboxes.php:884
|
541 |
msgid "Portfolio Work Types"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../metaboxes.php:449 ../metaboxes.php:891
|
545 |
msgid "Order Items By"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../metaboxes.php:461 ../metaboxes.php:903
|
549 |
msgid "Items per Page"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../metaboxes.php:462 ../metaboxes.php:904
|
553 |
msgid "How many portfolio items per page"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../metaboxes.php:466 ../metaboxes.php:908
|
557 |
msgid "All"
|
558 |
msgstr ""
|
559 |
|
577 |
msgid "Wide Landscape 4:2"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../metaboxes.php:497 ../metaboxes.php:932
|
581 |
msgid "Display Item Work Types"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../metaboxes.php:503 ../metaboxes.php:938
|
585 |
msgid "Display Item Excerpt"
|
586 |
msgstr ""
|
587 |
|
589 |
msgid "Add Lightbox link in each item"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../metaboxes.php:518 ../metaboxes.php:957
|
593 |
msgid "Feature Page Options"
|
594 |
msgstr ""
|
595 |
|
605 |
msgid "Page Title"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../metaboxes.php:540 ../metaboxes.php:1116
|
609 |
msgid "Slider Images"
|
610 |
msgstr ""
|
611 |
|
628 |
"does not apply to Carousel slider)"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: ../metaboxes.php:564 ../metaboxes.php:701 ../metaboxes.php:1005
|
632 |
msgid "If Video Post"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../metaboxes.php:573 ../metaboxes.php:1014
|
636 |
msgid "Contact Page Options"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: ../metaboxes.php:582 ../metaboxes.php:1023
|
640 |
msgid "Use Contact Form"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: ../metaboxes.php:592 ../metaboxes.php:1033
|
644 |
msgid "Contact Form Title"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: ../metaboxes.php:593 ../metaboxes.php:1034
|
648 |
msgid "ex. Send us an Email"
|
649 |
msgstr ""
|
650 |
|
656 |
msgid "ex. joe@gmail.com"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../metaboxes.php:604 ../metaboxes.php:1039
|
660 |
msgid "Use Simple Math Question"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../metaboxes.php:614 ../metaboxes.php:1049
|
664 |
msgid "Use Map"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: ../metaboxes.php:624 ../metaboxes.php:1059
|
668 |
msgid "Address"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../metaboxes.php:625 ../metaboxes.php:1060
|
672 |
msgid "Enter your Location"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: ../metaboxes.php:630 ../metaboxes.php:1065
|
676 |
msgid "Map Type"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: ../metaboxes.php:635 ../metaboxes.php:1070
|
680 |
msgid "ROADMAP"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: ../metaboxes.php:636 ../metaboxes.php:1071
|
684 |
msgid "HYBRID"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: ../metaboxes.php:637 ../metaboxes.php:1072
|
688 |
msgid "TERRAIN"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
692 |
msgid "SATELLITE"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../metaboxes.php:642 ../metaboxes.php:1077
|
696 |
msgid "Map Zoom Level"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: ../metaboxes.php:643 ../metaboxes.php:1078
|
700 |
msgid "A good place to start is 15"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: ../metaboxes.php:648 ../metaboxes.php:1083
|
704 |
msgid "1 (World View)"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: ../metaboxes.php:668 ../metaboxes.php:1103
|
708 |
msgid "21 (Street View)"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../metaboxes.php:672 ../metaboxes.php:1107
|
712 |
msgid "Map Height"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../metaboxes.php:673 ../metaboxes.php:1108
|
716 |
msgid "Default is 300"
|
717 |
msgstr ""
|
718 |
|
724 |
msgid "Beside"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../metaboxes.php:735 ../metaboxes.php:971
|
728 |
msgid "Image Slider"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../metaboxes.php:737
|
732 |
+
msgid "Image Grid"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
#: ../metaboxes.php:743
|
736 |
+
msgid "Columns (Only for Image Grid option)"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: ../metaboxes.php:752
|
740 |
+
msgid "Six Column"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: ../metaboxes.php:757
|
744 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../metaboxes.php:763
|
748 |
msgid ""
|
749 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
750 |
"just input number, example: 650)</b>"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../metaboxes.php:768
|
754 |
msgid "Auto Play Slider?"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../metaboxes.php:844
|
758 |
msgid "Similar Portfolio Item Carousel"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../metaboxes.php:845
|
762 |
msgid "Display a carousel with similar portfolio items below project?"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../metaboxes.php:850
|
766 |
msgid "Yes - Display Recent Projects"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../metaboxes.php:926
|
770 |
msgid "Set image height"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../metaboxes.php:927
|
774 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../metaboxes.php:944
|
778 |
msgid "Add Lightbox link in the top right of each item"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../metaboxes.php:966
|
782 |
msgid "Feature Options"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../metaboxes.php:967
|
786 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../metaboxes.php:977 ../metaboxes.php:1123
|
790 |
msgid "Slider Gallery"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../metaboxes.php:984
|
794 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../metaboxes.php:990
|
798 |
msgid ""
|
799 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
800 |
"to Carousel slider)</b>"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: ../metaboxes.php:995
|
804 |
msgid "Use Lightbox for Feature Image"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: ../metaboxes.php:996
|
808 |
msgid ""
|
809 |
"If feature option is set to image, choose to use lightbox link with image."
|
810 |
msgstr ""
|
languages/{kadencetoolkit.po → virtue-toolkit.pot}
RENAMED
@@ -1,7 +1,8 @@
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
"PO-Revision-Date: 2015-01-10 00:32-0700\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Kadence Themes\n"
|
@@ -9,7 +10,7 @@ msgstr ""
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
@@ -42,7 +43,7 @@ msgstr ""
|
|
42 |
|
43 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
44 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
45 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
46 |
msgid "Remove"
|
47 |
msgstr ""
|
48 |
|
@@ -57,17 +58,17 @@ msgid "Add or Upload File"
|
|
57 |
msgstr ""
|
58 |
|
59 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
60 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:760
|
61 |
msgid "Remove Image"
|
62 |
msgstr ""
|
63 |
|
64 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
65 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
66 |
msgid "File:"
|
67 |
msgstr ""
|
68 |
|
69 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
70 |
-
#: ../cmb/helpers/cmb_Meta_Box_types.php:768
|
71 |
msgid "Download"
|
72 |
msgstr ""
|
73 |
|
@@ -76,9 +77,9 @@ msgid "Clear"
|
|
76 |
msgstr ""
|
77 |
|
78 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
79 |
-
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:
|
80 |
-
#: ../metaboxes.php:
|
81 |
-
#: ../metaboxes.php:
|
82 |
msgid "Default"
|
83 |
msgstr ""
|
84 |
|
@@ -90,6 +91,10 @@ msgstr ""
|
|
90 |
msgid "Current Color"
|
91 |
msgstr ""
|
92 |
|
|
|
|
|
|
|
|
|
93 |
#: ../cmb/init.php:288
|
94 |
msgid "Select / Deselect All"
|
95 |
msgstr ""
|
@@ -174,8 +179,8 @@ msgstr ""
|
|
174 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:
|
178 |
-
#: ../metaboxes.php:
|
179 |
msgid "None"
|
180 |
msgstr ""
|
181 |
|
@@ -183,7 +188,7 @@ msgstr ""
|
|
183 |
msgid "Post Slider Gallery"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../metaboxes.php:148 ../metaboxes.php:
|
187 |
msgid "Add images for gallery here"
|
188 |
msgstr ""
|
189 |
|
@@ -191,7 +196,7 @@ msgstr ""
|
|
191 |
msgid "Max Slider Height"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: ../metaboxes.php:154 ../metaboxes.php:
|
195 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
196 |
msgstr ""
|
197 |
|
@@ -233,8 +238,8 @@ msgstr ""
|
|
233 |
msgid "Video Post Default"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:
|
237 |
-
#: ../metaboxes.php:
|
238 |
msgid "Video"
|
239 |
msgstr ""
|
240 |
|
@@ -262,11 +267,11 @@ msgstr ""
|
|
262 |
msgid "Video - (when possible)"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: ../metaboxes.php:228 ../metaboxes.php:
|
266 |
msgid "Portfolio Post Options"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: ../metaboxes.php:236 ../metaboxes.php:
|
270 |
msgid "Project Layout"
|
271 |
msgstr ""
|
272 |
|
@@ -278,595 +283,610 @@ msgstr ""
|
|
278 |
msgid "Beside 33%"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../metaboxes.php:243 ../metaboxes.php:
|
282 |
msgid "Above"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../metaboxes.php:244 ../metaboxes.php:
|
286 |
msgid "Three Rows"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../metaboxes.php:248 ../metaboxes.php:
|
290 |
msgid "Project Options"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../metaboxes.php:253 ../metaboxes.php:
|
294 |
msgid "Image"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../metaboxes.php:254 ../metaboxes.php:
|
298 |
msgid "Image Slider (Flex Slider)"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: ../metaboxes.php:255 ../metaboxes.php:
|
302 |
msgid "Carousel Slider"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
msgid "Portfolio Slider/Images"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../metaboxes.php:
|
310 |
msgid "Add images for post here"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ../metaboxes.php:
|
314 |
-
#: ../metaboxes.php:
|
315 |
msgid "Max Image/Slider Height"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: ../metaboxes.php:
|
319 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: ../metaboxes.php:
|
323 |
-
#: ../metaboxes.php:
|
324 |
msgid "Max Image/Slider Width"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../metaboxes.php:
|
328 |
msgid ""
|
329 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
330 |
"number, example: 650)"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../metaboxes.php:
|
334 |
msgid "Value 01 Title"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ../metaboxes.php:
|
338 |
msgid "ex. Project Type:"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ../metaboxes.php:
|
342 |
msgid "Value 01 Description"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../metaboxes.php:
|
346 |
msgid "ex. Character Illustration"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: ../metaboxes.php:
|
350 |
msgid "Value 02 Title"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../metaboxes.php:
|
354 |
msgid "ex. Skills Needed:"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: ../metaboxes.php:
|
358 |
msgid "Value 02 Description"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: ../metaboxes.php:
|
362 |
msgid "ex. Photoshop, Illustrator"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: ../metaboxes.php:
|
366 |
msgid "Value 03 Title"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ../metaboxes.php:
|
370 |
msgid "ex. Customer:"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: ../metaboxes.php:
|
374 |
msgid "Value 03 Description"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../metaboxes.php:
|
378 |
msgid "ex. Example Inc"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: ../metaboxes.php:
|
382 |
msgid "Value 04 Title"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ../metaboxes.php:
|
386 |
msgid "ex. Project Year:"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: ../metaboxes.php:
|
390 |
msgid "Value 04 Description"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: ../metaboxes.php:
|
394 |
msgid "ex. 2013"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../metaboxes.php:
|
398 |
msgid "External Website"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../metaboxes.php:
|
402 |
msgid "ex. Website:"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../metaboxes.php:
|
406 |
msgid "Website Address"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../metaboxes.php:
|
410 |
msgid "ex. http://www.example.com"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ../metaboxes.php:
|
414 |
msgid "If Video Project"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../metaboxes.php:
|
418 |
-
#: ../metaboxes.php:
|
419 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../metaboxes.php:
|
423 |
msgid "Bottom Carousel Options"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: ../metaboxes.php:
|
427 |
msgid "Carousel Title"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: ../metaboxes.php:
|
431 |
msgid "ex. Similar Projects"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../metaboxes.php:
|
435 |
msgid "Bottom Portfolio Carousel"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../metaboxes.php:
|
439 |
msgid "Display a carousel with portfolio items below project?"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: ../metaboxes.php:
|
443 |
-
#: ../metaboxes.php:
|
444 |
-
#: ../metaboxes.php:
|
445 |
-
#: ../metaboxes.php:
|
446 |
msgid "No"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../metaboxes.php:
|
450 |
-
#: ../metaboxes.php:
|
451 |
-
#: ../metaboxes.php:
|
452 |
-
#: ../metaboxes.php:
|
453 |
msgid "Yes"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../metaboxes.php:
|
457 |
msgid "Carousel Items"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../metaboxes.php:
|
461 |
msgid "All Portfolio Posts"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../metaboxes.php:
|
465 |
msgid "Only of same Portfolio Type"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../metaboxes.php:
|
469 |
msgid "Carousel Order"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../metaboxes.php:
|
473 |
msgid "Menu Order"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../metaboxes.php:
|
477 |
msgid "Title"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../metaboxes.php:
|
481 |
msgid "Date"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../metaboxes.php:
|
485 |
msgid "Random"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../metaboxes.php:
|
489 |
msgid "Portfolio Page Options"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../metaboxes.php:
|
493 |
msgid "Style"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: ../metaboxes.php:
|
497 |
msgid "Post Boxes"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: ../metaboxes.php:
|
501 |
msgid "Flat with Margin"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: ../metaboxes.php:
|
505 |
msgid "Hover Style"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: ../metaboxes.php:
|
509 |
msgid "Light"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../metaboxes.php:
|
513 |
msgid "Dark"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../metaboxes.php:
|
517 |
msgid "Primary Color"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../metaboxes.php:
|
521 |
msgid "Columns"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../metaboxes.php:
|
525 |
-
msgid "Four Column"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
-
#: ../metaboxes.php:437 ../metaboxes.php:865
|
529 |
-
msgid "Three Column"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: ../metaboxes.php:438 ../metaboxes.php:866
|
533 |
-
msgid "Two Column"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: ../metaboxes.php:439
|
537 |
-
msgid "Five Column"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#: ../metaboxes.php:443 ../metaboxes.php:870
|
541 |
msgid "Portfolio Work Types"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../metaboxes.php:
|
545 |
msgid "Order Items By"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../metaboxes.php:
|
549 |
msgid "Items per Page"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../metaboxes.php:
|
553 |
msgid "How many portfolio items per page"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../metaboxes.php:
|
557 |
msgid "All"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../metaboxes.php:
|
561 |
msgid "Image Ratio?"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../metaboxes.php:
|
565 |
msgid "Square 1:1"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../metaboxes.php:
|
569 |
msgid "Portrait 3:4"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../metaboxes.php:
|
573 |
msgid "Landscape 4:3"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../metaboxes.php:
|
577 |
msgid "Wide Landscape 4:2"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../metaboxes.php:
|
581 |
msgid "Display Item Work Types"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../metaboxes.php:
|
585 |
msgid "Display Item Excerpt"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../metaboxes.php:
|
589 |
msgid "Add Lightbox link in each item"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../metaboxes.php:
|
593 |
msgid "Feature Page Options"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../metaboxes.php:
|
597 |
msgid "Header Options"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../metaboxes.php:
|
601 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../metaboxes.php:
|
605 |
msgid "Page Title"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../metaboxes.php:
|
609 |
msgid "Slider Images"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../metaboxes.php:
|
613 |
msgid "Add for flex, carousel, and image carousel."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: ../metaboxes.php:
|
617 |
msgid "If Cyclone Slider"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../metaboxes.php:
|
621 |
msgid ""
|
622 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../metaboxes.php:
|
626 |
msgid ""
|
627 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
628 |
"does not apply to Carousel slider)"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: ../metaboxes.php:
|
632 |
msgid "If Video Post"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: ../metaboxes.php:
|
636 |
msgid "Contact Page Options"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: ../metaboxes.php:
|
640 |
msgid "Use Contact Form"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: ../metaboxes.php:
|
644 |
msgid "Contact Form Title"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../metaboxes.php:
|
648 |
msgid "ex. Send us an Email"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../metaboxes.php:
|
652 |
msgid "Contact Form Email Recipient"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../metaboxes.php:
|
656 |
msgid "ex. joe@gmail.com"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../metaboxes.php:
|
660 |
msgid "Use Simple Math Question"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: ../metaboxes.php:
|
664 |
msgid "Use Map"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: ../metaboxes.php:
|
668 |
msgid "Address"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../metaboxes.php:
|
672 |
msgid "Enter your Location"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: ../metaboxes.php:
|
676 |
msgid "Map Type"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: ../metaboxes.php:
|
680 |
msgid "ROADMAP"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: ../metaboxes.php:
|
684 |
msgid "HYBRID"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: ../metaboxes.php:
|
688 |
msgid "TERRAIN"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../metaboxes.php:
|
692 |
msgid "SATELLITE"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../metaboxes.php:
|
696 |
msgid "Map Zoom Level"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: ../metaboxes.php:
|
700 |
msgid "A good place to start is 15"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: ../metaboxes.php:
|
704 |
msgid "1 (World View)"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: ../metaboxes.php:
|
708 |
msgid "21 (Street View)"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: ../metaboxes.php:
|
712 |
msgid "Map Height"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: ../metaboxes.php:
|
716 |
msgid "Default is 300"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: ../metaboxes.php:
|
720 |
msgid "Post Video Box"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: ../metaboxes.php:
|
724 |
msgid "Beside"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: ../metaboxes.php:
|
728 |
msgid "Image Slider"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../metaboxes.php:
|
732 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: ../metaboxes.php:
|
736 |
msgid ""
|
737 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
738 |
"just input number, example: 650)</b>"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../metaboxes.php:
|
742 |
msgid "Auto Play Slider?"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../metaboxes.php:
|
746 |
msgid "Similar Portfolio Item Carousel"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../metaboxes.php:
|
750 |
msgid "Display a carousel with similar portfolio items below project?"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../metaboxes.php:
|
754 |
msgid "Yes - Display Recent Projects"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../metaboxes.php:
|
758 |
msgid "Set image height"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../metaboxes.php:
|
762 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../metaboxes.php:
|
766 |
msgid "Add Lightbox link in the top right of each item"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../metaboxes.php:
|
770 |
msgid "Feature Options"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../metaboxes.php:
|
774 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../metaboxes.php:
|
|
|
|
|
|
|
|
|
778 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: ../metaboxes.php:
|
782 |
msgid ""
|
783 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
784 |
"to Carousel slider)</b>"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../metaboxes.php:
|
788 |
msgid "Use Lightbox for Feature Image"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../metaboxes.php:
|
792 |
msgid ""
|
793 |
"If feature option is set to image, choose to use lightbox link with image."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../
|
797 |
-
msgid "Slider Gallery"
|
798 |
-
msgstr ""
|
799 |
-
|
800 |
-
#: ../page-contact.php:12 ../template-contact.php:7
|
801 |
msgid "This field is required."
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: ../page-contact.php:
|
805 |
msgid "Please enter a valid email address."
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: ../page-contact.php:
|
809 |
msgid "Check your math."
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: ../page-contact.php:
|
813 |
msgid "Please enter your name."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: ../page-contact.php:
|
817 |
msgid "Please enter your email address."
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: ../page-contact.php:
|
821 |
msgid "You entered an invalid email address."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: ../page-contact.php:
|
825 |
msgid "Please enter a message."
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../page-contact.php:
|
829 |
-
#: ../template-contact.php:
|
830 |
msgid "Contact"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: ../page-contact.php:
|
834 |
msgid "From"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: ../page-contact.php:
|
838 |
msgid "Name"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: ../page-contact.php:
|
842 |
msgid "Email"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: ../page-contact.php:
|
846 |
msgid "Comments"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: ../page-contact.php:
|
850 |
msgid "Thanks, your email was sent successfully."
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: ../page-contact.php:
|
854 |
msgid "Sorry, an error occured."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: ../page-contact.php:
|
858 |
msgid "Name:"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../page-contact.php:195
|
862 |
-
msgid "Email:
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../page-contact.php:
|
866 |
-
msgid "Message:
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../page-contact.php:
|
870 |
msgid "Send Email"
|
871 |
msgstr ""
|
872 |
|
@@ -1218,11 +1238,3 @@ msgstr ""
|
|
1218 |
#: ../shortcodes/youtube/youtube_popup.php:66
|
1219 |
msgid "YouTube Link"
|
1220 |
msgstr ""
|
1221 |
-
|
1222 |
-
#: ../template-contact.php:193
|
1223 |
-
msgid "Email:"
|
1224 |
-
msgstr ""
|
1225 |
-
|
1226 |
-
#: ../template-contact.php:200
|
1227 |
-
msgid "Message:"
|
1228 |
-
msgstr ""
|
1 |
+
#, fuzzy
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Virtue Toolkit\n"
|
5 |
+
"POT-Creation-Date: 2015-11-19 15:49-0700\n"
|
6 |
"PO-Revision-Date: 2015-01-10 00:32-0700\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Kadence Themes\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.5\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_attr__;esc_attr_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
43 |
|
44 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:306
|
45 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
46 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:282
|
47 |
msgid "Remove"
|
48 |
msgstr ""
|
49 |
|
58 |
msgstr ""
|
59 |
|
60 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:695
|
61 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:760 ../cmb/init.php:281
|
62 |
msgid "Remove Image"
|
63 |
msgstr ""
|
64 |
|
65 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
66 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:283
|
67 |
msgid "File:"
|
68 |
msgstr ""
|
69 |
|
70 |
#: ../cmb/helpers/cmb_Meta_Box_types.php:706
|
71 |
+
#: ../cmb/helpers/cmb_Meta_Box_types.php:768 ../cmb/init.php:284
|
72 |
msgid "Download"
|
73 |
msgstr ""
|
74 |
|
77 |
msgstr ""
|
78 |
|
79 |
#: ../cmb/init.php:259 ../metaboxes.php:62 ../metaboxes.php:73
|
80 |
+
#: ../metaboxes.php:106 ../metaboxes.php:117 ../metaboxes.php:381
|
81 |
+
#: ../metaboxes.php:392 ../metaboxes.php:427 ../metaboxes.php:438
|
82 |
+
#: ../metaboxes.php:503
|
83 |
msgid "Default"
|
84 |
msgstr ""
|
85 |
|
91 |
msgid "Current Color"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: ../cmb/init.php:280
|
95 |
+
msgid "Use this file"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
#: ../cmb/init.php:288
|
99 |
msgid "Select / Deselect All"
|
100 |
msgstr ""
|
179 |
msgid "Carousel Slider - (Caroufedsel Slider)"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: ../metaboxes.php:143 ../metaboxes.php:197 ../metaboxes.php:258
|
183 |
+
#: ../metaboxes.php:753
|
184 |
msgid "None"
|
185 |
msgstr ""
|
186 |
|
188 |
msgid "Post Slider Gallery"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: ../metaboxes.php:148 ../metaboxes.php:992 ../metaboxes.php:1138
|
192 |
msgid "Add images for gallery here"
|
193 |
msgstr ""
|
194 |
|
196 |
msgid "Max Slider Height"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../metaboxes.php:154 ../metaboxes.php:567
|
200 |
msgid "Default is: 400 (Note: just input number, example: 350)"
|
201 |
msgstr ""
|
202 |
|
238 |
msgid "Video Post Default"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: ../metaboxes.php:196 ../metaboxes.php:256 ../metaboxes.php:550
|
242 |
+
#: ../metaboxes.php:752 ../metaboxes.php:986
|
243 |
msgid "Video"
|
244 |
msgstr ""
|
245 |
|
267 |
msgid "Video - (when possible)"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../metaboxes.php:228 ../metaboxes.php:724
|
271 |
msgid "Portfolio Post Options"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: ../metaboxes.php:236 ../metaboxes.php:732
|
275 |
msgid "Project Layout"
|
276 |
msgstr ""
|
277 |
|
283 |
msgid "Beside 33%"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../metaboxes.php:243 ../metaboxes.php:738
|
287 |
msgid "Above"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../metaboxes.php:244 ../metaboxes.php:739
|
291 |
msgid "Three Rows"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../metaboxes.php:248 ../metaboxes.php:743
|
295 |
msgid "Project Options"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../metaboxes.php:253 ../metaboxes.php:748 ../metaboxes.php:987
|
299 |
msgid "Image"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../metaboxes.php:254 ../metaboxes.php:548
|
303 |
msgid "Image Slider (Flex Slider)"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: ../metaboxes.php:255 ../metaboxes.php:549 ../metaboxes.php:750
|
307 |
msgid "Carousel Slider"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: ../metaboxes.php:257 ../metaboxes.php:751
|
311 |
+
msgid "Image Grid"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: ../metaboxes.php:262 ../metaboxes.php:757
|
315 |
+
msgid "Columns (Only for Image Grid option)"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: ../metaboxes.php:267 ../metaboxes.php:450 ../metaboxes.php:762
|
319 |
+
#: ../metaboxes.php:892
|
320 |
+
msgid "Four Column"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: ../metaboxes.php:268 ../metaboxes.php:451 ../metaboxes.php:763
|
324 |
+
#: ../metaboxes.php:893
|
325 |
+
msgid "Three Column"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: ../metaboxes.php:269 ../metaboxes.php:452 ../metaboxes.php:764
|
329 |
+
#: ../metaboxes.php:894
|
330 |
+
msgid "Two Column"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: ../metaboxes.php:270 ../metaboxes.php:453 ../metaboxes.php:765
|
334 |
+
msgid "Five Column"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: ../metaboxes.php:271 ../metaboxes.php:766
|
338 |
+
msgid "Six Column"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: ../metaboxes.php:275
|
342 |
msgid "Portfolio Slider/Images"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../metaboxes.php:276
|
346 |
msgid "Add images for post here"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: ../metaboxes.php:281 ../metaboxes.php:566 ../metaboxes.php:770
|
350 |
+
#: ../metaboxes.php:997
|
351 |
msgid "Max Image/Slider Height"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: ../metaboxes.php:282
|
355 |
msgid "Default is: 450 (Note: just input number, example: 350)"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: ../metaboxes.php:287 ../metaboxes.php:572 ../metaboxes.php:776
|
359 |
+
#: ../metaboxes.php:1003
|
360 |
msgid "Max Image/Slider Width"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../metaboxes.php:288
|
364 |
msgid ""
|
365 |
"Default is: 670 or 1140 on above or three row layouts (Note: just input "
|
366 |
"number, example: 650)"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../metaboxes.php:293 ../metaboxes.php:792
|
370 |
msgid "Value 01 Title"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: ../metaboxes.php:294 ../metaboxes.php:793
|
374 |
msgid "ex. Project Type:"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../metaboxes.php:299 ../metaboxes.php:798
|
378 |
msgid "Value 01 Description"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: ../metaboxes.php:300 ../metaboxes.php:799
|
382 |
msgid "ex. Character Illustration"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ../metaboxes.php:305 ../metaboxes.php:804
|
386 |
msgid "Value 02 Title"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../metaboxes.php:306 ../metaboxes.php:805
|
390 |
msgid "ex. Skills Needed:"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../metaboxes.php:311 ../metaboxes.php:810
|
394 |
msgid "Value 02 Description"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../metaboxes.php:312 ../metaboxes.php:811
|
398 |
msgid "ex. Photoshop, Illustrator"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../metaboxes.php:317 ../metaboxes.php:816
|
402 |
msgid "Value 03 Title"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../metaboxes.php:318 ../metaboxes.php:817
|
406 |
msgid "ex. Customer:"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../metaboxes.php:323 ../metaboxes.php:822
|
410 |
msgid "Value 03 Description"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../metaboxes.php:324 ../metaboxes.php:823
|
414 |
msgid "ex. Example Inc"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../metaboxes.php:329 ../metaboxes.php:828
|
418 |
msgid "Value 04 Title"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../metaboxes.php:330 ../metaboxes.php:829
|
422 |
msgid "ex. Project Year:"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: ../metaboxes.php:335 ../metaboxes.php:834
|
426 |
msgid "Value 04 Description"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../metaboxes.php:336 ../metaboxes.php:835
|
430 |
msgid "ex. 2013"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../metaboxes.php:341 ../metaboxes.php:840
|
434 |
msgid "External Website"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../metaboxes.php:342 ../metaboxes.php:841
|
438 |
msgid "ex. Website:"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../metaboxes.php:347 ../metaboxes.php:846
|
442 |
msgid "Website Address"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../metaboxes.php:348 ../metaboxes.php:847
|
446 |
msgid "ex. http://www.example.com"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../metaboxes.php:353 ../metaboxes.php:852
|
450 |
msgid "If Video Project"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../metaboxes.php:354 ../metaboxes.php:579 ../metaboxes.php:716
|
454 |
+
#: ../metaboxes.php:853 ../metaboxes.php:1020
|
455 |
msgid "Place Embed Code Here, works with youtube, vimeo..."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../metaboxes.php:363
|
459 |
msgid "Bottom Carousel Options"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: ../metaboxes.php:370 ../metaboxes.php:868
|
463 |
msgid "Carousel Title"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: ../metaboxes.php:371 ../metaboxes.php:869
|
467 |
msgid "ex. Similar Projects"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: ../metaboxes.php:376
|
471 |
msgid "Bottom Portfolio Carousel"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: ../metaboxes.php:377
|
475 |
msgid "Display a carousel with portfolio items below project?"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../metaboxes.php:382 ../metaboxes.php:602 ../metaboxes.php:624
|
479 |
+
#: ../metaboxes.php:633 ../metaboxes.php:788 ../metaboxes.php:863
|
480 |
+
#: ../metaboxes.php:963 ../metaboxes.php:1015 ../metaboxes.php:1043
|
481 |
+
#: ../metaboxes.php:1059 ../metaboxes.php:1068
|
482 |
msgid "No"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../metaboxes.php:383 ../metaboxes.php:601 ../metaboxes.php:623
|
486 |
+
#: ../metaboxes.php:634 ../metaboxes.php:787 ../metaboxes.php:964
|
487 |
+
#: ../metaboxes.php:1014 ../metaboxes.php:1042 ../metaboxes.php:1058
|
488 |
+
#: ../metaboxes.php:1069
|
489 |
msgid "Yes"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../metaboxes.php:387
|
493 |
msgid "Carousel Items"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: ../metaboxes.php:393
|
497 |
msgid "All Portfolio Posts"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../metaboxes.php:394
|
501 |
msgid "Only of same Portfolio Type"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: ../metaboxes.php:398
|
505 |
msgid "Carousel Order"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../metaboxes.php:403 ../metaboxes.php:468 ../metaboxes.php:910
|
509 |
msgid "Menu Order"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../metaboxes.php:404 ../metaboxes.php:469 ../metaboxes.php:911
|
513 |
msgid "Title"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../metaboxes.php:405 ../metaboxes.php:470 ../metaboxes.php:912
|
517 |
msgid "Date"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../metaboxes.php:406 ../metaboxes.php:471 ../metaboxes.php:913
|
521 |
msgid "Random"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../metaboxes.php:414 ../metaboxes.php:878
|
525 |
msgid "Portfolio Page Options"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../metaboxes.php:422 ../shortcodes/pullquote/quote_popup.php:59
|
529 |
msgid "Style"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../metaboxes.php:428
|
533 |
msgid "Post Boxes"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../metaboxes.php:429
|
537 |
msgid "Flat with Margin"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../metaboxes.php:433
|
541 |
msgid "Hover Style"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../metaboxes.php:439
|
545 |
msgid "Light"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../metaboxes.php:440
|
549 |
msgid "Dark"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../metaboxes.php:441 ../shortcodes/btns/btns_popup.php:134
|
553 |
msgid "Primary Color"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../metaboxes.php:445 ../metaboxes.php:887
|
557 |
msgid "Columns"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../metaboxes.php:457 ../metaboxes.php:898
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
msgid "Portfolio Work Types"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../metaboxes.php:463 ../metaboxes.php:905
|
565 |
msgid "Order Items By"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../metaboxes.php:475 ../metaboxes.php:917
|
569 |
msgid "Items per Page"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../metaboxes.php:476 ../metaboxes.php:918
|
573 |
msgid "How many portfolio items per page"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../metaboxes.php:480 ../metaboxes.php:922
|
577 |
msgid "All"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../metaboxes.php:498
|
581 |
msgid "Image Ratio?"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../metaboxes.php:504
|
585 |
msgid "Square 1:1"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../metaboxes.php:505
|
589 |
msgid "Portrait 3:4"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../metaboxes.php:506
|
593 |
msgid "Landscape 4:3"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../metaboxes.php:507
|
597 |
msgid "Wide Landscape 4:2"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../metaboxes.php:511 ../metaboxes.php:946
|
601 |
msgid "Display Item Work Types"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../metaboxes.php:517 ../metaboxes.php:952
|
605 |
msgid "Display Item Excerpt"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../metaboxes.php:523
|
609 |
msgid "Add Lightbox link in each item"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../metaboxes.php:532 ../metaboxes.php:971
|
613 |
msgid "Feature Page Options"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../metaboxes.php:541
|
617 |
msgid "Header Options"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../metaboxes.php:542
|
621 |
msgid "If image slider make sure images uploaded are at-least 1170px wide."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../metaboxes.php:547
|
625 |
msgid "Page Title"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../metaboxes.php:554 ../metaboxes.php:1130
|
629 |
msgid "Slider Images"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../metaboxes.php:555
|
633 |
msgid "Add for flex, carousel, and image carousel."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../metaboxes.php:560
|
637 |
msgid "If Cyclone Slider"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../metaboxes.php:561
|
641 |
msgid ""
|
642 |
"Paste Cyclone slider shortcode here (example: [cycloneslider id=\"slider1\"])"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../metaboxes.php:573
|
646 |
msgid ""
|
647 |
"Default is: 1140 on fullwidth posts (Note: just input number, example: 650, "
|
648 |
"does not apply to Carousel slider)"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: ../metaboxes.php:578 ../metaboxes.php:715 ../metaboxes.php:1019
|
652 |
msgid "If Video Post"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: ../metaboxes.php:587 ../metaboxes.php:1028
|
656 |
msgid "Contact Page Options"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../metaboxes.php:596 ../metaboxes.php:1037
|
660 |
msgid "Use Contact Form"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../metaboxes.php:606 ../metaboxes.php:1047
|
664 |
msgid "Contact Form Title"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: ../metaboxes.php:607 ../metaboxes.php:1048
|
668 |
msgid "ex. Send us an Email"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../metaboxes.php:612
|
672 |
msgid "Contact Form Email Recipient"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: ../metaboxes.php:613
|
676 |
msgid "ex. joe@gmail.com"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: ../metaboxes.php:618 ../metaboxes.php:1053
|
680 |
msgid "Use Simple Math Question"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: ../metaboxes.php:628 ../metaboxes.php:1063
|
684 |
msgid "Use Map"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: ../metaboxes.php:638 ../metaboxes.php:1073
|
688 |
msgid "Address"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../metaboxes.php:639 ../metaboxes.php:1074
|
692 |
msgid "Enter your Location"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../metaboxes.php:644 ../metaboxes.php:1079
|
696 |
msgid "Map Type"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: ../metaboxes.php:649 ../metaboxes.php:1084
|
700 |
msgid "ROADMAP"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: ../metaboxes.php:650 ../metaboxes.php:1085
|
704 |
msgid "HYBRID"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: ../metaboxes.php:651 ../metaboxes.php:1086
|
708 |
msgid "TERRAIN"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../metaboxes.php:652 ../metaboxes.php:1087
|
712 |
msgid "SATELLITE"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../metaboxes.php:656 ../metaboxes.php:1091
|
716 |
msgid "Map Zoom Level"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: ../metaboxes.php:657 ../metaboxes.php:1092
|
720 |
msgid "A good place to start is 15"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../metaboxes.php:662 ../metaboxes.php:1097
|
724 |
msgid "1 (World View)"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../metaboxes.php:682 ../metaboxes.php:1117
|
728 |
msgid "21 (Street View)"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../metaboxes.php:686 ../metaboxes.php:1121
|
732 |
msgid "Map Height"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: ../metaboxes.php:687 ../metaboxes.php:1122
|
736 |
msgid "Default is 300"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../metaboxes.php:707
|
740 |
msgid "Post Video Box"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: ../metaboxes.php:737
|
744 |
msgid "Beside"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../metaboxes.php:749 ../metaboxes.php:985
|
748 |
msgid "Image Slider"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../metaboxes.php:771
|
752 |
msgid "Default is: 450 <b>(Note: just input number, example: 350)</b>"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../metaboxes.php:777
|
756 |
msgid ""
|
757 |
"Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: "
|
758 |
"just input number, example: 650)</b>"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../metaboxes.php:782
|
762 |
msgid "Auto Play Slider?"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../metaboxes.php:858
|
766 |
msgid "Similar Portfolio Item Carousel"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../metaboxes.php:859
|
770 |
msgid "Display a carousel with similar portfolio items below project?"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../metaboxes.php:864
|
774 |
msgid "Yes - Display Recent Projects"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../metaboxes.php:940
|
778 |
msgid "Set image height"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../metaboxes.php:941
|
782 |
msgid "Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../metaboxes.php:958
|
786 |
msgid "Add Lightbox link in the top right of each item"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../metaboxes.php:980
|
790 |
msgid "Feature Options"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../metaboxes.php:981
|
794 |
msgid "If image slider make sure images uploaded are at least 1140px wide."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../metaboxes.php:991 ../metaboxes.php:1137
|
798 |
+
msgid "Slider Gallery"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: ../metaboxes.php:998
|
802 |
msgid "Default is: 400 <b>(Note: just input number, example: 350)</b>"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../metaboxes.php:1004
|
806 |
msgid ""
|
807 |
"Default is: 1140 <b>(Note: just input number, example: 650, does not apply "
|
808 |
"to Carousel slider)</b>"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: ../metaboxes.php:1009
|
812 |
msgid "Use Lightbox for Feature Image"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../metaboxes.php:1010
|
816 |
msgid ""
|
817 |
"If feature option is set to image, choose to use lightbox link with image."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: ../page-contact.php:13 ../template-contact.php:13
|
|
|
|
|
|
|
|
|
821 |
msgid "This field is required."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../page-contact.php:14 ../template-contact.php:14
|
825 |
msgid "Please enter a valid email address."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../page-contact.php:97 ../template-contact.php:98
|
829 |
msgid "Check your math."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../page-contact.php:102 ../template-contact.php:103
|
833 |
msgid "Please enter your name."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../page-contact.php:109 ../template-contact.php:110
|
837 |
msgid "Please enter your email address."
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../page-contact.php:112 ../template-contact.php:113
|
841 |
msgid "You entered an invalid email address."
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: ../page-contact.php:119 ../template-contact.php:120
|
845 |
msgid "Please enter a message."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: ../page-contact.php:136 ../pagetemplater.php:28 ../pagetemplater.php:116
|
849 |
+
#: ../template-contact.php:137
|
850 |
msgid "Contact"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: ../page-contact.php:136 ../template-contact.php:137
|
854 |
msgid "From"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../page-contact.php:137 ../template-contact.php:138
|
858 |
msgid "Name"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: ../page-contact.php:138 ../template-contact.php:139
|
862 |
msgid "Email"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: ../page-contact.php:139 ../template-contact.php:140
|
866 |
msgid "Comments"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: ../page-contact.php:177 ../template-contact.php:175
|
870 |
msgid "Thanks, your email was sent successfully."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: ../page-contact.php:182 ../template-contact.php:179
|
874 |
msgid "Sorry, an error occured."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: ../page-contact.php:188 ../template-contact.php:185
|
878 |
msgid "Name:"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: ../page-contact.php:196 ../template-contact.php:195
|
882 |
+
msgid "Email:"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: ../page-contact.php:204 ../template-contact.php:202
|
886 |
+
msgid "Message:"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: ../page-contact.php:224 ../template-contact.php:220
|
890 |
msgid "Send Email"
|
891 |
msgstr ""
|
892 |
|
1238 |
#: ../shortcodes/youtube/youtube_popup.php:66
|
1239 |
msgid "YouTube Link"
|
1240 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
metaboxes.php
CHANGED
@@ -14,8 +14,8 @@ function kadtool_gallery_field( $field, $meta ) {
|
|
14 |
}
|
15 |
echo '</div>';
|
16 |
echo ' <input type="hidden" id="' . esc_attr($field['id']) . '" name="' . esc_attr($field['id']) . '" class="gallery_values" value="' . esc_attr($meta) . '" />';
|
17 |
-
echo '<a href="#" onclick="return false;" id="edit-gallery" class="gallery-attachments button button-primary">' . __('Add/Edit Gallery', '
|
18 |
-
echo '<a href="#" onclick="return false;" id="clear-gallery" class="gallery-attachments button">' . __('Clear Gallery', '
|
19 |
echo '</div>';
|
20 |
|
21 |
if ( ! empty( $field['desc'] ) ) echo '<p class="cmb_metabox_description">' . $field['desc'] . '</p>';
|
@@ -41,89 +41,89 @@ function kadence_pinnacletoolkit_metaboxes( array $meta_boxes ) {
|
|
41 |
$prefix = '_kad_';
|
42 |
$meta_boxes[] = array(
|
43 |
'id' => 'subtitle_metabox',
|
44 |
-
'title' => __( "Page Title and Subtitle", '
|
45 |
'pages' => array( 'page' ), // Post type
|
46 |
'context' => 'normal',
|
47 |
'priority' => 'default',
|
48 |
'show_names' => true, // Show field names on the left
|
49 |
'fields' => array(
|
50 |
array(
|
51 |
-
'name' => __( "Subtitle", '
|
52 |
-
'desc' => __( "Subtitle will go below page title", '
|
53 |
'id' => $prefix . 'subtitle',
|
54 |
'type' => 'textarea_code',
|
55 |
),
|
56 |
array(
|
57 |
-
'name' => __("Hide Page Title", '
|
58 |
'desc' => '',
|
59 |
'id' => $prefix . 'pagetitle_hide',
|
60 |
'type' => 'select',
|
61 |
'options' => array(
|
62 |
-
array( 'name' => __("Default", '
|
63 |
-
array( 'name' => __("Show", '
|
64 |
-
array( 'name' => __("Hide", '
|
65 |
),
|
66 |
),
|
67 |
array(
|
68 |
-
'name' => __("Page Title background behind Header", '
|
69 |
'desc' => '',
|
70 |
'id' => $prefix . 'pagetitle_behind_head',
|
71 |
'type' => 'select',
|
72 |
'options' => array(
|
73 |
-
array( 'name' => __("Default", '
|
74 |
-
array( 'name' => __("Place behind Header", '
|
75 |
-
array( 'name' => __("Don't place behind Header", '
|
76 |
),
|
77 |
),
|
78 |
)
|
79 |
);
|
80 |
$meta_boxes[] = array(
|
81 |
'id' => 'subtitle_metabox',
|
82 |
-
'title' => __( "Post Title and Subtitle", '
|
83 |
'pages' => array( 'product', 'post', 'portfolio'), // Post type
|
84 |
'context' => 'normal',
|
85 |
'priority' => 'default',
|
86 |
'show_names' => true, // Show field names on the left
|
87 |
'fields' => array(
|
88 |
array(
|
89 |
-
'name' => __( "Post Header Title", '
|
90 |
-
'desc' => __( "Post Header Title", '
|
91 |
'id' => $prefix . 'post_header_title',
|
92 |
'type' => 'textarea_code',
|
93 |
),
|
94 |
array(
|
95 |
-
'name' => __( "Subtitle", '
|
96 |
-
'desc' => __( "Subtitle will go below post title", '
|
97 |
'id' => $prefix . 'subtitle',
|
98 |
'type' => 'textarea_code',
|
99 |
),
|
100 |
array(
|
101 |
-
'name' => __("Hide Page Title", '
|
102 |
'desc' => '',
|
103 |
'id' => $prefix . 'pagetitle_hide',
|
104 |
'type' => 'select',
|
105 |
'options' => array(
|
106 |
-
array( 'name' => __("Default", '
|
107 |
-
array( 'name' => __("Show", '
|
108 |
-
array( 'name' => __("Hide", '
|
109 |
),
|
110 |
),
|
111 |
array(
|
112 |
-
'name' => __("Page Title background behind Header", '
|
113 |
'desc' => '',
|
114 |
'id' => $prefix . 'pagetitle_behind_head',
|
115 |
'type' => 'select',
|
116 |
'options' => array(
|
117 |
-
array( 'name' => __("Default", '
|
118 |
-
array( 'name' => __("Place behind Header", '
|
119 |
-
array( 'name' => __("Don't place behind Header", '
|
120 |
),
|
121 |
),
|
122 |
)
|
123 |
);
|
124 |
$meta_boxes[] = array(
|
125 |
'id' => 'gallery_post_metabox',
|
126 |
-
'title' => __("Gallery Post Options", '
|
127 |
'pages' => array( 'post',), // Post type
|
128 |
//'show_on' => array( 'key' => 'format', 'value' => 'standard'),
|
129 |
'context' => 'normal',
|
@@ -132,53 +132,53 @@ $meta_boxes[] = array(
|
|
132 |
'fields' => array(
|
133 |
|
134 |
array(
|
135 |
-
'name' => __("Post Head Content", '
|
136 |
'desc' => '',
|
137 |
'id' => $prefix . 'gallery_blog_head',
|
138 |
'type' => 'select',
|
139 |
'options' => array(
|
140 |
-
array( 'name' => __("Gallery Post Default", '
|
141 |
-
array( 'name' => __("Image Slider - (Flex Slider)", '
|
142 |
-
array( 'name' => __("Carousel Slider - (Caroufedsel Slider)", '
|
143 |
-
array( 'name' => __("None", '
|
144 |
),
|
145 |
),
|
146 |
array(
|
147 |
-
'name' => __("Post Slider Gallery", '
|
148 |
-
'desc' => __("Add images for gallery here", '
|
149 |
'id' => $prefix . 'image_gallery',
|
150 |
'type' => 'kad_gallery',
|
151 |
),
|
152 |
array(
|
153 |
-
'name' => __("Max Slider Height", '
|
154 |
-
'desc' => __("Default is: 400 (Note: just input number, example: 350)", '
|
155 |
'id' => $prefix . 'gallery_posthead_height',
|
156 |
'type' => 'text_small',
|
157 |
),
|
158 |
array(
|
159 |
-
'name' => __("Max Slider Width", '
|
160 |
-
'desc' => __("Default is: 848 or 1140 on fullwidth posts (Note: just input number, example: 650, only applys to Image Slider)", '
|
161 |
'id' => $prefix . 'gallery_posthead_width',
|
162 |
'type' => 'text_small',
|
163 |
),
|
164 |
array(
|
165 |
-
'name' => __("Post Summary", '
|
166 |
'desc' => '',
|
167 |
'id' => $prefix . 'gallery_post_summery',
|
168 |
'type' => 'select',
|
169 |
'options' => array(
|
170 |
-
array( 'name' => __('Gallery Post Default', '
|
171 |
-
array( 'name' => __('Portrait Image (feature image)', '
|
172 |
-
array( 'name' => __('Landscape Image (feature image)', '
|
173 |
-
array( 'name' => __('Portrait Image Slider', '
|
174 |
-
array( 'name' => __('Landscape Image Slider', '
|
175 |
),
|
176 |
),
|
177 |
),
|
178 |
);
|
179 |
$meta_boxes[] = array(
|
180 |
'id' => 'video_post_metabox',
|
181 |
-
'title' => __("Video Post Options", '
|
182 |
'pages' => array( 'post',), // Post type
|
183 |
//'show_on' => array( 'key' => 'format', 'value' => 'standard'),
|
184 |
'context' => 'normal',
|
@@ -187,45 +187,45 @@ $meta_boxes[] = array(
|
|
187 |
'fields' => array(
|
188 |
|
189 |
array(
|
190 |
-
'name' => __("Post Head Content", '
|
191 |
'desc' => '',
|
192 |
'id' => $prefix . 'video_blog_head',
|
193 |
'type' => 'select',
|
194 |
'options' => array(
|
195 |
-
array( 'name' => __("Video Post Default", '
|
196 |
-
array( 'name' => __("Video", '
|
197 |
-
array( 'name' => __("None", '
|
198 |
),
|
199 |
),
|
200 |
array(
|
201 |
-
'name' => __('Video Post embed code', '
|
202 |
-
'desc' => __('Place Embed Code Here, works with youtube, vimeo. (Use the featured image for screen shot)', '
|
203 |
'id' => $prefix . 'post_video',
|
204 |
'type' => 'textarea_code',
|
205 |
),
|
206 |
array(
|
207 |
-
'name' => __("Max Video Width", '
|
208 |
-
'desc' => __("Default is: 848 or 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to carousel slider)", '
|
209 |
'id' => $prefix . 'video_posthead_width',
|
210 |
'type' => 'text_small',
|
211 |
),
|
212 |
array(
|
213 |
-
'name' => __("Post Summary", '
|
214 |
'desc' => '',
|
215 |
'id' => $prefix . 'video_post_summery',
|
216 |
'type' => 'select',
|
217 |
'options' => array(
|
218 |
-
array( 'name' => __('Video Post Default', '
|
219 |
-
array( 'name' => __('Video - (when possible)', '
|
220 |
-
array( 'name' => __('Portrait Image (feature image)', '
|
221 |
-
array( 'name' => __('Landscape Image (feature image)', '
|
222 |
),
|
223 |
),
|
224 |
),
|
225 |
);
|
226 |
$meta_boxes[] = array(
|
227 |
'id' => 'portfolio_post_metabox',
|
228 |
-
'title' => __('Portfolio Post Options', '
|
229 |
'pages' => array( 'portfolio' ), // Post type
|
230 |
'context' => 'normal',
|
231 |
'priority' => 'high',
|
@@ -233,111 +233,125 @@ $meta_boxes[] = array(
|
|
233 |
'fields' => array(
|
234 |
|
235 |
array(
|
236 |
-
'name' => __('Project Layout', '
|
237 |
'desc' => '<a href="http://docs.kadencethemes.com/pinnacle/#portfolio_posts" target="_blank" >Whats the difference?</a>',
|
238 |
'id' => $prefix . 'ppost_layout',
|
239 |
'type' => 'radio_inline',
|
240 |
'options' => array(
|
241 |
-
array( 'name' => __('Beside 40%', '
|
242 |
-
array( 'name' => __('Beside 33%', '
|
243 |
-
array( 'name' => __('Above', '
|
244 |
-
array( 'name' => __('Three Rows', '
|
245 |
),
|
246 |
),
|
247 |
array(
|
248 |
-
'name' => __('Project Options', '
|
249 |
'desc' => '',
|
250 |
'id' => $prefix . 'ppost_type',
|
251 |
'type' => 'select',
|
252 |
'options' => array(
|
253 |
-
array( 'name' => __('Image', '
|
254 |
-
array( 'name' => __('Image Slider (Flex Slider)', '
|
255 |
-
array( 'name' => __('Carousel Slider', '
|
256 |
-
array( 'name' => __('Video', '
|
257 |
-
array( 'name' => __('
|
|
|
258 |
),
|
259 |
),
|
260 |
array(
|
261 |
-
'name'
|
262 |
-
'desc'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
'id' => $prefix . 'image_gallery',
|
264 |
'type' => 'kad_gallery',
|
265 |
),
|
266 |
array(
|
267 |
-
'name' => __("Max Image/Slider Height", '
|
268 |
-
'desc' => __("Default is: 450 (Note: just input number, example: 350)", '
|
269 |
'id' => $prefix . 'posthead_height',
|
270 |
'type' => 'text_small',
|
271 |
),
|
272 |
array(
|
273 |
-
'name' => __("Max Image/Slider Width", '
|
274 |
-
'desc' => __("Default is: 670 or 1140 on above or three row layouts (Note: just input number, example: 650)", '
|
275 |
'id' => $prefix . 'posthead_width',
|
276 |
'type' => 'text_small',
|
277 |
),
|
278 |
array(
|
279 |
-
'name' => __('Value 01 Title', '
|
280 |
-
'desc' => __('ex. Project Type:', '
|
281 |
'id' => $prefix . 'project_val01_title',
|
282 |
'type' => 'text_medium',
|
283 |
),
|
284 |
array(
|
285 |
-
'name' => __('Value 01 Description', '
|
286 |
-
'desc' => __('ex. Character Illustration', '
|
287 |
'id' => $prefix . 'project_val01_description',
|
288 |
'type' => 'text_medium',
|
289 |
),
|
290 |
array(
|
291 |
-
'name' => __('Value 02 Title', '
|
292 |
-
'desc' => __('ex. Skills Needed:', '
|
293 |
'id' => $prefix . 'project_val02_title',
|
294 |
'type' => 'text_medium',
|
295 |
),
|
296 |
array(
|
297 |
-
'name' => __('Value 02 Description', '
|
298 |
-
'desc' => __('ex. Photoshop, Illustrator', '
|
299 |
'id' => $prefix . 'project_val02_description',
|
300 |
'type' => 'text_medium',
|
301 |
),
|
302 |
array(
|
303 |
-
'name' => __('Value 03 Title', '
|
304 |
-
'desc' => __('ex. Customer:', '
|
305 |
'id' => $prefix . 'project_val03_title',
|
306 |
'type' => 'text_medium',
|
307 |
),
|
308 |
array(
|
309 |
-
'name' => __('Value 03 Description', '
|
310 |
-
'desc' => __('ex. Example Inc', '
|
311 |
'id' => $prefix . 'project_val03_description',
|
312 |
'type' => 'text_medium',
|
313 |
),
|
314 |
array(
|
315 |
-
'name' => __('Value 04 Title', '
|
316 |
-
'desc' => __('ex. Project Year:', '
|
317 |
'id' => $prefix . 'project_val04_title',
|
318 |
'type' => 'text_medium',
|
319 |
),
|
320 |
array(
|
321 |
-
'name' => __('Value 04 Description', '
|
322 |
-
'desc' => __('ex. 2013', '
|
323 |
'id' => $prefix . 'project_val04_description',
|
324 |
'type' => 'text_medium',
|
325 |
),
|
326 |
array(
|
327 |
-
'name' => __('External Website', '
|
328 |
-
'desc' => __('ex. Website:', '
|
329 |
'id' => $prefix . 'project_val05_title',
|
330 |
'type' => 'text_medium',
|
331 |
),
|
332 |
array(
|
333 |
-
'name' => __('Website Address', '
|
334 |
-
'desc' => __('ex. http://www.example.com', '
|
335 |
'id' => $prefix . 'project_val05_description',
|
336 |
'type' => 'text_medium',
|
337 |
),
|
338 |
array(
|
339 |
-
'name' => __('If Video Project', '
|
340 |
-
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', '
|
341 |
'id' => $prefix . 'post_video',
|
342 |
'type' => 'textarea_code',
|
343 |
),
|
@@ -346,50 +360,50 @@ $meta_boxes[] = array(
|
|
346 |
);
|
347 |
$meta_boxes[] = array(
|
348 |
'id' => 'portfolio_post_carousel_metabox',
|
349 |
-
'title' => __('Bottom Carousel Options', '
|
350 |
'pages' => array( 'portfolio' ), // Post type
|
351 |
'context' => 'normal',
|
352 |
'priority' => 'high',
|
353 |
'show_names' => true, // Show field names on the left
|
354 |
'fields' => array(
|
355 |
array(
|
356 |
-
'name' => __('Carousel Title', '
|
357 |
-
'desc' => __('ex. Similar Projects', '
|
358 |
'id' => $prefix . 'portfolio_carousel_title',
|
359 |
'type' => 'text_medium',
|
360 |
),
|
361 |
array(
|
362 |
-
'name' => __('Bottom Portfolio Carousel', '
|
363 |
-
'desc' => __('Display a carousel with portfolio items below project?', '
|
364 |
'id' => $prefix . 'portfolio_carousel_recent',
|
365 |
'type' => 'select',
|
366 |
'options' => array(
|
367 |
-
array( 'name' => __('Default', '
|
368 |
-
array( 'name' => __('No', '
|
369 |
-
array( 'name' => __('Yes', '
|
370 |
),
|
371 |
),
|
372 |
array(
|
373 |
-
'name' => __('Carousel Items', '
|
374 |
'desc' => '',
|
375 |
'id' => $prefix . 'portfolio_carousel_group',
|
376 |
'type' => 'select',
|
377 |
'options' => array(
|
378 |
-
array( 'name' => __('Default', '
|
379 |
-
array( 'name' => __('All Portfolio Posts', '
|
380 |
-
array( 'name' => __('Only of same Portfolio Type', '
|
381 |
),
|
382 |
),
|
383 |
array(
|
384 |
-
'name' => __('Carousel Order', '
|
385 |
'desc' => '',
|
386 |
'id' => $prefix . 'portfolio_carousel_order',
|
387 |
'type' => 'select',
|
388 |
'options' => array(
|
389 |
-
array( 'name' => __('Menu Order', '
|
390 |
-
array( 'name' => __('Title', '
|
391 |
-
array( 'name' => __('Date', '
|
392 |
-
array( 'name' => __('Random', '
|
393 |
),
|
394 |
),
|
395 |
|
@@ -397,7 +411,7 @@ $meta_boxes[] = array(
|
|
397 |
);
|
398 |
$meta_boxes[] = array(
|
399 |
'id' => 'portfolio_metabox',
|
400 |
-
'title' => __('Portfolio Page Options', '
|
401 |
'pages' => array( 'page' ), // Post type
|
402 |
'show_on' => array('key' => 'page-template', 'value' => array( 'template-portfolio-grid.php')),
|
403 |
'context' => 'normal',
|
@@ -405,65 +419,65 @@ $meta_boxes[] = array(
|
|
405 |
'show_names' => true, // Show field names on the left
|
406 |
'fields' => array(
|
407 |
array(
|
408 |
-
'name' => __('Style', '
|
409 |
'desc' => '',
|
410 |
'id' => $prefix . 'portfolio_style',
|
411 |
'type' => 'select',
|
412 |
'options' => array(
|
413 |
-
array( 'name' => __('Default', '
|
414 |
-
array( 'name' => __('Post Boxes', '
|
415 |
-
array( 'name' => __('Flat with Margin', '
|
416 |
),
|
417 |
),
|
418 |
array(
|
419 |
-
'name' => __('Hover Style', '
|
420 |
'desc' => '',
|
421 |
'id' => $prefix . 'portfolio_hover_style',
|
422 |
'type' => 'select',
|
423 |
'options' => array(
|
424 |
-
array( 'name' => __('Default', '
|
425 |
-
array( 'name' => __('Light', '
|
426 |
-
array( 'name' => __('Dark', '
|
427 |
-
array( 'name' => __('Primary Color', '
|
428 |
),
|
429 |
),
|
430 |
array(
|
431 |
-
'name' => __('Columns', '
|
432 |
'desc' => '',
|
433 |
'id' => $prefix . 'portfolio_columns',
|
434 |
'type' => 'select',
|
435 |
'options' => array(
|
436 |
-
array( 'name' => __('Four Column', '
|
437 |
-
array( 'name' => __('Three Column', '
|
438 |
-
array( 'name' => __('Two Column', '
|
439 |
-
array( 'name' => __('Five Column', '
|
440 |
),
|
441 |
),
|
442 |
array(
|
443 |
-
'name' => __('Portfolio Work Types', '
|
444 |
'id' => $prefix .'portfolio_type',
|
445 |
'type' => 'imag_select_taxonomy',
|
446 |
'taxonomy' => 'portfolio-type',
|
447 |
),
|
448 |
array(
|
449 |
-
'name' => __('Order Items By', '
|
450 |
'desc' => '',
|
451 |
'id' => $prefix . 'portfolio_order',
|
452 |
'type' => 'select',
|
453 |
'options' => array(
|
454 |
-
array( 'name' => __('Menu Order', '
|
455 |
-
array( 'name' => __('Title', '
|
456 |
-
array( 'name' => __('Date', '
|
457 |
-
array( 'name' => __('Random', '
|
458 |
),
|
459 |
),
|
460 |
array(
|
461 |
-
'name' => __('Items per Page', '
|
462 |
-
'desc' => __('How many portfolio items per page', '
|
463 |
'id' => $prefix . 'portfolio_items',
|
464 |
'type' => 'select',
|
465 |
'options' => array(
|
466 |
-
array( 'name' => __('All', '
|
467 |
array( 'name' => '3', 'value' => '3', ),
|
468 |
array( 'name' => '4', 'value' => '4', ),
|
469 |
array( 'name' => '5', 'value' => '5', ),
|
@@ -481,32 +495,32 @@ $meta_boxes[] = array(
|
|
481 |
),
|
482 |
),
|
483 |
array(
|
484 |
-
'name' => __('Image Ratio?', '
|
485 |
'desc' => '',
|
486 |
'id' => $prefix . 'portfolio_img_ratio',
|
487 |
'type' => 'select',
|
488 |
'options' => array(
|
489 |
-
array( 'name' => __('Default', '
|
490 |
-
array( 'name' => __('Square 1:1', '
|
491 |
-
array( 'name' => __('Portrait 3:4', '
|
492 |
-
array( 'name' => __('Landscape 4:3', '
|
493 |
-
array( 'name' => __('Wide Landscape 4:2', '
|
494 |
),
|
495 |
),
|
496 |
array(
|
497 |
-
'name' => __('Display Item Work Types', '
|
498 |
'desc' => '',
|
499 |
'id' => $prefix . 'portfolio_item_types',
|
500 |
'type' => 'checkbox',
|
501 |
),
|
502 |
array(
|
503 |
-
'name' => __('Display Item Excerpt', '
|
504 |
'desc' => '',
|
505 |
'id' => $prefix . 'portfolio_item_excerpt',
|
506 |
'type' => 'checkbox',
|
507 |
),
|
508 |
array(
|
509 |
-
'name' => __('Add Lightbox link in each item', '
|
510 |
'desc' => '',
|
511 |
'id' => $prefix . 'portfolio_lightbox',
|
512 |
'type' => 'checkbox',
|
@@ -515,7 +529,7 @@ $meta_boxes[] = array(
|
|
515 |
));
|
516 |
$meta_boxes[] = array(
|
517 |
'id' => 'pagefeature_metabox',
|
518 |
-
'title' => __('Feature Page Options', '
|
519 |
'pages' => array( 'page' ), // Post type
|
520 |
'show_on' => array('key' => 'page-template', 'value' => array( 'template-feature.php')),
|
521 |
'context' => 'normal',
|
@@ -524,45 +538,45 @@ $meta_boxes[] = array(
|
|
524 |
'fields' => array(
|
525 |
|
526 |
array(
|
527 |
-
'name' => __('Header Options', '
|
528 |
-
'desc' => __('If image slider make sure images uploaded are at-least 1170px wide.', '
|
529 |
'id' => $prefix . 'page_head',
|
530 |
'type' => 'select',
|
531 |
'defualt' => 'pagetitle',
|
532 |
'options' => array(
|
533 |
-
array( 'name' => __('Page Title', '
|
534 |
-
array( 'name' => __('Image Slider (Flex Slider)', '
|
535 |
-
array( 'name' => __('Carousel Slider', '
|
536 |
-
array( 'name' => __('Video', '
|
537 |
),
|
538 |
),
|
539 |
array(
|
540 |
-
'name' => __("Slider Images", '
|
541 |
-
'desc' => __("Add for flex, carousel, and image carousel.", '
|
542 |
'id' => $prefix . 'image_gallery',
|
543 |
'type' => 'kad_gallery',
|
544 |
),
|
545 |
array(
|
546 |
-
'name' => __('If Cyclone Slider', '
|
547 |
-
'desc' => __('Paste Cyclone slider shortcode here (example: [cycloneslider id="slider1"])', '
|
548 |
'id' => $prefix . 'shortcode_slider',
|
549 |
'type' => 'textarea_code',
|
550 |
),
|
551 |
array(
|
552 |
-
'name' => __('Max Image/Slider Height', '
|
553 |
-
'desc' => __('Default is: 400 (Note: just input number, example: 350)', '
|
554 |
'id' => $prefix . 'posthead_height',
|
555 |
'type' => 'text_small',
|
556 |
),
|
557 |
array(
|
558 |
-
'name' => __("Max Image/Slider Width", '
|
559 |
-
'desc' => __("Default is: 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to Carousel slider)", '
|
560 |
'id' => $prefix . 'posthead_width',
|
561 |
'type' => 'text_small',
|
562 |
),
|
563 |
array(
|
564 |
-
'name' => __('If Video Post', '
|
565 |
-
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', '
|
566 |
'id' => $prefix . 'post_video',
|
567 |
'type' => 'textarea_code',
|
568 |
),
|
@@ -570,7 +584,7 @@ $meta_boxes[] = array(
|
|
570 |
));
|
571 |
$meta_boxes[] = array(
|
572 |
'id' => 'contact_metabox',
|
573 |
-
'title' => __('Contact Page Options', '
|
574 |
'pages' => array( 'page' ), // Post type
|
575 |
'show_on' => array('key' => 'page-template', 'value' => array( 'template-contact.php')),
|
576 |
'context' => 'normal',
|
@@ -579,73 +593,73 @@ $meta_boxes[] = array(
|
|
579 |
'fields' => array(
|
580 |
|
581 |
array(
|
582 |
-
'name' => __('Use Contact Form', '
|
583 |
'desc' => '',
|
584 |
'id' => $prefix .'contact_form',
|
585 |
'type' => 'select',
|
586 |
'options' => array(
|
587 |
-
array( 'name' => __('Yes', '
|
588 |
-
array( 'name' => __('No', '
|
589 |
),
|
590 |
),
|
591 |
array(
|
592 |
-
'name' => __('Contact Form Title', '
|
593 |
-
'desc' => __('ex. Send us an Email', '
|
594 |
'id' => $prefix . 'contact_form_title',
|
595 |
'type' => 'text',
|
596 |
),
|
597 |
array(
|
598 |
-
'name' => __('Contact Form Email Recipient', '
|
599 |
-
'desc' => __('ex. joe@gmail.com', '
|
600 |
'id' => $prefix . 'contact_form_email',
|
601 |
'type' => 'text',
|
602 |
),
|
603 |
array(
|
604 |
-
'name' => __('Use Simple Math Question', '
|
605 |
'desc' => 'Adds a simple math question to form.',
|
606 |
'id' => $prefix .'contact_form_math',
|
607 |
'type' => 'select',
|
608 |
'options' => array(
|
609 |
-
array( 'name' => __('Yes', '
|
610 |
-
array( 'name' => __('No', '
|
611 |
),
|
612 |
),
|
613 |
array(
|
614 |
-
'name' => __('Use Map', '
|
615 |
'desc' => '',
|
616 |
'id' => $prefix .'contact_map',
|
617 |
'type' => 'select',
|
618 |
'options' => array(
|
619 |
-
array( 'name' => __('No', '
|
620 |
-
array( 'name' => __('Yes', '
|
621 |
),
|
622 |
),
|
623 |
array(
|
624 |
-
'name' => __('Address', '
|
625 |
-
'desc' => __('Enter your Location', '
|
626 |
'id' => $prefix . 'contact_address',
|
627 |
'type' => 'text',
|
628 |
),
|
629 |
array(
|
630 |
-
'name' => __('Map Type', '
|
631 |
'desc' => '',
|
632 |
'id' => $prefix . 'contact_maptype',
|
633 |
'type' => 'select',
|
634 |
'options' => array(
|
635 |
-
array( 'name' => __('ROADMAP', '
|
636 |
-
array( 'name' => __('HYBRID', '
|
637 |
-
array( 'name' => __('TERRAIN', '
|
638 |
-
array( 'name' => __('SATELLITE', '
|
639 |
),
|
640 |
),
|
641 |
array(
|
642 |
-
'name' => __('Map Zoom Level', '
|
643 |
-
'desc' => __('A good place to start is 15', '
|
644 |
'id' => $prefix . 'contact_zoom',
|
645 |
'std' => '15',
|
646 |
'type' => 'select',
|
647 |
'options' => array(
|
648 |
-
array( 'name' => __('1 (World View)', '
|
649 |
array( 'name' => '2', 'value' => '2', ),
|
650 |
array( 'name' => '3', 'value' => '3', ),
|
651 |
array( 'name' => '4', 'value' => '4', ),
|
@@ -665,12 +679,12 @@ $meta_boxes[] = array(
|
|
665 |
array( 'name' => '18', 'value' => '18', ),
|
666 |
array( 'name' => '19', 'value' => '19', ),
|
667 |
array( 'name' => '20', 'value' => '20', ),
|
668 |
-
array( 'name' => __('21 (Street View)', '
|
669 |
),
|
670 |
),
|
671 |
array(
|
672 |
-
'name' => __('Map Height', '
|
673 |
-
'desc' => __('Default is 300', '
|
674 |
'id' => $prefix . 'contact_mapheight',
|
675 |
'type' => 'text_small',
|
676 |
),
|
@@ -690,7 +704,7 @@ function kadence_virtuetoolkit_metaboxes( array $meta_boxes ) {
|
|
690 |
$prefix = '_kad_';
|
691 |
$meta_boxes[] = array(
|
692 |
'id' => 'post_video_metabox',
|
693 |
-
'title' => __('Post Video Box', '
|
694 |
'pages' => array( 'post',), // Post type
|
695 |
'context' => 'normal',
|
696 |
'priority' => 'high',
|
@@ -698,8 +712,8 @@ function kadence_virtuetoolkit_metaboxes( array $meta_boxes ) {
|
|
698 |
'fields' => array(
|
699 |
|
700 |
array(
|
701 |
-
'name' => __('If Video Post', '
|
702 |
-
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', '
|
703 |
'id' => $prefix . 'post_video',
|
704 |
'type' => 'textarea_code',
|
705 |
),
|
@@ -707,7 +721,7 @@ function kadence_virtuetoolkit_metaboxes( array $meta_boxes ) {
|
|
707 |
);
|
708 |
$meta_boxes[] = array(
|
709 |
'id' => 'portfolio_post_metabox',
|
710 |
-
'title' => __('Portfolio Post Options', '
|
711 |
'pages' => array( 'portfolio' ), // Post type
|
712 |
'context' => 'normal',
|
713 |
'priority' => 'high',
|
@@ -715,130 +729,144 @@ function kadence_virtuetoolkit_metaboxes( array $meta_boxes ) {
|
|
715 |
'fields' => array(
|
716 |
|
717 |
array(
|
718 |
-
'name' => __('Project Layout', '
|
719 |
'desc' => '<a href="http://docs.kadencethemes.com/virtue/#portfolio_posts" target="_new" >Whats the difference?</a>',
|
720 |
'id' => $prefix . 'ppost_layout',
|
721 |
'type' => 'radio_inline',
|
722 |
'options' => array(
|
723 |
-
array( 'name' => __('Beside', '
|
724 |
-
array( 'name' => __('Above', '
|
725 |
-
array( 'name' => __('Three Rows', '
|
726 |
),
|
727 |
),
|
728 |
array(
|
729 |
-
'name' => __('Project Options', '
|
730 |
'desc' => '',
|
731 |
'id' => $prefix . 'ppost_type',
|
732 |
'type' => 'select',
|
733 |
'options' => array(
|
734 |
-
array( 'name' => __('Image', '
|
735 |
-
array( 'name' => __('Image Slider', '
|
736 |
-
array( 'name' => __('Carousel Slider', '
|
737 |
-
array( 'name' => __('
|
738 |
-
array( 'name' => __('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
739 |
),
|
740 |
),
|
741 |
array(
|
742 |
-
'name' => __("Max Image/Slider Height", '
|
743 |
-
'desc' => __("Default is: 450 <b>(Note: just input number, example: 350)</b>", '
|
744 |
'id' => $prefix . 'posthead_height',
|
745 |
'type' => 'text_small',
|
746 |
),
|
747 |
array(
|
748 |
-
'name' => __("Max Image/Slider Width", '
|
749 |
-
'desc' => __("Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: just input number, example: 650)</b>", '
|
750 |
'id' => $prefix . 'posthead_width',
|
751 |
'type' => 'text_small',
|
752 |
),
|
753 |
array(
|
754 |
-
'name' => __('Auto Play Slider?', '
|
755 |
'desc' => '',
|
756 |
'id' => $prefix . 'portfolio_autoplay',
|
757 |
'type' => 'select',
|
758 |
'options' => array(
|
759 |
-
array( 'name' => __('Yes', '
|
760 |
-
array( 'name' => __('No', '
|
761 |
),
|
762 |
),
|
763 |
array(
|
764 |
-
'name' => __('Value 01 Title', '
|
765 |
-
'desc' => __('ex. Project Type:', '
|
766 |
'id' => $prefix . 'project_val01_title',
|
767 |
'type' => 'text_medium',
|
768 |
),
|
769 |
array(
|
770 |
-
'name' => __('Value 01 Description', '
|
771 |
-
'desc' => __('ex. Character Illustration', '
|
772 |
'id' => $prefix . 'project_val01_description',
|
773 |
'type' => 'text_medium',
|
774 |
),
|
775 |
array(
|
776 |
-
'name' => __('Value 02 Title', '
|
777 |
-
'desc' => __('ex. Skills Needed:', '
|
778 |
'id' => $prefix . 'project_val02_title',
|
779 |
'type' => 'text_medium',
|
780 |
),
|
781 |
array(
|
782 |
-
'name' => __('Value 02 Description', '
|
783 |
-
'desc' => __('ex. Photoshop, Illustrator', '
|
784 |
'id' => $prefix . 'project_val02_description',
|
785 |
'type' => 'text_medium',
|
786 |
),
|
787 |
array(
|
788 |
-
'name' => __('Value 03 Title', '
|
789 |
-
'desc' => __('ex. Customer:', '
|
790 |
'id' => $prefix . 'project_val03_title',
|
791 |
'type' => 'text_medium',
|
792 |
),
|
793 |
array(
|
794 |
-
'name' => __('Value 03 Description', '
|
795 |
-
'desc' => __('ex. Example Inc', '
|
796 |
'id' => $prefix . 'project_val03_description',
|
797 |
'type' => 'text_medium',
|
798 |
),
|
799 |
array(
|
800 |
-
'name' => __('Value 04 Title', '
|
801 |
-
'desc' => __('ex. Project Year:', '
|
802 |
'id' => $prefix . 'project_val04_title',
|
803 |
'type' => 'text_medium',
|
804 |
),
|
805 |
array(
|
806 |
-
'name' => __('Value 04 Description', '
|
807 |
-
'desc' => __('ex. 2013', '
|
808 |
'id' => $prefix . 'project_val04_description',
|
809 |
'type' => 'text_medium',
|
810 |
),
|
811 |
array(
|
812 |
-
'name' => __('External Website', '
|
813 |
-
'desc' => __('ex. Website:', '
|
814 |
'id' => $prefix . 'project_val05_title',
|
815 |
'type' => 'text_medium',
|
816 |
),
|
817 |
array(
|
818 |
-
'name' => __('Website Address', '
|
819 |
-
'desc' => __('ex. http://www.example.com', '
|
820 |
'id' => $prefix . 'project_val05_description',
|
821 |
'type' => 'text_medium',
|
822 |
),
|
823 |
array(
|
824 |
-
'name' => __('If Video Project', '
|
825 |
-
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', '
|
826 |
'id' => $prefix . 'post_video',
|
827 |
'type' => 'textarea_code',
|
828 |
),
|
829 |
array(
|
830 |
-
'name' => __('Similar Portfolio Item Carousel', '
|
831 |
-
'desc' => __('Display a carousel with similar portfolio items below project?', '
|
832 |
'id' => $prefix . 'portfolio_carousel_recent',
|
833 |
'type' => 'select',
|
834 |
'options' => array(
|
835 |
-
array( 'name' => __('No', '
|
836 |
-
array( 'name' => __('Yes - Display Recent Projects', '
|
837 |
),
|
838 |
),
|
839 |
array(
|
840 |
-
'name' => __('Carousel Title', '
|
841 |
-
'desc' => __('ex. Similar Projects', '
|
842 |
'id' => $prefix . 'portfolio_carousel_title',
|
843 |
'type' => 'text_medium',
|
844 |
),
|
@@ -847,7 +875,7 @@ function kadence_virtuetoolkit_metaboxes( array $meta_boxes ) {
|
|
847 |
);
|
848 |
$meta_boxes[] = array(
|
849 |
'id' => 'portfolio_metabox',
|
850 |
-
'title' => __('Portfolio Page Options', '
|
851 |
'pages' => array( 'page' ), // Post type
|
852 |
'show_on' => array('key' => 'page-template', 'value' => array( 'page-portfolio.php' )),
|
853 |
'context' => 'normal',
|
@@ -856,42 +884,42 @@ $meta_boxes[] = array(
|
|
856 |
'fields' => array(
|
857 |
|
858 |
array(
|
859 |
-
'name' => __('Columns', '
|
860 |
'desc' => '',
|
861 |
'id' => $prefix . 'portfolio_columns',
|
862 |
'type' => 'select',
|
863 |
'options' => array(
|
864 |
-
array( 'name' => __('Four Column', '
|
865 |
-
array( 'name' => __('Three Column', '
|
866 |
-
array( 'name' => __('Two Column', '
|
867 |
),
|
868 |
),
|
869 |
array(
|
870 |
-
'name' => __('Portfolio Work Types', '
|
871 |
'desc' => '',
|
872 |
'id' => $prefix .'portfolio_type',
|
873 |
'type' => 'imag_select_taxonomy',
|
874 |
'taxonomy' => 'portfolio-type',
|
875 |
),
|
876 |
array(
|
877 |
-
'name' => __('Order Items By', '
|
878 |
'desc' => '',
|
879 |
'id' => $prefix . 'portfolio_order',
|
880 |
'type' => 'select',
|
881 |
'options' => array(
|
882 |
-
array( 'name' => __('Menu Order', '
|
883 |
-
array( 'name' => __('Title', '
|
884 |
-
array( 'name' => __('Date', '
|
885 |
-
array( 'name' => __('Random', '
|
886 |
),
|
887 |
),
|
888 |
array(
|
889 |
-
'name' => __('Items per Page', '
|
890 |
-
'desc' => __('How many portfolio items per page', '
|
891 |
'id' => $prefix . 'portfolio_items',
|
892 |
'type' => 'select',
|
893 |
'options' => array(
|
894 |
-
array( 'name' => __('All', '
|
895 |
array( 'name' => '3', 'value' => '3', ),
|
896 |
array( 'name' => '4', 'value' => '4', ),
|
897 |
array( 'name' => '5', 'value' => '5', ),
|
@@ -909,38 +937,38 @@ $meta_boxes[] = array(
|
|
909 |
),
|
910 |
),
|
911 |
array(
|
912 |
-
'name' => __('Set image height', '
|
913 |
-
'desc' => __('Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>', '
|
914 |
'id' => $prefix . 'portfolio_img_crop',
|
915 |
'type' => 'text_small',
|
916 |
),
|
917 |
array(
|
918 |
-
'name' => __('Display Item Work Types', '
|
919 |
'desc' => '',
|
920 |
'id' => $prefix . 'portfolio_item_types',
|
921 |
'type' => 'checkbox',
|
922 |
),
|
923 |
array(
|
924 |
-
'name' => __('Display Item Excerpt', '
|
925 |
'desc' => '',
|
926 |
'id' => $prefix . 'portfolio_item_excerpt',
|
927 |
'type' => 'checkbox',
|
928 |
),
|
929 |
array(
|
930 |
-
'name' => __('Add Lightbox link in the top right of each item', '
|
931 |
'desc' => '',
|
932 |
'id' => $prefix . 'portfolio_lightbox',
|
933 |
'type' => 'select',
|
934 |
'options' => array(
|
935 |
-
array( 'name' => __('No', '
|
936 |
-
array( 'name' => __('Yes', '
|
937 |
),
|
938 |
),
|
939 |
|
940 |
));
|
941 |
$meta_boxes[] = array(
|
942 |
'id' => 'pagefeature_metabox',
|
943 |
-
'title' => __('Feature Page Options', '
|
944 |
'pages' => array( 'page' ), // Post type
|
945 |
'show_on' => array('key' => 'page-template', 'value' => array( 'page-feature.php', 'page-feature-sidebar.php')),
|
946 |
'context' => 'normal',
|
@@ -949,47 +977,47 @@ $meta_boxes[] = array(
|
|
949 |
'fields' => array(
|
950 |
|
951 |
array(
|
952 |
-
'name' => __('Feature Options', '
|
953 |
-
'desc' => __('If image slider make sure images uploaded are at least 1140px wide.', '
|
954 |
'id' => $prefix . 'page_head',
|
955 |
'type' => 'select',
|
956 |
'options' => array(
|
957 |
-
array( 'name' => __('Image Slider', '
|
958 |
-
array( 'name' => __('Video', '
|
959 |
-
array( 'name' => __('Image', '
|
960 |
),
|
961 |
),
|
962 |
array(
|
963 |
-
'name' => __("Slider Gallery", '
|
964 |
-
'desc' => __("Add images for gallery here", '
|
965 |
'id' => $prefix . 'image_gallery',
|
966 |
'type' => 'kad_gallery',
|
967 |
),
|
968 |
array(
|
969 |
-
'name' => __('Max Image/Slider Height', '
|
970 |
-
'desc' => __('Default is: 400 <b>(Note: just input number, example: 350)</b>', '
|
971 |
'id' => $prefix . 'posthead_height',
|
972 |
'type' => 'text_small',
|
973 |
),
|
974 |
array(
|
975 |
-
'name' => __("Max Image/Slider Width", '
|
976 |
-
'desc' => __("Default is: 1140 <b>(Note: just input number, example: 650, does not apply to Carousel slider)</b>", '
|
977 |
'id' => $prefix . 'posthead_width',
|
978 |
'type' => 'text_small',
|
979 |
),
|
980 |
array(
|
981 |
-
'name' => __('Use Lightbox for Feature Image', '
|
982 |
-
'desc' => __("If feature option is set to image, choose to use lightbox link with image.", '
|
983 |
'id' => $prefix . 'feature_img_lightbox',
|
984 |
'type' => 'select',
|
985 |
'options' => array(
|
986 |
-
array( 'name' => __('Yes', '
|
987 |
-
array( 'name' => __('No', '
|
988 |
),
|
989 |
),
|
990 |
array(
|
991 |
-
'name' => __('If Video Post', '
|
992 |
-
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', '
|
993 |
'id' => $prefix . 'post_video',
|
994 |
'type' => 'textarea_code',
|
995 |
),
|
@@ -997,7 +1025,7 @@ $meta_boxes[] = array(
|
|
997 |
));
|
998 |
$meta_boxes[] = array(
|
999 |
'id' => 'contact_metabox',
|
1000 |
-
'title' => __('Contact Page Options', '
|
1001 |
'pages' => array( 'page' ), // Post type
|
1002 |
'show_on' => array('key' => 'page-template', 'value' => array( 'page-contact.php')),
|
1003 |
'context' => 'normal',
|
@@ -1006,67 +1034,67 @@ $meta_boxes[] = array(
|
|
1006 |
'fields' => array(
|
1007 |
|
1008 |
array(
|
1009 |
-
'name' => __('Use Contact Form', '
|
1010 |
'desc' => '',
|
1011 |
'id' => $prefix .'contact_form',
|
1012 |
'type' => 'select',
|
1013 |
'options' => array(
|
1014 |
-
array( 'name' => __('Yes', '
|
1015 |
-
array( 'name' => __('No', '
|
1016 |
),
|
1017 |
),
|
1018 |
array(
|
1019 |
-
'name' => __('Contact Form Title', '
|
1020 |
-
'desc' => __('ex. Send us an Email', '
|
1021 |
'id' => $prefix . 'contact_form_title',
|
1022 |
'type' => 'text',
|
1023 |
),
|
1024 |
array(
|
1025 |
-
'name' => __('Use Simple Math Question', '
|
1026 |
'desc' => 'Adds a simple math question to form.',
|
1027 |
'id' => $prefix .'contact_form_math',
|
1028 |
'type' => 'select',
|
1029 |
'options' => array(
|
1030 |
-
array( 'name' => __('Yes', '
|
1031 |
-
array( 'name' => __('No', '
|
1032 |
),
|
1033 |
),
|
1034 |
array(
|
1035 |
-
'name' => __('Use Map', '
|
1036 |
'desc' => '',
|
1037 |
'id' => $prefix .'contact_map',
|
1038 |
'type' => 'select',
|
1039 |
'options' => array(
|
1040 |
-
array( 'name' => __('No', '
|
1041 |
-
array( 'name' => __('Yes', '
|
1042 |
),
|
1043 |
),
|
1044 |
array(
|
1045 |
-
'name' => __('Address', '
|
1046 |
-
'desc' => __('Enter your Location', '
|
1047 |
'id' => $prefix . 'contact_address',
|
1048 |
'type' => 'text',
|
1049 |
),
|
1050 |
array(
|
1051 |
-
'name' => __('Map Type', '
|
1052 |
'desc' => '',
|
1053 |
'id' => $prefix . 'contact_maptype',
|
1054 |
'type' => 'select',
|
1055 |
'options' => array(
|
1056 |
-
array( 'name' => __('ROADMAP', '
|
1057 |
-
array( 'name' => __('HYBRID', '
|
1058 |
-
array( 'name' => __('TERRAIN', '
|
1059 |
-
array( 'name' => __('SATELLITE', '
|
1060 |
),
|
1061 |
),
|
1062 |
array(
|
1063 |
-
'name' => __('Map Zoom Level', '
|
1064 |
-
'desc' => __('A good place to start is 15', '
|
1065 |
'id' => $prefix . 'contact_zoom',
|
1066 |
'std' => '15',
|
1067 |
'type' => 'select',
|
1068 |
'options' => array(
|
1069 |
-
array( 'name' => __('1 (World View)', '
|
1070 |
array( 'name' => '2', 'value' => '2', ),
|
1071 |
array( 'name' => '3', 'value' => '3', ),
|
1072 |
array( 'name' => '4', 'value' => '4', ),
|
@@ -1086,12 +1114,12 @@ $meta_boxes[] = array(
|
|
1086 |
array( 'name' => '18', 'value' => '18', ),
|
1087 |
array( 'name' => '19', 'value' => '19', ),
|
1088 |
array( 'name' => '20', 'value' => '20', ),
|
1089 |
-
array( 'name' => __('21 (Street View)', '
|
1090 |
),
|
1091 |
),
|
1092 |
array(
|
1093 |
-
'name' => __('Map Height', '
|
1094 |
-
'desc' => __('Default is 300', '
|
1095 |
'id' => $prefix . 'contact_mapheight',
|
1096 |
'type' => 'text_small',
|
1097 |
),
|
@@ -1099,15 +1127,15 @@ $meta_boxes[] = array(
|
|
1099 |
));
|
1100 |
$meta_boxes[] = array(
|
1101 |
'id' => 'virtue_post_gallery',
|
1102 |
-
'title' => __("Slider Images", '
|
1103 |
'pages' => array( 'post', 'portfolio'), // Post type
|
1104 |
'context' => 'normal',
|
1105 |
'priority' => 'high',
|
1106 |
'show_names' => true, // Show field names on the left
|
1107 |
'fields' => array(
|
1108 |
array(
|
1109 |
-
'name' => __("Slider Gallery", '
|
1110 |
-
'desc' => __("Add images for gallery here", '
|
1111 |
'id' => $prefix . 'image_gallery',
|
1112 |
'type' => 'kad_gallery',
|
1113 |
),
|
14 |
}
|
15 |
echo '</div>';
|
16 |
echo ' <input type="hidden" id="' . esc_attr($field['id']) . '" name="' . esc_attr($field['id']) . '" class="gallery_values" value="' . esc_attr($meta) . '" />';
|
17 |
+
echo '<a href="#" onclick="return false;" id="edit-gallery" class="gallery-attachments button button-primary">' . __('Add/Edit Gallery', 'virtue-toolkit') . '</a>';
|
18 |
+
echo '<a href="#" onclick="return false;" id="clear-gallery" class="gallery-attachments button">' . __('Clear Gallery', 'virtue-toolkit') . '</a>';
|
19 |
echo '</div>';
|
20 |
|
21 |
if ( ! empty( $field['desc'] ) ) echo '<p class="cmb_metabox_description">' . $field['desc'] . '</p>';
|
41 |
$prefix = '_kad_';
|
42 |
$meta_boxes[] = array(
|
43 |
'id' => 'subtitle_metabox',
|
44 |
+
'title' => __( "Page Title and Subtitle", 'virtue-toolkit' ),
|
45 |
'pages' => array( 'page' ), // Post type
|
46 |
'context' => 'normal',
|
47 |
'priority' => 'default',
|
48 |
'show_names' => true, // Show field names on the left
|
49 |
'fields' => array(
|
50 |
array(
|
51 |
+
'name' => __( "Subtitle", 'virtue-toolkit' ),
|
52 |
+
'desc' => __( "Subtitle will go below page title", 'virtue-toolkit' ),
|
53 |
'id' => $prefix . 'subtitle',
|
54 |
'type' => 'textarea_code',
|
55 |
),
|
56 |
array(
|
57 |
+
'name' => __("Hide Page Title", 'virtue-toolkit' ),
|
58 |
'desc' => '',
|
59 |
'id' => $prefix . 'pagetitle_hide',
|
60 |
'type' => 'select',
|
61 |
'options' => array(
|
62 |
+
array( 'name' => __("Default", 'virtue-toolkit' ), 'value' => 'default', ),
|
63 |
+
array( 'name' => __("Show", 'virtue-toolkit' ), 'value' => 'show', ),
|
64 |
+
array( 'name' => __("Hide", 'virtue-toolkit' ), 'value' => 'hide', ),
|
65 |
),
|
66 |
),
|
67 |
array(
|
68 |
+
'name' => __("Page Title background behind Header", 'virtue-toolkit' ),
|
69 |
'desc' => '',
|
70 |
'id' => $prefix . 'pagetitle_behind_head',
|
71 |
'type' => 'select',
|
72 |
'options' => array(
|
73 |
+
array( 'name' => __("Default", 'virtue-toolkit' ), 'value' => 'default', ),
|
74 |
+
array( 'name' => __("Place behind Header", 'virtue-toolkit' ), 'value' => 'true', ),
|
75 |
+
array( 'name' => __("Don't place behind Header", 'virtue-toolkit' ), 'value' => 'false', ),
|
76 |
),
|
77 |
),
|
78 |
)
|
79 |
);
|
80 |
$meta_boxes[] = array(
|
81 |
'id' => 'subtitle_metabox',
|
82 |
+
'title' => __( "Post Title and Subtitle", 'virtue-toolkit' ),
|
83 |
'pages' => array( 'product', 'post', 'portfolio'), // Post type
|
84 |
'context' => 'normal',
|
85 |
'priority' => 'default',
|
86 |
'show_names' => true, // Show field names on the left
|
87 |
'fields' => array(
|
88 |
array(
|
89 |
+
'name' => __( "Post Header Title", 'virtue-toolkit' ),
|
90 |
+
'desc' => __( "Post Header Title", 'virtue-toolkit' ),
|
91 |
'id' => $prefix . 'post_header_title',
|
92 |
'type' => 'textarea_code',
|
93 |
),
|
94 |
array(
|
95 |
+
'name' => __( "Subtitle", 'virtue-toolkit' ),
|
96 |
+
'desc' => __( "Subtitle will go below post title", 'virtue-toolkit' ),
|
97 |
'id' => $prefix . 'subtitle',
|
98 |
'type' => 'textarea_code',
|
99 |
),
|
100 |
array(
|
101 |
+
'name' => __("Hide Page Title", 'virtue-toolkit' ),
|
102 |
'desc' => '',
|
103 |
'id' => $prefix . 'pagetitle_hide',
|
104 |
'type' => 'select',
|
105 |
'options' => array(
|
106 |
+
array( 'name' => __("Default", 'virtue-toolkit' ), 'value' => 'default', ),
|
107 |
+
array( 'name' => __("Show", 'virtue-toolkit' ), 'value' => 'show', ),
|
108 |
+
array( 'name' => __("Hide", 'virtue-toolkit' ), 'value' => 'hide', ),
|
109 |
),
|
110 |
),
|
111 |
array(
|
112 |
+
'name' => __("Page Title background behind Header", 'virtue-toolkit' ),
|
113 |
'desc' => '',
|
114 |
'id' => $prefix . 'pagetitle_behind_head',
|
115 |
'type' => 'select',
|
116 |
'options' => array(
|
117 |
+
array( 'name' => __("Default", 'virtue-toolkit' ), 'value' => 'default', ),
|
118 |
+
array( 'name' => __("Place behind Header", 'virtue-toolkit' ), 'value' => 'true', ),
|
119 |
+
array( 'name' => __("Don't place behind Header", 'virtue-toolkit' ), 'value' => 'false', ),
|
120 |
),
|
121 |
),
|
122 |
)
|
123 |
);
|
124 |
$meta_boxes[] = array(
|
125 |
'id' => 'gallery_post_metabox',
|
126 |
+
'title' => __("Gallery Post Options", 'virtue-toolkit'),
|
127 |
'pages' => array( 'post',), // Post type
|
128 |
//'show_on' => array( 'key' => 'format', 'value' => 'standard'),
|
129 |
'context' => 'normal',
|
132 |
'fields' => array(
|
133 |
|
134 |
array(
|
135 |
+
'name' => __("Post Head Content", 'virtue-toolkit' ),
|
136 |
'desc' => '',
|
137 |
'id' => $prefix . 'gallery_blog_head',
|
138 |
'type' => 'select',
|
139 |
'options' => array(
|
140 |
+
array( 'name' => __("Gallery Post Default", 'virtue-toolkit' ), 'value' => 'default', ),
|
141 |
+
array( 'name' => __("Image Slider - (Flex Slider)", 'virtue-toolkit' ), 'value' => 'flex', ),
|
142 |
+
array( 'name' => __("Carousel Slider - (Caroufedsel Slider)", 'virtue-toolkit' ), 'value' => 'carouselslider', ),
|
143 |
+
array( 'name' => __("None", 'virtue-toolkit' ), 'value' => 'none', ),
|
144 |
),
|
145 |
),
|
146 |
array(
|
147 |
+
'name' => __("Post Slider Gallery", 'virtue-toolkit' ),
|
148 |
+
'desc' => __("Add images for gallery here", 'virtue-toolkit' ),
|
149 |
'id' => $prefix . 'image_gallery',
|
150 |
'type' => 'kad_gallery',
|
151 |
),
|
152 |
array(
|
153 |
+
'name' => __("Max Slider Height", 'virtue-toolkit' ),
|
154 |
+
'desc' => __("Default is: 400 (Note: just input number, example: 350)", 'virtue-toolkit' ),
|
155 |
'id' => $prefix . 'gallery_posthead_height',
|
156 |
'type' => 'text_small',
|
157 |
),
|
158 |
array(
|
159 |
+
'name' => __("Max Slider Width", 'virtue-toolkit' ),
|
160 |
+
'desc' => __("Default is: 848 or 1140 on fullwidth posts (Note: just input number, example: 650, only applys to Image Slider)", 'virtue-toolkit' ),
|
161 |
'id' => $prefix . 'gallery_posthead_width',
|
162 |
'type' => 'text_small',
|
163 |
),
|
164 |
array(
|
165 |
+
'name' => __("Post Summary", 'virtue-toolkit' ),
|
166 |
'desc' => '',
|
167 |
'id' => $prefix . 'gallery_post_summery',
|
168 |
'type' => 'select',
|
169 |
'options' => array(
|
170 |
+
array( 'name' => __('Gallery Post Default', 'virtue-toolkit' ), 'value' => 'default', ),
|
171 |
+
array( 'name' => __('Portrait Image (feature image)', 'virtue-toolkit'), 'value' => 'img_portrait', ),
|
172 |
+
array( 'name' => __('Landscape Image (feature image)', 'virtue-toolkit'), 'value' => 'img_landscape', ),
|
173 |
+
array( 'name' => __('Portrait Image Slider', 'virtue-toolkit'), 'value' => 'slider_portrait', ),
|
174 |
+
array( 'name' => __('Landscape Image Slider', 'virtue-toolkit'), 'value' => 'slider_landscape', ),
|
175 |
),
|
176 |
),
|
177 |
),
|
178 |
);
|
179 |
$meta_boxes[] = array(
|
180 |
'id' => 'video_post_metabox',
|
181 |
+
'title' => __("Video Post Options", 'virtue-toolkit'),
|
182 |
'pages' => array( 'post',), // Post type
|
183 |
//'show_on' => array( 'key' => 'format', 'value' => 'standard'),
|
184 |
'context' => 'normal',
|
187 |
'fields' => array(
|
188 |
|
189 |
array(
|
190 |
+
'name' => __("Post Head Content", 'virtue-toolkit' ),
|
191 |
'desc' => '',
|
192 |
'id' => $prefix . 'video_blog_head',
|
193 |
'type' => 'select',
|
194 |
'options' => array(
|
195 |
+
array( 'name' => __("Video Post Default", 'virtue-toolkit' ), 'value' => 'default', ),
|
196 |
+
array( 'name' => __("Video", 'virtue-toolkit' ), 'value' => 'video', ),
|
197 |
+
array( 'name' => __("None", 'virtue-toolkit' ), 'value' => 'none', ),
|
198 |
),
|
199 |
),
|
200 |
array(
|
201 |
+
'name' => __('Video Post embed code', 'virtue-toolkit'),
|
202 |
+
'desc' => __('Place Embed Code Here, works with youtube, vimeo. (Use the featured image for screen shot)', 'virtue-toolkit'),
|
203 |
'id' => $prefix . 'post_video',
|
204 |
'type' => 'textarea_code',
|
205 |
),
|
206 |
array(
|
207 |
+
'name' => __("Max Video Width", 'virtue-toolkit' ),
|
208 |
+
'desc' => __("Default is: 848 or 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to carousel slider)", 'virtue-toolkit' ),
|
209 |
'id' => $prefix . 'video_posthead_width',
|
210 |
'type' => 'text_small',
|
211 |
),
|
212 |
array(
|
213 |
+
'name' => __("Post Summary", 'virtue-toolkit' ),
|
214 |
'desc' => '',
|
215 |
'id' => $prefix . 'video_post_summery',
|
216 |
'type' => 'select',
|
217 |
'options' => array(
|
218 |
+
array( 'name' => __('Video Post Default', 'virtue-toolkit' ), 'value' => 'default', ),
|
219 |
+
array( 'name' => __('Video - (when possible)', 'virtue-toolkit'), 'value' => 'video', ),
|
220 |
+
array( 'name' => __('Portrait Image (feature image)', 'virtue-toolkit'), 'value' => 'img_portrait', ),
|
221 |
+
array( 'name' => __('Landscape Image (feature image)', 'virtue-toolkit'), 'value' => 'img_landscape', ),
|
222 |
),
|
223 |
),
|
224 |
),
|
225 |
);
|
226 |
$meta_boxes[] = array(
|
227 |
'id' => 'portfolio_post_metabox',
|
228 |
+
'title' => __('Portfolio Post Options', 'virtue-toolkit'),
|
229 |
'pages' => array( 'portfolio' ), // Post type
|
230 |
'context' => 'normal',
|
231 |
'priority' => 'high',
|
233 |
'fields' => array(
|
234 |
|
235 |
array(
|
236 |
+
'name' => __('Project Layout', 'virtue-toolkit'),
|
237 |
'desc' => '<a href="http://docs.kadencethemes.com/pinnacle/#portfolio_posts" target="_blank" >Whats the difference?</a>',
|
238 |
'id' => $prefix . 'ppost_layout',
|
239 |
'type' => 'radio_inline',
|
240 |
'options' => array(
|
241 |
+
array( 'name' => __('Beside 40%', 'virtue-toolkit'), 'value' => 'beside', ),
|
242 |
+
array( 'name' => __('Beside 33%', 'virtue-toolkit'), 'value' => 'besidesmall', ),
|
243 |
+
array( 'name' => __('Above', 'virtue-toolkit'), 'value' => 'above', ),
|
244 |
+
array( 'name' => __('Three Rows', 'virtue-toolkit'), 'value' => 'three', ),
|
245 |
),
|
246 |
),
|
247 |
array(
|
248 |
+
'name' => __('Project Options', 'virtue-toolkit'),
|
249 |
'desc' => '',
|
250 |
'id' => $prefix . 'ppost_type',
|
251 |
'type' => 'select',
|
252 |
'options' => array(
|
253 |
+
array( 'name' => __('Image', 'virtue-toolkit'), 'value' => 'image', ),
|
254 |
+
array( 'name' => __('Image Slider (Flex Slider)', 'virtue-toolkit'), 'value' => 'flex', ),
|
255 |
+
array( 'name' => __('Carousel Slider', 'virtue-toolkit'), 'value' => 'carousel', ),
|
256 |
+
array( 'name' => __('Video', 'virtue-toolkit'), 'value' => 'video', ),
|
257 |
+
array( 'name' => __('Image Grid', 'virtue-toolkit'), 'value' => 'imagegrid', ),
|
258 |
+
array( 'name' => __('None', 'virtue-toolkit'), 'value' => 'none', ),
|
259 |
),
|
260 |
),
|
261 |
array(
|
262 |
+
'name' => __('Columns (Only for Image Grid option)', 'virtue-toolkit'),
|
263 |
+
'desc' => '',
|
264 |
+
'id' => $prefix . 'portfolio_img_grid_columns',
|
265 |
+
'type' => 'select',
|
266 |
+
'options' => array(
|
267 |
+
array( 'name' => __('Four Column', 'virtue-toolkit'), 'value' => '4', ),
|
268 |
+
array( 'name' => __('Three Column', 'virtue-toolkit'), 'value' => '3', ),
|
269 |
+
array( 'name' => __('Two Column', 'virtue-toolkit'), 'value' => '2', ),
|
270 |
+
array( 'name' => __('Five Column', 'virtue-toolkit'), 'value' => '5', ),
|
271 |
+
array( 'name' => __('Six Column', 'virtue-toolkit'), 'value' => '6', ),
|
272 |
+
),
|
273 |
+
),
|
274 |
+
array(
|
275 |
+
'name' => __("Portfolio Slider/Images", 'virtue-toolkit' ),
|
276 |
+
'desc' => __("Add images for post here", 'virtue-toolkit' ),
|
277 |
'id' => $prefix . 'image_gallery',
|
278 |
'type' => 'kad_gallery',
|
279 |
),
|
280 |
array(
|
281 |
+
'name' => __("Max Image/Slider Height", 'virtue-toolkit' ),
|
282 |
+
'desc' => __("Default is: 450 (Note: just input number, example: 350)", 'virtue-toolkit' ),
|
283 |
'id' => $prefix . 'posthead_height',
|
284 |
'type' => 'text_small',
|
285 |
),
|
286 |
array(
|
287 |
+
'name' => __("Max Image/Slider Width", 'virtue-toolkit' ),
|
288 |
+
'desc' => __("Default is: 670 or 1140 on above or three row layouts (Note: just input number, example: 650)", 'virtue-toolkit' ),
|
289 |
'id' => $prefix . 'posthead_width',
|
290 |
'type' => 'text_small',
|
291 |
),
|
292 |
array(
|
293 |
+
'name' => __('Value 01 Title', 'virtue-toolkit'),
|
294 |
+
'desc' => __('ex. Project Type:', 'virtue-toolkit'),
|
295 |
'id' => $prefix . 'project_val01_title',
|
296 |
'type' => 'text_medium',
|
297 |
),
|
298 |
array(
|
299 |
+
'name' => __('Value 01 Description', 'virtue-toolkit'),
|
300 |
+
'desc' => __('ex. Character Illustration', 'virtue-toolkit'),
|
301 |
'id' => $prefix . 'project_val01_description',
|
302 |
'type' => 'text_medium',
|
303 |
),
|
304 |
array(
|
305 |
+
'name' => __('Value 02 Title', 'virtue-toolkit'),
|
306 |
+
'desc' => __('ex. Skills Needed:', 'virtue-toolkit'),
|
307 |
'id' => $prefix . 'project_val02_title',
|
308 |
'type' => 'text_medium',
|
309 |
),
|
310 |
array(
|
311 |
+
'name' => __('Value 02 Description', 'virtue-toolkit'),
|
312 |
+
'desc' => __('ex. Photoshop, Illustrator', 'virtue-toolkit'),
|
313 |
'id' => $prefix . 'project_val02_description',
|
314 |
'type' => 'text_medium',
|
315 |
),
|
316 |
array(
|
317 |
+
'name' => __('Value 03 Title', 'virtue-toolkit'),
|
318 |
+
'desc' => __('ex. Customer:', 'virtue-toolkit'),
|
319 |
'id' => $prefix . 'project_val03_title',
|
320 |
'type' => 'text_medium',
|
321 |
),
|
322 |
array(
|
323 |
+
'name' => __('Value 03 Description', 'virtue-toolkit'),
|
324 |
+
'desc' => __('ex. Example Inc', 'virtue-toolkit'),
|
325 |
'id' => $prefix . 'project_val03_description',
|
326 |
'type' => 'text_medium',
|
327 |
),
|
328 |
array(
|
329 |
+
'name' => __('Value 04 Title', 'virtue-toolkit'),
|
330 |
+
'desc' => __('ex. Project Year:', 'virtue-toolkit'),
|
331 |
'id' => $prefix . 'project_val04_title',
|
332 |
'type' => 'text_medium',
|
333 |
),
|
334 |
array(
|
335 |
+
'name' => __('Value 04 Description', 'virtue-toolkit'),
|
336 |
+
'desc' => __('ex. 2013', 'virtue-toolkit'),
|
337 |
'id' => $prefix . 'project_val04_description',
|
338 |
'type' => 'text_medium',
|
339 |
),
|
340 |
array(
|
341 |
+
'name' => __('External Website', 'virtue-toolkit'),
|
342 |
+
'desc' => __('ex. Website:', 'virtue-toolkit'),
|
343 |
'id' => $prefix . 'project_val05_title',
|
344 |
'type' => 'text_medium',
|
345 |
),
|
346 |
array(
|
347 |
+
'name' => __('Website Address', 'virtue-toolkit'),
|
348 |
+
'desc' => __('ex. http://www.example.com', 'virtue-toolkit'),
|
349 |
'id' => $prefix . 'project_val05_description',
|
350 |
'type' => 'text_medium',
|
351 |
),
|
352 |
array(
|
353 |
+
'name' => __('If Video Project', 'virtue-toolkit'),
|
354 |
+
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue-toolkit'),
|
355 |
'id' => $prefix . 'post_video',
|
356 |
'type' => 'textarea_code',
|
357 |
),
|
360 |
);
|
361 |
$meta_boxes[] = array(
|
362 |
'id' => 'portfolio_post_carousel_metabox',
|
363 |
+
'title' => __('Bottom Carousel Options', 'virtue-toolkit'),
|
364 |
'pages' => array( 'portfolio' ), // Post type
|
365 |
'context' => 'normal',
|
366 |
'priority' => 'high',
|
367 |
'show_names' => true, // Show field names on the left
|
368 |
'fields' => array(
|
369 |
array(
|
370 |
+
'name' => __('Carousel Title', 'virtue-toolkit'),
|
371 |
+
'desc' => __('ex. Similar Projects', 'virtue-toolkit'),
|
372 |
'id' => $prefix . 'portfolio_carousel_title',
|
373 |
'type' => 'text_medium',
|
374 |
),
|
375 |
array(
|
376 |
+
'name' => __('Bottom Portfolio Carousel', 'virtue-toolkit'),
|
377 |
+
'desc' => __('Display a carousel with portfolio items below project?', 'virtue-toolkit'),
|
378 |
'id' => $prefix . 'portfolio_carousel_recent',
|
379 |
'type' => 'select',
|
380 |
'options' => array(
|
381 |
+
array( 'name' => __('Default', 'virtue-toolkit'), 'value' => 'defualt', ),
|
382 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
383 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
384 |
),
|
385 |
),
|
386 |
array(
|
387 |
+
'name' => __('Carousel Items', 'virtue-toolkit'),
|
388 |
'desc' => '',
|
389 |
'id' => $prefix . 'portfolio_carousel_group',
|
390 |
'type' => 'select',
|
391 |
'options' => array(
|
392 |
+
array( 'name' => __('Default', 'virtue-toolkit'), 'value' => 'defualt', ),
|
393 |
+
array( 'name' => __('All Portfolio Posts', 'virtue-toolkit'), 'value' => 'all', ),
|
394 |
+
array( 'name' => __('Only of same Portfolio Type', 'virtue-toolkit'), 'value' => 'cat', ),
|
395 |
),
|
396 |
),
|
397 |
array(
|
398 |
+
'name' => __('Carousel Order', 'virtue-toolkit'),
|
399 |
'desc' => '',
|
400 |
'id' => $prefix . 'portfolio_carousel_order',
|
401 |
'type' => 'select',
|
402 |
'options' => array(
|
403 |
+
array( 'name' => __('Menu Order', 'virtue-toolkit'), 'value' => 'menu_order', ),
|
404 |
+
array( 'name' => __('Title', 'virtue-toolkit'), 'value' => 'title', ),
|
405 |
+
array( 'name' => __('Date', 'virtue-toolkit'), 'value' => 'date', ),
|
406 |
+
array( 'name' => __('Random', 'virtue-toolkit'), 'value' => 'rand', ),
|
407 |
),
|
408 |
),
|
409 |
|
411 |
);
|
412 |
$meta_boxes[] = array(
|
413 |
'id' => 'portfolio_metabox',
|
414 |
+
'title' => __('Portfolio Page Options', 'virtue-toolkit'),
|
415 |
'pages' => array( 'page' ), // Post type
|
416 |
'show_on' => array('key' => 'page-template', 'value' => array( 'template-portfolio-grid.php')),
|
417 |
'context' => 'normal',
|
419 |
'show_names' => true, // Show field names on the left
|
420 |
'fields' => array(
|
421 |
array(
|
422 |
+
'name' => __('Style', 'virtue-toolkit'),
|
423 |
'desc' => '',
|
424 |
'id' => $prefix . 'portfolio_style',
|
425 |
'type' => 'select',
|
426 |
'options' => array(
|
427 |
+
array( 'name' => __('Default', 'virtue-toolkit'), 'value' => 'default', ),
|
428 |
+
array( 'name' => __('Post Boxes', 'virtue-toolkit'), 'value' => 'padded_style', ),
|
429 |
+
array( 'name' => __('Flat with Margin', 'virtue-toolkit'), 'value' => 'flat-w-margin', ),
|
430 |
),
|
431 |
),
|
432 |
array(
|
433 |
+
'name' => __('Hover Style', 'virtue-toolkit'),
|
434 |
'desc' => '',
|
435 |
'id' => $prefix . 'portfolio_hover_style',
|
436 |
'type' => 'select',
|
437 |
'options' => array(
|
438 |
+
array( 'name' => __('Default', 'virtue-toolkit'), 'value' => 'default', ),
|
439 |
+
array( 'name' => __('Light', 'virtue-toolkit'), 'value' => 'p_lightstyle', ),
|
440 |
+
array( 'name' => __('Dark', 'virtue-toolkit'), 'value' => 'p_darkstyle', ),
|
441 |
+
array( 'name' => __('Primary Color', 'virtue-toolkit'), 'value' => 'p_primarystyle', ),
|
442 |
),
|
443 |
),
|
444 |
array(
|
445 |
+
'name' => __('Columns', 'virtue-toolkit'),
|
446 |
'desc' => '',
|
447 |
'id' => $prefix . 'portfolio_columns',
|
448 |
'type' => 'select',
|
449 |
'options' => array(
|
450 |
+
array( 'name' => __('Four Column', 'virtue-toolkit'), 'value' => '4', ),
|
451 |
+
array( 'name' => __('Three Column', 'virtue-toolkit'), 'value' => '3', ),
|
452 |
+
array( 'name' => __('Two Column', 'virtue-toolkit'), 'value' => '2', ),
|
453 |
+
array( 'name' => __('Five Column', 'virtue-toolkit'), 'value' => '5', ),
|
454 |
),
|
455 |
),
|
456 |
array(
|
457 |
+
'name' => __('Portfolio Work Types', 'virtue-toolkit'),
|
458 |
'id' => $prefix .'portfolio_type',
|
459 |
'type' => 'imag_select_taxonomy',
|
460 |
'taxonomy' => 'portfolio-type',
|
461 |
),
|
462 |
array(
|
463 |
+
'name' => __('Order Items By', 'virtue-toolkit'),
|
464 |
'desc' => '',
|
465 |
'id' => $prefix . 'portfolio_order',
|
466 |
'type' => 'select',
|
467 |
'options' => array(
|
468 |
+
array( 'name' => __('Menu Order', 'virtue-toolkit'), 'value' => 'menu_order', ),
|
469 |
+
array( 'name' => __('Title', 'virtue-toolkit'), 'value' => 'title', ),
|
470 |
+
array( 'name' => __('Date', 'virtue-toolkit'), 'value' => 'date', ),
|
471 |
+
array( 'name' => __('Random', 'virtue-toolkit'), 'value' => 'rand', ),
|
472 |
),
|
473 |
),
|
474 |
array(
|
475 |
+
'name' => __('Items per Page', 'virtue-toolkit'),
|
476 |
+
'desc' => __('How many portfolio items per page', 'virtue-toolkit'),
|
477 |
'id' => $prefix . 'portfolio_items',
|
478 |
'type' => 'select',
|
479 |
'options' => array(
|
480 |
+
array( 'name' => __('All', 'virtue-toolkit'), 'value' => 'all', ),
|
481 |
array( 'name' => '3', 'value' => '3', ),
|
482 |
array( 'name' => '4', 'value' => '4', ),
|
483 |
array( 'name' => '5', 'value' => '5', ),
|
495 |
),
|
496 |
),
|
497 |
array(
|
498 |
+
'name' => __('Image Ratio?', 'virtue-toolkit'),
|
499 |
'desc' => '',
|
500 |
'id' => $prefix . 'portfolio_img_ratio',
|
501 |
'type' => 'select',
|
502 |
'options' => array(
|
503 |
+
array( 'name' => __('Default', 'virtue-toolkit'), 'value' => 'default', ),
|
504 |
+
array( 'name' => __('Square 1:1', 'virtue-toolkit'), 'value' => 'square', ),
|
505 |
+
array( 'name' => __('Portrait 3:4', 'virtue-toolkit'), 'value' => 'portrait', ),
|
506 |
+
array( 'name' => __('Landscape 4:3', 'virtue-toolkit'), 'value' => 'landscape', ),
|
507 |
+
array( 'name' => __('Wide Landscape 4:2', 'virtue-toolkit'), 'value' => 'widelandscape', ),
|
508 |
),
|
509 |
),
|
510 |
array(
|
511 |
+
'name' => __('Display Item Work Types', 'virtue-toolkit'),
|
512 |
'desc' => '',
|
513 |
'id' => $prefix . 'portfolio_item_types',
|
514 |
'type' => 'checkbox',
|
515 |
),
|
516 |
array(
|
517 |
+
'name' => __('Display Item Excerpt', 'virtue-toolkit'),
|
518 |
'desc' => '',
|
519 |
'id' => $prefix . 'portfolio_item_excerpt',
|
520 |
'type' => 'checkbox',
|
521 |
),
|
522 |
array(
|
523 |
+
'name' => __('Add Lightbox link in each item', 'virtue-toolkit'),
|
524 |
'desc' => '',
|
525 |
'id' => $prefix . 'portfolio_lightbox',
|
526 |
'type' => 'checkbox',
|
529 |
));
|
530 |
$meta_boxes[] = array(
|
531 |
'id' => 'pagefeature_metabox',
|
532 |
+
'title' => __('Feature Page Options', 'virtue-toolkit'),
|
533 |
'pages' => array( 'page' ), // Post type
|
534 |
'show_on' => array('key' => 'page-template', 'value' => array( 'template-feature.php')),
|
535 |
'context' => 'normal',
|
538 |
'fields' => array(
|
539 |
|
540 |
array(
|
541 |
+
'name' => __('Header Options', 'virtue-toolkit'),
|
542 |
+
'desc' => __('If image slider make sure images uploaded are at-least 1170px wide.', 'virtue-toolkit'),
|
543 |
'id' => $prefix . 'page_head',
|
544 |
'type' => 'select',
|
545 |
'defualt' => 'pagetitle',
|
546 |
'options' => array(
|
547 |
+
array( 'name' => __('Page Title', 'virtue-toolkit'), 'value' => 'pagetitle', ),
|
548 |
+
array( 'name' => __('Image Slider (Flex Slider)', 'virtue-toolkit'), 'value' => 'flex', ),
|
549 |
+
array( 'name' => __('Carousel Slider', 'virtue-toolkit'), 'value' => 'carousel', ),
|
550 |
+
array( 'name' => __('Video', 'virtue-toolkit'), 'value' => 'video', ),
|
551 |
),
|
552 |
),
|
553 |
array(
|
554 |
+
'name' => __("Slider Images", 'virtue-toolkit' ),
|
555 |
+
'desc' => __("Add for flex, carousel, and image carousel.", 'virtue-toolkit' ),
|
556 |
'id' => $prefix . 'image_gallery',
|
557 |
'type' => 'kad_gallery',
|
558 |
),
|
559 |
array(
|
560 |
+
'name' => __('If Cyclone Slider', 'virtue-toolkit'),
|
561 |
+
'desc' => __('Paste Cyclone slider shortcode here (example: [cycloneslider id="slider1"])', 'virtue-toolkit'),
|
562 |
'id' => $prefix . 'shortcode_slider',
|
563 |
'type' => 'textarea_code',
|
564 |
),
|
565 |
array(
|
566 |
+
'name' => __('Max Image/Slider Height', 'virtue-toolkit'),
|
567 |
+
'desc' => __('Default is: 400 (Note: just input number, example: 350)', 'virtue-toolkit'),
|
568 |
'id' => $prefix . 'posthead_height',
|
569 |
'type' => 'text_small',
|
570 |
),
|
571 |
array(
|
572 |
+
'name' => __("Max Image/Slider Width", 'virtue-toolkit' ),
|
573 |
+
'desc' => __("Default is: 1140 on fullwidth posts (Note: just input number, example: 650, does not apply to Carousel slider)", 'virtue-toolkit' ),
|
574 |
'id' => $prefix . 'posthead_width',
|
575 |
'type' => 'text_small',
|
576 |
),
|
577 |
array(
|
578 |
+
'name' => __('If Video Post', 'virtue-toolkit'),
|
579 |
+
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue-toolkit'),
|
580 |
'id' => $prefix . 'post_video',
|
581 |
'type' => 'textarea_code',
|
582 |
),
|
584 |
));
|
585 |
$meta_boxes[] = array(
|
586 |
'id' => 'contact_metabox',
|
587 |
+
'title' => __('Contact Page Options', 'virtue-toolkit'),
|
588 |
'pages' => array( 'page' ), // Post type
|
589 |
'show_on' => array('key' => 'page-template', 'value' => array( 'template-contact.php')),
|
590 |
'context' => 'normal',
|
593 |
'fields' => array(
|
594 |
|
595 |
array(
|
596 |
+
'name' => __('Use Contact Form', 'virtue-toolkit'),
|
597 |
'desc' => '',
|
598 |
'id' => $prefix .'contact_form',
|
599 |
'type' => 'select',
|
600 |
'options' => array(
|
601 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
602 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
603 |
),
|
604 |
),
|
605 |
array(
|
606 |
+
'name' => __('Contact Form Title', 'virtue-toolkit'),
|
607 |
+
'desc' => __('ex. Send us an Email', 'virtue-toolkit'),
|
608 |
'id' => $prefix . 'contact_form_title',
|
609 |
'type' => 'text',
|
610 |
),
|
611 |
array(
|
612 |
+
'name' => __('Contact Form Email Recipient', 'virtue-toolkit'),
|
613 |
+
'desc' => __('ex. joe@gmail.com', 'virtue-toolkit'),
|
614 |
'id' => $prefix . 'contact_form_email',
|
615 |
'type' => 'text',
|
616 |
),
|
617 |
array(
|
618 |
+
'name' => __('Use Simple Math Question', 'virtue-toolkit'),
|
619 |
'desc' => 'Adds a simple math question to form.',
|
620 |
'id' => $prefix .'contact_form_math',
|
621 |
'type' => 'select',
|
622 |
'options' => array(
|
623 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
624 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
625 |
),
|
626 |
),
|
627 |
array(
|
628 |
+
'name' => __('Use Map', 'virtue-toolkit'),
|
629 |
'desc' => '',
|
630 |
'id' => $prefix .'contact_map',
|
631 |
'type' => 'select',
|
632 |
'options' => array(
|
633 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
634 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
635 |
),
|
636 |
),
|
637 |
array(
|
638 |
+
'name' => __('Address', 'virtue-toolkit'),
|
639 |
+
'desc' => __('Enter your Location', 'virtue-toolkit'),
|
640 |
'id' => $prefix . 'contact_address',
|
641 |
'type' => 'text',
|
642 |
),
|
643 |
array(
|
644 |
+
'name' => __('Map Type', 'virtue-toolkit'),
|
645 |
'desc' => '',
|
646 |
'id' => $prefix . 'contact_maptype',
|
647 |
'type' => 'select',
|
648 |
'options' => array(
|
649 |
+
array( 'name' => __('ROADMAP', 'virtue-toolkit'), 'value' => 'ROADMAP', ),
|
650 |
+
array( 'name' => __('HYBRID', 'virtue-toolkit'), 'value' => 'HYBRID', ),
|
651 |
+
array( 'name' => __('TERRAIN', 'virtue-toolkit'), 'value' => 'TERRAIN', ),
|
652 |
+
array( 'name' => __('SATELLITE', 'virtue-toolkit'), 'value' => 'SATELLITE', ),
|
653 |
),
|
654 |
),
|
655 |
array(
|
656 |
+
'name' => __('Map Zoom Level', 'virtue-toolkit'),
|
657 |
+
'desc' => __('A good place to start is 15', 'virtue-toolkit'),
|
658 |
'id' => $prefix . 'contact_zoom',
|
659 |
'std' => '15',
|
660 |
'type' => 'select',
|
661 |
'options' => array(
|
662 |
+
array( 'name' => __('1 (World View)', 'virtue-toolkit'), 'value' => '1', ),
|
663 |
array( 'name' => '2', 'value' => '2', ),
|
664 |
array( 'name' => '3', 'value' => '3', ),
|
665 |
array( 'name' => '4', 'value' => '4', ),
|
679 |
array( 'name' => '18', 'value' => '18', ),
|
680 |
array( 'name' => '19', 'value' => '19', ),
|
681 |
array( 'name' => '20', 'value' => '20', ),
|
682 |
+
array( 'name' => __('21 (Street View)', 'virtue-toolkit'), 'value' => '21', ),
|
683 |
),
|
684 |
),
|
685 |
array(
|
686 |
+
'name' => __('Map Height', 'virtue-toolkit'),
|
687 |
+
'desc' => __('Default is 300', 'virtue-toolkit'),
|
688 |
'id' => $prefix . 'contact_mapheight',
|
689 |
'type' => 'text_small',
|
690 |
),
|
704 |
$prefix = '_kad_';
|
705 |
$meta_boxes[] = array(
|
706 |
'id' => 'post_video_metabox',
|
707 |
+
'title' => __('Post Video Box', 'virtue-toolkit'),
|
708 |
'pages' => array( 'post',), // Post type
|
709 |
'context' => 'normal',
|
710 |
'priority' => 'high',
|
712 |
'fields' => array(
|
713 |
|
714 |
array(
|
715 |
+
'name' => __('If Video Post', 'virtue-toolkit'),
|
716 |
+
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue-toolkit'),
|
717 |
'id' => $prefix . 'post_video',
|
718 |
'type' => 'textarea_code',
|
719 |
),
|
721 |
);
|
722 |
$meta_boxes[] = array(
|
723 |
'id' => 'portfolio_post_metabox',
|
724 |
+
'title' => __('Portfolio Post Options', 'virtue-toolkit'),
|
725 |
'pages' => array( 'portfolio' ), // Post type
|
726 |
'context' => 'normal',
|
727 |
'priority' => 'high',
|
729 |
'fields' => array(
|
730 |
|
731 |
array(
|
732 |
+
'name' => __('Project Layout', 'virtue-toolkit'),
|
733 |
'desc' => '<a href="http://docs.kadencethemes.com/virtue/#portfolio_posts" target="_new" >Whats the difference?</a>',
|
734 |
'id' => $prefix . 'ppost_layout',
|
735 |
'type' => 'radio_inline',
|
736 |
'options' => array(
|
737 |
+
array( 'name' => __('Beside', 'virtue-toolkit'), 'value' => 'beside', ),
|
738 |
+
array( 'name' => __('Above', 'virtue-toolkit'), 'value' => 'above', ),
|
739 |
+
array( 'name' => __('Three Rows', 'virtue-toolkit'), 'value' => 'three', ),
|
740 |
),
|
741 |
),
|
742 |
array(
|
743 |
+
'name' => __('Project Options', 'virtue-toolkit'),
|
744 |
'desc' => '',
|
745 |
'id' => $prefix . 'ppost_type',
|
746 |
'type' => 'select',
|
747 |
'options' => array(
|
748 |
+
array( 'name' => __('Image', 'virtue-toolkit'), 'value' => 'image', ),
|
749 |
+
array( 'name' => __('Image Slider', 'virtue-toolkit'), 'value' => 'flex', ),
|
750 |
+
array( 'name' => __('Carousel Slider', 'virtue-toolkit'), 'value' => 'carousel', ),
|
751 |
+
array( 'name' => __('Image Grid', 'virtue-toolkit'), 'value' => 'imagegrid', ),
|
752 |
+
array( 'name' => __('Video', 'virtue-toolkit'), 'value' => 'video', ),
|
753 |
+
array( 'name' => __('None', 'virtue-toolkit'), 'value' => 'none', ),
|
754 |
+
),
|
755 |
+
),
|
756 |
+
array(
|
757 |
+
'name' => __('Columns (Only for Image Grid option)', 'virtue-toolkit'),
|
758 |
+
'desc' => '',
|
759 |
+
'id' => $prefix . 'portfolio_img_grid_columns',
|
760 |
+
'type' => 'select',
|
761 |
+
'options' => array(
|
762 |
+
array( 'name' => __('Four Column', 'virtue-toolkit'), 'value' => '4', ),
|
763 |
+
array( 'name' => __('Three Column', 'virtue-toolkit'), 'value' => '3', ),
|
764 |
+
array( 'name' => __('Two Column', 'virtue-toolkit'), 'value' => '2', ),
|
765 |
+
array( 'name' => __('Five Column', 'virtue-toolkit'), 'value' => '5', ),
|
766 |
+
array( 'name' => __('Six Column', 'virtue-toolkit'), 'value' => '6', ),
|
767 |
),
|
768 |
),
|
769 |
array(
|
770 |
+
'name' => __("Max Image/Slider Height", 'virtue-toolkit' ),
|
771 |
+
'desc' => __("Default is: 450 <b>(Note: just input number, example: 350)</b>", 'virtue-toolkit' ),
|
772 |
'id' => $prefix . 'posthead_height',
|
773 |
'type' => 'text_small',
|
774 |
),
|
775 |
array(
|
776 |
+
'name' => __("Max Image/Slider Width", 'virtue-toolkit' ),
|
777 |
+
'desc' => __("Default is: 670 or 1140 on <b>above</b> or <b>three row</b> layouts (Note: just input number, example: 650)</b>", 'virtue-toolkit' ),
|
778 |
'id' => $prefix . 'posthead_width',
|
779 |
'type' => 'text_small',
|
780 |
),
|
781 |
array(
|
782 |
+
'name' => __('Auto Play Slider?', 'virtue-toolkit'),
|
783 |
'desc' => '',
|
784 |
'id' => $prefix . 'portfolio_autoplay',
|
785 |
'type' => 'select',
|
786 |
'options' => array(
|
787 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'Yes', ),
|
788 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
789 |
),
|
790 |
),
|
791 |
array(
|
792 |
+
'name' => __('Value 01 Title', 'virtue-toolkit'),
|
793 |
+
'desc' => __('ex. Project Type:', 'virtue-toolkit'),
|
794 |
'id' => $prefix . 'project_val01_title',
|
795 |
'type' => 'text_medium',
|
796 |
),
|
797 |
array(
|
798 |
+
'name' => __('Value 01 Description', 'virtue-toolkit'),
|
799 |
+
'desc' => __('ex. Character Illustration', 'virtue-toolkit'),
|
800 |
'id' => $prefix . 'project_val01_description',
|
801 |
'type' => 'text_medium',
|
802 |
),
|
803 |
array(
|
804 |
+
'name' => __('Value 02 Title', 'virtue-toolkit'),
|
805 |
+
'desc' => __('ex. Skills Needed:', 'virtue-toolkit'),
|
806 |
'id' => $prefix . 'project_val02_title',
|
807 |
'type' => 'text_medium',
|
808 |
),
|
809 |
array(
|
810 |
+
'name' => __('Value 02 Description', 'virtue-toolkit'),
|
811 |
+
'desc' => __('ex. Photoshop, Illustrator', 'virtue-toolkit'),
|
812 |
'id' => $prefix . 'project_val02_description',
|
813 |
'type' => 'text_medium',
|
814 |
),
|
815 |
array(
|
816 |
+
'name' => __('Value 03 Title', 'virtue-toolkit'),
|
817 |
+
'desc' => __('ex. Customer:', 'virtue-toolkit'),
|
818 |
'id' => $prefix . 'project_val03_title',
|
819 |
'type' => 'text_medium',
|
820 |
),
|
821 |
array(
|
822 |
+
'name' => __('Value 03 Description', 'virtue-toolkit'),
|
823 |
+
'desc' => __('ex. Example Inc', 'virtue-toolkit'),
|
824 |
'id' => $prefix . 'project_val03_description',
|
825 |
'type' => 'text_medium',
|
826 |
),
|
827 |
array(
|
828 |
+
'name' => __('Value 04 Title', 'virtue-toolkit'),
|
829 |
+
'desc' => __('ex. Project Year:', 'virtue-toolkit'),
|
830 |
'id' => $prefix . 'project_val04_title',
|
831 |
'type' => 'text_medium',
|
832 |
),
|
833 |
array(
|
834 |
+
'name' => __('Value 04 Description', 'virtue-toolkit'),
|
835 |
+
'desc' => __('ex. 2013', 'virtue-toolkit'),
|
836 |
'id' => $prefix . 'project_val04_description',
|
837 |
'type' => 'text_medium',
|
838 |
),
|
839 |
array(
|
840 |
+
'name' => __('External Website', 'virtue-toolkit'),
|
841 |
+
'desc' => __('ex. Website:', 'virtue-toolkit'),
|
842 |
'id' => $prefix . 'project_val05_title',
|
843 |
'type' => 'text_medium',
|
844 |
),
|
845 |
array(
|
846 |
+
'name' => __('Website Address', 'virtue-toolkit'),
|
847 |
+
'desc' => __('ex. http://www.example.com', 'virtue-toolkit'),
|
848 |
'id' => $prefix . 'project_val05_description',
|
849 |
'type' => 'text_medium',
|
850 |
),
|
851 |
array(
|
852 |
+
'name' => __('If Video Project', 'virtue-toolkit'),
|
853 |
+
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue-toolkit'),
|
854 |
'id' => $prefix . 'post_video',
|
855 |
'type' => 'textarea_code',
|
856 |
),
|
857 |
array(
|
858 |
+
'name' => __('Similar Portfolio Item Carousel', 'virtue-toolkit'),
|
859 |
+
'desc' => __('Display a carousel with similar portfolio items below project?', 'virtue-toolkit'),
|
860 |
'id' => $prefix . 'portfolio_carousel_recent',
|
861 |
'type' => 'select',
|
862 |
'options' => array(
|
863 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
864 |
+
array( 'name' => __('Yes - Display Recent Projects', 'virtue-toolkit'), 'value' => 'recent', ),
|
865 |
),
|
866 |
),
|
867 |
array(
|
868 |
+
'name' => __('Carousel Title', 'virtue-toolkit'),
|
869 |
+
'desc' => __('ex. Similar Projects', 'virtue-toolkit'),
|
870 |
'id' => $prefix . 'portfolio_carousel_title',
|
871 |
'type' => 'text_medium',
|
872 |
),
|
875 |
);
|
876 |
$meta_boxes[] = array(
|
877 |
'id' => 'portfolio_metabox',
|
878 |
+
'title' => __('Portfolio Page Options', 'virtue-toolkit'),
|
879 |
'pages' => array( 'page' ), // Post type
|
880 |
'show_on' => array('key' => 'page-template', 'value' => array( 'page-portfolio.php' )),
|
881 |
'context' => 'normal',
|
884 |
'fields' => array(
|
885 |
|
886 |
array(
|
887 |
+
'name' => __('Columns', 'virtue-toolkit'),
|
888 |
'desc' => '',
|
889 |
'id' => $prefix . 'portfolio_columns',
|
890 |
'type' => 'select',
|
891 |
'options' => array(
|
892 |
+
array( 'name' => __('Four Column', 'virtue-toolkit'), 'value' => '4', ),
|
893 |
+
array( 'name' => __('Three Column', 'virtue-toolkit'), 'value' => '3', ),
|
894 |
+
array( 'name' => __('Two Column', 'virtue-toolkit'), 'value' => '2', ),
|
895 |
),
|
896 |
),
|
897 |
array(
|
898 |
+
'name' => __('Portfolio Work Types', 'virtue-toolkit'),
|
899 |
'desc' => '',
|
900 |
'id' => $prefix .'portfolio_type',
|
901 |
'type' => 'imag_select_taxonomy',
|
902 |
'taxonomy' => 'portfolio-type',
|
903 |
),
|
904 |
array(
|
905 |
+
'name' => __('Order Items By', 'virtue-toolkit'),
|
906 |
'desc' => '',
|
907 |
'id' => $prefix . 'portfolio_order',
|
908 |
'type' => 'select',
|
909 |
'options' => array(
|
910 |
+
array( 'name' => __('Menu Order', 'virtue-toolkit'), 'value' => 'menu_order', ),
|
911 |
+
array( 'name' => __('Title', 'virtue-toolkit'), 'value' => 'title', ),
|
912 |
+
array( 'name' => __('Date', 'virtue-toolkit'), 'value' => 'date', ),
|
913 |
+
array( 'name' => __('Random', 'virtue-toolkit'), 'value' => 'rand', ),
|
914 |
),
|
915 |
),
|
916 |
array(
|
917 |
+
'name' => __('Items per Page', 'virtue-toolkit'),
|
918 |
+
'desc' => __('How many portfolio items per page', 'virtue-toolkit'),
|
919 |
'id' => $prefix . 'portfolio_items',
|
920 |
'type' => 'select',
|
921 |
'options' => array(
|
922 |
+
array( 'name' => __('All', 'virtue-toolkit'), 'value' => 'all', ),
|
923 |
array( 'name' => '3', 'value' => '3', ),
|
924 |
array( 'name' => '4', 'value' => '4', ),
|
925 |
array( 'name' => '5', 'value' => '5', ),
|
937 |
),
|
938 |
),
|
939 |
array(
|
940 |
+
'name' => __('Set image height', 'virtue-toolkit'),
|
941 |
+
'desc' => __('Default is 1:1 ratio <b>(Note: just input number, example: 350)</b>', 'virtue-toolkit'),
|
942 |
'id' => $prefix . 'portfolio_img_crop',
|
943 |
'type' => 'text_small',
|
944 |
),
|
945 |
array(
|
946 |
+
'name' => __('Display Item Work Types', 'virtue-toolkit'),
|
947 |
'desc' => '',
|
948 |
'id' => $prefix . 'portfolio_item_types',
|
949 |
'type' => 'checkbox',
|
950 |
),
|
951 |
array(
|
952 |
+
'name' => __('Display Item Excerpt', 'virtue-toolkit'),
|
953 |
'desc' => '',
|
954 |
'id' => $prefix . 'portfolio_item_excerpt',
|
955 |
'type' => 'checkbox',
|
956 |
),
|
957 |
array(
|
958 |
+
'name' => __('Add Lightbox link in the top right of each item', 'virtue-toolkit'),
|
959 |
'desc' => '',
|
960 |
'id' => $prefix . 'portfolio_lightbox',
|
961 |
'type' => 'select',
|
962 |
'options' => array(
|
963 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
964 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
965 |
),
|
966 |
),
|
967 |
|
968 |
));
|
969 |
$meta_boxes[] = array(
|
970 |
'id' => 'pagefeature_metabox',
|
971 |
+
'title' => __('Feature Page Options', 'virtue-toolkit'),
|
972 |
'pages' => array( 'page' ), // Post type
|
973 |
'show_on' => array('key' => 'page-template', 'value' => array( 'page-feature.php', 'page-feature-sidebar.php')),
|
974 |
'context' => 'normal',
|
977 |
'fields' => array(
|
978 |
|
979 |
array(
|
980 |
+
'name' => __('Feature Options', 'virtue-toolkit'),
|
981 |
+
'desc' => __('If image slider make sure images uploaded are at least 1140px wide.', 'virtue-toolkit'),
|
982 |
'id' => $prefix . 'page_head',
|
983 |
'type' => 'select',
|
984 |
'options' => array(
|
985 |
+
array( 'name' => __('Image Slider', 'virtue-toolkit'), 'value' => 'flex', ),
|
986 |
+
array( 'name' => __('Video', 'virtue-toolkit'), 'value' => 'video', ),
|
987 |
+
array( 'name' => __('Image', 'virtue-toolkit'), 'value' => 'image', ),
|
988 |
),
|
989 |
),
|
990 |
array(
|
991 |
+
'name' => __("Slider Gallery", 'virtue-toolkit' ),
|
992 |
+
'desc' => __("Add images for gallery here", 'virtue-toolkit' ),
|
993 |
'id' => $prefix . 'image_gallery',
|
994 |
'type' => 'kad_gallery',
|
995 |
),
|
996 |
array(
|
997 |
+
'name' => __('Max Image/Slider Height', 'virtue-toolkit'),
|
998 |
+
'desc' => __('Default is: 400 <b>(Note: just input number, example: 350)</b>', 'virtue-toolkit'),
|
999 |
'id' => $prefix . 'posthead_height',
|
1000 |
'type' => 'text_small',
|
1001 |
),
|
1002 |
array(
|
1003 |
+
'name' => __("Max Image/Slider Width", 'virtue-toolkit' ),
|
1004 |
+
'desc' => __("Default is: 1140 <b>(Note: just input number, example: 650, does not apply to Carousel slider)</b>", 'virtue-toolkit' ),
|
1005 |
'id' => $prefix . 'posthead_width',
|
1006 |
'type' => 'text_small',
|
1007 |
),
|
1008 |
array(
|
1009 |
+
'name' => __('Use Lightbox for Feature Image', 'virtue-toolkit'),
|
1010 |
+
'desc' => __("If feature option is set to image, choose to use lightbox link with image.", 'virtue-toolkit' ),
|
1011 |
'id' => $prefix . 'feature_img_lightbox',
|
1012 |
'type' => 'select',
|
1013 |
'options' => array(
|
1014 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
1015 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
1016 |
),
|
1017 |
),
|
1018 |
array(
|
1019 |
+
'name' => __('If Video Post', 'virtue-toolkit'),
|
1020 |
+
'desc' => __('Place Embed Code Here, works with youtube, vimeo...', 'virtue-toolkit'),
|
1021 |
'id' => $prefix . 'post_video',
|
1022 |
'type' => 'textarea_code',
|
1023 |
),
|
1025 |
));
|
1026 |
$meta_boxes[] = array(
|
1027 |
'id' => 'contact_metabox',
|
1028 |
+
'title' => __('Contact Page Options', 'virtue-toolkit'),
|
1029 |
'pages' => array( 'page' ), // Post type
|
1030 |
'show_on' => array('key' => 'page-template', 'value' => array( 'page-contact.php')),
|
1031 |
'context' => 'normal',
|
1034 |
'fields' => array(
|
1035 |
|
1036 |
array(
|
1037 |
+
'name' => __('Use Contact Form', 'virtue-toolkit'),
|
1038 |
'desc' => '',
|
1039 |
'id' => $prefix .'contact_form',
|
1040 |
'type' => 'select',
|
1041 |
'options' => array(
|
1042 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
1043 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
1044 |
),
|
1045 |
),
|
1046 |
array(
|
1047 |
+
'name' => __('Contact Form Title', 'virtue-toolkit'),
|
1048 |
+
'desc' => __('ex. Send us an Email', 'virtue-toolkit'),
|
1049 |
'id' => $prefix . 'contact_form_title',
|
1050 |
'type' => 'text',
|
1051 |
),
|
1052 |
array(
|
1053 |
+
'name' => __('Use Simple Math Question', 'virtue-toolkit'),
|
1054 |
'desc' => 'Adds a simple math question to form.',
|
1055 |
'id' => $prefix .'contact_form_math',
|
1056 |
'type' => 'select',
|
1057 |
'options' => array(
|
1058 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
1059 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
1060 |
),
|
1061 |
),
|
1062 |
array(
|
1063 |
+
'name' => __('Use Map', 'virtue-toolkit'),
|
1064 |
'desc' => '',
|
1065 |
'id' => $prefix .'contact_map',
|
1066 |
'type' => 'select',
|
1067 |
'options' => array(
|
1068 |
+
array( 'name' => __('No', 'virtue-toolkit'), 'value' => 'no', ),
|
1069 |
+
array( 'name' => __('Yes', 'virtue-toolkit'), 'value' => 'yes', ),
|
1070 |
),
|
1071 |
),
|
1072 |
array(
|
1073 |
+
'name' => __('Address', 'virtue-toolkit'),
|
1074 |
+
'desc' => __('Enter your Location', 'virtue-toolkit'),
|
1075 |
'id' => $prefix . 'contact_address',
|
1076 |
'type' => 'text',
|
1077 |
),
|
1078 |
array(
|
1079 |
+
'name' => __('Map Type', 'virtue-toolkit'),
|
1080 |
'desc' => '',
|
1081 |
'id' => $prefix . 'contact_maptype',
|
1082 |
'type' => 'select',
|
1083 |
'options' => array(
|
1084 |
+
array( 'name' => __('ROADMAP', 'virtue-toolkit'), 'value' => 'ROADMAP', ),
|
1085 |
+
array( 'name' => __('HYBRID', 'virtue-toolkit'), 'value' => 'HYBRID', ),
|
1086 |
+
array( 'name' => __('TERRAIN', 'virtue-toolkit'), 'value' => 'TERRAIN', ),
|
1087 |
+
array( 'name' => __('SATELLITE', 'virtue-toolkit'), 'value' => 'SATELLITE', ),
|
1088 |
),
|
1089 |
),
|
1090 |
array(
|
1091 |
+
'name' => __('Map Zoom Level', 'virtue-toolkit'),
|
1092 |
+
'desc' => __('A good place to start is 15', 'virtue-toolkit'),
|
1093 |
'id' => $prefix . 'contact_zoom',
|
1094 |
'std' => '15',
|
1095 |
'type' => 'select',
|
1096 |
'options' => array(
|
1097 |
+
array( 'name' => __('1 (World View)', 'virtue-toolkit'), 'value' => '1', ),
|
1098 |
array( 'name' => '2', 'value' => '2', ),
|
1099 |
array( 'name' => '3', 'value' => '3', ),
|
1100 |
array( 'name' => '4', 'value' => '4', ),
|
1114 |
array( 'name' => '18', 'value' => '18', ),
|
1115 |
array( 'name' => '19', 'value' => '19', ),
|
1116 |
array( 'name' => '20', 'value' => '20', ),
|
1117 |
+
array( 'name' => __('21 (Street View)', 'virtue-toolkit'), 'value' => '21', ),
|
1118 |
),
|
1119 |
),
|
1120 |
array(
|
1121 |
+
'name' => __('Map Height', 'virtue-toolkit'),
|
1122 |
+
'desc' => __('Default is 300', 'virtue-toolkit'),
|
1123 |
'id' => $prefix . 'contact_mapheight',
|
1124 |
'type' => 'text_small',
|
1125 |
),
|
1127 |
));
|
1128 |
$meta_boxes[] = array(
|
1129 |
'id' => 'virtue_post_gallery',
|
1130 |
+
'title' => __("Slider Images", 'virtue-toolkit'),
|
1131 |
'pages' => array( 'post', 'portfolio'), // Post type
|
1132 |
'context' => 'normal',
|
1133 |
'priority' => 'high',
|
1134 |
'show_names' => true, // Show field names on the left
|
1135 |
'fields' => array(
|
1136 |
array(
|
1137 |
+
'name' => __("Slider Gallery", 'virtue-toolkit' ),
|
1138 |
+
'desc' => __("Add images for gallery here", 'virtue-toolkit' ),
|
1139 |
'id' => $prefix . 'image_gallery',
|
1140 |
'type' => 'kad_gallery',
|
1141 |
),
|
page-contact.php
CHANGED
@@ -10,8 +10,8 @@ Template Name: Contact
|
|
10 |
$form = get_post_meta( $post->ID, '_kad_contact_form', true );
|
11 |
if ($form == 'yes') { ?>
|
12 |
<script type="text/javascript">jQuery(document).ready(function ($) {$.extend($.validator.messages, {
|
13 |
-
required: "<?php echo __('This field is required.', '
|
14 |
-
email: "<?php echo __('Please enter a valid email address.', '
|
15 |
});
|
16 |
$("#contactForm").validate();
|
17 |
});</script>
|
@@ -94,29 +94,29 @@ Template Name: Contact
|
|
94 |
if(isset($_POST['submitted'])) {
|
95 |
if(isset($form_math) && $form_math == 'yes') {
|
96 |
if(md5($_POST['kad_captcha']) != $_POST['hval']) {
|
97 |
-
$kad_captchaError = __('Check your math.', '
|
98 |
$hasError = true;
|
99 |
}
|
100 |
}
|
101 |
if(trim($_POST['contactName']) === '') {
|
102 |
-
$nameError = __('Please enter your name.', '
|
103 |
$hasError = true;
|
104 |
} else {
|
105 |
$name = trim($_POST['contactName']);
|
106 |
}
|
107 |
|
108 |
if(trim($_POST['email']) === '') {
|
109 |
-
$emailError = __('Please enter your email address.', '
|
110 |
$hasError = true;
|
111 |
} else if (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", trim($_POST['email']))) {
|
112 |
-
$emailError = __('You entered an invalid email address.', '
|
113 |
$hasError = true;
|
114 |
} else {
|
115 |
$email = trim($_POST['email']);
|
116 |
}
|
117 |
|
118 |
if(trim($_POST['comments']) === '') {
|
119 |
-
$commentError = __('Please enter a message.', '
|
120 |
$hasError = true;
|
121 |
} else {
|
122 |
if(function_exists('stripslashes')) {
|
@@ -134,9 +134,9 @@ Template Name: Contact
|
|
134 |
}
|
135 |
$sitename = get_bloginfo('name');
|
136 |
$subject = '['.esc_html($sitename) . ' ' . __("Contact", "kadencetoolkit").'] '. __("From", "kadencetoolkit") . ' ' . esc_html($name);
|
137 |
-
$body = __('Name', '
|
138 |
-
$body .= __('Email', '
|
139 |
-
$body .= __('Comments', '
|
140 |
$headers = 'Reply-To: ' . esc_html($name) . '<' . $email . '>' . "\r\n";
|
141 |
|
142 |
wp_mail($emailTo, $subject, $body, $headers);
|
@@ -174,18 +174,18 @@ Template Name: Contact
|
|
174 |
}
|
175 |
if(isset($emailSent) && $emailSent == true) { ?>
|
176 |
<div class="thanks">
|
177 |
-
<p><?php _e('Thanks, your email was sent successfully.', '
|
178 |
</div>
|
179 |
<?php } else {
|
180 |
|
181 |
if(isset($hasError) || isset($captchaError)) { ?>
|
182 |
-
<p class="error"><?php _e('Sorry, an error occured.', '
|
183 |
<?php } ?>
|
184 |
|
185 |
<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
|
186 |
<div class="contactform">
|
187 |
<p>
|
188 |
-
<label for="contactName"><b><?php _e('Name:', '
|
189 |
<?php if(isset($nameError)) { ?>
|
190 |
<span class="error"><?php echo esc_html($nameError);?></span>
|
191 |
<?php } ?>
|
@@ -193,7 +193,7 @@ Template Name: Contact
|
|
193 |
</p>
|
194 |
|
195 |
<p>
|
196 |
-
<label for="email"><b><?php _e('Email:', '
|
197 |
<?php if(isset($emailError)) { ?>
|
198 |
<span class="error"><?php echo esc_html($emailError);?></span>
|
199 |
<?php } ?>
|
@@ -201,7 +201,7 @@ Template Name: Contact
|
|
201 |
</p>
|
202 |
|
203 |
<p>
|
204 |
-
<label for="commentsText"><b><?php _e('Message:', '
|
205 |
<?php if(isset($commentError)) { ?>
|
206 |
<span class="error"><?php echo esc_html($commentError);?></span>
|
207 |
<?php } ?>
|
@@ -221,7 +221,7 @@ Template Name: Contact
|
|
221 |
</p>
|
222 |
<?php } ?>
|
223 |
<p>
|
224 |
-
<input type="submit" class="kad-btn kad-btn-primary" id="submit" value="<?php _e('Send Email', '
|
225 |
</p>
|
226 |
</div><!-- /.contactform-->
|
227 |
<input type="hidden" name="submitted" id="submitted" value="true" />
|
10 |
$form = get_post_meta( $post->ID, '_kad_contact_form', true );
|
11 |
if ($form == 'yes') { ?>
|
12 |
<script type="text/javascript">jQuery(document).ready(function ($) {$.extend($.validator.messages, {
|
13 |
+
required: "<?php echo __('This field is required.', 'virtue-toolkit'); ?>",
|
14 |
+
email: "<?php echo __('Please enter a valid email address.', 'virtue-toolkit'); ?>",
|
15 |
});
|
16 |
$("#contactForm").validate();
|
17 |
});</script>
|
94 |
if(isset($_POST['submitted'])) {
|
95 |
if(isset($form_math) && $form_math == 'yes') {
|
96 |
if(md5($_POST['kad_captcha']) != $_POST['hval']) {
|
97 |
+
$kad_captchaError = __('Check your math.', 'virtue-toolkit');
|
98 |
$hasError = true;
|
99 |
}
|
100 |
}
|
101 |
if(trim($_POST['contactName']) === '') {
|
102 |
+
$nameError = __('Please enter your name.', 'virtue-toolkit');
|
103 |
$hasError = true;
|
104 |
} else {
|
105 |
$name = trim($_POST['contactName']);
|
106 |
}
|
107 |
|
108 |
if(trim($_POST['email']) === '') {
|
109 |
+
$emailError = __('Please enter your email address.', 'virtue-toolkit');
|
110 |
$hasError = true;
|
111 |
} else if (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", trim($_POST['email']))) {
|
112 |
+
$emailError = __('You entered an invalid email address.', 'virtue-toolkit');
|
113 |
$hasError = true;
|
114 |
} else {
|
115 |
$email = trim($_POST['email']);
|
116 |
}
|
117 |
|
118 |
if(trim($_POST['comments']) === '') {
|
119 |
+
$commentError = __('Please enter a message.', 'virtue-toolkit');
|
120 |
$hasError = true;
|
121 |
} else {
|
122 |
if(function_exists('stripslashes')) {
|
134 |
}
|
135 |
$sitename = get_bloginfo('name');
|
136 |
$subject = '['.esc_html($sitename) . ' ' . __("Contact", "kadencetoolkit").'] '. __("From", "kadencetoolkit") . ' ' . esc_html($name);
|
137 |
+
$body = __('Name', 'virtue-toolkit').": $name \n\n";
|
138 |
+
$body .= __('Email', 'virtue-toolkit').": $email \n\n";
|
139 |
+
$body .= __('Comments', 'virtue-toolkit').":\n $comments";
|
140 |
$headers = 'Reply-To: ' . esc_html($name) . '<' . $email . '>' . "\r\n";
|
141 |
|
142 |
wp_mail($emailTo, $subject, $body, $headers);
|
174 |
}
|
175 |
if(isset($emailSent) && $emailSent == true) { ?>
|
176 |
<div class="thanks">
|
177 |
+
<p><?php _e('Thanks, your email was sent successfully.', 'virtue-toolkit');?></p>
|
178 |
</div>
|
179 |
<?php } else {
|
180 |
|
181 |
if(isset($hasError) || isset($captchaError)) { ?>
|
182 |
+
<p class="error"><?php _e('Sorry, an error occured.', 'virtue-toolkit');?><p>
|
183 |
<?php } ?>
|
184 |
|
185 |
<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
|
186 |
<div class="contactform">
|
187 |
<p>
|
188 |
+
<label for="contactName"><b><?php _e('Name:', 'virtue-toolkit'); ?></b></label>
|
189 |
<?php if(isset($nameError)) { ?>
|
190 |
<span class="error"><?php echo esc_html($nameError);?></span>
|
191 |
<?php } ?>
|
193 |
</p>
|
194 |
|
195 |
<p>
|
196 |
+
<label for="email"><b><?php _e('Email:', 'virtue-toolkit'); ?></b></label>
|
197 |
<?php if(isset($emailError)) { ?>
|
198 |
<span class="error"><?php echo esc_html($emailError);?></span>
|
199 |
<?php } ?>
|
201 |
</p>
|
202 |
|
203 |
<p>
|
204 |
+
<label for="commentsText"><b><?php _e('Message:', 'virtue-toolkit'); ?></b></label>
|
205 |
<?php if(isset($commentError)) { ?>
|
206 |
<span class="error"><?php echo esc_html($commentError);?></span>
|
207 |
<?php } ?>
|
221 |
</p>
|
222 |
<?php } ?>
|
223 |
<p>
|
224 |
+
<input type="submit" class="kad-btn kad-btn-primary" id="submit" value="<?php _e('Send Email', 'virtue-toolkit'); ?>"></input>
|
225 |
</p>
|
226 |
</div><!-- /.contactform-->
|
227 |
<input type="hidden" name="submitted" id="submitted" value="true" />
|
pagetemplater.php
CHANGED
@@ -25,7 +25,7 @@ class Kadence_Page_Templater_Pinnacle {
|
|
25 |
add_filter('template_include', array( $this, 'view_project_template') );
|
26 |
|
27 |
$this->templates = array(
|
28 |
-
'template-contact.php' => __('Contact', '
|
29 |
);
|
30 |
|
31 |
}
|
@@ -106,14 +106,14 @@ class Kadence_Page_Templater_Virtue {
|
|
106 |
|
107 |
$this->templates = array();
|
108 |
|
109 |
-
add_filter('
|
110 |
|
111 |
add_filter('wp_insert_post_data', array( $this, 'register_project_templates' ) );
|
112 |
|
113 |
add_filter('template_include', array( $this, 'view_project_template') );
|
114 |
|
115 |
$this->templates = array(
|
116 |
-
'page-contact.php' => __('Contact', '
|
117 |
);
|
118 |
|
119 |
}
|
@@ -175,4 +175,4 @@ class Kadence_Page_Templater_Virtue {
|
|
175 |
$the_theme = wp_get_theme();
|
176 |
if( ($the_theme->get( 'Name' ) == 'Virtue' && $the_theme->get( 'Version') >= '2.3.5') || ($the_theme->get( 'Template') == 'virtue') ) {
|
177 |
add_action( 'plugins_loaded', array( 'Kadence_Page_Templater_Virtue', 'get_instance' ) );
|
178 |
-
}
|
25 |
add_filter('template_include', array( $this, 'view_project_template') );
|
26 |
|
27 |
$this->templates = array(
|
28 |
+
'template-contact.php' => __('Contact', 'virtue-toolkit'),
|
29 |
);
|
30 |
|
31 |
}
|
106 |
|
107 |
$this->templates = array();
|
108 |
|
109 |
+
add_filter('wp_dropdown_pages', array( $this, 'register_project_templates' ) );
|
110 |
|
111 |
add_filter('wp_insert_post_data', array( $this, 'register_project_templates' ) );
|
112 |
|
113 |
add_filter('template_include', array( $this, 'view_project_template') );
|
114 |
|
115 |
$this->templates = array(
|
116 |
+
'page-contact.php' => __('Contact', 'virtue-toolkit'),
|
117 |
);
|
118 |
|
119 |
}
|
175 |
$the_theme = wp_get_theme();
|
176 |
if( ($the_theme->get( 'Name' ) == 'Virtue' && $the_theme->get( 'Version') >= '2.3.5') || ($the_theme->get( 'Template') == 'virtue') ) {
|
177 |
add_action( 'plugins_loaded', array( 'Kadence_Page_Templater_Virtue', 'get_instance' ) );
|
178 |
+
}
|
post-types.php
CHANGED
@@ -2,19 +2,19 @@
|
|
2 |
// Custom post types
|
3 |
function kad_portfolio_post_init() {
|
4 |
$portfoliolabels = array(
|
5 |
-
'name' => __('Portfolio', '
|
6 |
-
'singular_name' => __('Portfolio Item', '
|
7 |
-
'add_new' => __('Add New', '
|
8 |
-
'add_new_item' => __('Add New Portfolio Item', '
|
9 |
-
'edit_item' => __('Edit Portfolio Item', '
|
10 |
-
'new_item' => __('New Portfolio Item', '
|
11 |
-
'all_items' => __('All Portfolio', '
|
12 |
-
'view_item' => __('View Portfolio Item', '
|
13 |
-
'search_items' => __('Search Portfolio', '
|
14 |
-
'not_found' => __('No Portfolio Item found', '
|
15 |
-
'not_found_in_trash' => __('No Portfolio Items found in Trash', '
|
16 |
'parent_item_colon' => '',
|
17 |
-
'menu_name' => __('Portfolio', '
|
18 |
);
|
19 |
|
20 |
$portargs = array(
|
@@ -34,24 +34,25 @@ function kad_portfolio_post_init() {
|
|
34 |
);
|
35 |
// Initialize Taxonomy Labels
|
36 |
$worklabels = array(
|
37 |
-
'name' => __( 'Portfolio Type', '
|
38 |
-
'singular_name' => __( 'Type', '
|
39 |
-
'search_items' => __( 'Search Type', '
|
40 |
-
'all_items' => __( 'All Type', '
|
41 |
-
'parent_item' => __( 'Parent Type', '
|
42 |
-
'parent_item_colon' => __( 'Parent Type:', '
|
43 |
-
'edit_item' => __( 'Edit Type', '
|
44 |
-
'update_item' => __( 'Update Type', '
|
45 |
-
'add_new_item' => __( 'Add New Type', '
|
46 |
-
'new_item_name' => __( 'New Type Name', '
|
47 |
);
|
|
|
48 |
// Register Custom Taxonomy
|
49 |
register_taxonomy('portfolio-type',array('portfolio'), array(
|
50 |
'hierarchical' => true, // define whether to use a system like tags or categories
|
51 |
'labels' => $worklabels,
|
52 |
'show_ui' => true,
|
53 |
'query_var' => true,
|
54 |
-
'rewrite' =>
|
55 |
));
|
56 |
|
57 |
register_post_type( 'portfolio', $portargs );
|
2 |
// Custom post types
|
3 |
function kad_portfolio_post_init() {
|
4 |
$portfoliolabels = array(
|
5 |
+
'name' => __('Portfolio', 'virtue-toolkit'),
|
6 |
+
'singular_name' => __('Portfolio Item', 'virtue-toolkit'),
|
7 |
+
'add_new' => __('Add New', 'virtue-toolkit'),
|
8 |
+
'add_new_item' => __('Add New Portfolio Item', 'virtue-toolkit'),
|
9 |
+
'edit_item' => __('Edit Portfolio Item', 'virtue-toolkit'),
|
10 |
+
'new_item' => __('New Portfolio Item', 'virtue-toolkit'),
|
11 |
+
'all_items' => __('All Portfolio', 'virtue-toolkit'),
|
12 |
+
'view_item' => __('View Portfolio Item', 'virtue-toolkit'),
|
13 |
+
'search_items' => __('Search Portfolio', 'virtue-toolkit'),
|
14 |
+
'not_found' => __('No Portfolio Item found', 'virtue-toolkit'),
|
15 |
+
'not_found_in_trash' => __('No Portfolio Items found in Trash', 'virtue-toolkit'),
|
16 |
'parent_item_colon' => '',
|
17 |
+
'menu_name' => __('Portfolio', 'virtue-toolkit')
|
18 |
);
|
19 |
|
20 |
$portargs = array(
|
34 |
);
|
35 |
// Initialize Taxonomy Labels
|
36 |
$worklabels = array(
|
37 |
+
'name' => __( 'Portfolio Type', 'virtue-toolkit' ),
|
38 |
+
'singular_name' => __( 'Type', 'virtue-toolkit' ),
|
39 |
+
'search_items' => __( 'Search Type', 'virtue-toolkit' ),
|
40 |
+
'all_items' => __( 'All Type', 'virtue-toolkit' ),
|
41 |
+
'parent_item' => __( 'Parent Type', 'virtue-toolkit' ),
|
42 |
+
'parent_item_colon' => __( 'Parent Type:', 'virtue-toolkit' ),
|
43 |
+
'edit_item' => __( 'Edit Type', 'virtue-toolkit' ),
|
44 |
+
'update_item' => __( 'Update Type', 'virtue-toolkit' ),
|
45 |
+
'add_new_item' => __( 'Add New Type', 'virtue-toolkit' ),
|
46 |
+
'new_item_name' => __( 'New Type Name', 'virtue-toolkit' ),
|
47 |
);
|
48 |
+
$portfolio_type_slug = apply_filters('kadence_portfolio_type_slug', 'portfolio-type');
|
49 |
// Register Custom Taxonomy
|
50 |
register_taxonomy('portfolio-type',array('portfolio'), array(
|
51 |
'hierarchical' => true, // define whether to use a system like tags or categories
|
52 |
'labels' => $worklabels,
|
53 |
'show_ui' => true,
|
54 |
'query_var' => true,
|
55 |
+
'rewrite' => array( 'slug' => $portfolio_type_slug )
|
56 |
));
|
57 |
|
58 |
register_post_type( 'portfolio', $portargs );
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: britner
|
|
3 |
Tags:
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.2
|
6 |
-
Stable tag: 3.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -43,6 +43,16 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
|
|
43 |
|
44 |
== Changelog ==
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
= 3.0 =
|
47 |
* Fix: Translation Issue.
|
48 |
|
3 |
Tags:
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.2
|
6 |
+
Stable tag: 3.2
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
43 |
|
44 |
== Changelog ==
|
45 |
|
46 |
+
= 3.2 =
|
47 |
+
* Add: filter for portfolio-type slug.
|
48 |
+
* Update: Page Template filter.
|
49 |
+
* Uddate: Button Shortcode output.
|
50 |
+
* Update: Portfolio Options.
|
51 |
+
* Update: Translation domain.
|
52 |
+
|
53 |
+
= 3.1 =
|
54 |
+
* Fix: Translation Issue.
|
55 |
+
|
56 |
= 3.0 =
|
57 |
* Fix: Translation Issue.
|
58 |
|
shortcodes.php
CHANGED
@@ -146,10 +146,10 @@ function kad_youtube_shortcode_function( $atts, $content) {
|
|
146 |
'theme' => 'dark'
|
147 |
), $atts, 'kad_youtube' );
|
148 |
|
149 |
-
if ( !$atts['url'] ) return '<p class="error">YouTube: ' . __( 'please specify correct url', '
|
150 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
151 |
// Check that url is specified
|
152 |
-
if ( !$id ) return '<p class="error">YouTube: ' . __( 'please specify correct url', '
|
153 |
// Prepare params
|
154 |
if($atts['hidecontrols'] == 'true') {$atts['controls'] = 'false';}
|
155 |
foreach ( array('autoplay', 'controls', 'fs', 'modestbranding', 'theme' ) as $param ) $params[$param] = str_replace( array( 'false', 'true', 'alt' ), array( '0', '1', '2' ), $atts[$param] );
|
@@ -172,10 +172,10 @@ function kad_vimeo_shortcode_function( $atts, $content) {
|
|
172 |
'maxwidth' => '',
|
173 |
'autoplay' => 'no'
|
174 |
), $atts, 'vimeo' );
|
175 |
-
if ( !$atts['url'] ) return '<p class="error">Vimeo: ' . __( 'please specify correct url', '
|
176 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*vimeo\.com(?:[\/\w]*\/videos?)?\/([0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
177 |
// Check that url is specified
|
178 |
-
if ( !$id ) return '<p class="error">Vimeo: ' . __( 'please specify correct url', '
|
179 |
|
180 |
if($atts['maxwidth']) {$maxwidth = 'style="max-width:'.$atts['maxwidth'].'px;"';} else{ $maxwidth = '';}
|
181 |
$autoplay = ( $atts['autoplay'] === 'yes' ) ? '&autoplay=1' : '';
|
@@ -200,8 +200,20 @@ function kad_button_shortcode_function( $atts) {
|
|
200 |
'target' => '_self',
|
201 |
'tcolor' => '',
|
202 |
), $atts));
|
203 |
-
$output = '<a href="'.$link.'" class="kad-btn kad-btn-primary" id="kadbtn'.$id.'" target="'.$target.'" style="
|
204 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
return $output;
|
206 |
}
|
207 |
function kad_blockquote_shortcode_function( $atts, $content) {
|
146 |
'theme' => 'dark'
|
147 |
), $atts, 'kad_youtube' );
|
148 |
|
149 |
+
if ( !$atts['url'] ) return '<p class="error">YouTube: ' . __( 'please specify correct url', 'virtue-toolkit' ) . '</p>';
|
150 |
$id = ( preg_match( '%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $atts['url'], $match ) ) ? $match[1] : false;
|
151 |
// Check that url is specified
|
152 |
+
if ( !$id ) return '<p class="error">YouTube: ' . __( 'please specify correct url', 'virtue-toolkit' ) . '</p>';
|
153 |
// Prepare params
|
154 |
if($atts['hidecontrols'] == 'true') {$atts['controls'] = 'false';}
|
155 |
foreach ( array('autoplay', 'controls', 'fs', 'modestbranding', 'theme' ) as $param ) $params[$param] = str_replace( array( 'false', 'true', 'alt' ), array( '0', '1', '2' ), $atts[$param] );
|
172 |
'maxwidth' => '',
|
173 |
'autoplay' => 'no'
|
174 |
), $atts, 'vimeo' );
|
175 |
+
if ( !$atts['url'] ) return '<p class="error">Vimeo: ' . __( 'please specify correct url', 'virtue-toolkit' ) . '</p>';
|
176 |
$id = ( preg_match( '~(?:<iframe [^>]*src=")?(?:https?:\/\/(?:[\w]+\.)*vimeo\.com(?:[\/\w]*\/videos?)?\/([0-9]+)[^\s]*)"?(?:[^>]*></iframe>)?(?:<p>.*</p>)?~ix', $atts['url'], $match ) ) ? $match[1] : false;
|
177 |
// Check that url is specified
|
178 |
+
if ( !$id ) return '<p class="error">Vimeo: ' . __( 'please specify correct url', 'virtue-toolkit' ) . '</p>';
|
179 |
|
180 |
if($atts['maxwidth']) {$maxwidth = 'style="max-width:'.$atts['maxwidth'].'px;"';} else{ $maxwidth = '';}
|
181 |
$autoplay = ( $atts['autoplay'] === 'yes' ) ? '&autoplay=1' : '';
|
200 |
'target' => '_self',
|
201 |
'tcolor' => '',
|
202 |
), $atts));
|
203 |
+
$output = '<a href="'.$link.'" class="kad-btn kad-btn-primary" id="kadbtn'.$id.'" target="'.$target.'" style="';
|
204 |
+
if(!empty($bcolor)) {
|
205 |
+
$output .= 'background-color:'.$bcolor.';';
|
206 |
+
}
|
207 |
+
if(!empty($tcolor)) {
|
208 |
+
$output .= 'color:'.$tcolor.';';
|
209 |
+
}
|
210 |
+
$output .= '"';
|
211 |
+
if($thovercolor == $tcolor) {$thovercolor = null;}
|
212 |
+
if(!empty($bhovercolor) || !empty($thovercolor)) {
|
213 |
+
$output .= 'onMouseOver="this.style.background=\''.$bhovercolor.'\',this.style.color=\''.$thovercolor.'\'" onMouseOut="this.style.background=\''.$bcolor.'\', this.style.color=\''.$tcolor.'\'"';
|
214 |
+
}
|
215 |
+
$output .= '>'.$text.'</a>';
|
216 |
+
|
217 |
return $output;
|
218 |
}
|
219 |
function kad_blockquote_shortcode_function( $atts, $content) {
|
shortcodes/accordion/accordion_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert Accordion or Tabs", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
@@ -56,14 +56,14 @@ tinyMCEPopup.onInit.add(ButtonDialog.init, ButtonDialog);
|
|
56 |
<div id="icon-dialog">
|
57 |
<form action="/" method="get" accept-charset="utf-8">
|
58 |
<div>
|
59 |
-
<label for="tabs"><?php _e("Accordion or Tabs", '
|
60 |
<select name="tabs" id="tabs">
|
61 |
-
<option value="accordion"><?php _e("Accordion", '
|
62 |
-
<option value="tabs"><?php _e("Tabs", '
|
63 |
</select>
|
64 |
</div>
|
65 |
<div>
|
66 |
-
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", '
|
67 |
</div>
|
68 |
</form>
|
69 |
</div>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert Accordion or Tabs", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
56 |
<div id="icon-dialog">
|
57 |
<form action="/" method="get" accept-charset="utf-8">
|
58 |
<div>
|
59 |
+
<label for="tabs"><?php _e("Accordion or Tabs", 'virtue-toolkit'); ?></label>
|
60 |
<select name="tabs" id="tabs">
|
61 |
+
<option value="accordion"><?php _e("Accordion", 'virtue-toolkit'); ?></option>
|
62 |
+
<option value="tabs"><?php _e("Tabs", 'virtue-toolkit'); ?></option>
|
63 |
</select>
|
64 |
</div>
|
65 |
<div>
|
66 |
+
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", 'virtue-toolkit'); ?></a>
|
67 |
</div>
|
68 |
</form>
|
69 |
</div>
|
shortcodes/btns/btns_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert Button", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
@@ -96,138 +96,138 @@ tinyMCEPopup.onInit.add(ButtonDialog.init, ButtonDialog);
|
|
96 |
<form action="/" method="get" accept-charset="utf-8">
|
97 |
<div class="linebreak">
|
98 |
<div>
|
99 |
-
<label for="btn-text"><?php _e("Button Text", '
|
100 |
<input type="text" name="btn_text" value="" id="text" />
|
101 |
</div>
|
102 |
</div>
|
103 |
<div class="linebreak">
|
104 |
<div>
|
105 |
-
<label for="btn-color"><?php _e("Text Color", '
|
106 |
<select name="btn-color" id="text-color">
|
107 |
-
<option value="#FFF"><?php _e("White", '
|
108 |
-
<option value="#F2F2F2"><?php _e("Off-White", '
|
109 |
-
<option value="#000"><?php _e("Black", '
|
110 |
-
<option value="#CDCDCD"><?php _e("Light-Gray", '
|
111 |
-
<option value="#999"><?php _e("Gray", '
|
112 |
-
<option value="#444"><?php _e("Dark-Gray", '
|
113 |
-
<option value="#CCC"><?php _e("Silver", '
|
114 |
-
<option value="#FF0000"><?php _e("Red", '
|
115 |
-
<option value="#0000FF"><?php _e("Blue", '
|
116 |
-
<option value="#008000"><?php _e("Green", '
|
117 |
-
<option value="#FFFF00"><?php _e("Yellow", '
|
118 |
-
<option value="#FFA500"><?php _e("Orange", '
|
119 |
-
<option value="#FF00FF"><?php _e("Pink", '
|
120 |
-
<option value="#800080"><?php _e("Purple", '
|
121 |
-
<option value="#8B4513"><?php _e("Brown", '
|
122 |
-
<option value="#800000"><?php _e("Maroon", '
|
123 |
</select>
|
124 |
</div>
|
125 |
<div>
|
126 |
-
<label class="hex" for="text-color-hex"><?php _e("Or Type Hex Color", '
|
127 |
<input type="text"class="btn-hex" name="text-color-hex" value="" id="text-color-hex" />
|
128 |
</div>
|
129 |
</div>
|
130 |
<div class="linebreak">
|
131 |
<div>
|
132 |
-
<label for="btn-color"><?php _e("Button Color", '
|
133 |
<select name="btn-color" id="btn-color">
|
134 |
-
<option value=""><?php _e("Primary Color", '
|
135 |
-
<option value="#000"><?php _e("Black", '
|
136 |
-
<option value="#CDCDCD"><?php _e("Light-Gray", '
|
137 |
-
<option value="#999"><?php _e("Gray", '
|
138 |
-
<option value="#444"><?php _e("Dark-Gray", '
|
139 |
-
<option value="#CCC"><?php _e("Silver", '
|
140 |
-
<option value="#FFF"><?php _e("White", '
|
141 |
-
<option value="#F2F2F2"><?php _e("Off-White", '
|
142 |
-
<option value="#FF0000"><?php _e("Red", '
|
143 |
-
<option value="#0000FF"><?php _e("Blue", '
|
144 |
-
<option value="#008000"><?php _e("Green", '
|
145 |
-
<option value="#FFFF00"><?php _e("Yellow", '
|
146 |
-
<option value="#FFA500"><?php _e("Orange", '
|
147 |
-
<option value="#FF00FF"><?php _e("Pink", '
|
148 |
-
<option value="#800080"><?php _e("Purple", '
|
149 |
-
<option value="#8B4513"><?php _e("Brown", '
|
150 |
-
<option value="#800000"><?php _e("Maroon", '
|
151 |
|
152 |
</select>
|
153 |
</div>
|
154 |
<div>
|
155 |
-
<label class="hex" for="btn-color-hex"><?php _e("Or Type Hex Color", '
|
156 |
<input type="text" class="btn-hex" name="btn-color-hex" value="" id="btn-color-hex" />
|
157 |
</div>
|
158 |
</div>
|
159 |
<div class="linebreak">
|
160 |
<div>
|
161 |
-
<label for="btn-color"><?php _e("Text Hover Color", '
|
162 |
<select name="btn-color" id="text-hover-color">
|
163 |
-
<option value="#FFF"><?php _e("White", '
|
164 |
-
<option value="#F2F2F2"><?php _e("Off-White", '
|
165 |
-
<option value="#000"><?php _e("Black", '
|
166 |
-
<option value="#CDCDCD"><?php _e("Light-Gray", '
|
167 |
-
<option value="#999"><?php _e("Gray", '
|
168 |
-
<option value="#444"><?php _e("Dark-Gray", '
|
169 |
-
<option value="#CCC"><?php _e("Silver", '
|
170 |
-
<option value="#FF0000"><?php _e("Red", '
|
171 |
-
<option value="#0000FF"><?php _e("Blue", '
|
172 |
-
<option value="#008000"><?php _e("Green", '
|
173 |
-
<option value="#FFFF00"><?php _e("Yellow", '
|
174 |
-
<option value="#FFA500"><?php _e("Orange", '
|
175 |
-
<option value="#FF00FF"><?php _e("Pink", '
|
176 |
-
<option value="#800080"><?php _e("Purple", '
|
177 |
-
<option value="#8B4513"><?php _e("Brown", '
|
178 |
-
<option value="#800000"><?php _e("Maroon", '
|
179 |
</select>
|
180 |
</div>
|
181 |
<div>
|
182 |
-
<label class="hex" for="text-color-hex"><?php _e("Or Type Hex Color", '
|
183 |
<input type="text"class="btn-hex" name="text-color-hex" value="" id="text-hover-color-hex" />
|
184 |
</div>
|
185 |
</div>
|
186 |
<div class="linebreak">
|
187 |
<div>
|
188 |
-
<label for="btn-color"><?php _e("Button Background Hover Color", '
|
189 |
<select name="btn-color" id="btn-hover-color">
|
190 |
-
<option value=""><?php _e("30% Primary Color", '
|
191 |
-
<option value="#000"><?php _e("Black", '
|
192 |
-
<option value="#CDCDCD"><?php _e("Light-Gray", '
|
193 |
-
<option value="#999"><?php _e("Gray", '
|
194 |
-
<option value="#444"><?php _e("Dark-Gray", '
|
195 |
-
<option value="#CCC"><?php _e("Silver", '
|
196 |
-
<option value="#FFF"><?php _e("White", '
|
197 |
-
<option value="#F2F2F2"><?php _e("Off-White", '
|
198 |
-
<option value="#FF0000"><?php _e("Red", '
|
199 |
-
<option value="#0000FF"><?php _e("Blue", '
|
200 |
-
<option value="#008000"><?php _e("Green", '
|
201 |
-
<option value="#FFFF00"><?php _e("Yellow", '
|
202 |
-
<option value="#FFA500"><?php _e("Orange", '
|
203 |
-
<option value="#FF00FF"><?php _e("Pink", '
|
204 |
-
<option value="#800080"><?php _e("Purple", '
|
205 |
-
<option value="#8B4513"><?php _e("Brown", '
|
206 |
-
<option value="#800000"><?php _e("Maroon", '
|
207 |
</select>
|
208 |
</div>
|
209 |
<div>
|
210 |
-
<label class="hex" for="btn-color-hex"><?php _e("Or Type Hex Color", '
|
211 |
<input type="text" class="btn-hex" name="btn-color-hex" value="" id="btn-hover-color-hex" />
|
212 |
</div>
|
213 |
</div>
|
214 |
<div class="linebreak">
|
215 |
<div>
|
216 |
-
<label for="btn-link"><?php _e("Button Link", '
|
217 |
<input type="text" name="btn-link" value="" id="btn-link" />
|
218 |
</div>
|
219 |
</div>
|
220 |
<div class="linebreak">
|
221 |
<div>
|
222 |
-
<label for="btn-target"><?php _e("Button Link Target", '
|
223 |
<select name="btn-target" id="btn-target">
|
224 |
-
<option value="_self"><?php _e("Same Window", '
|
225 |
-
<option value="_blank"><?php _e("New Window/Tab", '
|
226 |
</select>
|
227 |
</div>
|
228 |
</div>
|
229 |
<div>
|
230 |
-
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", '
|
231 |
</div>
|
232 |
</form>
|
233 |
</div>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert Button", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
96 |
<form action="/" method="get" accept-charset="utf-8">
|
97 |
<div class="linebreak">
|
98 |
<div>
|
99 |
+
<label for="btn-text"><?php _e("Button Text", 'virtue-toolkit'); ?></label>
|
100 |
<input type="text" name="btn_text" value="" id="text" />
|
101 |
</div>
|
102 |
</div>
|
103 |
<div class="linebreak">
|
104 |
<div>
|
105 |
+
<label for="btn-color"><?php _e("Text Color", 'virtue-toolkit'); ?></label>
|
106 |
<select name="btn-color" id="text-color">
|
107 |
+
<option value="#FFF"><?php _e("White", 'virtue-toolkit'); ?></option>
|
108 |
+
<option value="#F2F2F2"><?php _e("Off-White", 'virtue-toolkit'); ?></option>
|
109 |
+
<option value="#000"><?php _e("Black", 'virtue-toolkit'); ?></option>
|
110 |
+
<option value="#CDCDCD"><?php _e("Light-Gray", 'virtue-toolkit'); ?></option>
|
111 |
+
<option value="#999"><?php _e("Gray", 'virtue-toolkit'); ?></option>
|
112 |
+
<option value="#444"><?php _e("Dark-Gray", 'virtue-toolkit'); ?></option>
|
113 |
+
<option value="#CCC"><?php _e("Silver", 'virtue-toolkit'); ?></option>
|
114 |
+
<option value="#FF0000"><?php _e("Red", 'virtue-toolkit'); ?></option>
|
115 |
+
<option value="#0000FF"><?php _e("Blue", 'virtue-toolkit'); ?></option>
|
116 |
+
<option value="#008000"><?php _e("Green", 'virtue-toolkit'); ?></option>
|
117 |
+
<option value="#FFFF00"><?php _e("Yellow", 'virtue-toolkit'); ?></option>
|
118 |
+
<option value="#FFA500"><?php _e("Orange", 'virtue-toolkit'); ?></option>
|
119 |
+
<option value="#FF00FF"><?php _e("Pink", 'virtue-toolkit'); ?></option>
|
120 |
+
<option value="#800080"><?php _e("Purple", 'virtue-toolkit'); ?></option>
|
121 |
+
<option value="#8B4513"><?php _e("Brown", 'virtue-toolkit'); ?></option>
|
122 |
+
<option value="#800000"><?php _e("Maroon", 'virtue-toolkit'); ?></option>
|
123 |
</select>
|
124 |
</div>
|
125 |
<div>
|
126 |
+
<label class="hex" for="text-color-hex"><?php _e("Or Type Hex Color", 'virtue-toolkit'); ?></label>
|
127 |
<input type="text"class="btn-hex" name="text-color-hex" value="" id="text-color-hex" />
|
128 |
</div>
|
129 |
</div>
|
130 |
<div class="linebreak">
|
131 |
<div>
|
132 |
+
<label for="btn-color"><?php _e("Button Color", 'virtue-toolkit'); ?></label>
|
133 |
<select name="btn-color" id="btn-color">
|
134 |
+
<option value=""><?php _e("Primary Color", 'virtue-toolkit'); ?></option>
|
135 |
+
<option value="#000"><?php _e("Black", 'virtue-toolkit'); ?></option>
|
136 |
+
<option value="#CDCDCD"><?php _e("Light-Gray", 'virtue-toolkit'); ?></option>
|
137 |
+
<option value="#999"><?php _e("Gray", 'virtue-toolkit'); ?></option>
|
138 |
+
<option value="#444"><?php _e("Dark-Gray", 'virtue-toolkit'); ?></option>
|
139 |
+
<option value="#CCC"><?php _e("Silver", 'virtue-toolkit'); ?></option>
|
140 |
+
<option value="#FFF"><?php _e("White", 'virtue-toolkit'); ?></option>
|
141 |
+
<option value="#F2F2F2"><?php _e("Off-White", 'virtue-toolkit'); ?></option>
|
142 |
+
<option value="#FF0000"><?php _e("Red", 'virtue-toolkit'); ?></option>
|
143 |
+
<option value="#0000FF"><?php _e("Blue", 'virtue-toolkit'); ?></option>
|
144 |
+
<option value="#008000"><?php _e("Green", 'virtue-toolkit'); ?></option>
|
145 |
+
<option value="#FFFF00"><?php _e("Yellow", 'virtue-toolkit'); ?></option>
|
146 |
+
<option value="#FFA500"><?php _e("Orange", 'virtue-toolkit'); ?></option>
|
147 |
+
<option value="#FF00FF"><?php _e("Pink", 'virtue-toolkit'); ?></option>
|
148 |
+
<option value="#800080"><?php _e("Purple", 'virtue-toolkit'); ?></option>
|
149 |
+
<option value="#8B4513"><?php _e("Brown", 'virtue-toolkit'); ?></option>
|
150 |
+
<option value="#800000"><?php _e("Maroon", 'virtue-toolkit'); ?></option>
|
151 |
|
152 |
</select>
|
153 |
</div>
|
154 |
<div>
|
155 |
+
<label class="hex" for="btn-color-hex"><?php _e("Or Type Hex Color", 'virtue-toolkit'); ?></label>
|
156 |
<input type="text" class="btn-hex" name="btn-color-hex" value="" id="btn-color-hex" />
|
157 |
</div>
|
158 |
</div>
|
159 |
<div class="linebreak">
|
160 |
<div>
|
161 |
+
<label for="btn-color"><?php _e("Text Hover Color", 'virtue-toolkit'); ?></label>
|
162 |
<select name="btn-color" id="text-hover-color">
|
163 |
+
<option value="#FFF"><?php _e("White", 'virtue-toolkit'); ?></option>
|
164 |
+
<option value="#F2F2F2"><?php _e("Off-White", 'virtue-toolkit'); ?></option>
|
165 |
+
<option value="#000"><?php _e("Black", 'virtue-toolkit'); ?></option>
|
166 |
+
<option value="#CDCDCD"><?php _e("Light-Gray", 'virtue-toolkit'); ?></option>
|
167 |
+
<option value="#999"><?php _e("Gray", 'virtue-toolkit'); ?></option>
|
168 |
+
<option value="#444"><?php _e("Dark-Gray", 'virtue-toolkit'); ?></option>
|
169 |
+
<option value="#CCC"><?php _e("Silver", 'virtue-toolkit'); ?></option>
|
170 |
+
<option value="#FF0000"><?php _e("Red", 'virtue-toolkit'); ?></option>
|
171 |
+
<option value="#0000FF"><?php _e("Blue", 'virtue-toolkit'); ?></option>
|
172 |
+
<option value="#008000"><?php _e("Green", 'virtue-toolkit'); ?></option>
|
173 |
+
<option value="#FFFF00"><?php _e("Yellow", 'virtue-toolkit'); ?></option>
|
174 |
+
<option value="#FFA500"><?php _e("Orange", 'virtue-toolkit'); ?></option>
|
175 |
+
<option value="#FF00FF"><?php _e("Pink", 'virtue-toolkit'); ?></option>
|
176 |
+
<option value="#800080"><?php _e("Purple", 'virtue-toolkit'); ?></option>
|
177 |
+
<option value="#8B4513"><?php _e("Brown", 'virtue-toolkit'); ?></option>
|
178 |
+
<option value="#800000"><?php _e("Maroon", 'virtue-toolkit'); ?></option>
|
179 |
</select>
|
180 |
</div>
|
181 |
<div>
|
182 |
+
<label class="hex" for="text-color-hex"><?php _e("Or Type Hex Color", 'virtue-toolkit'); ?></label>
|
183 |
<input type="text"class="btn-hex" name="text-color-hex" value="" id="text-hover-color-hex" />
|
184 |
</div>
|
185 |
</div>
|
186 |
<div class="linebreak">
|
187 |
<div>
|
188 |
+
<label for="btn-color"><?php _e("Button Background Hover Color", 'virtue-toolkit'); ?></label>
|
189 |
<select name="btn-color" id="btn-hover-color">
|
190 |
+
<option value=""><?php _e("30% Primary Color", 'virtue-toolkit'); ?></option>
|
191 |
+
<option value="#000"><?php _e("Black", 'virtue-toolkit'); ?></option>
|
192 |
+
<option value="#CDCDCD"><?php _e("Light-Gray", 'virtue-toolkit'); ?></option>
|
193 |
+
<option value="#999"><?php _e("Gray", 'virtue-toolkit'); ?></option>
|
194 |
+
<option value="#444"><?php _e("Dark-Gray", 'virtue-toolkit'); ?></option>
|
195 |
+
<option value="#CCC"><?php _e("Silver", 'virtue-toolkit'); ?></option>
|
196 |
+
<option value="#FFF"><?php _e("White", 'virtue-toolkit'); ?></option>
|
197 |
+
<option value="#F2F2F2"><?php _e("Off-White", 'virtue-toolkit'); ?></option>
|
198 |
+
<option value="#FF0000"><?php _e("Red", 'virtue-toolkit'); ?></option>
|
199 |
+
<option value="#0000FF"><?php _e("Blue", 'virtue-toolkit'); ?></option>
|
200 |
+
<option value="#008000"><?php _e("Green", 'virtue-toolkit'); ?></option>
|
201 |
+
<option value="#FFFF00"><?php _e("Yellow", 'virtue-toolkit'); ?></option>
|
202 |
+
<option value="#FFA500"><?php _e("Orange", 'virtue-toolkit'); ?></option>
|
203 |
+
<option value="#FF00FF"><?php _e("Pink", 'virtue-toolkit'); ?></option>
|
204 |
+
<option value="#800080"><?php _e("Purple", 'virtue-toolkit'); ?></option>
|
205 |
+
<option value="#8B4513"><?php _e("Brown", 'virtue-toolkit'); ?></option>
|
206 |
+
<option value="#800000"><?php _e("Maroon", 'virtue-toolkit'); ?></option>
|
207 |
</select>
|
208 |
</div>
|
209 |
<div>
|
210 |
+
<label class="hex" for="btn-color-hex"><?php _e("Or Type Hex Color", 'virtue-toolkit'); ?></label>
|
211 |
<input type="text" class="btn-hex" name="btn-color-hex" value="" id="btn-hover-color-hex" />
|
212 |
</div>
|
213 |
</div>
|
214 |
<div class="linebreak">
|
215 |
<div>
|
216 |
+
<label for="btn-link"><?php _e("Button Link", 'virtue-toolkit'); ?></label>
|
217 |
<input type="text" name="btn-link" value="" id="btn-link" />
|
218 |
</div>
|
219 |
</div>
|
220 |
<div class="linebreak">
|
221 |
<div>
|
222 |
+
<label for="btn-target"><?php _e("Button Link Target", 'virtue-toolkit'); ?></label>
|
223 |
<select name="btn-target" id="btn-target">
|
224 |
+
<option value="_self"><?php _e("Same Window", 'virtue-toolkit'); ?></option>
|
225 |
+
<option value="_blank"><?php _e("New Window/Tab", 'virtue-toolkit'); ?></option>
|
226 |
</select>
|
227 |
</div>
|
228 |
</div>
|
229 |
<div>
|
230 |
+
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", 'virtue-toolkit'); ?></a>
|
231 |
</div>
|
232 |
</form>
|
233 |
</div>
|
shortcodes/columns/columns_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert Columns", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert Columns", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
shortcodes/divider/divider_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert Divider", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
@@ -67,17 +67,17 @@ tinyMCEPopup.onInit.add(ButtonDialog.init, ButtonDialog);
|
|
67 |
<div id="icon-dialog">
|
68 |
<form action="/" method="get" accept-charset="utf-8">
|
69 |
<div>
|
70 |
-
<label for="dividers"><?php _e("Choose a Divider", '
|
71 |
<select name="divider" id="divider">
|
72 |
-
<option value="hr"><?php _e("Line", '
|
73 |
-
<option value="space_20"><?php _e("Padding Small", '
|
74 |
-
<option value="space_40"><?php _e("Padding Medium", '
|
75 |
-
<option value="space_80"><?php _e("Padding Large", '
|
76 |
-
<option value="clear"><?php _e("Clear", '
|
77 |
</select>
|
78 |
</div>
|
79 |
<div>
|
80 |
-
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", '
|
81 |
</div>
|
82 |
</form>
|
83 |
</div>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert Divider", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
67 |
<div id="icon-dialog">
|
68 |
<form action="/" method="get" accept-charset="utf-8">
|
69 |
<div>
|
70 |
+
<label for="dividers"><?php _e("Choose a Divider", 'virtue-toolkit'); ?></label>
|
71 |
<select name="divider" id="divider">
|
72 |
+
<option value="hr"><?php _e("Line", 'virtue-toolkit'); ?></option>
|
73 |
+
<option value="space_20"><?php _e("Padding Small", 'virtue-toolkit'); ?></option>
|
74 |
+
<option value="space_40"><?php _e("Padding Medium", 'virtue-toolkit'); ?></option>
|
75 |
+
<option value="space_80"><?php _e("Padding Large", 'virtue-toolkit'); ?></option>
|
76 |
+
<option value="clear"><?php _e("Clear", 'virtue-toolkit'); ?></option>
|
77 |
</select>
|
78 |
</div>
|
79 |
<div>
|
80 |
+
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", 'virtue-toolkit'); ?></a>
|
81 |
</div>
|
82 |
</form>
|
83 |
</div>
|
shortcodes/icons/icon_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert Icon", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert Icon", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
shortcodes/pullquote/quote_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert Styled Quote", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
@@ -56,25 +56,25 @@ tinyMCEPopup.onInit.add(ButtonDialog.init, ButtonDialog);
|
|
56 |
<form action="/" method="get" accept-charset="utf-8">
|
57 |
<div class="linebreak">
|
58 |
<div>
|
59 |
-
<label for="text"><?php _e("Style", '
|
60 |
<select name="quote" id="quote">
|
61 |
-
<option value="pull"><?php _e("Pull-Quote", '
|
62 |
-
<option value="block"><?php _e("Block-Quote", '
|
63 |
</select>
|
64 |
</div>
|
65 |
</div>
|
66 |
<div class="linebreak">
|
67 |
<div>
|
68 |
-
<label for="text"><?php _e("Align", '
|
69 |
<select name="quote" id="align">
|
70 |
-
<option value="center"><?php _e("Center", '
|
71 |
-
<option value="left"><?php _e("Left", '
|
72 |
-
<option value="right"><?php _e("Right", '
|
73 |
</select>
|
74 |
</div>
|
75 |
</div>
|
76 |
<div>
|
77 |
-
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", '
|
78 |
</div>
|
79 |
</form>
|
80 |
</div>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert Styled Quote", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
56 |
<form action="/" method="get" accept-charset="utf-8">
|
57 |
<div class="linebreak">
|
58 |
<div>
|
59 |
+
<label for="text"><?php _e("Style", 'virtue-toolkit'); ?></label>
|
60 |
<select name="quote" id="quote">
|
61 |
+
<option value="pull"><?php _e("Pull-Quote", 'virtue-toolkit'); ?></option>
|
62 |
+
<option value="block"><?php _e("Block-Quote", 'virtue-toolkit'); ?></option>
|
63 |
</select>
|
64 |
</div>
|
65 |
</div>
|
66 |
<div class="linebreak">
|
67 |
<div>
|
68 |
+
<label for="text"><?php _e("Align", 'virtue-toolkit'); ?></label>
|
69 |
<select name="quote" id="align">
|
70 |
+
<option value="center"><?php _e("Center", 'virtue-toolkit'); ?></option>
|
71 |
+
<option value="left"><?php _e("Left", 'virtue-toolkit'); ?></option>
|
72 |
+
<option value="right"><?php _e("Right", 'virtue-toolkit'); ?></option>
|
73 |
</select>
|
74 |
</div>
|
75 |
</div>
|
76 |
<div>
|
77 |
+
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", 'virtue-toolkit'); ?></a>
|
78 |
</div>
|
79 |
</form>
|
80 |
</div>
|
shortcodes/vimeo/vimeo_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert Vimeo Video", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
@@ -63,26 +63,26 @@ body {padding: 0 8px; font-size: 0;}
|
|
63 |
<div id="vimeo-dialog">
|
64 |
<form action="/" method="get" accept-charset="utf-8">
|
65 |
<div>
|
66 |
-
<label for="video"><?php _e("Vimeo Link", '
|
67 |
<input type="text" name="video" name="video" id="video" />
|
68 |
</div>
|
69 |
<div>
|
70 |
<label for="width"><?php _e("Width", "virtue"); ?></label>
|
71 |
<input type="text" name="width" value="" id="width" />
|
72 |
-
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", '
|
73 |
</div>
|
74 |
<div>
|
75 |
-
<label for="height"><?php _e("Height", '
|
76 |
<input type="text" name="height" value="" id="height" />
|
77 |
-
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", '
|
78 |
</div>
|
79 |
<div>
|
80 |
-
<label for="maxwidth"><?php _e("(Optional) Max Width", '
|
81 |
<input type="text" name="maxwidth" value="" id="maxwidth" />
|
82 |
-
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", '
|
83 |
</div>
|
84 |
<div>
|
85 |
-
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", '
|
86 |
</div>
|
87 |
</form>
|
88 |
</div>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert Vimeo Video", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
63 |
<div id="vimeo-dialog">
|
64 |
<form action="/" method="get" accept-charset="utf-8">
|
65 |
<div>
|
66 |
+
<label for="video"><?php _e("Vimeo Link", 'virtue-toolkit'); ?></label>
|
67 |
<input type="text" name="video" name="video" id="video" />
|
68 |
</div>
|
69 |
<div>
|
70 |
<label for="width"><?php _e("Width", "virtue"); ?></label>
|
71 |
<input type="text" name="width" value="" id="width" />
|
72 |
+
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", 'virtue-toolkit'); ?>)</span>
|
73 |
</div>
|
74 |
<div>
|
75 |
+
<label for="height"><?php _e("Height", 'virtue-toolkit'); ?></label>
|
76 |
<input type="text" name="height" value="" id="height" />
|
77 |
+
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", 'virtue-toolkit'); ?>)</span>
|
78 |
</div>
|
79 |
<div>
|
80 |
+
<label for="maxwidth"><?php _e("(Optional) Max Width", 'virtue-toolkit'); ?></label>
|
81 |
<input type="text" name="maxwidth" value="" id="maxwidth" />
|
82 |
+
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", 'virtue-toolkit'); ?>)</span>
|
83 |
</div>
|
84 |
<div>
|
85 |
+
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", 'virtue-toolkit'); ?></a>
|
86 |
</div>
|
87 |
</form>
|
88 |
</div>
|
shortcodes/youtube/youtube_popup.php
CHANGED
@@ -7,7 +7,7 @@ global $wp_scripts;
|
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
-
<title><?php _e("Insert YouTube Video", '
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
@@ -63,23 +63,23 @@ body {padding: 0 8px; font-size: 0;}
|
|
63 |
<div id="youtube-dialog">
|
64 |
<form action="/" method="get" accept-charset="utf-8">
|
65 |
<div>
|
66 |
-
<label for="video"><?php _e("YouTube Link", '
|
67 |
<input type="text" name="video" name="video" id="video" />
|
68 |
</div>
|
69 |
<div>
|
70 |
-
<label for="width"><?php _e("Width", '
|
71 |
<input type="text" name="width" value="" id="width" />
|
72 |
-
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", '
|
73 |
</div>
|
74 |
<div>
|
75 |
-
<label for="height"><?php _e("Height", '
|
76 |
<input type="text" name="height" value="" id="height" />
|
77 |
-
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", '
|
78 |
</div>
|
79 |
<div>
|
80 |
-
<label for="maxwidth"><?php _e("(Optional) Max Width", '
|
81 |
<input type="text" name="maxwidth" value="" id="maxwidth" />
|
82 |
-
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", '
|
83 |
</div>
|
84 |
<div>
|
85 |
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", "kadencetoolkit"); ?></a>
|
7 |
?>
|
8 |
<!DOCTYPE html>
|
9 |
<head>
|
10 |
+
<title><?php _e("Insert YouTube Video", 'virtue-toolkit'); ?></title>
|
11 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
|
12 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
|
13 |
<script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl'); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
|
63 |
<div id="youtube-dialog">
|
64 |
<form action="/" method="get" accept-charset="utf-8">
|
65 |
<div>
|
66 |
+
<label for="video"><?php _e("YouTube Link", 'virtue-toolkit'); ?></label>
|
67 |
<input type="text" name="video" name="video" id="video" />
|
68 |
</div>
|
69 |
<div>
|
70 |
+
<label for="width"><?php _e("Width", 'virtue-toolkit'); ?></label>
|
71 |
<input type="text" name="width" value="" id="width" />
|
72 |
+
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", 'virtue-toolkit'); ?>)</span>
|
73 |
</div>
|
74 |
<div>
|
75 |
+
<label for="height"><?php _e("Height", 'virtue-toolkit'); ?></label>
|
76 |
<input type="text" name="height" value="" id="height" />
|
77 |
+
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", 'virtue-toolkit'); ?>)</span>
|
78 |
</div>
|
79 |
<div>
|
80 |
+
<label for="maxwidth"><?php _e("(Optional) Max Width", 'virtue-toolkit'); ?></label>
|
81 |
<input type="text" name="maxwidth" value="" id="maxwidth" />
|
82 |
+
<span style="display:inline-block; padding-left:5px;">(*<?php _e("note just use number", 'virtue-toolkit'); ?>)</span>
|
83 |
</div>
|
84 |
<div>
|
85 |
<a href="javascript:ButtonDialog.insert(ButtonDialog.local_ed)" id="insert" style="display: block; line-height: 24px; text-align:center"><?php _e("Insert", "kadencetoolkit"); ?></a>
|
template-contact.php
CHANGED
@@ -10,8 +10,8 @@ global $post;
|
|
10 |
$form_math = get_post_meta( $post->ID, '_kad_contact_form_math', true );
|
11 |
if ($form == 'yes') { ?>
|
12 |
<script type="text/javascript">jQuery(document).ready(function ($) {$.extend($.validator.messages, {
|
13 |
-
required: "<?php echo __('This field is required.', '
|
14 |
-
email: "<?php echo __('Please enter a valid email address.', '
|
15 |
});
|
16 |
$("#contactForm").validate();
|
17 |
});</script>
|
@@ -95,29 +95,29 @@ global $post;
|
|
95 |
if(isset($_POST['submitted'])) {
|
96 |
if(isset($form_math) && $form_math == 'yes') {
|
97 |
if(md5($_POST['kad_captcha']) != $_POST['hval']) {
|
98 |
-
$kad_captchaError = __('Check your math.', '
|
99 |
$hasError = true;
|
100 |
}
|
101 |
}
|
102 |
if(trim($_POST['contactName']) === '') {
|
103 |
-
$nameError = __('Please enter your name.', '
|
104 |
$hasError = true;
|
105 |
} else {
|
106 |
$name = trim($_POST['contactName']);
|
107 |
}
|
108 |
|
109 |
if(trim($_POST['email']) === '') {
|
110 |
-
$emailError = __('Please enter your email address.', '
|
111 |
$hasError = true;
|
112 |
} else if (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", trim($_POST['email']))) {
|
113 |
-
$emailError = __('You entered an invalid email address.', '
|
114 |
$hasError = true;
|
115 |
} else {
|
116 |
$email = trim($_POST['email']);
|
117 |
}
|
118 |
|
119 |
if(trim($_POST['comments']) === '') {
|
120 |
-
$commentError = __('Please enter a message.', '
|
121 |
$hasError = true;
|
122 |
} else {
|
123 |
if(function_exists('stripslashes')) {
|
@@ -135,9 +135,9 @@ global $post;
|
|
135 |
}
|
136 |
$sitename = get_bloginfo('name');
|
137 |
$subject = '['.$sitename . ' ' . __("Contact", "kadencetoolkit").'] '. __("From", "kadencetoolkit") . ' ' . $name;
|
138 |
-
$body = __('Name', '
|
139 |
-
$body .= __('Email', '
|
140 |
-
$body .= __('Comments', '
|
141 |
$headers = 'Reply-To: ' . $name . '<' . $email . '>' . "\r\n";
|
142 |
|
143 |
wp_mail($emailTo, $subject, $body, $headers);
|
@@ -172,17 +172,17 @@ global $post;
|
|
172 |
}
|
173 |
if(isset($emailSent) && $emailSent == true) { ?>
|
174 |
<div class="thanks">
|
175 |
-
<p><?php _e('Thanks, your email was sent successfully.', '
|
176 |
</div>
|
177 |
<?php } else { ?>
|
178 |
<?php if(isset($hasError) || isset($captchaError)) { ?>
|
179 |
-
<p class="error"><?php _e('Sorry, an error occured.', '
|
180 |
<?php } ?>
|
181 |
|
182 |
<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
|
183 |
<div class="contactform">
|
184 |
<p>
|
185 |
-
<label for="contactName"><b><?php _e('Name:', '
|
186 |
<?php if(isset($nameError)) { ?>
|
187 |
<span class="error"><?php echo esc_html($nameError);?></span>
|
188 |
<?php } ?>
|
@@ -192,14 +192,14 @@ global $post;
|
|
192 |
</p>
|
193 |
|
194 |
<p>
|
195 |
-
<label for="email"><b><?php _e('Email:', '
|
196 |
<?php if(isset($emailError)) { ?>
|
197 |
<span class="error"><?php echo esc_html($emailError);?></span>
|
198 |
<?php } ?>
|
199 |
<input type="text" name="email" id="email" value="<?php if(isset($_POST['email'])) echo esc_attr($_POST['email']);?>" class="required requiredField email full" />
|
200 |
</p>
|
201 |
|
202 |
-
<p><label for="commentsText"><b><?php _e('Message:', '
|
203 |
<?php if(isset($commentError)) { ?>
|
204 |
<span class="error"><?php echo esc_html($commentError);?></span>
|
205 |
<?php } ?>
|
@@ -217,7 +217,7 @@ global $post;
|
|
217 |
</p>
|
218 |
<?php } ?>
|
219 |
<p>
|
220 |
-
<input type="submit" class="kad-btn kad-btn-primary" id="submit" tabindex="5" value="<?php _e('Send Email', '
|
221 |
</p>
|
222 |
</div><!-- /.contactform-->
|
223 |
<input type="hidden" name="submitted" id="submitted" value="true" />
|
10 |
$form_math = get_post_meta( $post->ID, '_kad_contact_form_math', true );
|
11 |
if ($form == 'yes') { ?>
|
12 |
<script type="text/javascript">jQuery(document).ready(function ($) {$.extend($.validator.messages, {
|
13 |
+
required: "<?php echo __('This field is required.', 'virtue-toolkit'); ?>",
|
14 |
+
email: "<?php echo __('Please enter a valid email address.', 'virtue-toolkit'); ?>",
|
15 |
});
|
16 |
$("#contactForm").validate();
|
17 |
});</script>
|
95 |
if(isset($_POST['submitted'])) {
|
96 |
if(isset($form_math) && $form_math == 'yes') {
|
97 |
if(md5($_POST['kad_captcha']) != $_POST['hval']) {
|
98 |
+
$kad_captchaError = __('Check your math.', 'virtue-toolkit');
|
99 |
$hasError = true;
|
100 |
}
|
101 |
}
|
102 |
if(trim($_POST['contactName']) === '') {
|
103 |
+
$nameError = __('Please enter your name.', 'virtue-toolkit');
|
104 |
$hasError = true;
|
105 |
} else {
|
106 |
$name = trim($_POST['contactName']);
|
107 |
}
|
108 |
|
109 |
if(trim($_POST['email']) === '') {
|
110 |
+
$emailError = __('Please enter your email address.', 'virtue-toolkit');
|
111 |
$hasError = true;
|
112 |
} else if (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", trim($_POST['email']))) {
|
113 |
+
$emailError = __('You entered an invalid email address.', 'virtue-toolkit');
|
114 |
$hasError = true;
|
115 |
} else {
|
116 |
$email = trim($_POST['email']);
|
117 |
}
|
118 |
|
119 |
if(trim($_POST['comments']) === '') {
|
120 |
+
$commentError = __('Please enter a message.', 'virtue-toolkit');
|
121 |
$hasError = true;
|
122 |
} else {
|
123 |
if(function_exists('stripslashes')) {
|
135 |
}
|
136 |
$sitename = get_bloginfo('name');
|
137 |
$subject = '['.$sitename . ' ' . __("Contact", "kadencetoolkit").'] '. __("From", "kadencetoolkit") . ' ' . $name;
|
138 |
+
$body = __('Name', 'virtue-toolkit').": $name \n\n";
|
139 |
+
$body .= __('Email', 'virtue-toolkit').": $email \n\n";
|
140 |
+
$body .= __('Comments', 'virtue-toolkit').":\n $comments";
|
141 |
$headers = 'Reply-To: ' . $name . '<' . $email . '>' . "\r\n";
|
142 |
|
143 |
wp_mail($emailTo, $subject, $body, $headers);
|
172 |
}
|
173 |
if(isset($emailSent) && $emailSent == true) { ?>
|
174 |
<div class="thanks">
|
175 |
+
<p><?php _e('Thanks, your email was sent successfully.', 'virtue-toolkit');?></p>
|
176 |
</div>
|
177 |
<?php } else { ?>
|
178 |
<?php if(isset($hasError) || isset($captchaError)) { ?>
|
179 |
+
<p class="error"><?php _e('Sorry, an error occured.', 'virtue-toolkit');?><p>
|
180 |
<?php } ?>
|
181 |
|
182 |
<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
|
183 |
<div class="contactform">
|
184 |
<p>
|
185 |
+
<label for="contactName"><b><?php _e('Name:', 'virtue-toolkit');?></b></label>
|
186 |
<?php if(isset($nameError)) { ?>
|
187 |
<span class="error"><?php echo esc_html($nameError);?></span>
|
188 |
<?php } ?>
|
192 |
</p>
|
193 |
|
194 |
<p>
|
195 |
+
<label for="email"><b><?php _e('Email:', 'virtue-toolkit'); ?></b></label>
|
196 |
<?php if(isset($emailError)) { ?>
|
197 |
<span class="error"><?php echo esc_html($emailError);?></span>
|
198 |
<?php } ?>
|
199 |
<input type="text" name="email" id="email" value="<?php if(isset($_POST['email'])) echo esc_attr($_POST['email']);?>" class="required requiredField email full" />
|
200 |
</p>
|
201 |
|
202 |
+
<p><label for="commentsText"><b><?php _e('Message:', 'virtue-toolkit'); ?></b></label>
|
203 |
<?php if(isset($commentError)) { ?>
|
204 |
<span class="error"><?php echo esc_html($commentError);?></span>
|
205 |
<?php } ?>
|
217 |
</p>
|
218 |
<?php } ?>
|
219 |
<p>
|
220 |
+
<input type="submit" class="kad-btn kad-btn-primary" id="submit" tabindex="5" value="<?php _e('Send Email', 'virtue-toolkit'); ?>" ></input>
|
221 |
</p>
|
222 |
</div><!-- /.contactform-->
|
223 |
<input type="hidden" name="submitted" id="submitted" value="true" />
|
virtue_toolkit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: Virtue / Pinnacle ToolKit
|
5 |
Description: Custom Portfolio and Shortcode functionality for Virtue and Pinnacle Wordpress Theme
|
6 |
-
Version: 3.
|
7 |
Author: Kadence Themes
|
8 |
Author URI: http://kadencethemes.com/
|
9 |
License: GPLv2 or later
|
@@ -40,7 +40,7 @@ if(!defined('VIRTUE_TOOLKIT_URL')){
|
|
40 |
}
|
41 |
|
42 |
function kadencetoolkit_textdomain() {
|
43 |
-
load_plugin_textdomain( '
|
44 |
}
|
45 |
add_action( 'plugins_loaded', 'kadencetoolkit_textdomain' );
|
46 |
|
3 |
/*
|
4 |
Plugin Name: Virtue / Pinnacle ToolKit
|
5 |
Description: Custom Portfolio and Shortcode functionality for Virtue and Pinnacle Wordpress Theme
|
6 |
+
Version: 3.2
|
7 |
Author: Kadence Themes
|
8 |
Author URI: http://kadencethemes.com/
|
9 |
License: GPLv2 or later
|
40 |
}
|
41 |
|
42 |
function kadencetoolkit_textdomain() {
|
43 |
+
load_plugin_textdomain( 'virtue-toolkit', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
44 |
}
|
45 |
add_action( 'plugins_loaded', 'kadencetoolkit_textdomain' );
|
46 |
|