Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
g

Test String

Code Generator

Generated Code

// include the latest version of the regex crate in your Cargo.toml extern crate regex; use regex::Regex; fn main() { let regex = Regex::new(r"(#:|#,).+[\n]*").unwrap(); let string = "#, fuzzy msgid \"\" msgstr \"\" \"Project-Id-Version: \\n\" \"POT-Creation-Date: 2017-12-05 11:39+0700\\n\" \"PO-Revision-Date: 2016-08-17 19:26+0700\\n\" \"Last-Translator: \\n\" \"Language-Team: \\n\" \"Language: en_US\\n\" \"MIME-Version: 1.0\\n\" \"Content-Type: text/plain; charset=UTF-8\\n\" \"Content-Transfer-Encoding: 8bit\\n\" \"X-Generator: Poedit 1.8.7.1\\n\" \"X-Poedit-Basepath: ..\\n\" \"Plural-Forms: nplurals=2; plural=(n != 1);\\n\" \"X-Poedit-SourceCharset: UTF-8\\n\" \"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;esc_html_x;_n:1,2;\" \"_n_noop:1,2;_nx:1,2;_nx_noop:1,2\\n\" \"X-Poedit-SearchPath-0: .\\n\" \"X-Poedit-SearchPathExcluded-0: *.js\\n\" #: comments.php:20 #, php-format msgid \"Comment (%1$s)\" msgid_plural \"Comments (%1$s)\" msgstr[0] \"\" msgstr[1] \"\" #: comments.php:44 includes/helpers.php:87 msgid \"Previous\" msgstr \"\" #: comments.php:45 includes/helpers.php:88 msgid \"Next\" msgstr \"\" #: comments.php:57 msgid \"Comments are closed.\" msgstr \"\" #: default-templates/article.php:29 default-templates/page.php:22 #: default-templates/single.php:26 #: framework-customizations/extensions/articles/articles/article-04/views/view.php:29 #: framework-customizations/extensions/events/views/single.php:90 #: framework-customizations/extensions/faq/views/single.php:16 #: framework-customizations/extensions/portfolio/views/single.php:47 #: framework-customizations/extensions/services/views/single.php:33 #: framework-customizations/extensions/teams/views/single.php:81 msgid \"Continue reading\" msgstr \"\" #: default-templates/article.php:36 default-templates/page.php:25 #: default-templates/single.php:30 #: framework-customizations/extensions/articles/articles/article-04/views/view.php:33 #: framework-customizations/extensions/portfolio/views/single.php:51 #: framework-customizations/extensions/posts/posts/post-01/views/view.php:32 #: framework-customizations/extensions/posts/posts/post-02/views/view.php:30 #: framework-customizations/extensions/posts/posts/post-03/views/view.php:32 #: framework-customizations/extensions/posts/posts/post-04/views/view.php:30 #: framework-customizations/extensions/posts/posts/post-05/views/view.php:27 #: framework-customizations/extensions/services/views/single.php:37 msgid \"Pages:\" msgstr \"\" #: default-templates/footer.php:12 msgid \"&#169; Designed by RubikThemes. All Rights Reserved.\" msgstr \"\" #: default-templates/no-content.php:3 msgid \"We can&rsquo;t find what you&rsquo;re looking for!\" msgstr \"\" #: default-templates/no-content.php:9 msgid \"Ready to publish your first post?\" msgstr \"\" #: default-templates/no-content.php:9 msgid \"Get started here\" msgstr \"\" #: default-templates/no-content.php:13 msgid \"Please try again with different keywords.\" msgstr \"\" #: default-templates/no-content.php:18 msgid \"\" \"It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps \" \"searching can help.\" msgstr \"\" #: default-templates/page.php:34 #: framework-customizations/extensions/events/views/single.php:94 #: framework-customizations/extensions/faq/views/single.php:39 #: framework-customizations/extensions/posts/posts/post-01/views/view.php:41 #: framework-customizations/extensions/posts/posts/post-02/views/view.php:39 #: framework-customizations/extensions/posts/posts/post-03/views/view.php:41 #: framework-customizations/extensions/posts/posts/post-04/views/view.php:39 #: includes/helpers.php:224 msgid \"Edit\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:11 msgid \"Donation\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:161 #: framework-customizations/extensions/events/hooks.php:193 msgid \"Exceeds the ticket class allows\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:591 msgid \"Pending\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:592 msgid \"Approve\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:596 msgid \"All Status\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:617 msgid \"All Events\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:634 msgid \"All Event Categories\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:651 msgid \"Money From\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:653 msgid \"To\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:727 msgid \"Speaker\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:730 msgid \"Name of event speaker.\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:733 msgid \"Speaker Image\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:736 msgid \"Image of event speaker.\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:740 msgid \"Start And End Of Event\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:741 msgid \"Set start and end events datetime\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:763 msgid \"Event Location\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:765 msgid \"Where does the event take place?\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:772 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:102 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:124 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:46 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:40 #: framework-customizations/theme/options/course-settings.php:48 #: framework-customizations/theme/options/page-404-settings.php:72 msgid \"Description\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:775 msgid \"Event Label\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:778 msgid \"Label of event.\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:787 #: framework-customizations/extensions/footers/footers/footer-01/options.php:86 #: framework-customizations/extensions/footers/footers/footer-01/options.php:210 #: framework-customizations/extensions/footers/footers/footer-01/options.php:337 #: framework-customizations/extensions/footers/footers/footer-02/options.php:85 #: framework-customizations/extensions/footers/footers/footer-02/options.php:209 #: framework-customizations/extensions/footers/footers/footer-02/options.php:330 #: framework-customizations/extensions/footers/footers/footer-03/options.php:85 #: framework-customizations/extensions/footers/footers/footer-03/options.php:209 #: framework-customizations/extensions/footers/footers/footer-03/options.php:318 #: framework-customizations/extensions/footers/footers/footer-04/options.php:85 #: framework-customizations/extensions/footers/footers/footer-04/options.php:209 #: framework-customizations/extensions/footers/footers/footer-04/options.php:322 #: framework-customizations/theme/options/general-settings.php:223 msgid \"Custom Style\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:788 #: framework-customizations/theme/options/general-settings.php:224 msgid \"Change the style / typography of this shortcode\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:789 #: framework-customizations/extensions/footers/footers/footer-01/options.php:88 #: framework-customizations/extensions/footers/footers/footer-01/options.php:212 #: framework-customizations/extensions/footers/footers/footer-01/options.php:339 #: framework-customizations/extensions/footers/footers/footer-02/options.php:87 #: framework-customizations/extensions/footers/footers/footer-02/options.php:211 #: framework-customizations/extensions/footers/footers/footer-02/options.php:332 #: framework-customizations/extensions/footers/footers/footer-03/options.php:87 #: framework-customizations/extensions/footers/footers/footer-03/options.php:211 #: framework-customizations/extensions/footers/footers/footer-03/options.php:320 #: framework-customizations/extensions/footers/footers/footer-04/options.php:87 #: framework-customizations/extensions/footers/footers/footer-04/options.php:211 #: framework-customizations/extensions/footers/footers/footer-04/options.php:324 #: framework-customizations/theme/options/general-settings.php:225 #: framework-customizations/theme/options/page-header-settings.php:169 #: framework-customizations/theme/options/page-header-settings.php:241 msgid \"Styling\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:795 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:25 #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:86 #: framework-customizations/extensions/portfolio/config.php:155 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:67 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:231 #: framework-customizations/theme/options/general-settings.php:234 #: framework-customizations/theme/options/general-settings.php:394 #: framework-customizations/theme/options/general-settings.php:457 #: framework-customizations/theme/options/taxonomies/cat_course.php:15 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:23 #: includes/hooks.php:436 msgid \"Icon\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:796 msgid \"Select icon for label.\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:799 #: framework-customizations/extensions/footers/footers/footer-01/options.php:92 #: framework-customizations/extensions/footers/footers/footer-01/options.php:343 #: framework-customizations/extensions/footers/footers/footer-01/options.php:504 #: framework-customizations/extensions/footers/footers/footer-01/options.php:657 #: framework-customizations/extensions/footers/footers/footer-01/options.php:810 #: framework-customizations/extensions/footers/footers/footer-02/options.php:91 #: framework-customizations/extensions/footers/footers/footer-02/options.php:336 #: framework-customizations/extensions/footers/footers/footer-02/options.php:497 #: framework-customizations/extensions/footers/footers/footer-02/options.php:649 #: framework-customizations/extensions/footers/footers/footer-02/options.php:801 #: framework-customizations/extensions/footers/footers/footer-03/options.php:91 #: framework-customizations/extensions/footers/footers/footer-03/options.php:324 #: framework-customizations/extensions/footers/footers/footer-03/options.php:485 #: framework-customizations/extensions/footers/footers/footer-03/options.php:637 #: framework-customizations/extensions/footers/footers/footer-03/options.php:789 #: framework-customizations/extensions/footers/footers/footer-04/options.php:91 #: framework-customizations/extensions/footers/footers/footer-04/options.php:328 #: framework-customizations/extensions/footers/footers/footer-04/options.php:489 #: framework-customizations/extensions/footers/footers/footer-04/options.php:641 #: framework-customizations/extensions/footers/footers/footer-04/options.php:793 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:161 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:232 #: framework-customizations/extensions/headers/headers/header-09/options.php:165 #: framework-customizations/extensions/headers/headers/header-09/options.php:236 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:88 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:78 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:74 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:34 #: framework-customizations/theme/options/general-settings.php:66 #: framework-customizations/theme/options/general-settings.php:263 #: framework-customizations/theme/options/page-boxed-layout.php:42 #: framework-customizations/theme/options/page-header-settings.php:44 #: framework-customizations/theme/options/posts/page.php:119 msgid \"Background Color\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:800 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:162 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:233 #: framework-customizations/extensions/headers/headers/header-09/options.php:166 #: framework-customizations/extensions/headers/headers/header-09/options.php:237 #: framework-customizations/theme/options/general-settings.php:264 msgid \"Select the background color\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:806 #: framework-customizations/extensions/footers/footers/footer-01/options.php:125 #: framework-customizations/extensions/footers/footers/footer-01/options.php:375 #: framework-customizations/extensions/footers/footers/footer-01/options.php:511 #: framework-customizations/extensions/footers/footers/footer-01/options.php:664 #: framework-customizations/extensions/footers/footers/footer-01/options.php:817 #: framework-customizations/extensions/footers/footers/footer-02/options.php:124 #: framework-customizations/extensions/footers/footers/footer-02/options.php:368 #: framework-customizations/extensions/footers/footers/footer-02/options.php:504 #: framework-customizations/extensions/footers/footers/footer-02/options.php:656 #: framework-customizations/extensions/footers/footers/footer-02/options.php:808 #: framework-customizations/extensions/footers/footers/footer-03/options.php:124 #: framework-customizations/extensions/footers/footers/footer-03/options.php:356 #: framework-customizations/extensions/footers/footers/footer-03/options.php:492 #: framework-customizations/extensions/footers/footers/footer-03/options.php:644 #: framework-customizations/extensions/footers/footers/footer-03/options.php:796 #: framework-customizations/extensions/footers/footers/footer-04/options.php:124 #: framework-customizations/extensions/footers/footers/footer-04/options.php:360 #: framework-customizations/extensions/footers/footers/footer-04/options.php:496 #: framework-customizations/extensions/footers/footers/footer-04/options.php:648 #: framework-customizations/extensions/footers/footers/footer-04/options.php:800 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:54 #: framework-customizations/theme/options/general-settings.php:270 msgid \"Text Color\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:807 #: framework-customizations/theme/options/general-settings.php:271 msgid \"Select the text color\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:817 msgid \"Hide Event When Expired\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:818 #: framework-customizations/extensions/events/shortcodes/event-block/config.php:46 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:13 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:155 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:165 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:174 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:184 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:8 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:3 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:3 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:6 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:13 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:12 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:11 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:4 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:9 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:87 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:98 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:109 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:120 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:131 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:142 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:153 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:177 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:193 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:209 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:225 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:122 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:130 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:138 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:150 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:290 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:303 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:317 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:331 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:96 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:88 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:13 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:66 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:163 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:13 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:108 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:4 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:12 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:5 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:10 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:8 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:14 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:9 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:8 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:5 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:10 #: framework-customizations/theme/options/advertisement-settings.php:72 #: framework-customizations/theme/options/general-settings.php:116 #: framework-customizations/theme/options/general-settings.php:130 #: framework-customizations/theme/options/post-settings.php:268 #: framework-customizations/theme/options/post-settings.php:282 #: framework-customizations/theme/options/post-settings.php:296 #: framework-customizations/theme/options/post-settings.php:310 #: framework-customizations/theme/options/post-settings.php:485 #: framework-customizations/theme/options/theme-requirements.php:21 #: framework-customizations/theme/options/theme-requirements.php:29 #: framework-customizations/theme/options/theme-requirements.php:98 #: framework-customizations/theme/options/theme-requirements.php:135 #: framework-customizations/theme/options/theme-requirements.php:247 msgid \"Yes\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:825 msgid \"Ticket Price\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:828 #: framework-customizations/extensions/events/hooks.php:835 msgid \"Price to sale the ticket of the event\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:832 msgid \"Ticket Promotion Price\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:839 msgid \"Number Ticket\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:842 msgid \"Number of the ticket of the event\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:846 msgid \"Button Buy Ticket Text\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:848 #: framework-customizations/extensions/events/includes/class-slz-event.php:496 msgid \"Buy Ticket\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:849 msgid \"Input text for Buy Ticket button\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:852 msgid \"Button Buy Ticket URL\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:854 msgid \"Input URL for payment method on button Buy Ticket\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:860 #: framework-customizations/extensions/portfolio/config.php:125 #: framework-customizations/theme/options/general-settings.php:7 #: framework-customizations/theme/options/general-settings.php:11 #: framework-customizations/theme/options/page-header-settings.php:312 #: framework-customizations/theme/options/template-settings.php:216 msgid \"General\" msgstr \"\" #: framework-customizations/extensions/events/hooks.php:865 msgid \"Ticket\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:231 #: framework-customizations/extensions/events/views/single.php:258 #: framework-customizations/extensions/portfolio/views/course-info.php:65 msgid \"Price:\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:231 msgid \"from \" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:234 msgid \"Donation Now\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:490 #: framework-customizations/extensions/events/includes/class-slz-event.php:983 msgid \"Buy ticket\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:511 msgid \"Ticket Prices\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1080 msgid \"Event Host\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1143 #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:14 msgid \"days\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1150 #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:22 msgid \"hours\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1157 #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:30 msgid \"mins\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1164 #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:56 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:38 msgid \"secs\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1202 #: framework-customizations/extensions/events/includes/class-slz-event.php:1271 msgid \"Donate now\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1249 msgid \"Events Donation\" msgstr \"\" #: framework-customizations/extensions/events/includes/class-slz-event.php:1254 msgid \"How much would you like to donate?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:8 msgid \"SLZ Events Block\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:9 msgid \"List of events\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:16 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:18 #: framework-customizations/extensions/headers/headers/header-09/options/button.php:13 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:13 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:15 #: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:39 #: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:41 #: framework-customizations/extensions/lema/shortcodes/instructor/config.php:42 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:57 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:16 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:24 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:16 #: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:27 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:10 #: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:16 #: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:14 #: framework-customizations/extensions/teams/shortcodes/team-block/config.php:27 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:18 #: framework-customizations/extensions/widgets/widgets/button/config.php:13 #: framework-customizations/theme/options/page-404-settings.php:29 #: framework-customizations/theme/options/page-header-settings.php:25 #: framework-customizations/theme/options/page-options.php:78 msgid \"United States\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:17 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:19 #: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:40 #: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:42 #: framework-customizations/extensions/lema/shortcodes/instructor/config.php:43 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:58 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:17 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:23 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:17 #: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:28 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:60 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:17 #: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:15 #: framework-customizations/extensions/teams/shortcodes/team-block/config.php:28 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:19 #: framework-customizations/extensions/widgets/widgets/button/config.php:14 #: framework-customizations/theme/options/page-404-settings.php:30 msgid \"India\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:18 #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:16 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:20 #: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:41 #: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:20 #: framework-customizations/extensions/teams/shortcodes/team-block/config.php:29 #: framework-customizations/extensions/widgets/widgets/button/config.php:15 msgid \"United Kingdom\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:35 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:102 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:112 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:113 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:123 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:124 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:134 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:144 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:154 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:164 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:174 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:184 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:8 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:215 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:225 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:226 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:236 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:237 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:247 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:257 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:267 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:277 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:287 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:297 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:307 #: framework-customizations/extensions/footers/footers/footer-01/options.php:152 #: framework-customizations/extensions/footers/footers/footer-01/options.php:285 #: framework-customizations/extensions/footers/footers/footer-01/options.php:415 #: framework-customizations/extensions/footers/footers/footer-01/options.php:434 #: framework-customizations/extensions/footers/footers/footer-01/options.php:449 #: framework-customizations/extensions/footers/footers/footer-01/options.php:474 #: framework-customizations/extensions/footers/footers/footer-01/options.php:568 #: framework-customizations/extensions/footers/footers/footer-01/options.php:588 #: framework-customizations/extensions/footers/footers/footer-01/options.php:602 #: framework-customizations/extensions/footers/footers/footer-01/options.php:627 #: framework-customizations/extensions/footers/footers/footer-01/options.php:721 #: framework-customizations/extensions/footers/footers/footer-01/options.php:741 #: framework-customizations/extensions/footers/footers/footer-01/options.php:755 #: framework-customizations/extensions/footers/footers/footer-01/options.php:780 #: framework-customizations/extensions/footers/footers/footer-02/options.php:151 #: framework-customizations/extensions/footers/footers/footer-02/options.php:278 #: framework-customizations/extensions/footers/footers/footer-02/options.php:408 #: framework-customizations/extensions/footers/footers/footer-02/options.php:427 #: framework-customizations/extensions/footers/footers/footer-02/options.php:442 #: framework-customizations/extensions/footers/footers/footer-02/options.php:467 #: framework-customizations/extensions/footers/footers/footer-02/options.php:560 #: framework-customizations/extensions/footers/footers/footer-02/options.php:580 #: framework-customizations/extensions/footers/footers/footer-02/options.php:594 #: framework-customizations/extensions/footers/footers/footer-02/options.php:619 #: framework-customizations/extensions/footers/footers/footer-02/options.php:712 #: framework-customizations/extensions/footers/footers/footer-02/options.php:732 #: framework-customizations/extensions/footers/footers/footer-02/options.php:746 #: framework-customizations/extensions/footers/footers/footer-02/options.php:771 #: framework-customizations/extensions/footers/footers/footer-03/options.php:151 #: framework-customizations/extensions/footers/footers/footer-03/options.php:266 #: framework-customizations/extensions/footers/footers/footer-03/options.php:396 #: framework-customizations/extensions/footers/footers/footer-03/options.php:415 #: framework-customizations/extensions/footers/footers/footer-03/options.php:430 #: framework-customizations/extensions/footers/footers/footer-03/options.php:455 #: framework-customizations/extensions/footers/footers/footer-03/options.php:548 #: framework-customizations/extensions/footers/footers/footer-03/options.php:568 #: framework-customizations/extensions/footers/footers/footer-03/options.php:582 #: framework-customizations/extensions/footers/footers/footer-03/options.php:607 #: framework-customizations/extensions/footers/footers/footer-03/options.php:700 #: framework-customizations/extensions/footers/footers/footer-03/options.php:720 #: framework-customizations/extensions/footers/footers/footer-03/options.php:734 #: framework-customizations/extensions/footers/footers/footer-03/options.php:759 #: framework-customizations/extensions/footers/footers/footer-04/options.php:151 #: framework-customizations/extensions/footers/footers/footer-04/options.php:270 #: framework-customizations/extensions/footers/footers/footer-04/options.php:400 #: framework-customizations/extensions/footers/footers/footer-04/options.php:419 #: framework-customizations/extensions/footers/footers/footer-04/options.php:434 #: framework-customizations/extensions/footers/footers/footer-04/options.php:459 #: framework-customizations/extensions/footers/footers/footer-04/options.php:552 #: framework-customizations/extensions/footers/footers/footer-04/options.php:572 #: framework-customizations/extensions/footers/footers/footer-04/options.php:586 #: framework-customizations/extensions/footers/footers/footer-04/options.php:611 #: framework-customizations/extensions/footers/footers/footer-04/options.php:704 #: framework-customizations/extensions/footers/footers/footer-04/options.php:724 #: framework-customizations/extensions/footers/footers/footer-04/options.php:738 #: framework-customizations/extensions/footers/footers/footer-04/options.php:763 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:27 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:72 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:83 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:94 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:116 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:28 #: framework-customizations/theme/options/general-settings.php:318 #: framework-customizations/theme/options/post-settings.php:181 #: framework-customizations/theme/options/post-settings.php:439 #: framework-customizations/theme/options/post-settings.php:511 msgid \"Show\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:36 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:9 #: framework-customizations/extensions/footers/footers/footer-01/options.php:156 #: framework-customizations/extensions/footers/footers/footer-01/options.php:289 #: framework-customizations/extensions/footers/footers/footer-01/options.php:419 #: framework-customizations/extensions/footers/footers/footer-01/options.php:439 #: framework-customizations/extensions/footers/footers/footer-01/options.php:453 #: framework-customizations/extensions/footers/footers/footer-01/options.php:478 #: framework-customizations/extensions/footers/footers/footer-01/options.php:572 #: framework-customizations/extensions/footers/footers/footer-01/options.php:592 #: framework-customizations/extensions/footers/footers/footer-01/options.php:606 #: framework-customizations/extensions/footers/footers/footer-01/options.php:631 #: framework-customizations/extensions/footers/footers/footer-01/options.php:725 #: framework-customizations/extensions/footers/footers/footer-01/options.php:745 #: framework-customizations/extensions/footers/footers/footer-01/options.php:759 #: framework-customizations/extensions/footers/footers/footer-01/options.php:784 #: framework-customizations/extensions/footers/footers/footer-02/options.php:155 #: framework-customizations/extensions/footers/footers/footer-02/options.php:282 #: framework-customizations/extensions/footers/footers/footer-02/options.php:412 #: framework-customizations/extensions/footers/footers/footer-02/options.php:432 #: framework-customizations/extensions/footers/footers/footer-02/options.php:446 #: framework-customizations/extensions/footers/footers/footer-02/options.php:471 #: framework-customizations/extensions/footers/footers/footer-02/options.php:564 #: framework-customizations/extensions/footers/footers/footer-02/options.php:584 #: framework-customizations/extensions/footers/footers/footer-02/options.php:598 #: framework-customizations/extensions/footers/footers/footer-02/options.php:623 #: framework-customizations/extensions/footers/footers/footer-02/options.php:716 #: framework-customizations/extensions/footers/footers/footer-02/options.php:736 #: framework-customizations/extensions/footers/footers/footer-02/options.php:750 #: framework-customizations/extensions/footers/footers/footer-02/options.php:775 #: framework-customizations/extensions/footers/footers/footer-03/options.php:155 #: framework-customizations/extensions/footers/footers/footer-03/options.php:270 #: framework-customizations/extensions/footers/footers/footer-03/options.php:400 #: framework-customizations/extensions/footers/footers/footer-03/options.php:420 #: framework-customizations/extensions/footers/footers/footer-03/options.php:434 #: framework-customizations/extensions/footers/footers/footer-03/options.php:459 #: framework-customizations/extensions/footers/footers/footer-03/options.php:552 #: framework-customizations/extensions/footers/footers/footer-03/options.php:572 #: framework-customizations/extensions/footers/footers/footer-03/options.php:586 #: framework-customizations/extensions/footers/footers/footer-03/options.php:611 #: framework-customizations/extensions/footers/footers/footer-03/options.php:704 #: framework-customizations/extensions/footers/footers/footer-03/options.php:724 #: framework-customizations/extensions/footers/footers/footer-03/options.php:738 #: framework-customizations/extensions/footers/footers/footer-03/options.php:763 #: framework-customizations/extensions/footers/footers/footer-04/options.php:155 #: framework-customizations/extensions/footers/footers/footer-04/options.php:274 #: framework-customizations/extensions/footers/footers/footer-04/options.php:404 #: framework-customizations/extensions/footers/footers/footer-04/options.php:424 #: framework-customizations/extensions/footers/footers/footer-04/options.php:438 #: framework-customizations/extensions/footers/footers/footer-04/options.php:463 #: framework-customizations/extensions/footers/footers/footer-04/options.php:556 #: framework-customizations/extensions/footers/footers/footer-04/options.php:576 #: framework-customizations/extensions/footers/footers/footer-04/options.php:590 #: framework-customizations/extensions/footers/footers/footer-04/options.php:615 #: framework-customizations/extensions/footers/footers/footer-04/options.php:708 #: framework-customizations/extensions/footers/footers/footer-04/options.php:728 #: framework-customizations/extensions/footers/footers/footer-04/options.php:742 #: framework-customizations/extensions/footers/footers/footer-04/options.php:767 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:54 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:32 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:84 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:95 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:117 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:29 #: framework-customizations/theme/options/general-settings.php:314 #: framework-customizations/theme/options/post-settings.php:185 #: framework-customizations/theme/options/post-settings.php:392 #: framework-customizations/theme/options/post-settings.php:443 #: framework-customizations/theme/options/post-settings.php:515 #: framework-customizations/theme/options/posts/slz-faq.php:95 #: framework-customizations/theme/options/template-settings.php:565 msgid \"Hide\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:40 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:52 #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:27 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:18 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:104 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:20 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:34 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:47 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:154 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:214 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:39 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:52 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:138 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:198 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:38 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:51 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:130 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:190 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:30 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:8 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:64 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:15 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:62 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:15 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:144 #: framework-customizations/theme/options/page-header-settings.php:222 #: framework-customizations/theme/options/post-settings.php:154 msgid \"Category\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:41 #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:28 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:19 #: framework-customizations/theme/config.php:541 msgid \"Event\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/config.php:45 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:14 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:8 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:4 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:4 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:7 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:14 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:13 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:12 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:5 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:10 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:88 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:99 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:110 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:121 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:132 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:143 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:154 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:178 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:194 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:210 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:226 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:97 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:89 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:9 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:17 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:14 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:67 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:164 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:12 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:5 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:13 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:6 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:11 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:7 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:13 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:8 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:7 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:6 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:11 #: framework-customizations/theme/options/advertisement-settings.php:68 #: framework-customizations/theme/options/general-settings.php:112 #: framework-customizations/theme/options/general-settings.php:126 #: framework-customizations/theme/options/post-settings.php:272 #: framework-customizations/theme/options/post-settings.php:286 #: framework-customizations/theme/options/post-settings.php:300 #: framework-customizations/theme/options/post-settings.php:314 #: framework-customizations/theme/options/post-settings.php:489 #: framework-customizations/theme/options/theme-requirements.php:24 #: framework-customizations/theme/options/theme-requirements.php:33 #: framework-customizations/theme/options/theme-requirements.php:107 #: framework-customizations/theme/options/theme-requirements.php:139 #: framework-customizations/theme/options/theme-requirements.php:247 msgid \"No\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:6 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:7 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:17 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:18 #: framework-customizations/extensions/headers/headers/header-09/options/button.php:23 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:23 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:25 #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:9 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:5 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:69 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:43 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:6 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:3 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:3 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:31 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:36 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:3 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:10 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:20 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:3 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:3 #: framework-customizations/extensions/widgets/widgets/partner/config.php:13 #: framework-customizations/theme/options/page-header-settings.php:36 #: framework-customizations/theme/options/page-options.php:89 msgid \"Florida\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:7 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:8 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:18 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:19 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:24 #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:10 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:6 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:70 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:44 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:7 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:39 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:32 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:37 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:21 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:4 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:4 #: framework-customizations/extensions/widgets/widgets/partner/config.php:14 #: framework-customizations/theme/options/page-header-settings.php:37 #: framework-customizations/theme/options/page-options.php:90 msgid \"California\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:8 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:19 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:20 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:26 #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:11 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:71 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:45 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:9 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:27 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:33 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:22 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:5 #: framework-customizations/extensions/widgets/widgets/partner/config.php:15 msgid \"Georgia\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:15 #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:14 #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:12 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:14 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:15 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:10 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:63 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:66 #: framework-customizations/extensions/headers/headers/header-09/options/button.php:21 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:21 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:23 #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:6 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:25 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:13 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:64 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:66 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:40 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:13 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:10 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:36 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:17 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:32 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:33 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:9 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:16 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:14 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:17 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:11 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:15 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:14 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:20 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:15 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:14 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:13 #: framework-customizations/extensions/widgets/widgets/partner/options.php:11 #: framework-customizations/theme/options/page-header-settings.php:33 #: framework-customizations/theme/options/page-options.php:86 msgid \"Style\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:18 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:29 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:17 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:20 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:14 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:18 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:17 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:23 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:18 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:17 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:20 msgid \"Select style for blocks\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:23 msgid \"Label Position\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:26 msgid \"Top\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:27 msgid \"Bottom\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:29 msgid \"Select positon for display label.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:7 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:12 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:76 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:95 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:75 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:68 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:62 msgid \"Columns On Row\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:10 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:10 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:15 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:79 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:98 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:78 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:71 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:65 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:3 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:71 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:5 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:25 msgid \"One\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:11 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:11 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:7 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:6 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:16 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:80 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:99 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:79 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:72 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:66 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:23 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:72 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:6 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:26 msgid \"Two\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:12 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:12 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:8 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:7 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:6 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:17 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:81 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:100 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:80 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:73 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:13 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:67 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:27 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:7 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:27 msgid \"Three\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:13 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:13 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:9 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:8 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:7 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:18 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:82 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:101 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:81 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:74 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:14 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:68 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:28 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:74 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:8 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:28 msgid \"Four\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:15 msgid \"Select item columns on row .\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:20 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:26 msgid \"-All Event Categories-\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:24 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:30 msgid \"-All Event-\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:33 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:36 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:42 #: framework-customizations/extensions/headers/headers/header-09/options/button.php:11 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:11 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:13 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:18 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:22 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:25 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:54 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:56 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:50 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:10 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:49 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:10 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:20 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:41 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:40 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:45 #: framework-customizations/theme/options/page-404-settings.php:25 #: framework-customizations/theme/options/page-header-settings.php:22 #: framework-customizations/theme/options/page-options.php:75 msgid \"Layout\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:37 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:41 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:23 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:26 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:30 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:47 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:76 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:27 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:46 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:45 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:50 msgid \"Choose layout will be displayed.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:44 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:96 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:142 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:202 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:126 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:186 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:118 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:178 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:56 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:54 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:136 msgid \"Display By\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:47 msgid \"Choose team category or special events to display\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:48 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:70 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:92 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:100 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:122 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:144 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:135 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:146 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:172 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:195 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:206 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:232 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:255 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:130 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:156 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:179 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:190 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:216 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:239 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:122 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:148 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:171 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:182 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:208 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:231 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:180 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:193 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:138 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:147 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:111 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:120 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:60 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:82 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:104 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:58 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:80 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:102 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:140 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:162 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:185 msgid \"Filter\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:58 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:110 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:160 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:220 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:144 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:204 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:136 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:196 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:36 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:70 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:68 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:150 msgid \"Add Category\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:61 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:163 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:223 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:147 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:207 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:139 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:199 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:39 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:73 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:71 msgid \"Choose special category to filter\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:65 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:117 msgid \"Choose Event Category.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:74 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:126 #: framework-customizations/theme/options/template-settings.php:441 msgid \"Events\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:80 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:132 msgid \"Add Event\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:83 msgid \"Choose special event to show\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:87 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:139 msgid \"\" \"Default display All Event if no event is selected and Number event is empty.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:100 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:213 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:138 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:34 msgid \"Show Feature Image?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:104 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:217 msgid \"Choose to show or hide image.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:105 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:116 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:127 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:137 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:147 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:157 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:167 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:177 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:187 #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:195 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:218 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:229 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:240 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:250 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:260 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:270 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:280 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:290 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:300 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:314 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:322 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:181 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:188 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:195 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:202 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:209 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:216 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:227 msgid \"Custom Options\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:110 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:223 msgid \"Show Event Label?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:115 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:228 msgid \"Choose to show or hide event label.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:121 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:234 msgid \"Show Event Description?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:126 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:239 msgid \"Choose to show or hide event description.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:132 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:245 msgid \"Show Event Speaker?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:136 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:249 msgid \"Choose to show or hide event speaker.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:142 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:255 msgid \"Show Event Location?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:146 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:259 msgid \"Choose to show or hide event location.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:152 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:265 msgid \"Show Event Time?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:156 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:269 msgid \"Choose to show or hide event time.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:162 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:275 msgid \"Show Event Ticket Number?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:166 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:279 msgid \"Choose to show or hide event ticket number.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:172 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:285 msgid \"Show Event Ticket Price?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:176 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:289 msgid \"Choose to show or hide event ticket price.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:182 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:295 msgid \"Show Meta Info?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:186 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:299 msgid \"Choose to show or hide event meta info.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:192 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:319 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:74 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:392 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:359 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:398 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:33 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:117 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:136 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:94 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:101 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:56 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:192 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:330 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:126 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:92 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:84 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:126 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:52 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:101 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:49 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:40 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:178 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:194 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:205 msgid \"Title Color\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:194 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:321 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:76 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:51 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:42 msgid \"Choose a custom color for title.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:202 msgid \"Shortcode Title\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:205 msgid \"Add title for shortcode.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:210 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:90 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:16 #: framework-customizations/theme/options/post-settings.php:221 #: framework-customizations/theme/options/post-settings.php:458 #: framework-customizations/theme/options/post-settings.php:549 msgid \"Columns\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:214 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:89 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:200 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:213 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:260 msgid \"Choose number column will be displayed.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:223 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:74 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:79 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:102 msgid \"Excerpt Length\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:226 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:77 msgid \"Enter number of excerpt length. Default: 15\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:231 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:43 msgid \"Pagination\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:234 msgid \"Choose pagination display.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:239 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:56 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:86 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:97 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:93 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:95 #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:14 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:268 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:159 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:104 #: framework-customizations/theme/options/post-settings.php:452 #: framework-customizations/theme/options/post-settings.php:543 msgid \"Limit Posts\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:243 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:58 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:89 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:100 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:96 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:98 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:271 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:162 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:107 msgid \"\" \"Add limit posts per page. Set -1 or empty to show all. The number of posts \" \"to display. If it blank the number posts will be the number from Settings -> \" \"Reading\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:248 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:62 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:100 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:102 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:94 #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:19 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:275 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:166 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:111 msgid \"Offset Post\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:251 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:64 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:103 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:105 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:97 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:278 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:169 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:114 msgid \"\" \"Enter offset to pass over posts. If you want to start on record 6, using \" \"offset 5\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:256 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:66 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:107 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:109 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:101 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:115 #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:72 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:148 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:301 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:173 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:118 #: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:17 msgid \"Sort By\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:259 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:69 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:176 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:121 msgid \"Select order to display list properties.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:266 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:329 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:68 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:115 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:114 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:116 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:108 #: framework-customizations/extensions/headers/headers/header-09/options/button.php:53 #: framework-customizations/extensions/headers/headers/header-09/options/cart_icon.php:6 #: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:20 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:44 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:43 #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:17 #: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:17 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:74 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:54 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:107 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:254 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:160 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:35 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:34 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:28 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:58 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:71 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:95 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:78 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:83 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:114 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:80 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:238 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:162 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:128 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:42 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:72 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:234 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:200 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:132 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:178 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:70 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:75 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:257 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:97 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:155 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:48 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:23 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:101 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:129 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:308 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:187 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:125 msgid \"Extra Class\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:269 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:70 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:118 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:117 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:119 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:111 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:77 #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:57 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:110 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:257 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:86 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:83 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:45 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:135 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:260 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:100 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:158 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:51 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:311 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:190 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:128 msgid \"Add extra class to block\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:8 msgid \"SLZ Events Carousel\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:9 msgid \"Banner of events\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:17 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:62 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:21 #: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:31 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:20 msgid \"Italy\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:18 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:26 #: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:32 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:22 msgid \"Turkey\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:40 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:84 #: framework-customizations/extensions/portfolio/views/archive.php:47 #: framework-customizations/extensions/posts/posts/post-01/views/related_item.php:53 #: framework-customizations/extensions/posts/posts/post-02/views/related_item.php:53 #: framework-customizations/extensions/posts/posts/post-03/views/related_item.php:53 #: framework-customizations/extensions/posts/posts/post-04/views/related_item.php:53 #: framework-customizations/extensions/posts/posts/post-05/views/related_item.php:53 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:79 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:88 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/large_module.php:68 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/medium_module.php:45 #: framework-customizations/extensions/shortcodes/shortcodes/posts-mansory/views/layout-1.php:23 #: framework-customizations/theme/views/article.php:29 msgid \"Read More\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:42 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:3 msgid \"London\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:43 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:4 msgid \"Harrogate\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:44 msgid \"Leeds\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:17 #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:15 msgid \"Select style for event block.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:6 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:3 msgid \"Istanbul\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:50 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:22 msgid \"Title Block\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:53 msgid \"Add title for shortcode block.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:58 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:88 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:108 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:100 msgid \"Limit Post\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:61 msgid \"Limit post display. Default: -1\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:82 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:86 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:180 msgid \"Button \\\"Read More\\\" Text\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:89 msgid \"Enter text for button \\\"Read More\\\"\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:99 msgid \"Choose event category or special events to display.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:113 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:153 msgid \"Choose special category to filter.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:135 msgid \"Choose special event to show.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:152 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:60 msgid \"Is Auto Play?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:154 msgid \"Choose YES to slide auto play. Default: Yes\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:157 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:167 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:177 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:187 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:196 #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:205 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:129 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:142 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:151 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:160 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:169 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:93 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:106 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:119 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:132 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:144 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:166 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:182 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:198 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:214 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:230 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:243 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:178 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:187 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:196 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:205 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:213 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:221 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:266 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:275 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:284 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:293 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:302 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:310 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:299 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:312 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:322 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:331 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:340 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:348 msgid \"Slide Custom\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:162 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:68 msgid \"Is Dots Navigation?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:163 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:197 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:70 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:72 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:355 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:283 msgid \"Choose YES to show dot navigation.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:172 msgid \"Is Arrows Navigation?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:176 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:213 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:78 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:85 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:368 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:292 msgid \"Choose YES to show arrow navigation.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:182 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:164 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:123 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:222 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:84 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:94 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:200 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:297 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:335 msgid \"Is Loop Infinite ?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:186 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:168 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:127 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:229 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:86 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:98 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:204 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:381 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:301 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:339 msgid \"Choose YES to slide loop infinite.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:192 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:124 #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:124 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:161 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:266 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:53 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:90 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:326 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:261 msgid \"Slide To Show\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:195 msgid \"Enter number of items to show. Default: 1\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:201 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:136 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:238 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:107 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:209 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:390 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:306 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:344 msgid \"Speed Slide\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:204 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:139 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:242 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:110 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:212 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:393 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:309 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:347 msgid \"Enter number value. Unit is millisecond. Example: 600.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:305 msgid \"Show Countdown?\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:313 msgid \"Choose show or hide event countdown.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:332 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:61 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:74 msgid \"Add extra class to block shortcode.\" msgstr \"\" #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:26 #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:35 #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:44 #: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:53 msgid \"00\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:50 msgid \"Last updated:\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:79 msgid \"Location\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:144 #: framework-customizations/extensions/events/views/single.php:151 msgid \"FREE\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:161 msgid \"/slot\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:166 msgid \"Booked time\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:171 msgid \"Booked slot\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:172 msgid \"Unlimited\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:177 msgid \"Quantity\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:181 #: setup/data-master/views/import_attachments.php:18 msgid \"Total\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:184 msgid \"BOOK TICKET NOW\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:207 msgid \"You might also like...\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:259 msgid \"Quantity:\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:260 msgid \"Total:\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:274 #: framework-customizations/theme/options/speed-optimize.php:115 msgid \"Checkout\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:298 msgid \"Payment Successful!\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:299 msgid \"Please check your mail box to receive invoice.\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:305 msgid \"Payment Fail!\" msgstr \"\" #: framework-customizations/extensions/events/views/single.php:306 msgid \"Please try again.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/config.php:10 msgid \"SLZ FAQ Block\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/config.php:11 msgid \"Show list of FAQ.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:11 #: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:207 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:39 msgid \"- All Categories -\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:23 msgid \"Choose category to show.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:27 msgid \"Display Title\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:31 msgid \"Choose to show category title.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:35 msgid \"Display Readmore\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:39 msgid \"Choose to show readmore buton.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:47 msgid \"Choose to show pagination.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:77 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:85 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:93 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:101 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:109 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:117 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:125 #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:133 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:181 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:193 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:205 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:217 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:229 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:241 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:288 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:32 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:40 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:48 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:56 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:22 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:30 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:80 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:88 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:96 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:104 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:112 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:120 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:105 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:113 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:121 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:129 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:137 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:198 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:206 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:214 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:222 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:230 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:238 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:246 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:254 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:322 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:334 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:346 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:358 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:370 #: framework-customizations/theme/options/page-header-settings.php:151 #: framework-customizations/theme/options/page-header-settings.php:223 #: framework-customizations/theme/options/page-options.php:40 #: framework-customizations/theme/options/post-settings.php:393 #: framework-customizations/theme/options/posts/page.php:146 #: framework-customizations/theme/options/posts/slz-faq.php:96 #: framework-customizations/theme/options/template-settings.php:566 #: framework-customizations/theme/options/typography.php:35 #: framework-customizations/theme/options/typography.php:64 #: framework-customizations/theme/options/typography.php:142 msgid \"Custom\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:82 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:202 msgid \"Title Color Hover\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:84 msgid \"Choose a custom color hover for title.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:90 msgid \"Item Color\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:92 msgid \"Choose a custom color for item.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:98 msgid \"Item Color Hover\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:100 msgid \"Choose a custom color hover for item.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:106 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:44 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:176 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:204 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:110 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:206 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:312 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:31 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:104 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:161 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:240 msgid \"Icon Color\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:108 msgid \"Choose a custom color for icon.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:114 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:118 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:321 msgid \"Icon Color Hover\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:116 msgid \"Choose a custom color hover for icon.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:122 msgid \"Read More Color\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:124 msgid \"Choose a custom color for read more button.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:130 msgid \"Read More Color Hover\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:132 msgid \"Choose a custom color hover for read more button.\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/views/view.php:31 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:49 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:43 msgid \"All Categories\" msgstr \"\" #: framework-customizations/extensions/faq/shortcodes/faq-block/views/view.php:78 msgid \"SEE ALL ARTICLES\" msgstr \"\" #: framework-customizations/extensions/faq/views/single.php:17 msgid \"Updated\" msgstr \"\" #: framework-customizations/extensions/faq/views/single.php:17 msgid \"ago\" msgstr \"\" #: framework-customizations/extensions/faq/views/single.php:47 #: framework-customizations/extensions/posts/posts/post-01/views/view.php:97 #: framework-customizations/extensions/posts/posts/post-02/views/view.php:91 #: framework-customizations/extensions/posts/posts/post-03/views/view.php:96 #: framework-customizations/extensions/posts/posts/post-04/views/view.php:95 #: framework-customizations/extensions/posts/posts/post-05/views/view.php:86 #: framework-customizations/theme/options/post-settings.php:167 msgid \"Related Articles\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/config.php:7 msgid \"faq-category\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/config.php:8 msgid \"SLZ: FAQ Categories\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/config.php:9 msgid \"A list of FAQ categories.\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/config.php:13 msgid \"FAQ Categories\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:18 #: framework-customizations/extensions/headers/headers/header-09/options/button.php:31 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:68 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:154 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:61 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:19 #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:9 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:91 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:34 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:94 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:37 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:116 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:78 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:36 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:27 #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:19 #: framework-customizations/extensions/widgets/widgets/partner/options.php:18 #: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:7 #: framework-customizations/theme/options/page-404-settings.php:67 #: framework-customizations/theme/options/post-settings.php:237 msgid \"Title\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:24 #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:32 msgid \"Title Color:\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:33 #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:37 msgid \"Optional - Choose a custom title text color for this block\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:36 msgid \"FAQ Category:\" msgstr \"\" #: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:46 msgid \"Choose FAQ category to show\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:7 #: framework-customizations/extensions/footers/footers/footer-02/options.php:7 #: framework-customizations/extensions/footers/footers/footer-03/options.php:7 #: framework-customizations/extensions/footers/footers/footer-04/options.php:7 #: framework-customizations/theme/options/footer-options.php:5 #: framework-customizations/theme/options/post-settings.php:10 #: framework-customizations/theme/options/template-settings.php:4 msgid \"-- Select widget area --\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:9 #: framework-customizations/extensions/footers/footers/footer-02/options.php:9 #: framework-customizations/extensions/footers/footers/footer-03/options.php:9 #: framework-customizations/extensions/footers/footers/footer-04/options.php:9 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:3 #: framework-customizations/theme/options/posts/page.php:61 msgid \"-- Select Menu --\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:14 #: framework-customizations/extensions/footers/footers/footer-02/options.php:14 #: framework-customizations/extensions/footers/footers/footer-03/options.php:14 #: framework-customizations/extensions/footers/footers/footer-04/options.php:14 #: framework-customizations/extensions/headers/headers/header-09/config.php:22 #: framework-customizations/theme/options/footer-options.php:70 msgid \"Light\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:15 #: framework-customizations/extensions/footers/footers/footer-02/options.php:15 #: framework-customizations/extensions/footers/footers/footer-03/options.php:15 #: framework-customizations/extensions/footers/footers/footer-04/options.php:15 #: framework-customizations/extensions/headers/headers/header-09/config.php:21 #: framework-customizations/theme/options/footer-options.php:71 msgid \"Dark\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:30 #: framework-customizations/extensions/footers/footers/footer-02/options.php:29 #: framework-customizations/extensions/footers/footers/footer-03/options.php:29 #: framework-customizations/extensions/footers/footers/footer-04/options.php:29 #: framework-customizations/theme/options/posts/page.php:81 #: framework-customizations/theme/options/posts/post.php:34 #: framework-customizations/theme/options/posts/product.php:29 #: framework-customizations/theme/options/posts/slz-faq.php:29 #: framework-customizations/theme/options/posts/slz-portfolio.php:29 #: framework-customizations/theme/options/posts/slz-service.php:29 #: framework-customizations/theme/options/posts/slz-team.php:29 msgid \"General Settings\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:33 #: framework-customizations/extensions/footers/footers/footer-02/options.php:32 #: framework-customizations/extensions/footers/footers/footer-03/options.php:32 #: framework-customizations/extensions/footers/footers/footer-04/options.php:32 msgid \"Footer Undercover\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:37 #: framework-customizations/extensions/footers/footers/footer-01/options.php:62 #: framework-customizations/extensions/footers/footers/footer-01/options.php:191 #: framework-customizations/extensions/footers/footers/footer-01/options.php:323 #: framework-customizations/extensions/footers/footers/footer-02/options.php:36 #: framework-customizations/extensions/footers/footers/footer-02/options.php:61 #: framework-customizations/extensions/footers/footers/footer-02/options.php:190 #: framework-customizations/extensions/footers/footers/footer-02/options.php:316 #: framework-customizations/extensions/footers/footers/footer-03/options.php:36 #: framework-customizations/extensions/footers/footers/footer-03/options.php:61 #: framework-customizations/extensions/footers/footers/footer-03/options.php:190 #: framework-customizations/extensions/footers/footers/footer-03/options.php:304 #: framework-customizations/extensions/footers/footers/footer-04/options.php:36 #: framework-customizations/extensions/footers/footers/footer-04/options.php:61 #: framework-customizations/extensions/footers/footers/footer-04/options.php:190 #: framework-customizations/extensions/footers/footers/footer-04/options.php:308 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:143 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:214 #: framework-customizations/extensions/headers/headers/header-09/options.php:90 #: framework-customizations/extensions/headers/headers/header-09/options.php:124 #: framework-customizations/extensions/headers/headers/header-09/options.php:151 #: framework-customizations/extensions/headers/headers/header-09/options.php:222 #: framework-customizations/theme/options/footer-options.php:20 #: framework-customizations/theme/options/footer-options.php:55 #: framework-customizations/theme/options/footer-options.php:98 #: framework-customizations/theme/options/general-settings.php:162 #: framework-customizations/theme/options/general-settings.php:176 #: framework-customizations/theme/options/general-settings.php:290 #: framework-customizations/theme/options/general-settings.php:304 #: framework-customizations/theme/options/general-settings.php:338 #: framework-customizations/theme/options/page-boxed-layout.php:24 #: framework-customizations/theme/options/page-header-settings.php:133 #: framework-customizations/theme/options/page-header-settings.php:204 #: framework-customizations/theme/options/page-header-settings.php:276 #: framework-customizations/theme/options/page-header-settings.php:330 #: framework-customizations/theme/options/page-header-settings.php:364 #: framework-customizations/theme/options/page-header-settings.php:411 #: framework-customizations/theme/options/page-options.php:61 #: framework-customizations/theme/options/page-options.php:144 #: framework-customizations/theme/options/page-options.php:183 #: framework-customizations/theme/options/post-settings.php:46 #: framework-customizations/theme/options/post-settings.php:83 #: framework-customizations/theme/options/posts/page.php:50 #: framework-customizations/theme/options/speed-optimize.php:143 #: framework-customizations/theme/options/speed-optimize.php:157 #: framework-customizations/theme/options/speed-optimize.php:200 #: framework-customizations/theme/options/speed-optimize.php:226 #: framework-customizations/theme/options/speed-optimize.php:244 #: framework-customizations/theme/options/speed-optimize.php:293 #: framework-customizations/theme/options/speed-optimize.php:335 msgid \"Enable\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:41 #: framework-customizations/extensions/footers/footers/footer-01/options.php:66 #: framework-customizations/extensions/footers/footers/footer-01/options.php:195 #: framework-customizations/extensions/footers/footers/footer-01/options.php:327 #: framework-customizations/extensions/footers/footers/footer-02/options.php:40 #: framework-customizations/extensions/footers/footers/footer-02/options.php:65 #: framework-customizations/extensions/footers/footers/footer-02/options.php:194 #: framework-customizations/extensions/footers/footers/footer-02/options.php:320 #: framework-customizations/extensions/footers/footers/footer-03/options.php:40 #: framework-customizations/extensions/footers/footers/footer-03/options.php:65 #: framework-customizations/extensions/footers/footers/footer-03/options.php:194 #: framework-customizations/extensions/footers/footers/footer-03/options.php:308 #: framework-customizations/extensions/footers/footers/footer-04/options.php:40 #: framework-customizations/extensions/footers/footers/footer-04/options.php:65 #: framework-customizations/extensions/footers/footers/footer-04/options.php:194 #: framework-customizations/extensions/footers/footers/footer-04/options.php:312 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:147 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:218 #: framework-customizations/extensions/headers/headers/header-09/options.php:94 #: framework-customizations/extensions/headers/headers/header-09/options.php:120 #: framework-customizations/extensions/headers/headers/header-09/options.php:147 #: framework-customizations/extensions/headers/headers/header-09/options.php:218 #: framework-customizations/theme/options/advertisement-settings.php:38 #: framework-customizations/theme/options/footer-options.php:24 #: framework-customizations/theme/options/footer-options.php:59 #: framework-customizations/theme/options/footer-options.php:102 #: framework-customizations/theme/options/general-settings.php:158 #: framework-customizations/theme/options/general-settings.php:180 #: framework-customizations/theme/options/general-settings.php:286 #: framework-customizations/theme/options/general-settings.php:300 #: framework-customizations/theme/options/general-settings.php:342 #: framework-customizations/theme/options/page-boxed-layout.php:20 #: framework-customizations/theme/options/page-header-settings.php:129 #: framework-customizations/theme/options/page-header-settings.php:200 #: framework-customizations/theme/options/page-header-settings.php:272 #: framework-customizations/theme/options/page-header-settings.php:326 #: framework-customizations/theme/options/page-header-settings.php:360 #: framework-customizations/theme/options/page-header-settings.php:407 #: framework-customizations/theme/options/page-options.php:57 #: framework-customizations/theme/options/page-options.php:140 #: framework-customizations/theme/options/page-options.php:179 #: framework-customizations/theme/options/post-settings.php:42 #: framework-customizations/theme/options/post-settings.php:79 #: framework-customizations/theme/options/posts/page.php:54 #: framework-customizations/theme/options/speed-optimize.php:147 #: framework-customizations/theme/options/speed-optimize.php:161 #: framework-customizations/theme/options/speed-optimize.php:204 #: framework-customizations/theme/options/speed-optimize.php:230 #: framework-customizations/theme/options/speed-optimize.php:248 #: framework-customizations/theme/options/speed-optimize.php:297 #: framework-customizations/theme/options/speed-optimize.php:339 msgid \"Disable\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:49 #: framework-customizations/extensions/footers/footers/footer-02/options.php:48 #: framework-customizations/extensions/footers/footers/footer-03/options.php:48 #: framework-customizations/extensions/footers/footers/footer-04/options.php:48 msgid \"Footer Top Settings\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:57 #: framework-customizations/extensions/footers/footers/footer-02/options.php:56 #: framework-customizations/extensions/footers/footers/footer-03/options.php:56 #: framework-customizations/extensions/footers/footers/footer-04/options.php:56 #: framework-customizations/theme/options/footer-options.php:15 #: framework-customizations/theme/options/posts/page.php:45 msgid \"Enable Footer Top\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:58 #: framework-customizations/extensions/footers/footers/footer-02/options.php:57 #: framework-customizations/extensions/footers/footers/footer-03/options.php:57 #: framework-customizations/extensions/footers/footers/footer-04/options.php:57 #: framework-customizations/theme/options/footer-options.php:16 #: framework-customizations/theme/options/posts/page.php:46 msgid \"Enable the footer top?\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:76 #: framework-customizations/extensions/footers/footers/footer-02/options.php:75 #: framework-customizations/extensions/footers/footers/footer-03/options.php:75 #: framework-customizations/extensions/footers/footers/footer-04/options.php:75 #: framework-customizations/extensions/footers/footers/footer-04/options.php:256 #: framework-customizations/theme/options/footer-options.php:34 #: framework-customizations/theme/options/footer-options.php:77 msgid \"Choose Widget Area\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:77 #: framework-customizations/extensions/footers/footers/footer-02/options.php:76 #: framework-customizations/extensions/footers/footers/footer-03/options.php:76 #: framework-customizations/extensions/footers/footers/footer-04/options.php:76 #: framework-customizations/theme/options/footer-options.php:35 msgid \"Choose widget area will show in footer top\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:87 #: framework-customizations/extensions/footers/footers/footer-02/options.php:86 #: framework-customizations/extensions/footers/footers/footer-03/options.php:86 #: framework-customizations/extensions/footers/footers/footer-04/options.php:86 msgid \"Change the style of footer top\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:93 #: framework-customizations/extensions/footers/footers/footer-02/options.php:92 #: framework-customizations/extensions/footers/footers/footer-03/options.php:92 #: framework-customizations/extensions/footers/footers/footer-04/options.php:92 msgid \"Select background color for footer top\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:100 #: framework-customizations/extensions/footers/footers/footer-01/options.php:350 #: framework-customizations/extensions/footers/footers/footer-02/options.php:99 #: framework-customizations/extensions/footers/footers/footer-02/options.php:343 #: framework-customizations/extensions/footers/footers/footer-03/options.php:99 #: framework-customizations/extensions/footers/footers/footer-03/options.php:331 #: framework-customizations/extensions/footers/footers/footer-04/options.php:99 #: framework-customizations/extensions/footers/footers/footer-04/options.php:335 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:69 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:82 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:14 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:21 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:27 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:22 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:21 #: framework-customizations/theme/options/general-settings.php:73 #: framework-customizations/theme/options/page-404-settings.php:50 #: framework-customizations/theme/options/page-boxed-layout.php:49 #: framework-customizations/theme/options/page-header-settings.php:59 #: framework-customizations/theme/options/page-options.php:105 #: framework-customizations/theme/options/posts/page.php:127 msgid \"Background Image\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:101 #: framework-customizations/extensions/footers/footers/footer-01/options.php:351 #: framework-customizations/extensions/footers/footers/footer-02/options.php:100 #: framework-customizations/extensions/footers/footers/footer-02/options.php:344 #: framework-customizations/extensions/footers/footers/footer-03/options.php:100 #: framework-customizations/extensions/footers/footers/footer-03/options.php:332 #: framework-customizations/extensions/footers/footers/footer-04/options.php:100 #: framework-customizations/extensions/footers/footers/footer-04/options.php:336 msgid \"Upload the background image .png or .jpg\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:106 #: framework-customizations/extensions/footers/footers/footer-01/options.php:229 #: framework-customizations/extensions/footers/footers/footer-01/options.php:356 #: framework-customizations/extensions/footers/footers/footer-02/options.php:105 #: framework-customizations/extensions/footers/footers/footer-02/options.php:228 #: framework-customizations/extensions/footers/footers/footer-02/options.php:349 #: framework-customizations/extensions/footers/footers/footer-03/options.php:105 #: framework-customizations/extensions/footers/footers/footer-03/options.php:228 #: framework-customizations/extensions/footers/footers/footer-03/options.php:337 #: framework-customizations/extensions/footers/footers/footer-04/options.php:105 #: framework-customizations/extensions/footers/footers/footer-04/options.php:228 #: framework-customizations/extensions/footers/footers/footer-04/options.php:341 #: framework-customizations/theme/options/page-header-settings.php:80 msgid \"Background Attachment\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:111 #: framework-customizations/extensions/footers/footers/footer-01/options.php:234 #: framework-customizations/extensions/footers/footers/footer-01/options.php:361 #: framework-customizations/extensions/footers/footers/footer-02/options.php:110 #: framework-customizations/extensions/footers/footers/footer-02/options.php:233 #: framework-customizations/extensions/footers/footers/footer-02/options.php:354 #: framework-customizations/extensions/footers/footers/footer-03/options.php:110 #: framework-customizations/extensions/footers/footers/footer-03/options.php:233 #: framework-customizations/extensions/footers/footers/footer-03/options.php:342 #: framework-customizations/extensions/footers/footers/footer-04/options.php:110 #: framework-customizations/extensions/footers/footers/footer-04/options.php:233 #: framework-customizations/extensions/footers/footers/footer-04/options.php:346 #: framework-customizations/theme/options/page-header-settings.php:85 msgid \"Background Size\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:116 #: framework-customizations/extensions/footers/footers/footer-01/options.php:239 #: framework-customizations/extensions/footers/footers/footer-01/options.php:366 #: framework-customizations/extensions/footers/footers/footer-02/options.php:115 #: framework-customizations/extensions/footers/footers/footer-02/options.php:238 #: framework-customizations/extensions/footers/footers/footer-02/options.php:359 #: framework-customizations/extensions/footers/footers/footer-03/options.php:115 #: framework-customizations/extensions/footers/footers/footer-03/options.php:238 #: framework-customizations/extensions/footers/footers/footer-03/options.php:347 #: framework-customizations/extensions/footers/footers/footer-04/options.php:115 #: framework-customizations/extensions/footers/footers/footer-04/options.php:238 #: framework-customizations/extensions/footers/footers/footer-04/options.php:351 #: framework-customizations/theme/options/page-header-settings.php:90 msgid \"Background Position\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:121 #: framework-customizations/extensions/footers/footers/footer-02/options.php:120 #: framework-customizations/extensions/footers/footers/footer-03/options.php:120 #: framework-customizations/extensions/footers/footers/footer-04/options.php:120 msgid \"Border Bottom Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:122 #: framework-customizations/extensions/footers/footers/footer-01/options.php:372 #: framework-customizations/extensions/footers/footers/footer-02/options.php:121 #: framework-customizations/extensions/footers/footers/footer-02/options.php:365 #: framework-customizations/extensions/footers/footers/footer-03/options.php:121 #: framework-customizations/extensions/footers/footers/footer-03/options.php:353 #: framework-customizations/extensions/footers/footers/footer-04/options.php:121 #: framework-customizations/extensions/footers/footers/footer-04/options.php:357 msgid \"Choose border top color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:126 #: framework-customizations/extensions/footers/footers/footer-02/options.php:125 #: framework-customizations/extensions/footers/footers/footer-03/options.php:125 #: framework-customizations/extensions/footers/footers/footer-04/options.php:125 msgid \"Select footer's top bar text color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:132 #: framework-customizations/extensions/footers/footers/footer-02/options.php:131 #: framework-customizations/extensions/footers/footers/footer-03/options.php:131 #: framework-customizations/extensions/footers/footers/footer-04/options.php:131 msgid \"Text Alignment\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:133 #: framework-customizations/extensions/footers/footers/footer-02/options.php:132 #: framework-customizations/extensions/footers/footers/footer-03/options.php:132 #: framework-customizations/extensions/footers/footers/footer-04/options.php:132 msgid \"Setting text alignment\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:138 #: framework-customizations/extensions/footers/footers/footer-02/options.php:137 #: framework-customizations/extensions/footers/footers/footer-03/options.php:137 #: framework-customizations/extensions/footers/footers/footer-04/options.php:137 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:17 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:16 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:9 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:13 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:11 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:21 #: framework-customizations/theme/options/page-header-settings.php:5 msgid \"Left\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:139 #: framework-customizations/extensions/footers/footers/footer-02/options.php:138 #: framework-customizations/extensions/footers/footers/footer-03/options.php:138 #: framework-customizations/extensions/footers/footers/footer-04/options.php:138 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:18 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:17 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:16 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:37 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:12 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:20 #: framework-customizations/theme/options/page-header-settings.php:7 msgid \"Center\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:140 #: framework-customizations/extensions/footers/footers/footer-02/options.php:139 #: framework-customizations/extensions/footers/footers/footer-03/options.php:139 #: framework-customizations/extensions/footers/footers/footer-04/options.php:139 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:19 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:18 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:17 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:13 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:39 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:13 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:22 #: framework-customizations/theme/options/page-header-settings.php:6 msgid \"Right\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:147 #: framework-customizations/extensions/footers/footers/footer-01/options.php:280 #: framework-customizations/extensions/footers/footers/footer-02/options.php:146 #: framework-customizations/extensions/footers/footers/footer-02/options.php:273 #: framework-customizations/extensions/footers/footers/footer-03/options.php:146 #: framework-customizations/extensions/footers/footers/footer-03/options.php:261 #: framework-customizations/extensions/footers/footers/footer-04/options.php:146 #: framework-customizations/extensions/footers/footers/footer-04/options.php:265 msgid \"Show Other Content?\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:148 #: framework-customizations/extensions/footers/footers/footer-01/options.php:281 #: framework-customizations/extensions/footers/footers/footer-02/options.php:147 #: framework-customizations/extensions/footers/footers/footer-02/options.php:274 #: framework-customizations/extensions/footers/footers/footer-03/options.php:147 #: framework-customizations/extensions/footers/footers/footer-03/options.php:262 #: framework-customizations/extensions/footers/footers/footer-04/options.php:147 #: framework-customizations/extensions/footers/footers/footer-04/options.php:266 msgid \"Choose show or hide other content in footer.\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:161 #: framework-customizations/extensions/footers/footers/footer-01/options.php:294 #: framework-customizations/extensions/footers/footers/footer-02/options.php:160 #: framework-customizations/extensions/footers/footers/footer-02/options.php:287 #: framework-customizations/extensions/footers/footers/footer-03/options.php:160 #: framework-customizations/extensions/footers/footers/footer-03/options.php:275 #: framework-customizations/extensions/footers/footers/footer-04/options.php:160 #: framework-customizations/extensions/footers/footers/footer-04/options.php:279 msgid \"Other Content\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:162 #: framework-customizations/extensions/footers/footers/footer-01/options.php:295 #: framework-customizations/extensions/footers/footers/footer-02/options.php:161 #: framework-customizations/extensions/footers/footers/footer-02/options.php:288 #: framework-customizations/extensions/footers/footers/footer-03/options.php:161 #: framework-customizations/extensions/footers/footers/footer-03/options.php:276 #: framework-customizations/extensions/footers/footers/footer-04/options.php:161 #: framework-customizations/extensions/footers/footers/footer-04/options.php:280 msgid \"Enter other content in footer.\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:178 #: framework-customizations/extensions/footers/footers/footer-02/options.php:177 #: framework-customizations/extensions/footers/footers/footer-03/options.php:177 #: framework-customizations/extensions/footers/footers/footer-04/options.php:177 msgid \"Footer Content Settings\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:186 #: framework-customizations/extensions/footers/footers/footer-02/options.php:185 #: framework-customizations/extensions/footers/footers/footer-03/options.php:185 #: framework-customizations/extensions/footers/footers/footer-04/options.php:185 #: framework-customizations/theme/options/footer-options.php:50 msgid \"Enable Footer Main\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:187 #: framework-customizations/extensions/footers/footers/footer-02/options.php:186 #: framework-customizations/extensions/footers/footers/footer-03/options.php:186 #: framework-customizations/extensions/footers/footers/footer-04/options.php:186 #: framework-customizations/theme/options/footer-options.php:51 msgid \"Enable the footer main?\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:204 #: framework-customizations/extensions/footers/footers/footer-02/options.php:203 #: framework-customizations/extensions/footers/footers/footer-03/options.php:203 #: framework-customizations/extensions/footers/footers/footer-04/options.php:203 #: framework-customizations/theme/options/footer-options.php:68 #: framework-customizations/theme/options/footer-settings.php:24 #: framework-customizations/theme/options/posts/page.php:213 msgid \"Footer Style\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:211 #: framework-customizations/extensions/footers/footers/footer-02/options.php:210 #: framework-customizations/extensions/footers/footers/footer-03/options.php:210 #: framework-customizations/extensions/footers/footers/footer-04/options.php:210 msgid \"Change the style of footer main\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:216 #: framework-customizations/extensions/footers/footers/footer-02/options.php:215 #: framework-customizations/extensions/footers/footers/footer-03/options.php:215 #: framework-customizations/extensions/footers/footers/footer-04/options.php:215 msgid \"Footer Background Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:217 #: framework-customizations/extensions/footers/footers/footer-02/options.php:216 #: framework-customizations/extensions/footers/footers/footer-03/options.php:216 #: framework-customizations/extensions/footers/footers/footer-04/options.php:216 msgid \"Choose background color for footer main.\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:221 #: framework-customizations/extensions/footers/footers/footer-02/options.php:220 #: framework-customizations/extensions/footers/footers/footer-03/options.php:220 #: framework-customizations/extensions/footers/footers/footer-04/options.php:220 msgid \"Footer Background Image\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:224 #: framework-customizations/extensions/footers/footers/footer-02/options.php:223 #: framework-customizations/extensions/footers/footers/footer-03/options.php:223 #: framework-customizations/extensions/footers/footers/footer-04/options.php:223 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:73 #: framework-customizations/theme/options/page-404-settings.php:53 msgid \"Upload background image.\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:246 #: framework-customizations/extensions/footers/footers/footer-02/options.php:245 #: framework-customizations/extensions/footers/footers/footer-03/options.php:245 #: framework-customizations/extensions/footers/footers/footer-04/options.php:245 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:50 msgid \"Padding Top\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:247 #: framework-customizations/extensions/footers/footers/footer-02/options.php:246 #: framework-customizations/extensions/footers/footers/footer-03/options.php:246 #: framework-customizations/extensions/footers/footers/footer-04/options.php:246 msgid \"Enter padding top for footer main\\\".\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:251 #: framework-customizations/extensions/footers/footers/footer-02/options.php:250 #: framework-customizations/extensions/footers/footers/footer-03/options.php:250 #: framework-customizations/extensions/footers/footers/footer-04/options.php:250 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:58 msgid \"Padding Bottom\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:252 #: framework-customizations/extensions/footers/footers/footer-02/options.php:251 #: framework-customizations/extensions/footers/footers/footer-03/options.php:251 #: framework-customizations/extensions/footers/footers/footer-04/options.php:251 msgid \"Enter padding bottom for footer main\\\".\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:256 #: framework-customizations/extensions/footers/footers/footer-02/options.php:255 #: framework-customizations/extensions/footers/footers/footer-03/options.php:255 msgid \"Widget Area 01\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:257 #: framework-customizations/extensions/footers/footers/footer-02/options.php:256 #: framework-customizations/extensions/footers/footers/footer-03/options.php:256 msgid \"Choose widget area will show in footer collumn 1\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:262 #: framework-customizations/extensions/footers/footers/footer-02/options.php:261 msgid \"Widget Area 02\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:263 #: framework-customizations/extensions/footers/footers/footer-02/options.php:262 msgid \"Choose widget area will show in footer collumn 2\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:268 #: framework-customizations/extensions/footers/footers/footer-02/options.php:267 msgid \"Widget Area 03\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:269 #: framework-customizations/extensions/footers/footers/footer-02/options.php:268 msgid \"Choose widget area will show in footer collumn 3\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:274 msgid \"Widget Area 04\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:275 msgid \"Choose widget area will show in footer collumn 4\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:310 #: framework-customizations/extensions/footers/footers/footer-02/options.php:303 #: framework-customizations/extensions/footers/footers/footer-03/options.php:291 #: framework-customizations/extensions/footers/footers/footer-04/options.php:295 msgid \"Footer Bottom Settings\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:318 #: framework-customizations/extensions/footers/footers/footer-02/options.php:311 #: framework-customizations/extensions/footers/footers/footer-03/options.php:299 #: framework-customizations/extensions/footers/footers/footer-04/options.php:303 #: framework-customizations/theme/options/footer-options.php:93 msgid \"Enable Footer Bottom\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:319 #: framework-customizations/extensions/footers/footers/footer-02/options.php:312 #: framework-customizations/extensions/footers/footers/footer-03/options.php:300 #: framework-customizations/extensions/footers/footers/footer-04/options.php:304 #: framework-customizations/theme/options/footer-options.php:94 msgid \"Enable the footer bottom?\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:338 #: framework-customizations/extensions/footers/footers/footer-02/options.php:331 #: framework-customizations/extensions/footers/footers/footer-03/options.php:319 #: framework-customizations/extensions/footers/footers/footer-04/options.php:323 msgid \"Change the style of footer bottom\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:344 #: framework-customizations/extensions/footers/footers/footer-02/options.php:337 #: framework-customizations/extensions/footers/footers/footer-03/options.php:325 #: framework-customizations/extensions/footers/footers/footer-04/options.php:329 msgid \"Select the footer bottom background color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:371 #: framework-customizations/extensions/footers/footers/footer-02/options.php:364 #: framework-customizations/extensions/footers/footers/footer-03/options.php:352 #: framework-customizations/extensions/footers/footers/footer-04/options.php:356 msgid \"Border Top Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:376 #: framework-customizations/extensions/footers/footers/footer-02/options.php:369 #: framework-customizations/extensions/footers/footers/footer-03/options.php:357 #: framework-customizations/extensions/footers/footers/footer-04/options.php:361 msgid \"Select footer bottom text color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:381 #: framework-customizations/extensions/footers/footers/footer-02/options.php:374 #: framework-customizations/extensions/footers/footers/footer-03/options.php:362 #: framework-customizations/extensions/footers/footers/footer-04/options.php:366 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:226 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:242 msgid \"Social Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:382 #: framework-customizations/extensions/footers/footers/footer-02/options.php:375 #: framework-customizations/extensions/footers/footers/footer-03/options.php:363 #: framework-customizations/extensions/footers/footers/footer-04/options.php:367 msgid \"Select the social icons color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:388 #: framework-customizations/extensions/footers/footers/footer-02/options.php:381 #: framework-customizations/extensions/footers/footers/footer-03/options.php:369 #: framework-customizations/extensions/footers/footers/footer-04/options.php:373 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:234 msgid \"Social Hover Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:389 #: framework-customizations/extensions/footers/footers/footer-02/options.php:382 #: framework-customizations/extensions/footers/footers/footer-03/options.php:370 #: framework-customizations/extensions/footers/footers/footer-04/options.php:374 msgid \"Select the social icons hover color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:396 #: framework-customizations/extensions/footers/footers/footer-02/options.php:389 #: framework-customizations/extensions/footers/footers/footer-03/options.php:377 #: framework-customizations/extensions/footers/footers/footer-04/options.php:381 msgid \"Social Icon Size\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:397 #: framework-customizations/extensions/footers/footers/footer-02/options.php:390 #: framework-customizations/extensions/footers/footers/footer-03/options.php:378 #: framework-customizations/extensions/footers/footers/footer-04/options.php:382 msgid \"Enter icon size in pixels. Ex: 16\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:404 #: framework-customizations/extensions/footers/footers/footer-02/options.php:397 #: framework-customizations/extensions/footers/footers/footer-03/options.php:385 #: framework-customizations/extensions/footers/footers/footer-04/options.php:389 msgid \"Left Area Content\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:410 #: framework-customizations/extensions/footers/footers/footer-01/options.php:563 #: framework-customizations/extensions/footers/footers/footer-01/options.php:716 #: framework-customizations/extensions/footers/footers/footer-02/options.php:403 #: framework-customizations/extensions/footers/footers/footer-02/options.php:555 #: framework-customizations/extensions/footers/footers/footer-02/options.php:707 #: framework-customizations/extensions/footers/footers/footer-03/options.php:391 #: framework-customizations/extensions/footers/footers/footer-03/options.php:543 #: framework-customizations/extensions/footers/footers/footer-03/options.php:695 #: framework-customizations/extensions/footers/footers/footer-04/options.php:395 #: framework-customizations/extensions/footers/footers/footer-04/options.php:547 #: framework-customizations/extensions/footers/footers/footer-04/options.php:699 msgid \"Show/Hide This Area\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:412 #: framework-customizations/extensions/footers/footers/footer-02/options.php:405 #: framework-customizations/extensions/footers/footers/footer-03/options.php:393 #: framework-customizations/extensions/footers/footers/footer-04/options.php:397 msgid \"Show or hide Left Area Content\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:425 #: framework-customizations/extensions/footers/footers/footer-01/options.php:578 #: framework-customizations/extensions/footers/footers/footer-01/options.php:731 #: framework-customizations/extensions/footers/footers/footer-02/options.php:418 #: framework-customizations/extensions/footers/footers/footer-02/options.php:570 #: framework-customizations/extensions/footers/footers/footer-02/options.php:722 #: framework-customizations/extensions/footers/footers/footer-03/options.php:406 #: framework-customizations/extensions/footers/footers/footer-03/options.php:558 #: framework-customizations/extensions/footers/footers/footer-03/options.php:710 #: framework-customizations/extensions/footers/footers/footer-04/options.php:410 #: framework-customizations/extensions/footers/footers/footer-04/options.php:562 #: framework-customizations/extensions/footers/footers/footer-04/options.php:714 #: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:6 msgid \"Text\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:426 #: framework-customizations/extensions/footers/footers/footer-01/options.php:579 #: framework-customizations/extensions/footers/footers/footer-01/options.php:732 #: framework-customizations/extensions/footers/footers/footer-02/options.php:419 #: framework-customizations/extensions/footers/footers/footer-02/options.php:571 #: framework-customizations/extensions/footers/footers/footer-02/options.php:723 #: framework-customizations/extensions/footers/footers/footer-03/options.php:407 #: framework-customizations/extensions/footers/footers/footer-03/options.php:559 #: framework-customizations/extensions/footers/footers/footer-03/options.php:711 #: framework-customizations/extensions/footers/footers/footer-04/options.php:411 #: framework-customizations/extensions/footers/footers/footer-04/options.php:563 #: framework-customizations/extensions/footers/footers/footer-04/options.php:715 msgid \"Write text will display in this area\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:430 #: framework-customizations/extensions/footers/footers/footer-01/options.php:583 #: framework-customizations/extensions/footers/footers/footer-01/options.php:736 #: framework-customizations/extensions/footers/footers/footer-02/options.php:423 #: framework-customizations/extensions/footers/footers/footer-02/options.php:575 #: framework-customizations/extensions/footers/footers/footer-02/options.php:727 #: framework-customizations/extensions/footers/footers/footer-03/options.php:411 #: framework-customizations/extensions/footers/footers/footer-03/options.php:563 #: framework-customizations/extensions/footers/footers/footer-03/options.php:715 #: framework-customizations/extensions/footers/footers/footer-04/options.php:415 #: framework-customizations/extensions/footers/footers/footer-04/options.php:567 #: framework-customizations/extensions/footers/footers/footer-04/options.php:719 msgid \"Social\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:436 #: framework-customizations/extensions/footers/footers/footer-01/options.php:585 #: framework-customizations/extensions/footers/footers/footer-01/options.php:738 #: framework-customizations/extensions/footers/footers/footer-02/options.php:429 #: framework-customizations/extensions/footers/footers/footer-02/options.php:577 #: framework-customizations/extensions/footers/footers/footer-02/options.php:729 #: framework-customizations/extensions/footers/footers/footer-03/options.php:417 #: framework-customizations/extensions/footers/footers/footer-03/options.php:565 #: framework-customizations/extensions/footers/footers/footer-03/options.php:717 #: framework-customizations/extensions/footers/footers/footer-04/options.php:421 #: framework-customizations/extensions/footers/footers/footer-04/options.php:569 #: framework-customizations/extensions/footers/footers/footer-04/options.php:721 msgid \"\" \"Show social icon in footer bottom? Change social in the \\\"General\\\" settings\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:444 #: framework-customizations/extensions/footers/footers/footer-01/options.php:597 #: framework-customizations/extensions/footers/footers/footer-01/options.php:750 #: framework-customizations/extensions/footers/footers/footer-02/options.php:437 #: framework-customizations/extensions/footers/footers/footer-02/options.php:589 #: framework-customizations/extensions/footers/footers/footer-02/options.php:741 #: framework-customizations/extensions/footers/footers/footer-03/options.php:425 #: framework-customizations/extensions/footers/footers/footer-03/options.php:577 #: framework-customizations/extensions/footers/footers/footer-03/options.php:729 #: framework-customizations/extensions/footers/footers/footer-04/options.php:429 #: framework-customizations/extensions/footers/footers/footer-04/options.php:581 #: framework-customizations/extensions/footers/footers/footer-04/options.php:733 msgid \"Navigation\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:445 #: framework-customizations/extensions/footers/footers/footer-01/options.php:598 #: framework-customizations/extensions/footers/footers/footer-01/options.php:751 #: framework-customizations/extensions/footers/footers/footer-02/options.php:438 #: framework-customizations/extensions/footers/footers/footer-02/options.php:590 #: framework-customizations/extensions/footers/footers/footer-02/options.php:742 #: framework-customizations/extensions/footers/footers/footer-03/options.php:426 #: framework-customizations/extensions/footers/footers/footer-03/options.php:578 #: framework-customizations/extensions/footers/footers/footer-03/options.php:730 #: framework-customizations/extensions/footers/footers/footer-04/options.php:430 #: framework-customizations/extensions/footers/footers/footer-04/options.php:582 #: framework-customizations/extensions/footers/footers/footer-04/options.php:734 msgid \"\" \"Show navigation in this area? Please choose locations is \\\"Bottom menu\\\" in \" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:445 #: framework-customizations/extensions/footers/footers/footer-01/options.php:598 #: framework-customizations/extensions/footers/footers/footer-01/options.php:751 #: framework-customizations/extensions/footers/footers/footer-02/options.php:438 #: framework-customizations/extensions/footers/footers/footer-02/options.php:590 #: framework-customizations/extensions/footers/footers/footer-02/options.php:742 #: framework-customizations/extensions/footers/footers/footer-03/options.php:426 #: framework-customizations/extensions/footers/footers/footer-03/options.php:578 #: framework-customizations/extensions/footers/footers/footer-03/options.php:730 #: framework-customizations/extensions/footers/footers/footer-04/options.php:430 #: framework-customizations/extensions/footers/footers/footer-04/options.php:582 #: framework-customizations/extensions/footers/footers/footer-04/options.php:734 #: framework-customizations/theme/options/posts/page.php:114 #: framework-customizations/theme/options/posts/post.php:73 #: framework-customizations/theme/options/posts/product.php:61 #: framework-customizations/theme/options/posts/slz-faq.php:61 #: framework-customizations/theme/options/posts/slz-portfolio.php:61 #: framework-customizations/theme/options/posts/slz-service.php:61 #: framework-customizations/theme/options/posts/slz-team.php:61 #: framework-customizations/theme/options/taxonomies/category.php:58 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55 msgid \"Appearance\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:445 #: framework-customizations/extensions/footers/footers/footer-01/options.php:598 #: framework-customizations/extensions/footers/footers/footer-01/options.php:751 #: framework-customizations/extensions/footers/footers/footer-02/options.php:438 #: framework-customizations/extensions/footers/footers/footer-02/options.php:590 #: framework-customizations/extensions/footers/footers/footer-02/options.php:742 #: framework-customizations/extensions/footers/footers/footer-03/options.php:426 #: framework-customizations/extensions/footers/footers/footer-03/options.php:578 #: framework-customizations/extensions/footers/footers/footer-03/options.php:730 #: framework-customizations/extensions/footers/footers/footer-04/options.php:430 #: framework-customizations/extensions/footers/footers/footer-04/options.php:582 #: framework-customizations/extensions/footers/footers/footer-04/options.php:734 msgid \"Menus\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:458 #: framework-customizations/extensions/footers/footers/footer-01/options.php:611 #: framework-customizations/extensions/footers/footers/footer-01/options.php:764 #: framework-customizations/extensions/footers/footers/footer-02/options.php:451 #: framework-customizations/extensions/footers/footers/footer-02/options.php:603 #: framework-customizations/extensions/footers/footers/footer-02/options.php:755 #: framework-customizations/extensions/footers/footers/footer-03/options.php:439 #: framework-customizations/extensions/footers/footers/footer-03/options.php:591 #: framework-customizations/extensions/footers/footers/footer-03/options.php:743 #: framework-customizations/extensions/footers/footers/footer-04/options.php:443 #: framework-customizations/extensions/footers/footers/footer-04/options.php:595 #: framework-customizations/extensions/footers/footers/footer-04/options.php:747 msgid \" Add Image\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:461 #: framework-customizations/extensions/footers/footers/footer-01/options.php:614 #: framework-customizations/extensions/footers/footers/footer-01/options.php:767 #: framework-customizations/extensions/footers/footers/footer-02/options.php:454 #: framework-customizations/extensions/footers/footers/footer-02/options.php:606 #: framework-customizations/extensions/footers/footers/footer-02/options.php:758 #: framework-customizations/extensions/footers/footers/footer-03/options.php:442 #: framework-customizations/extensions/footers/footers/footer-03/options.php:594 #: framework-customizations/extensions/footers/footers/footer-03/options.php:746 #: framework-customizations/extensions/footers/footers/footer-04/options.php:446 #: framework-customizations/extensions/footers/footers/footer-04/options.php:598 #: framework-customizations/extensions/footers/footers/footer-04/options.php:750 msgid \"Upload an image to display in footer bottom.\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:469 #: framework-customizations/extensions/footers/footers/footer-01/options.php:622 #: framework-customizations/extensions/footers/footers/footer-01/options.php:775 #: framework-customizations/extensions/footers/footers/footer-02/options.php:462 #: framework-customizations/extensions/footers/footers/footer-02/options.php:614 #: framework-customizations/extensions/footers/footers/footer-02/options.php:766 #: framework-customizations/extensions/footers/footers/footer-03/options.php:450 #: framework-customizations/extensions/footers/footers/footer-03/options.php:602 #: framework-customizations/extensions/footers/footers/footer-03/options.php:754 #: framework-customizations/extensions/footers/footers/footer-04/options.php:454 #: framework-customizations/extensions/footers/footers/footer-04/options.php:606 #: framework-customizations/extensions/footers/footers/footer-04/options.php:758 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:101 #: framework-customizations/extensions/headers/headers/header-09/options.php:25 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:42 #: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:33 msgid \"Button\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:470 #: framework-customizations/extensions/footers/footers/footer-01/options.php:623 #: framework-customizations/extensions/footers/footers/footer-01/options.php:776 #: framework-customizations/extensions/footers/footers/footer-02/options.php:463 #: framework-customizations/extensions/footers/footers/footer-02/options.php:615 #: framework-customizations/extensions/footers/footers/footer-02/options.php:767 #: framework-customizations/extensions/footers/footers/footer-03/options.php:451 #: framework-customizations/extensions/footers/footers/footer-03/options.php:603 #: framework-customizations/extensions/footers/footers/footer-03/options.php:755 #: framework-customizations/extensions/footers/footers/footer-04/options.php:455 #: framework-customizations/extensions/footers/footers/footer-04/options.php:607 #: framework-customizations/extensions/footers/footers/footer-04/options.php:759 msgid \"Show button in this area\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:490 #: framework-customizations/extensions/footers/footers/footer-01/options.php:643 #: framework-customizations/extensions/footers/footers/footer-01/options.php:796 #: framework-customizations/extensions/footers/footers/footer-02/options.php:483 #: framework-customizations/extensions/footers/footers/footer-02/options.php:635 #: framework-customizations/extensions/footers/footers/footer-02/options.php:787 #: framework-customizations/extensions/footers/footers/footer-03/options.php:471 #: framework-customizations/extensions/footers/footers/footer-03/options.php:623 #: framework-customizations/extensions/footers/footers/footer-03/options.php:775 #: framework-customizations/extensions/footers/footers/footer-04/options.php:475 #: framework-customizations/extensions/footers/footers/footer-04/options.php:627 #: framework-customizations/extensions/footers/footers/footer-04/options.php:779 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:131 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:140 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:149 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:158 msgid \"Button Settings\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:491 #: framework-customizations/extensions/footers/footers/footer-01/options.php:644 #: framework-customizations/extensions/footers/footers/footer-01/options.php:797 #: framework-customizations/extensions/footers/footers/footer-02/options.php:484 #: framework-customizations/extensions/footers/footers/footer-02/options.php:636 #: framework-customizations/extensions/footers/footers/footer-02/options.php:788 #: framework-customizations/extensions/footers/footers/footer-03/options.php:472 #: framework-customizations/extensions/footers/footers/footer-03/options.php:624 #: framework-customizations/extensions/footers/footers/footer-03/options.php:776 #: framework-customizations/extensions/footers/footers/footer-04/options.php:476 #: framework-customizations/extensions/footers/footers/footer-04/options.php:628 #: framework-customizations/extensions/footers/footers/footer-04/options.php:780 msgid \"Setting for button\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:492 #: framework-customizations/extensions/footers/footers/footer-01/options.php:645 #: framework-customizations/extensions/footers/footers/footer-01/options.php:798 #: framework-customizations/extensions/footers/footers/footer-02/options.php:485 #: framework-customizations/extensions/footers/footers/footer-02/options.php:637 #: framework-customizations/extensions/footers/footers/footer-02/options.php:789 #: framework-customizations/extensions/footers/footers/footer-03/options.php:473 #: framework-customizations/extensions/footers/footers/footer-03/options.php:625 #: framework-customizations/extensions/footers/footers/footer-03/options.php:777 #: framework-customizations/extensions/footers/footers/footer-04/options.php:477 #: framework-customizations/extensions/footers/footers/footer-04/options.php:629 #: framework-customizations/extensions/footers/footers/footer-04/options.php:781 #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:36 #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:42 #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:46 msgid \"Settings\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:497 #: framework-customizations/extensions/footers/footers/footer-01/options.php:650 #: framework-customizations/extensions/footers/footers/footer-01/options.php:803 #: framework-customizations/extensions/footers/footers/footer-02/options.php:490 #: framework-customizations/extensions/footers/footers/footer-02/options.php:642 #: framework-customizations/extensions/footers/footers/footer-02/options.php:794 #: framework-customizations/extensions/footers/footers/footer-03/options.php:478 #: framework-customizations/extensions/footers/footers/footer-03/options.php:630 #: framework-customizations/extensions/footers/footers/footer-03/options.php:782 #: framework-customizations/extensions/footers/footers/footer-04/options.php:482 #: framework-customizations/extensions/footers/footers/footer-04/options.php:634 #: framework-customizations/extensions/footers/footers/footer-04/options.php:786 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:100 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:62 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:85 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:43 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:251 #: framework-customizations/extensions/widgets/widgets/button/options.php:18 msgid \"Button Text\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:501 #: framework-customizations/extensions/footers/footers/footer-01/options.php:654 #: framework-customizations/extensions/footers/footers/footer-01/options.php:807 #: framework-customizations/extensions/footers/footers/footer-02/options.php:494 #: framework-customizations/extensions/footers/footers/footer-02/options.php:646 #: framework-customizations/extensions/footers/footers/footer-02/options.php:798 #: framework-customizations/extensions/footers/footers/footer-03/options.php:482 #: framework-customizations/extensions/footers/footers/footer-03/options.php:634 #: framework-customizations/extensions/footers/footers/footer-03/options.php:786 #: framework-customizations/extensions/footers/footers/footer-04/options.php:486 #: framework-customizations/extensions/footers/footers/footer-04/options.php:638 #: framework-customizations/extensions/footers/footers/footer-04/options.php:790 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:94 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:260 #: framework-customizations/extensions/widgets/widgets/button/options.php:23 #: framework-customizations/theme/options/page-404-settings.php:87 msgid \"Button Link\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:505 #: framework-customizations/extensions/footers/footers/footer-01/options.php:658 #: framework-customizations/extensions/footers/footers/footer-02/options.php:498 #: framework-customizations/extensions/footers/footers/footer-02/options.php:650 #: framework-customizations/extensions/footers/footers/footer-02/options.php:802 #: framework-customizations/extensions/footers/footers/footer-03/options.php:486 #: framework-customizations/extensions/footers/footers/footer-03/options.php:638 #: framework-customizations/extensions/footers/footers/footer-04/options.php:490 #: framework-customizations/extensions/footers/footers/footer-04/options.php:642 #: framework-customizations/extensions/footers/footers/footer-04/options.php:794 msgid \"Select background color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:512 #: framework-customizations/extensions/footers/footers/footer-01/options.php:818 #: framework-customizations/extensions/footers/footers/footer-02/options.php:505 #: framework-customizations/extensions/footers/footers/footer-02/options.php:657 #: framework-customizations/extensions/footers/footers/footer-02/options.php:809 #: framework-customizations/extensions/footers/footers/footer-03/options.php:493 #: framework-customizations/extensions/footers/footers/footer-03/options.php:645 #: framework-customizations/extensions/footers/footers/footer-03/options.php:797 #: framework-customizations/extensions/footers/footers/footer-04/options.php:497 #: framework-customizations/extensions/footers/footers/footer-04/options.php:649 #: framework-customizations/extensions/footers/footers/footer-04/options.php:801 msgid \"Select text color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:518 #: framework-customizations/extensions/footers/footers/footer-01/options.php:671 #: framework-customizations/extensions/footers/footers/footer-01/options.php:824 #: framework-customizations/extensions/footers/footers/footer-02/options.php:511 #: framework-customizations/extensions/footers/footers/footer-02/options.php:663 #: framework-customizations/extensions/footers/footers/footer-02/options.php:815 #: framework-customizations/extensions/footers/footers/footer-03/options.php:499 #: framework-customizations/extensions/footers/footers/footer-03/options.php:651 #: framework-customizations/extensions/footers/footers/footer-03/options.php:803 #: framework-customizations/extensions/footers/footers/footer-04/options.php:503 #: framework-customizations/extensions/footers/footers/footer-04/options.php:655 #: framework-customizations/extensions/footers/footers/footer-04/options.php:807 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:46 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:52 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:47 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:38 msgid \"Border Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:519 #: framework-customizations/extensions/footers/footers/footer-01/options.php:672 #: framework-customizations/extensions/footers/footers/footer-01/options.php:825 #: framework-customizations/extensions/footers/footers/footer-02/options.php:512 #: framework-customizations/extensions/footers/footers/footer-02/options.php:664 #: framework-customizations/extensions/footers/footers/footer-02/options.php:816 #: framework-customizations/extensions/footers/footers/footer-03/options.php:500 #: framework-customizations/extensions/footers/footers/footer-03/options.php:652 #: framework-customizations/extensions/footers/footers/footer-03/options.php:804 #: framework-customizations/extensions/footers/footers/footer-04/options.php:504 #: framework-customizations/extensions/footers/footers/footer-04/options.php:656 #: framework-customizations/extensions/footers/footers/footer-04/options.php:808 msgid \"Select border color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:525 #: framework-customizations/extensions/footers/footers/footer-01/options.php:678 #: framework-customizations/extensions/footers/footers/footer-01/options.php:831 #: framework-customizations/extensions/footers/footers/footer-02/options.php:518 #: framework-customizations/extensions/footers/footers/footer-02/options.php:670 #: framework-customizations/extensions/footers/footers/footer-02/options.php:822 #: framework-customizations/extensions/footers/footers/footer-03/options.php:506 #: framework-customizations/extensions/footers/footers/footer-03/options.php:658 #: framework-customizations/extensions/footers/footers/footer-03/options.php:810 #: framework-customizations/extensions/footers/footers/footer-04/options.php:510 #: framework-customizations/extensions/footers/footers/footer-04/options.php:662 #: framework-customizations/extensions/footers/footers/footer-04/options.php:814 msgid \"Background Hover Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:531 #: framework-customizations/extensions/footers/footers/footer-01/options.php:684 #: framework-customizations/extensions/footers/footers/footer-01/options.php:837 #: framework-customizations/extensions/footers/footers/footer-02/options.php:524 #: framework-customizations/extensions/footers/footers/footer-02/options.php:676 #: framework-customizations/extensions/footers/footers/footer-02/options.php:828 #: framework-customizations/extensions/footers/footers/footer-03/options.php:512 #: framework-customizations/extensions/footers/footers/footer-03/options.php:664 #: framework-customizations/extensions/footers/footers/footer-03/options.php:816 #: framework-customizations/extensions/footers/footers/footer-04/options.php:516 #: framework-customizations/extensions/footers/footers/footer-04/options.php:668 #: framework-customizations/extensions/footers/footers/footer-04/options.php:820 msgid \"Text Hover Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:537 #: framework-customizations/extensions/footers/footers/footer-01/options.php:690 #: framework-customizations/extensions/footers/footers/footer-01/options.php:843 #: framework-customizations/extensions/footers/footers/footer-02/options.php:530 #: framework-customizations/extensions/footers/footers/footer-02/options.php:682 #: framework-customizations/extensions/footers/footers/footer-02/options.php:834 #: framework-customizations/extensions/footers/footers/footer-03/options.php:518 #: framework-customizations/extensions/footers/footers/footer-03/options.php:670 #: framework-customizations/extensions/footers/footers/footer-03/options.php:822 #: framework-customizations/extensions/footers/footers/footer-04/options.php:522 #: framework-customizations/extensions/footers/footers/footer-04/options.php:674 #: framework-customizations/extensions/footers/footers/footer-04/options.php:826 msgid \"Border Hover Color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:557 #: framework-customizations/extensions/footers/footers/footer-02/options.php:549 #: framework-customizations/extensions/footers/footers/footer-03/options.php:537 #: framework-customizations/extensions/footers/footers/footer-04/options.php:541 msgid \"Center Area Content\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:565 #: framework-customizations/extensions/footers/footers/footer-02/options.php:557 #: framework-customizations/extensions/footers/footers/footer-03/options.php:545 #: framework-customizations/extensions/footers/footers/footer-04/options.php:549 msgid \"Show or hide Center Area Content\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:580 #: framework-customizations/extensions/footers/footers/footer-02/options.php:572 #: framework-customizations/extensions/footers/footers/footer-03/options.php:560 #: framework-customizations/extensions/footers/footers/footer-04/options.php:564 msgid \"&copy; Designed by RubikThemes.\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:665 msgid \"Select text color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:710 #: framework-customizations/extensions/footers/footers/footer-02/options.php:701 #: framework-customizations/extensions/footers/footers/footer-03/options.php:689 #: framework-customizations/extensions/footers/footers/footer-04/options.php:693 msgid \"Right Area Content\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:718 #: framework-customizations/extensions/footers/footers/footer-02/options.php:709 #: framework-customizations/extensions/footers/footers/footer-03/options.php:697 #: framework-customizations/extensions/footers/footers/footer-04/options.php:701 msgid \"Show or hide Right Area Content\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-01/options.php:811 #: framework-customizations/extensions/footers/footers/footer-03/options.php:790 msgid \"Select background color\" msgstr \"\" #: framework-customizations/extensions/footers/footers/footer-04/options.php:257 #: framework-customizations/theme/options/footer-options.php:78 msgid \"Choose widget area will show in footer main\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:10 msgid \"SLZ Gallery Carousel\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:11 msgid \"Animated Carousel with gallery or portfolio.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:23 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:27 #: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:33 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:21 msgid \"Brazil\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:18 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:19 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:14 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:47 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:68 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:71 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:142 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:153 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:74 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:17 msgid \"Choose style to show\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:7 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:6 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:67 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:51 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:4 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:37 #: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:4 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:4 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:3 msgid \"Chennai\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:8 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:7 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:68 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:52 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:5 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:5 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:5 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:4 msgid \"Mumbai\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:23 msgid \"Picture Frame\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:29 msgid \"Upload one image to make frame for featured image.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:3 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:3 msgid \"Sao Paulo\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:4 msgid \"Rio\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:5 msgid \"Brasilia\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:22 msgid \"Main Title\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:25 msgid \"Title of gallery\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:13 #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:18 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:24 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:29 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:35 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:176 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:29 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:34 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:40 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:160 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:28 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:33 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:39 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:152 #: framework-customizations/extensions/portfolio/config.php:70 msgid \"Gallery\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:14 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:25 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:48 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:236 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:30 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:53 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:220 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:29 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:52 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:212 #: framework-customizations/extensions/portfolio/config.php:59 #: framework-customizations/extensions/portfolio/config.php:60 #: framework-customizations/theme/config.php:536 #: framework-customizations/theme/options/template-settings.php:231 msgid \"Portfolio\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:24 #: framework-customizations/theme/options/page-header-settings.php:221 msgid \"Post Title\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:30 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:39 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:44 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:43 msgid \"-All Gallery-\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:35 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:52 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:57 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:56 msgid \"-All Portfolio-\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:55 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:72 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:76 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:75 msgid \"Post Type\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:60 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:76 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:80 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:79 msgid \"Choose post type to show\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:64 msgid \"Choose Gallery\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:71 msgid \"Choose special gallery to show list of gallery images in the post.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:75 msgid \"Choose Portfolio\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:82 msgid \"Choose special portfolio to show list of gallery images in the post.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:108 msgid \"Limit Images\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:111 msgid \"\" \"Add number of images to display. If it blank, display all gallery images\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:128 msgid \"Please input number of item show in slider.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:137 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:110 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:174 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:191 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:270 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:326 msgid \"Is Auto Play ?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:141 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:114 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:181 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:195 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:342 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:274 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:330 msgid \"Choose YES to slide auto play.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:146 msgid \"Show Dots Navigation ?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:150 msgid \"Choose YES to show dots navigation.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:155 msgid \"Show Arrows Navigation ?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:159 msgid \"Choose YES to show arrows navigation.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:173 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:242 msgid \"Arrows Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:176 msgid \"Choose color to slide arrows.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:185 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:254 msgid \"Arrows Hover Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:188 msgid \"Choose hover color to slide arrows.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:197 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:266 msgid \"Arrows Background Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:200 msgid \"Choose background color to slide arrows.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:209 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:278 msgid \"Arrows Background Hover Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:212 msgid \"Choose background hover color to slide arrow.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:221 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:230 msgid \"Dots Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:224 msgid \"Choose color to slide dots.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:233 msgid \"Dots Color Active\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:236 msgid \"Choose color to slide dots when active, hover.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/views/layout-6.php:48 msgid \"All gallery\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/views/layout-6.php:60 msgid \"VIEW MORE\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:9 msgid \"SLZ Gallery Grid\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:10 msgid \"List of galleries in grid\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:20 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:21 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:27 #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:12 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:46 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:23 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:41 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:7 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:6 msgid \"New York\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:21 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:22 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:28 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:42 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:10 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:43 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:8 msgid \"Illinois\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:22 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:23 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:43 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:9 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:42 msgid \"Connecticut\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:23 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:45 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:39 msgid \"Texas\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:24 #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:40 msgid \"Arizona\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:10 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:9 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:8 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:102 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:82 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:75 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:7 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:29 msgid \"Five\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:43 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:48 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:47 msgid \"-All Gallery Categories-\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:56 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:61 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:60 msgid \"-All Portfolio Categories-\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:59 msgid \"-All Authors-\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:84 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:67 #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:49 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:157 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:228 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:89 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:195 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:208 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:16 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:255 #: framework-customizations/theme/options/template-settings.php:282 #: framework-customizations/theme/options/template-settings.php:352 #: framework-customizations/theme/options/template-settings.php:422 msgid \"Column\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:110 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:112 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:104 msgid \"Select order to display.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:121 #: framework-customizations/theme/options/post-settings.php:153 #: framework-customizations/theme/options/post-settings.php:239 #: framework-customizations/theme/options/speed-optimize.php:60 #: includes/class-breadcrumb.php:250 msgid \"Author\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:127 msgid \"Add Author\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:130 msgid \"Choose special author to filter\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:134 msgid \"Choose author to filter.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:145 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:129 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:121 msgid \"Choose gallery category or special gallery to display\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:167 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:151 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:143 msgid \"Choose Gallery Category.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:182 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:166 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:158 msgid \"Add Gallery\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:185 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:169 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:161 msgid \"Choose special gallery to show\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:190 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:174 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:166 msgid \"\" \"Default display All Gallery if no gallery is selected and Number gallery is \" \"empty.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:205 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:189 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:181 msgid \"Choose portfolio category or special portfolio to display\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:227 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:211 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:203 msgid \"Choose Portfolio Category.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:242 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:226 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:218 msgid \"Add Portfolio\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:245 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:229 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:221 msgid \"Choose special portfolio to show\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:250 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:234 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:226 msgid \"\" \"Default display All Portfolio if no portfolio is selected and Number \" \"portfolio is empty.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:262 msgid \"Show Tab Filter\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:266 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:250 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:242 msgid \"Choose if you want to show category filter tab or not.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:267 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:275 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:289 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:301 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:314 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:323 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:336 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:349 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:251 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:260 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:273 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:282 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:295 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:303 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:316 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:115 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:124 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:133 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:142 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:151 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:160 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:171 msgid \"Extra Options\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:271 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:260 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:93 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:85 msgid \"Show Pagination\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:274 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:263 msgid \"Choose if you want to show pagination.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:284 msgid \"Filter Alignment\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:288 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:259 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:251 msgid \"Choose alignment for category filter.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:297 msgid \"Load More Button Content\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:300 msgid \"Enter load more button content to display.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:309 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:120 msgid \"Show Title\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:313 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:272 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:289 msgid \"Choose if you want to show title or not.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:318 msgid \"Show Category\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:322 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:281 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:302 msgid \"Choose if you want to show category or not.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:331 msgid \"Show Read More Button\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:335 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:294 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:341 msgid \"Choose if you want to show read more button or not.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:344 msgid \"Show Zoom Button\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:348 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:315 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:354 msgid \"Choose if you want to show fancybox zoom in or not.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:356 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:323 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:362 msgid \"Tab Filter Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:359 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:326 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:365 msgid \"Choose a custom tab filter color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:360 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:372 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:384 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:396 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:404 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:413 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:425 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:437 #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:449 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:327 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:339 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:351 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:363 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:371 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:383 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:395 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:407 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:415 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:366 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:378 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:390 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:402 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:414 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:426 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:438 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:450 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:462 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:474 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:486 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:498 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:120 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:127 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:134 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:141 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:148 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:155 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:140 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:148 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:156 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:164 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:172 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:180 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:188 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:196 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:204 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:87 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:94 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:101 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:108 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:115 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:122 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:129 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:136 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:143 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:75 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:82 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:26 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:37 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:49 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:32 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:43 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:55 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:27 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:38 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:50 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:26 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:33 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:41 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:196 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:208 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:216 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:224 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:237 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:249 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:261 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:273 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:286 msgid \"Custom CSS\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:368 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:335 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:374 msgid \"Tab Active Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:371 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:338 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:377 msgid \"Choose a custom tab active color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:380 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:347 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:386 msgid \"Category Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:383 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:350 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:389 msgid \"Choose a custom category color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:395 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:362 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:401 msgid \"Choose a custom title color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:400 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:367 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:410 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:41 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:124 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:102 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:109 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:186 msgid \"Title Hover Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:403 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:370 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:413 msgid \"Choose a custom title hover color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:409 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:379 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:458 msgid \"Read More Button Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:412 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:382 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:461 msgid \"Choose a custom read more button color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:421 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:391 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:470 msgid \"Read More Button Hover Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:424 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:394 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:473 msgid \"Choose a custom read more button hover color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:433 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:403 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:482 msgid \"Zoom in Button Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:436 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:406 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:485 msgid \"Choose a custom zoom in button color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:445 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:411 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:494 msgid \"Zoom in Button Hover Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:448 #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:414 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:497 msgid \"Choose a custom zoom in button hover color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/config.php:10 msgid \"SLZ Gallery Masonry\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/config.php:11 msgid \"Gallery Masonry of post feature image from custom post type\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:21 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:20 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:24 msgid \"Option 1\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:22 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:21 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:25 msgid \"Option 2\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:23 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:22 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:26 msgid \"Option 3\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:24 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:23 msgid \"Option 4\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:72 msgid \"Choose columns to show\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:88 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:87 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:65 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:79 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:24 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:22 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:244 msgid \"Option Show\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:91 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:90 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:29 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:247 msgid \"It is used for aligning the inner content of blocks\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:246 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:238 msgid \"Show Tab Filter?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:255 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:247 msgid \"Alignment Filter\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:268 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:285 msgid \"Show Title?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:277 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:298 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:16 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:99 msgid \"Show Category?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:290 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:337 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:68 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:151 msgid \"Show Read More Button?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:299 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:273 msgid \"Load More Button Text\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:302 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:276 msgid \"Enter load more button text. If empty, not show buttony.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:311 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:350 msgid \"Show Zoom Button?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:10 msgid \"SLZ Isotope\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:11 msgid \"Isotope of post feature image from custom post type\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:9 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:46 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:13 msgid \"Oregon\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:27 msgid \"Kentucky\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:28 msgid \"Missouri\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:29 msgid \"Ohio\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:30 msgid \"North Carolina\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:243 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:252 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:264 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:277 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:290 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:303 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:316 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:329 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:342 #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:355 msgid \"Custom Isotope\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:311 msgid \"Show Meta Data?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:315 msgid \"Choose if you want to show meta data or not.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:324 msgid \"Show Description?\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:328 msgid \"Choose if you want to show description or not.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:422 msgid \"Meta Data Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:425 msgid \"Choose a custom meta data color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:434 msgid \"Meta Data Hover Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:437 msgid \"Choose a custom meta data hover color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:446 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:138 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:117 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:352 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:111 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:91 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:52 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:218 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:234 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:221 msgid \"Description Color\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:449 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:140 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:114 msgid \"Choose a custom description color.\" msgstr \"\" #: framework-customizations/extensions/gallery/shortcodes/isotope/views/view.php:60 #: framework-customizations/extensions/lema/shortcodes/featured-course/views/layout-1.php:69 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/views/layout-1.php:10 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/views/layout-1.php:10 msgid \"By\" msgstr \"\" #: framework-customizations/extensions/gallery/views/content.php:18 msgid \"Google Calendar\" msgstr \"\" #: framework-customizations/extensions/gallery/views/content.php:19 msgid \"Ical Export\" msgstr \"\" #: framework-customizations/extensions/gallery/views/content.php:22 msgid \"Start\" msgstr \"\" #: framework-customizations/extensions/gallery/views/content.php:23 msgid \"End\" msgstr \"\" #: framework-customizations/extensions/gallery/views/content.php:27 msgid \"Speakers\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:90 #: framework-customizations/extensions/headers/headers/header-09/options.php:14 msgid \"Block\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:91 #: framework-customizations/extensions/headers/headers/header-09/options.php:15 msgid \"Choose block to display\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:93 #: framework-customizations/extensions/headers/headers/header-09/options.php:17 msgid \"- None -\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:94 #: framework-customizations/extensions/headers/headers/header-09/options.php:18 msgid \"Logo\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:95 #: framework-customizations/extensions/headers/headers/header-09/options.php:19 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:7 msgid \"Course Category\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:96 #: framework-customizations/extensions/headers/headers/header-09/options.php:20 msgid \"Course Search\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:97 #: framework-customizations/extensions/headers/headers/header-09/options.php:21 msgid \"Login - Register\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:98 #: framework-customizations/extensions/headers/headers/header-09/options.php:22 msgid \"Cart Icon\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:99 #: framework-customizations/extensions/headers/headers/header-09/options.php:23 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:37 msgid \"Menu\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:100 #: framework-customizations/extensions/headers/headers/header-09/options.php:24 msgid \"Text Link\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:123 #: framework-customizations/extensions/headers/headers/header-09/options.php:74 #: framework-customizations/theme/options/posts/page.php:187 msgid \"Header Style\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:124 #: framework-customizations/extensions/headers/headers/header-09/options.php:75 msgid \"Choose header style.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:130 #: framework-customizations/extensions/headers/headers/header-09/options.php:134 msgid \"Header Top\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:139 #: framework-customizations/extensions/headers/headers/header-09/options.php:143 msgid \"Enable Header Top\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:140 #: framework-customizations/extensions/headers/headers/header-09/options.php:144 msgid \"Choose to enable header top.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:155 #: framework-customizations/extensions/headers/headers/header-09/options.php:159 msgid \"Header Top Style\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:156 #: framework-customizations/extensions/headers/headers/header-09/options.php:160 msgid \"Choose style for header top.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:169 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:240 #: framework-customizations/extensions/headers/headers/header-09/options.php:173 #: framework-customizations/extensions/headers/headers/header-09/options.php:244 msgid \"Left Block\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:170 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:241 #: framework-customizations/extensions/headers/headers/header-09/options.php:174 #: framework-customizations/extensions/headers/headers/header-09/options.php:245 msgid \"Choose shortcode to display in left block.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:173 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:182 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:191 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:244 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:253 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:262 #: framework-customizations/extensions/headers/headers/header-09/options.php:177 #: framework-customizations/extensions/headers/headers/header-09/options.php:186 #: framework-customizations/extensions/headers/headers/header-09/options.php:195 #: framework-customizations/extensions/headers/headers/header-09/options.php:248 #: framework-customizations/extensions/headers/headers/header-09/options.php:257 #: framework-customizations/extensions/headers/headers/header-09/options.php:266 #: framework-customizations/extensions/portfolio/config.php:109 #: framework-customizations/theme/options/speed-optimize.php:72 #: framework-customizations/theme/options/speed-optimize.php:81 #: framework-customizations/theme/options/speed-optimize.php:91 msgid \"Add\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:178 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:249 #: framework-customizations/extensions/headers/headers/header-09/options.php:182 #: framework-customizations/extensions/headers/headers/header-09/options.php:253 msgid \"Center Block\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:179 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:250 #: framework-customizations/extensions/headers/headers/header-09/options.php:183 #: framework-customizations/extensions/headers/headers/header-09/options.php:254 msgid \"Choose shortcode to display in center block.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:187 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:258 #: framework-customizations/extensions/headers/headers/header-09/options.php:191 #: framework-customizations/extensions/headers/headers/header-09/options.php:262 msgid \"Right Block\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:188 #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:259 #: framework-customizations/extensions/headers/headers/header-09/options.php:192 #: framework-customizations/extensions/headers/headers/header-09/options.php:263 msgid \"Choose shortcode to display in right block.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:201 #: framework-customizations/extensions/headers/headers/header-09/options.php:205 msgid \"Header Main\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:210 #: framework-customizations/extensions/headers/headers/header-09/options.php:214 msgid \"Enable Header Main\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:211 #: framework-customizations/extensions/headers/headers/header-09/options.php:215 msgid \"Choose to enable header main.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:226 #: framework-customizations/extensions/headers/headers/header-09/options.php:230 msgid \"Header Main Style\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:227 #: framework-customizations/extensions/headers/headers/header-09/options.php:231 msgid \"Choose style for header main.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:280 #: framework-customizations/theme/options/page-options.php:33 msgid \"Default Setting\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:284 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:187 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:125 #: framework-customizations/theme/options/page-404-settings.php:3 #: framework-customizations/theme/options/page-404-settings.php:28 #: framework-customizations/theme/options/page-options.php:36 #: framework-customizations/theme/options/post-settings.php:391 #: framework-customizations/theme/options/posts/page.php:142 #: framework-customizations/theme/options/posts/slz-faq.php:94 #: framework-customizations/theme/options/template-settings.php:564 #: framework-customizations/theme/options/typography.php:31 #: framework-customizations/theme/options/typography.php:60 #: framework-customizations/theme/options/typography.php:138 msgid \"Default\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/config.php:8 #: framework-customizations/extensions/headers/headers/header-09/config.php:9 msgid \"Header 09\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/config.php:23 msgid \"Transparent\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:48 msgid \"Color\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:49 msgid \"Choose color for gradient line in header.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:59 msgid \"Gradient Line Position\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:60 msgid \"Choose position for gradient line in Header.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:62 msgid \"After Top Header\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:63 msgid \"Before Main Header\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:64 msgid \"After Main Header\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:86 msgid \"Enable Preloader\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:87 msgid \"Choose to enable preloader on site.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:102 msgid \"Preloader Image\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:103 msgid \"Upload image for preloader.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:116 msgid \"Gradient Line\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options.php:117 msgid \"Choose to Enable gradient line in Header.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:32 msgid \"Enter title for this button.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:36 #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:108 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:124 #: framework-customizations/theme/options/general-settings.php:422 #: framework-customizations/theme/options/general-settings.php:485 msgid \"Link\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:37 msgid \"\" \"Link for this button. If blank, this will display only title without link.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:42 msgid \"Target\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:43 msgid \"Choose how to open link.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:45 msgid \"Opens the link in the same frame as it was clicked.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:46 msgid \"Opens the link in a new window or tab.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:47 msgid \"Opens the link in the parent frame.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:48 msgid \"Opens the link in the full body of the window\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/button.php:54 #: framework-customizations/extensions/headers/headers/header-09/options/cart_icon.php:7 #: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:21 #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:45 #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:44 #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:18 #: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:18 msgid \"Add extra class to this block.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:6 #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:6 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:21 #: includes/class-tgm-plugin-activation.php:2643 msgid \"Type\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:7 msgid \"Choose type of Course Category\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:11 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:24 msgid \"Box\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:15 msgid \"Tabs\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:7 msgid \"Choose type of login, register button.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:11 msgid \"Popup\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:20 msgid \"Login Text\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:21 msgid \"Enter login text.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:25 msgid \"Register Text\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:26 msgid \"Enter register text.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:32 msgid \"Custom Logo\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:33 msgid \"\" \"Choose to use custom logo. If blank, this block will use default logo in \" \"theme settings.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/logo.php:39 msgid \"Select the background color for this block.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/menu.php:38 msgid \"\" \"Choose custom menu. If blank, menu assign in Menu Location will use as \" \"default.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:7 msgid \"Choose style for this block.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:7 msgid \"Enter text for this block.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:11 msgid \"URL\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:12 msgid \"\" \"Link for this block. If blank, this will display only text without link.\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:13 msgid \"Avatar of\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:35 #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:39 msgid \"Dashboard\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:37 msgid \"Wishlist\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:54 msgid \"Log out\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:64 #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:6 #: page-templates/login-page.php:70 msgid \"Login\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:65 #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:7 #: page-templates/login-page.php:71 msgid \"Register\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:19 #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:49 #: page-templates/login-page.php:83 page-templates/login-page.php:113 msgid \"or\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:23 #: page-templates/login-page.php:87 msgid \"Email\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:26 #: page-templates/login-page.php:90 msgid \"Password\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:29 #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:88 #: page-templates/login-page.php:93 page-templates/login-page.php:152 msgid \"LOGIN\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:33 #: page-templates/login-page.php:97 msgid \"FORGOT MY PASSWORD\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:35 #: page-templates/login-page.php:99 msgid \"Don't have an account?\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:36 #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:82 #: page-templates/login-page.php:100 page-templates/login-page.php:146 msgid \"REGISTER\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:87 #: page-templates/login-page.php:151 msgid \"I have an account!\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92 #: page-templates/login-page.php:156 msgid \"By signing up to create an account I accept EduChain's \" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92 #: page-templates/login-page.php:156 msgid \"Terms of Use\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92 #: page-templates/login-page.php:156 msgid \"Privacy Policy\" msgstr \"\" #: framework-customizations/extensions/headers/headers/header-09/views/search_box.php:8 msgid \"Search your courses...\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/config.php:10 msgid \"SLZ Instagram\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/config.php:11 msgid \"Show Instagram Image\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:11 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:18 msgid \"Block Title\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:14 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:32 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:58 msgid \"Block title. If it blank the block will not have a title\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:18 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:36 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:53 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:62 msgid \"Block Title Color\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:21 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:119 #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:39 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:56 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:139 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:104 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:65 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:104 msgid \"Choose a custom title text color.\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:25 msgid \"Template\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:28 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:81 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:60 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:53 msgid \"Grid\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:29 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:82 msgid \"Slider\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:35 msgid \"Instagram ID\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:42 msgid \"Number images\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:52 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:22 msgid \"3\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:53 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:23 msgid \"4\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:63 msgid \"Number items\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:84 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:173 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:307 msgid \"Show Dots ?\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:88 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:177 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:311 msgid \"If choose Yes, block will be show dots.\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:97 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:182 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:25 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:317 msgid \"Show Arrow ?\" msgstr \"\" #: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:101 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:186 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:32 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:321 msgid \"If choose Yes, block will be show arrow.\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:58 msgid \"Icon library\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:69 msgid \"Select icon library.\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:96 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:236 msgid \"Select icon from library.\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:127 msgid \"Enter number of items to show..\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:136 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:277 msgid \"Slide To Scroll\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:139 msgid \"Enter number of items to scroll..\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:148 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:288 msgid \"Show Dots\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:151 msgid \"Show dots in carousel\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:161 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:301 msgid \"Show Arrows\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:164 msgid \"Show arrows in carousel\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:174 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:315 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:377 msgid \"Loop Infinite\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:177 msgid \"Is carousel loop infinite?\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:187 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:329 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:338 msgid \"Auto Play\" msgstr \"\" #: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:190 msgid \"Is carousel play?\" msgstr \"\" #: framework-customizations/extensions/lema/includes/class-slz-lema-course.php:19 #: framework-customizations/theme/options/posts/post.php:162 msgid \"Gallery Images\" msgstr \"\" #: framework-customizations/extensions/lema/includes/class-slz-lema-course.php:779 msgid \"Zoom in\" msgstr \"\" #: framework-customizations/extensions/lema/manifest.php:6 msgid \"Lema\" msgstr \"\" #: framework-customizations/extensions/lema/manifest.php:7 msgid \"This extension use add to portfolio.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:108 #: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:186 msgid \"CLICK TO SEE\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:108 #: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:186 msgid \"COURSE\" msgid_plural \"COURSES\" msgstr[0] \"\" msgstr[1] \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:10 msgid \"SLZ Course Collection\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:11 msgid \"List of course.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:21 #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:84 msgid \"Select item columns on row.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:36 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:128 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:86 msgid \"Choose color for title.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:37 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:45 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:53 #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:34 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:75 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:33 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:46 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:72 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:295 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:308 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:317 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:326 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:335 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:348 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:357 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:129 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:141 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:149 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:157 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:169 msgid \"Custom Color\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:44 msgid \"Choose hover color for title.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:49 msgid \"Link Color\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:52 msgid \"Choose color for link.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:57 msgid \"Link Hover Color\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:60 msgid \"Choose hover color for link.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:43 msgid \"Choose Course Category.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:47 msgid \"Limit Items\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:50 msgid \"Number of items limit on page.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:10 msgid \"SLZ Featured Course\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:11 msgid \"Display a featured course.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:5 #: framework-customizations/extensions/portfolio/hooks.php:18 msgid \"- Choose Course -\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:35 msgid \"Featured Post\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:36 msgid \"Choose post to featured post.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:43 msgid \"Enter button. If blank title button will not display.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:51 msgid \"Display Description\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:57 msgid \"Select show/hide description.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:61 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:164 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:149 msgid \"Description Length\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:64 msgid \"Length of course description display. Default: 25.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:88 msgid \"Label Text\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:91 msgid \"Add label for this block. If blank, it will not display.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:103 msgid \"Text of button. If blank, it will not display.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:126 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:112 msgid \"Choose a custom title text hover color.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:131 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:98 msgid \"Label Color\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:133 msgid \"Choose a custom label color.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:145 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:28 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:125 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:269 msgid \"Button Color\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:147 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:128 msgid \"Choose a custom button color.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:152 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:36 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:133 msgid \"Button Hover Color\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:154 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:136 msgid \"Choose a custom button hover color.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/config.php:10 msgid \"SLZ Instructor\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/config.php:11 msgid \"List of instructor.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:10 msgid \"- All Instructors -\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:34 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:55 msgid \"List Instructors\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:39 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:60 msgid \"Instructor Name\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:44 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:65 msgid \"Choose instructor to display.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:84 msgid \"Show Avatar\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:91 msgid \"Choose to display avatar.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:95 msgid \"Show Icon Avatar\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:102 msgid \"Choose to display icon avatar.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:106 msgid \"Show Statistic\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:113 msgid \"Choose to display instructor's statistic.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:117 msgid \"Show Role\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:124 msgid \"Choose to display role.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:128 msgid \"Show Social Icon\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:135 #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:146 msgid \"Choose to display social icon.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:139 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:128 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:155 msgid \"Show Description\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:150 msgid \"Show Course Popular\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:157 msgid \"Choose to display course popular.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:165 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:329 msgid \"Enter number of items to show.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:190 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:68 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:279 msgid \"Is Dots Navigation ?\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:206 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:76 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:81 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:288 msgid \"Is Arrows Navigation ?\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:13 msgid \"Category List\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:14 msgid \"Display course category list.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:15 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:8 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:8 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:19 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:14 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:33 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:9 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:17 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:7 #: framework-customizations/theme/manifest.php:211 msgid \"Learn Master\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:60 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:70 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:84 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:14 msgid \"Choose layout for this shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:78 msgid \"Display Type\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:91 msgid \"Enter number of category to show.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:105 msgid \"Choose columns on row. Default: Three.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:113 msgid \"Description Limit\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:116 msgid \"Enter number of description's words limit.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:124 msgid \"Choose to show title.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:132 msgid \"Choose to show description.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:136 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:87 msgid \"Show Icon\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:140 msgid \"Choose to show icon.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:148 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:88 msgid \"Show Image\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:152 msgid \"Choose to show image.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:163 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:38 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:37 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:31 msgid \"Add extra class to block shortcode\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:167 msgid \"List Category\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:172 msgid \"Category Name\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:176 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:146 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:119 msgid \"Choose category to filter.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:179 msgid \"Add category to filter.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:184 #: framework-customizations/theme/options/post-settings.php:193 #: framework-customizations/theme/options/post-settings.php:528 msgid \"Filter By\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:188 msgid \"Feature\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:189 msgid \"Top Enroll\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:192 msgid \"Choose to filter by.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:268 msgid \"Enter number of items to show. Default is 1.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:279 msgid \"Enter number of items to scroll. Default is 1.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:292 msgid \"Show dots in carousel. Default is Yes.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:305 msgid \"Show arrows in carousel. Default is Yes.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:319 msgid \"Is carousel loop infinite? Default is Yes.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:333 msgid \"Is carousel play? Default is Yes.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:9 msgid \"Display course category.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:25 msgid \"Tab\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:28 msgid \"Select type of category.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:7 msgid \"Course List Best Selling\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:9 msgid \"Display course list best selling.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:18 msgid \"Course List Filtered\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:20 msgid \"Display course list with filter conditional.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:59 msgid \"List\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:61 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:54 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:40 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:167 msgid \"Slide\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:64 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:57 msgid \"Select type of course list. Default: Grid.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:71 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:64 msgid \"Enter title.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:85 msgid \"Choose columns on row. Default: Four.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:100 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:92 msgid \"Choose to display pagination.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:111 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:103 msgid \"Enter post per page. Default: -1 (Unlimited).\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:119 msgid \"Select field to sort courses.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:123 msgid \"Sort Order\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:126 msgid \"Ascending\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:127 msgid \"Descending\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:130 msgid \"Select type of sort. Default: Descending.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:134 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:107 msgid \"Search Term\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:137 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:110 msgid \"Enter keyword to search. Default: 1.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:142 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:115 msgid \"Filter By Category\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:155 #: framework-customizations/theme/options/post-settings.php:152 #: framework-customizations/theme/options/post-settings.php:238 msgid \"Date\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:156 msgid \"Course Price\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:157 msgid \"Rate\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:158 msgid \"Review\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:13 msgid \"Course List\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:15 msgid \"Display course list.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:77 msgid \"Choose columns on row. Default: One.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:32 #: framework-customizations/extensions/portfolio/hooks.php:47 msgid \"Course\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:46 msgid \"Course Name\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:49 msgid \"Enter course name\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:138 #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:23 msgid \"Choose Style\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:161 msgid \"Choose Template\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:7 msgid \"Price Box\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:8 msgid \"Buy Service Cource.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:21 msgid \"Enter title for shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:27 msgid \"Enter description old for shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:31 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:135 #: framework-customizations/theme/options/course-settings.php:56 #: framework-customizations/theme/options/course-settings.php:71 msgid \"Price\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:33 msgid \"Enter price for shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:37 msgid \"Price Old\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:39 msgid \"Enter price old for shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:43 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:164 msgid \"Unit\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:45 msgid \"Enter unit for shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:49 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:174 msgid \"Price Subfix\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:51 msgid \"Enter subfix for shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:55 msgid \"Show Label\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:57 msgid \"Show label for this shortcode\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:64 msgid \"Enter button text for shortcode.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:16 msgid \"Courses Search Box\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:18 msgid \"Display course card search box.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:31 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:104 msgid \"Set the background color of button.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:39 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:29 msgid \"Set the background color of button when hover.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:47 msgid \"Set the background color of button icon.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:52 #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:216 msgid \"Icon Hover Color\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:55 msgid \"Set the background color of button icon when hover.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:72 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:44 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:12 msgid \"NewYork\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:74 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:48 msgid \"Select style of search box.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:78 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:52 msgid \"Placeholder Text\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:81 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:88 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:98 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:55 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:62 #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:81 msgid \"Add extra class to search box.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:6 msgid \"Course Search University\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:8 msgid \"Searchbox for university.\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:66 msgid \"Limit posts\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:69 msgid \"Number of post to display\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:113 msgid \"Filters\" msgstr \"\" #: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:123 msgid \"filter\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:8 msgid \"SLZ New Tweet\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:9 msgid \"Show twitter new tweet\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:17 msgid \"Choose number of column on row.\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:37 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:81 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:47 #: framework-customizations/extensions/widgets/widgets/button/options.php:11 msgid \"Layouts\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:33 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:40 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:51 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:30 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:14 msgid \"Choose layout to show\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:43 msgid \"Number Tweets\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:46 msgid \"The number of tweets to display.\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:50 msgid \"Show Tweet's media\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:53 msgid \"Choose if you want to show Tweet's media or not.\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:57 msgid \"Show Re-Tweet\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:60 msgid \"Choose if you want to show Re-Tweet.\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:64 msgid \"Is Carousel?\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:68 msgid \"Choose if you want display tweets list as carousel.\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:72 msgid \"Number Tweets per Slide\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:79 msgid \"The number of tweets per slide to display.\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:90 msgid \"Account Name\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:93 msgid \"\" \"Enter the ID as it appears after the twitter url (ex. https://twitter.com/\" \"myID).\" msgstr \"\" #: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:94 msgid \"Channel\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:39 msgid \"Project Options\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:42 msgid \"- Latest -\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:43 msgid \"A to Z\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:44 msgid \"Z to A\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:45 msgid \"Post is selected\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:46 #: framework-customizations/theme/options/post-settings.php:240 msgid \"Random\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:57 msgid \"Portfolio base\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:58 msgid \"Portfolio category base\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:61 msgid \"Portfolio Category\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:62 msgid \"Portfolio Categories\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:63 msgid \"Portfolio Tag\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:64 msgid \"Portfolio Tags\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:65 #: framework-customizations/extensions/portfolio/config.php:66 msgid \"Portfolio Status\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:77 msgid \"Images Gallery\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:78 msgid \"\" \"Add images to gallery. Images should have minimum size: 800x600. Bigger size \" \"images will be cropped automatically.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:86 #: framework-customizations/extensions/portfolio/config.php:93 msgid \"Attributes\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:94 msgid \"Add attributes for this post.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:98 #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:60 #: framework-customizations/theme/options/general-settings.php:384 #: framework-customizations/theme/options/general-settings.php:447 msgid \"Name\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:99 msgid \"Enter attribute name.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:103 msgid \"Value\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:104 msgid \"Enter attribute value. Support HTML.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:116 msgid \"Visible On Page\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:117 msgid \"Check to show attributes on single page.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:118 msgid \"Visible\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:132 msgid \"Thumnail\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:133 msgid \"Add thumbnail to the post.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:139 msgid \"Short Description\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:140 msgid \"Short description of post.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:146 msgid \"Information\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:147 msgid \"Information of post.\" msgstr \"\" #: framework-customizations/extensions/portfolio/config.php:156 msgid \"Choose icon to post\" msgstr \"\" #: framework-customizations/extensions/portfolio/hooks.php:32 msgid \"- Choose Student -\" msgstr \"\" #: framework-customizations/extensions/portfolio/hooks.php:48 msgid \"Choose course for this project.\" msgstr \"\" #: framework-customizations/extensions/portfolio/hooks.php:54 msgid \"Student\" msgstr \"\" #: framework-customizations/extensions/portfolio/hooks.php:55 msgid \"Choose student for this project.\" msgstr \"\" #: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:9 msgid \"SLZ Project Carousel\" msgstr \"\" #: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:10 msgid \"Animated Carousel with projects\" msgstr \"\" #: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:47 #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:92 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:58 msgid \"All\" msgstr \"\" #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:9 msgid \"SLZ Project List\" msgstr \"\" #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:10 msgid \"List of project\" msgstr \"\" #: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:13 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:36 msgid \"Choose style will be displayed.\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/course-info.php:19 msgid \"Portfolio for this course\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/course-info.php:24 msgid \"Updated:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/course-info.php:42 msgid \"By Instructor:\" msgid_plural \"By Instructors:\" msgstr[0] \"\" msgstr[1] \"\" #: framework-customizations/extensions/portfolio/views/course-info.php:46 msgid \"Course Rating:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/course-info.php:61 msgid \"Learners:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/course-info.php:61 #, php-format msgid \"%d Student\" msgid_plural \"%d Students\" msgstr[0] \"\" msgstr[1] \"\" #: framework-customizations/extensions/portfolio/views/meta-info.php:77 msgid \"Portfolio By:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/meta-info.php:80 #: includes/helpers.php:289 msgid \"Categories:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/meta-info.php:83 msgid \"Last Updated:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/meta-info.php:86 msgid \"Skills:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/meta-info.php:89 msgid \"Languages:\" msgstr \"\" #: framework-customizations/extensions/portfolio/views/related-item.php:9 msgid \"Related Courses\" msgstr \"\" #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:4 msgid \"-All pages-\" msgstr \"\" #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:33 msgid \"Project Category ID\" msgstr \"\" #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:35 msgid \"Enter categories ID of project(Ex 1,2,3)\" msgstr \"\" #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:39 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:18 msgid \"Image Type\" msgstr \"\" #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:48 #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:106 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:101 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:111 msgid \"Button Content\" msgstr \"\" #: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:52 msgid \"Button Link (Custom)\" msgstr \"\" #: framework-customizations/extensions/posts/posts/post-01/views/view.php:27 #: framework-customizations/extensions/posts/posts/post-02/views/view.php:25 #: framework-customizations/extensions/posts/posts/post-03/views/view.php:27 #: framework-customizations/extensions/posts/posts/post-04/views/view.php:25 #: framework-customizations/extensions/posts/posts/post-05/views/view.php:22 #, php-format msgid \"Continue reading %s\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:12 msgid \"SLZ About Me\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:13 msgid \"Show about me block\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:22 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:8 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:6 #: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:6 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:5 msgid \"Pune\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:28 msgid \"Social URL (Link)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:30 msgid \"Add link to social network.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:39 msgid \"Choose style for layout India.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:49 msgid \"Enter block title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:62 msgid \"Enter your name.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:66 msgid \"Web Url\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:69 msgid \"Enter your web site.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:76 msgid \"Add custom button link.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:84 msgid \"Position\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:86 msgid \"Enter your position.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:90 msgid \"Short Information\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:92 msgid \"Enter your short information.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:96 msgid \"Avatar\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:98 msgid \"Upload your avatar (100x100px).\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:104 msgid \"Introduce yourself.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:108 msgid \"Social Profile\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:116 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:203 msgid \"Add extra class to block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:8 msgid \"SLZ Accordion\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:9 msgid \"Accordion of info list\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:8 msgid \"Georia\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:20 msgid \"Please choose style to show\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:13 msgid \"Plus Icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:14 msgid \"Arrow Icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:15 msgid \"Custom Icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:19 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:18 msgid \"Small Spacing\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:19 msgid \"Large Spacing\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:21 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:33 msgid \"No Spacing\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:43 msgid \"Please choose layout to show\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:53 msgid \"Style Icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:58 msgid \"Please choose style icon to show\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:68 msgid \"It is used for aligning the inner content of accordion item\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:72 msgid \"Position of Dropdown Icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:76 msgid \"Please choose postion of dropdown icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:95 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:33 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:82 msgid \"Title. If it blank the block will not have a title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:99 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:44 msgid \"Content\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:102 msgid \"Description. If it blank the block will not have a title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:109 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:104 msgid \"Enter button content.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:113 msgid \"Link Button\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:116 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:111 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:64 msgid \"Add custom link.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:125 msgid \"Accordion Lists\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:144 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:86 msgid \"Content Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:147 msgid \"Choose a custom content text color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:152 msgid \"Content Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:155 msgid \"Choose a custom content background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:160 msgid \"Panel Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:163 msgid \"Choose a custom panel background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:168 msgid \"Panel Active Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:171 msgid \"Choose a custom panel active background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:179 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:34 msgid \"Choose a custom icon color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:184 msgid \"Icon Color Active\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:187 msgid \"Choose a custom icon color active.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:192 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:213 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:131 msgid \"Icon Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:195 msgid \"Choose a custom icon background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:200 msgid \"Icon Background Color Active\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:203 msgid \"Choose a custom icon background color active.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/accordion/views/view.php:32 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/views/view.php:41 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/views/view.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/views/view.php:125 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/views/view.php:34 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/views/view.php:21 #: framework-customizations/extensions/teams/shortcodes/team-block/views/view.php:6 msgid \"Please Active Visual Composer\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:10 msgid \"SLZ Button\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:17 msgid \"Large Size\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:18 msgid \"Small Size\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:24 msgid \" Button Alignment\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:28 msgid \"Choose alignment of button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:35 msgid \"Button Layout\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:39 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:53 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:25 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:24 msgid \"Choose layout to show.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:50 msgid \"Enter text on button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:54 msgid \"Button size\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:57 msgid \"Select size of button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:65 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:122 msgid \"Border Radius\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:68 msgid \"Add rounded corners. Unit is px ( ex:50 ).\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:76 msgid \"Button Has Shadow?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:78 msgid \"Add a shadow to button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:83 msgid \"Disable button?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:85 msgid \"Make button disabled.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:97 msgid \"Enter the desination URL.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:101 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:126 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:119 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:287 msgid \"Button Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:113 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:135 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:126 msgid \"Button Background Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:116 msgid \"Set the background color of button when mouse over.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:125 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:144 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:105 msgid \"Button Text Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:128 msgid \"Set color of button text.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:137 #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:153 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:112 msgid \"Button Text Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:140 msgid \"Set color of button text when mouse over.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:149 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:133 msgid \"Button Border Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:152 msgid \"Set color of button border.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:161 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:140 msgid \"Button Border Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:164 msgid \"Set color of button border when mouse over.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:182 msgid \"Icon Position\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:190 msgid \"Select the display position of icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:194 msgid \"Icon Box Shadow?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:200 msgid \"Add a shadow to icon of button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:207 msgid \"Set color of icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:219 msgid \"Set color of icon when mouse over.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:228 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:122 #: framework-customizations/theme/options/page-header-settings.php:61 #: framework-customizations/theme/options/page-options.php:107 msgid \"Upload Image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:234 msgid \"Upload one image to make background for button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:241 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:237 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:104 msgid \"Add extra class to button\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:248 msgid \"Add New Button\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/config.php:10 msgid \"SLZ Contact Form 7\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/config.php:11 msgid \"Create an block contain contact form 7\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:5 msgid \"-None-\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:18 msgid \"Heading Text\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:21 msgid \"Add heading text to contact form.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:25 msgid \"Height Textarea\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:28 msgid \"Add height textarea for contact form(Unit is px)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:37 msgid \"Choose Contact Form\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:40 msgid \"Choose contact form to display.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:44 msgid \"Box Shadow?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:46 msgid \"Add a box-shadow to contact form\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:53 msgid \"Add padding top for contact form(Unit is px)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:61 msgid \"Add padding bottom for contact form(Unit is px)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:66 msgid \"Padding Right\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:69 msgid \"Add padding right for contact form(Unit is px)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:74 msgid \"Padding Left\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:77 msgid \"Add padding left for contact form(Unit is px)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:84 msgid \"Upload an background image for contact form.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:90 msgid \"Choose background color for contact form.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:94 msgid \"Heading Icon Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:97 msgid \"Choose a custom heading icon background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:102 msgid \"Heading Icon Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:105 msgid \"Choose a custom heading icon color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:110 msgid \"Heading Text Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:113 msgid \"Choose a custom heading text background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:118 msgid \"Heading Text Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:121 msgid \"Choose a custom heading text color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:129 msgid \"Choose a custom background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:138 msgid \"Choose a custom background color hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:147 msgid \"Choose a custom color for button text.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:156 msgid \"Choose a custom color hover for button text.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:165 msgid \"Add extra class to image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:8 msgid \"SLZ Contact\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:9 msgid \"Contact information\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:18 #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:18 msgid \"Choose style for this shortcode.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:36 msgid \"Title for this block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:23 msgid \"Display title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:70 msgid \"Enter number of column contact display on row.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:46 msgid \"Content for this block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:56 msgid \"Add Contact Block\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:81 msgid \"Select color for background.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:89 msgid \"Select color for contact content.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:97 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:96 msgid \"Select color for title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:105 msgid \"Select color for title when mouse hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:113 msgid \"Select color for icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:121 msgid \"Select color for icon when mouse enter.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:130 msgid \"Add extra class for block\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:5 msgid \"SLZ Content Carousel\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:6 msgid \"Show the content block as slider on your page.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:7 msgid \"Contents\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:8 msgid \"Add new content block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:15 msgid \"Title of content.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:22 msgid \"Description of content.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:84 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:96 #: framework-customizations/theme/options/advertisement-settings.php:36 #: framework-customizations/theme/options/page-header-settings.php:70 #: framework-customizations/theme/options/page-options.php:116 msgid \"Image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:29 msgid \"Image of content.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:36 msgid \"Button of content.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:54 msgid \"Enter number of items to show. Default: 1.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:63 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:71 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:79 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:87 #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:94 msgid \"Slider Custom\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:92 msgid \"Slider Speed\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:93 msgid \"Enter number value. Unit is millisecond. Default: 600.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:120 msgid \"Choose a custom description text color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/config.php:10 msgid \"SLZ Count Down\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/config.php:11 msgid \"Add Count Down with custom option.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:23 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:47 msgid \"Choose style to be displayed.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:27 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:242 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:61 msgid \"Block Align\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:30 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:245 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:64 msgid \"It is used for aligning the inner content of blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:34 msgid \"Time Finish\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:36 msgid \"Enter finish time.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:40 msgid \"Items Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:43 msgid \"Choose background color for items.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:44 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:52 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:60 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:68 #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:82 msgid \"Customs CSS\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:48 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:85 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:199 msgid \"Number Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:51 msgid \"Choose color for number.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:59 msgid \"Choose color for text under number.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:64 msgid \"Colon Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:67 msgid \"Choose color for colon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:74 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:77 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:132 msgid \"Enter extra class name.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:78 msgid \"Animation Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:81 msgid \"Choose color for Animation.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:10 msgid \"SLZ Counter\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:11 msgid \"Create counter block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:13 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:68 msgid \"Image Upload\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:18 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:27 msgid \"None\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:40 msgid \"Georgia 1\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:41 msgid \"Georgia 2\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:63 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:38 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:29 msgid \"Title. If it blank the will not have a title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:68 msgid \"Number\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:70 msgid \"Title. If it blank the will not have a number\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:76 msgid \"Choose custom color for background item.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:87 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:201 msgid \"Choose custom color for number.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:96 msgid \"Number Prefix\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:98 msgid \"Add prefix for number\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:102 msgid \"Number Suffix\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:104 msgid \"Add suffix for number\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:108 msgid \"Choose Type of Icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:111 msgid \"Choose style to display block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:128 msgid \"Upload Image.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:135 #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:146 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:71 msgid \"Styles\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:161 msgid \"Choose number of columns to show\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:165 msgid \"Block Alignment\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:172 msgid \"Counter Items\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:175 msgid \"List of counter items\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:179 msgid \"Number Animation?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:185 msgid \"Show Number Line?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:187 msgid \"Show line under number\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:194 msgid \"Choose custom color for title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:208 msgid \"Choose custom color for icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:215 msgid \"Choose custom background color for icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:220 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:133 msgid \"Line Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:222 msgid \"Choose line custom color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:10 msgid \"SLZ Icons Block\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:11 msgid \"Icons Block of info\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:6 msgid \"Newyork\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:17 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:10 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:8 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:32 #: framework-customizations/theme/options/post-settings.php:322 msgid \"Normal\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:12 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:11 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:9 msgid \"Alternate\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:15 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:18 msgid \"Select style for blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:32 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:31 msgid \"Choose background color for icon of blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:38 msgid \"Icon Background Color (hover)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:45 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:44 msgid \"Choose background color for icon when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:51 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:50 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:140 msgid \"Icon Border Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:58 msgid \"Choose border color for icon of blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:65 msgid \"Icon Border Color (hover)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:71 msgid \"Choose border color for icon when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:82 msgid \"It is used for Layout United States - Style Large Spacing\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:87 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:246 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:262 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:270 #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:277 msgid \"Options\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:7 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:6 msgid \"Jaipur\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:8 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:7 msgid \"Noida\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:9 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:8 msgid \"New Delhi\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:10 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:9 msgid \"Bengaluru\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:37 msgid \"Icon Background Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:63 msgid \"Icon Border Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:4 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:3 msgid \"Milan\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:5 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:4 msgid \"Rome\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:10 msgid \"0.5 s\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:11 msgid \"1 s\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:12 msgid \"1.5 s\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:13 msgid \"2 s\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:20 msgid \"No Spacing 01\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:21 msgid \"No Spacing 02\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:33 msgid \"Underline\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:64 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:17 msgid \"Icon Type\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:70 msgid \"Choose type of icon of block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:90 msgid \"You can use image instead of icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:97 msgid \"Title. If it blank the block will not have a title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:127 msgid \"Description. If it blank the block will not have a description.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:134 msgid \"Choose background color for icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:143 msgid \"Choose border color for icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:156 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:116 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:40 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:35 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:30 msgid \"Block Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:159 msgid \"Choose background color for blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:164 msgid \"Block Background Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:167 msgid \"Choose background color for blocks when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:172 msgid \"Block Background Image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:175 msgid \"Choose background image for blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:179 msgid \"Block Background Image Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:182 msgid \"Choose background image for blocks when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:189 msgid \"Add Block Icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:212 msgid \"Blocks Animation\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:216 msgid \"Add animation for blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:220 msgid \"Animation Delay Time\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:224 msgid \"Choose delay time for animation.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:233 #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:94 msgid \"Select number of single block elements per row.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:254 msgid \"Spacing Style\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:257 msgid \"Choose style for spacing bettween blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:266 msgid \"Title Line?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:269 msgid \"Show/Hide line of title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:274 msgid \"Icon Size\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:276 msgid \"Enter icon size (unit is px).\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:286 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:108 msgid \"Block Border Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:289 msgid \"Choose border color for blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:299 msgid \"Block Border Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:302 msgid \"Choose border color for blocks when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:316 msgid \"Choose color for icon of blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:325 msgid \"Choose color for icon of blocks when you mouse over it .\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:333 msgid \"Choose color for title of blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:339 msgid \"Title Line Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:343 msgid \"Choose color for title line of blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:355 msgid \"Choose color for description of blocks.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/config.php:10 msgid \"SLZ Item List\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/config.php:11 msgid \"list of text info\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:38 msgid \"Text Info\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:42 msgid \"Please input text to show.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:46 msgid \"Text Description\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:50 msgid \"Please input text description to show.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:57 msgid \"Choose a custom text color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:78 msgid \"Show Number\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:85 msgid \"Choose to show number replace for icon\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:98 msgid \"Add New Item\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:107 msgid \"Set color for all item.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:118 msgid \"Margin Top\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:121 msgid \"\" \"Please input margin top between items. Exp: If want to margin 8px then input \" \"8\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:125 msgid \"Margin Bottom\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:128 msgid \"\" \"Please input margin bottom between items. Exp: If want to margin 8px then \" \"input 8\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:12 msgid \"No Line\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:13 msgid \"Has Line\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:39 msgid \"Title. If it blank will not have a title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:43 msgid \"Extra Title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:46 msgid \"Extra Title . If it blank will not have a extra title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:50 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:193 #: framework-customizations/theme/options/page-404-settings.php:63 msgid \"Sub Title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:53 msgid \"Subtitle . If it blank will not have a subtitle.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:57 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:97 #: framework-customizations/extensions/widgets/widgets/button/options.php:28 msgid \"Align\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:61 msgid \"Block alignment.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:65 msgid \"Show Line?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:68 msgid \"Show/Hide line for this shortcode.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:83 msgid \"Show Icon or Image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:86 msgid \"Display None\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:90 msgid \"Show Icon or Show Image.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:91 #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:103 msgid \"Icon Settings\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:98 msgid \"Upload your image.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:115 msgid \"CSS box\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:117 msgid \"Design Options\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:136 msgid \"Choose color for line.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:145 #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:203 msgid \"Sub Title Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:148 msgid \"Choose color for sub title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:153 msgid \"Extra Title Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:156 msgid \"Choose color for extra title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:168 msgid \"Choose color for icon.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:181 msgid \"Add extra class to button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:15 msgid \"SLZ Map\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:16 msgid \"Map data from google map\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:8 msgid \"Enter title for this session.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:15 msgid \"Contact Information\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:22 msgid \"Address\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:24 msgid \"Enter Address.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:28 msgid \"Add New Information\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:44 msgid \"Add New Place\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:50 msgid \"Show Block Information?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:52 msgid \"Show/Hide block information next to map.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:56 msgid \"Contact Form ID\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:59 msgid \"Add shortcode id of contact form 7 plugin\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:63 msgid \"Map Height\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:66 msgid \"Unit is px (ex:200)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:77 msgid \"Map Marker Image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:80 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:88 msgid \"Map Setting\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:84 msgid \"Zoom\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:87 msgid \"\" \"Enter zoom number of map. Number between 0 (farthest) and 22 that sets the \" \"zoom level of the map.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:95 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:103 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:111 #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:119 msgid \"Custom Css\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:100 msgid \"Information Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:104 msgid \"Select color for contact information.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:112 msgid \"Select color for horizontal separator betwen items.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:120 msgid \"Select background color for block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:11 msgid \"SLZ Newsletter\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:12 msgid \"Extend from plugin newsletter\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:25 msgid \"Please input title if want to show.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:32 msgid \"Please input descripton if want to show.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:36 msgid \"Show Input Name?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:39 msgid \"Choose if want to show input name.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:47 msgid \"Name Input Place Holder\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:50 #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:61 msgid \"Enter place holder for input\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:58 msgid \"Email Input Place Holder\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:65 msgid \"Text Button Submit\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:68 msgid \"Enter text for button submit.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:93 msgid \"Choose color for description.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:98 msgid \"Input Text Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:100 msgid \"Choose color for input text.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:107 msgid \"Choose color for button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:114 msgid \"Choose color for button when hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:121 msgid \"Choose background color for button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:128 msgid \"Choose background color for button when hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:135 msgid \"Choose border color for button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:142 msgid \"Choose border color for button when hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:9 msgid \"SLZ Partner\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:10 msgid \"List of partner\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:8 msgid \"Six\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:9 msgid \"Seven\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:10 msgid \"Eight\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:44 msgid \"Choose slide for shortcode.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:60 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:86 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:99 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:111 msgid \"Carousel Custom\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:120 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:402 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:314 msgid \"Slide Arrow Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:123 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:405 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:317 msgid \"Choose color slide arrow for slide.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:128 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:140 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:152 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:164 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:176 #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:188 msgid \"Color Custom\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:132 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:326 msgid \"Slide Arrow Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:135 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:417 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:329 msgid \"Choose color slide arrow for slide when hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:144 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:426 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:338 msgid \"Slide Arrow Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:147 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:429 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:341 msgid \"Choose background color slide arrow for slide.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:156 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:350 msgid \"Slide Arrow Background Color Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:159 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:441 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:353 msgid \"Choose background color slide arrow for slide when hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:168 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:450 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:362 msgid \"Slide Dots Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:171 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:453 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:365 msgid \"Choose color slide dots for slide.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:180 msgid \"Slide Dots Color Active\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:183 msgid \"Choose color slide dots for slide when active, hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:221 msgid \"Is Padding ?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:225 msgid \"Choose YES to block is padding.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:229 msgid \"List of Partner\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:234 msgid \"Item Title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:237 msgid \"Enter title of block\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:241 msgid \"Item Image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:243 msgid \"Upload Image. Recommend uploading the pictures the same size.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:247 msgid \"Item Link\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:250 msgid \"Enter link of item.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:10 msgid \"SLZ Posts Block\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:11 msgid \"Show posts with layouts\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:45 msgid \"Portsmouth\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:46 msgid \"Chester\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:47 msgid \"Huddersfield\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:48 msgid \"Bath\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:52 msgid \"Cascina\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:11 msgid \"Choose main layout to show\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:34 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:60 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:21 msgid \"Main Layout\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:20 msgid \"Choose if want to show category\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:112 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:68 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:80 msgid \"Show Top Post Info?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:33 msgid \"Choose if want to show top post info\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:42 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:125 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:16 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:91 msgid \"Show Bottom Post Info?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:46 msgid \"Choose if want to show bottom post info\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:55 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:7 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:42 msgid \"Show Excerpt?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:51 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:46 msgid \"Choose if want to show excerpt\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:72 msgid \"Choose if want to show read more button\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:85 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:11 msgid \"Choose list layout to show\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:86 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:95 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:104 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:117 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:130 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:143 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:156 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:30 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:39 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:52 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:12 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:21 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:34 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:47 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:60 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:73 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:85 msgid \"List Layout\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:94 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:20 msgid \"Choose number of column.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:103 msgid \"Choose if want to show category.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:116 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:72 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:87 msgid \"Choose if want to show top post info.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:129 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:20 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:98 msgid \"Choose if want to show bottom post info.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:142 #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:38 msgid \"Choose if want to show feature image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:155 msgid \"Choose if want to show read more button.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:29 msgid \"Show Left and Right layout?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:33 msgid \"Choose if want to show left and right layout\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:81 msgid \"Show User Info?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:84 msgid \"Choose if want to show user info.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:15 msgid \"Arrow Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:18 msgid \"Choose a custom arrow color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:27 msgid \"Arrow Hover Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:30 msgid \"Choose a custom arrow hover color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:26 msgid \"Author Post Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:29 msgid \"Choose a author post color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:34 msgid \"Title Post Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:37 msgid \"Choose a title post color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:58 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:134 msgid \"Number Posts\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:61 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:137 msgid \"\" \"The number of posts to display. If it blank the number posts will be the \" \"number from Settings -> Reading\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:65 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:141 msgid \"Offset Posts\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:68 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:144 msgid \"\" \"Enter offset to display. If you want to start on record 6, using offset 5\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:75 #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:151 msgid \"Choose criteria to display.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:82 msgid \"Enter number of excerpt length\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:93 msgid \"Enter text for button \\\"read more\\\"\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:10 msgid \"SLZ Posts Carousel\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:11 msgid \"Block Carousel of posts\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:12 msgid \"Choose a layout to show.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:19 msgid \"One Column\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:20 msgid \"Two Column\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:21 msgid \"Three Column\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:22 msgid \"Four Column\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:25 msgid \"Choose a column for display block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:69 msgid \"Show Excerpt\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:76 msgid \"Show or hide post excerpt\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:105 msgid \"Input number of excerpt length.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:113 msgid \"Show Readmore Button\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:120 msgid \"Show or hide readmore button\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:126 msgid \"Add custom link for readmore buttonaa.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:168 msgid \"Fade\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:217 msgid \"Animation?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:220 msgid \"Choose a animation\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/large_module.php:18 msgid \"Read more\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:10 msgid \"SLZ Pricing Box\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:11 msgid \"Box of pricing info\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:12 msgid \"Select style for pricing box\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:39 msgid \"Number of Pricing Box\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:44 msgid \"Choose number of pricing box to display\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:58 #, php-format msgid \"Pricing Box %s\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:70 msgid \"Active?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:74 msgid \"Choose yes if you want it show as active.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:80 msgid \"Pricing Header Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:82 msgid \"Choose background color for header of pricing box.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:89 msgid \"Mark Label\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:92 msgid \"Please input mark label.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:100 msgid \"Choose label text color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:107 #: framework-customizations/theme/options/post-settings.php:363 msgid \"Label Background Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:109 msgid \"Choose label background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:119 msgid \"Please input box title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:128 msgid \"Choose title color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:138 msgid \"Please input price number.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:145 msgid \"Old Price\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:148 msgid \"Please input Old price number.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:155 msgid \"Price Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:157 msgid \"Choose price color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:167 msgid \"Enter measurement units. Example: $, GBP, EUR, etc.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:177 msgid \"Please input price subfix. Exp: Month, Hour,..\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:184 msgid \"Price Subfix Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:186 msgid \"Choose price subfix color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:196 msgid \"Please input sub title.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:205 msgid \"Choose sub title color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:212 msgid \"Features\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:217 msgid \"Feature Item\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:221 msgid \"Please input feature item.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:225 msgid \"Feature Item Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:227 msgid \"Choose feature item color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:242 msgid \"Choose icon feature item color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:254 msgid \"Please input button text.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:263 msgid \"Choose button link and info.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:271 msgid \"Choose button text color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:278 msgid \"Button Color (hover)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:280 msgid \"Choose button text color when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:289 msgid \"Choose button background color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:296 msgid \"Button Background Color (hover)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:298 msgid \"Choose button background color when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:305 msgid \"Background Color (hover)\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:307 msgid \"Choose background color when you mouse over it.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:315 msgid \"Background Image Hover\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:316 msgid \"Upload pricing box background image hover.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:9 msgid \"Conneticut\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:24 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:73 msgid \"List of Progress Bar\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:37 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:86 msgid \"Number show\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:41 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:90 msgid \"\" \"Please input percent of progress bar, Exp: if you want to show 80, please \" \"input 80, maximum number is 100\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:45 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:94 msgid \"Progress Bar Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:48 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:97 msgid \"Choose a custom progress bar color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:59 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:108 msgid \"Percent Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:62 #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:111 msgid \"Choose a custom percent text color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:115 msgid \"Marker Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:118 msgid \"Choose a custom marker color.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:8 msgid \"SLZ Timeline\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:9 msgid \"Timeline of events\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:13 msgid \"Choose style for shortcode\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:17 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:8 msgid \"Add info to timeline\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:23 msgid \"Timeline\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:25 msgid \"Timeline. If it blank the will not have timeline\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:29 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:20 msgid \"Timeline Color\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:31 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:22 msgid \"Choose a custom color for timeline.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:42 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:33 msgid \"Url\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:45 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:36 msgid \"Please input link to timeline.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:57 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:48 msgid \"Description. If it blank the will not have a description\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:63 #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:54 msgid \"Choose a custom color for description.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:72 msgid \"Milestone Point\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:74 msgid \"Choose a custom color for milestone point.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:79 msgid \"Timeline Line\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:81 msgid \"Choose a custom color for timeline line.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:14 msgid \"Year\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:16 msgid \"Year of timeline. If it blank will not have timeline.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:10 msgid \"SLZ Video Carousel\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:11 msgid \"Show list of video as carousel\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:26 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:6 #: framework-customizations/theme/options/posts/post.php:104 msgid \"Youtube\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:27 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:7 #: framework-customizations/theme/options/posts/post.php:108 msgid \"Vimeo\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:11 #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:59 msgid \"Choose style to display.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:21 msgid \"Add Title for shortcode Video Carousel\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:36 msgid \"Add Video\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:41 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:33 msgid \"Video Title\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:44 msgid \"Add title for video\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:48 msgid \"Video Description\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:51 msgid \"Add description for video\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:55 msgid \"Type Of Video\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:63 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:56 #: framework-customizations/theme/options/posts/post.php:125 msgid \"Youtube ID\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:66 #: framework-customizations/theme/options/posts/post.php:126 msgid \"\" \"Example the Video ID for http://www.youtube.com/v/8OBfr46Y0cQ is 8OBfr46Y0cQ\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:74 #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:69 #: framework-customizations/theme/options/posts/post.php:117 msgid \"Vimeo ID\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:77 #: framework-customizations/theme/options/posts/post.php:118 msgid \"Example the Video ID for http://vimeo.com/86323053 is 86323053\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:93 msgid \"Set navigation slide to show.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:6 msgid \"SLZ Video\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:7 msgid \"Create video block.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:36 msgid \"Set title for video.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:43 msgid \"Description for this video.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:48 msgid \"Video Type\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:51 msgid \"Choose Type of Video.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:59 msgid \"\" \"Example: the Video ID for https://www.youtube.com/watch?v=PDWvcsTloJo is \" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:72 msgid \"Example: the Video ID for https://vimeo.com/162913890 is \" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:81 msgid \"Add Video Background Image\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:84 msgid \"Choose background image to add.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:89 msgid \"Video height\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:92 msgid \"\" \"Set height for video. Example: 75% - means video height by 75% video width.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:101 msgid \"Choose align for video box\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:106 msgid \"Is Popup?\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:109 msgid \"Choose to show video as popup.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:114 msgid \"Play Text\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:117 msgid \"Enter play text for video.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:125 msgid \"Set border radius for video.\" msgstr \"\" #: framework-customizations/extensions/shortcodes/shortcodes/video/views/layout-1.php:148 #: framework-customizations/extensions/shortcodes/shortcodes/video/views/layout-2.php:153 msgid \"Video not found.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/config.php:8 msgid \"SLZ Teams Block\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/config.php:9 msgid \"List of teams\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:27 #: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:25 msgid \"It is used for ...\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:9 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:16 #: framework-customizations/theme/config.php:537 msgid \"Team\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:17 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:27 msgid \"-All Team-\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:21 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:31 msgid \"-All Team Categories-\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:59 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:57 msgid \"Choose team category or special teams to display\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:77 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:75 msgid \"Choose Team Category.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:86 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:84 #: framework-customizations/theme/options/template-settings.php:301 msgid \"Teams\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:92 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:90 msgid \"Add Team\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:95 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:93 msgid \"Choose special team to show\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:99 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:97 msgid \"\" \"Default display All Team if no team is selected and Number team is empty.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:114 msgid \"Enter content to display button.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:119 msgid \"Show Thumbnail\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:123 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:113 msgid \"If choose Yes, block will be show thumbnail image.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:128 msgid \"Show Position\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:132 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:121 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:84 msgid \"If choose Yes, block will be show position.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:137 msgid \"Show Contact Info\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:141 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:129 msgid \"If choose Yes, block will show contact info.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:146 msgid \"Show Social\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:150 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:137 msgid \"If choose Yes, block will be show social.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:159 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:145 msgid \"If choose Yes, block will be show description.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:166 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:151 msgid \"Limit words to display.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:181 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:197 msgid \"Choose color title for block.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:182 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:190 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:198 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:206 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:214 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:222 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:230 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:238 msgid \"Color Options\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:189 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:205 msgid \"Choose color title for block when hover.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:194 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:210 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:213 msgid \"Position Color\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:197 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:213 msgid \"Choose color position for block.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:202 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:218 msgid \"Info Color\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:205 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:221 msgid \"Choose color for contact info.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:210 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:226 msgid \"Info Hover Color\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:213 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:229 msgid \"Choose hover color for contact info.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:221 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:237 msgid \"Choose color description for block.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:229 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:245 msgid \"Choose color social for block.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:237 #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:253 msgid \"Choose color social for block when hover.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:282 msgid \"Show Pagination ?\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:286 msgid \"If choose Yes, block will be show pagination.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:290 msgid \"Max Posts\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:293 msgid \"Add total posts when paging.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:304 msgid \"Select order to display list of teams.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:317 msgid \"Show Slider\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:321 msgid \"If choose Yes, block will be display with slider style.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:322 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:334 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:347 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:360 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:373 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:386 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:398 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:410 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:422 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:434 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:446 #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:458 msgid \"Slide Options\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:351 msgid \"Show Dots Navigation\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:364 msgid \"Show Arrows Navigation\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:414 msgid \"Slide Arrow Hover Color\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:438 msgid \"Slide Arrow Background Hover Color\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:8 msgid \"SLZ Team Carousel\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:9 msgid \"List of teams in carousel\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:34 msgid \"Germany\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:20 msgid \"1\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:21 msgid \"2\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:109 msgid \"Show Thumbnail ?\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:117 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:80 msgid \"Show Position ?\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:125 msgid \"Show Contact Info ?\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:133 msgid \"Show Social ?\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:141 msgid \"Show Description ?\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:183 msgid \"Enter text to button. If it blank will not have a button.\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:250 msgid \"Social Color Hover\" msgstr \"\" #: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:265 msgid \"Choose number of items to show.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:10 msgid \"SLZ Testimonial\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:11 msgid \"Slider of testimonials\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:25 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:31 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:26 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:25 msgid \"Using featured image in post as background image.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:36 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:48 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:42 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:37 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:32 msgid \"Please choose background color for block\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:54 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:49 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:40 msgid \"Please choose border color for block\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:4 msgid \"Ankara\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:5 msgid \"Bilecik\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:6 msgid \"Bolu\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:16 msgid \"Testimonial\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:25 msgid \"Show Feature Image\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:26 msgid \"Show Thumbnail Image\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:31 msgid \"-All Testimonial-\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:35 msgid \"-All Testimonial Categories-\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:72 msgid \"Show Icon Quote ?\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:76 msgid \"If choose Yes, block will be show icon quote.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:88 msgid \"Show Ratings?\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:92 msgid \"If choose Yes, block will be show ratings.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:96 msgid \"Avatar Image\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:100 msgid \"Select image type for Avatar.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:139 msgid \"Choose testimonial category or special testimonials to display.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:157 msgid \"Choose Testimonial Category.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:166 msgid \"Testimonials\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:172 msgid \"Add Testimonial\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:175 msgid \"Choose special testimonial to show\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:180 msgid \"Default display all testimonials.\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:193 msgid \"Quote Color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:195 msgid \"Please choose quote color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:207 msgid \"Please choose title color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:215 msgid \"Please choose position color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:223 msgid \"Please choose description color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:236 msgid \"Please choose dots color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:248 msgid \"Please choose arrows color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:260 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:272 #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:285 msgid \"Please choose arrows background color\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:295 msgid \"Slides To Show\" msgstr \"\" #: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:298 msgid \"\" \"Please input number of item show in slider. Except for Layout India Style \" \"Pune.\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/button/config.php:7 msgid \"slz_btn\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/button/config.php:8 msgid \"SLZ: Button\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/button/config.php:9 msgid \"Add button.\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/button/options.php:12 msgid \"Choose layout.\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/button/options.php:19 msgid \"Enter button text\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/button/options.php:24 msgid \"Enter button link\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/button/options.php:29 msgid \"Choose align button.\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:25 msgid \"Style 1\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:26 msgid \"Style 2\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:27 msgid \"Style 3\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:28 msgid \"Style 4\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:40 msgid \"Category:\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/category/views/admin.php:46 msgid \"Choose category to show\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/partner/config.php:7 msgid \"slz_partner\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/partner/config.php:8 msgid \"SLZ: Partner\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/partner/config.php:9 msgid \"Add Partner.\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/partner/options.php:12 msgid \"Choose style.\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/partner/options.php:22 msgid \"Upload Images\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:8 msgid \"slz_recent_post\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:9 msgid \"SLZ: Recent Post\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:10 msgid \"A recent posts list\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:14 msgid \"Display Thumbnail\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:15 msgid \"Display Post Date\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:16 msgid \"Display Author\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:17 msgid \"Display View\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/config.php:18 msgid \"Display Comment\" msgstr \"\" #: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:12 msgid \"Number Post\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:19 #: includes/class-tgm-plugin-activation.php:2697 #, php-format msgid \"Install %2$s\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:19 #: includes/class-tgm-plugin-activation.php:2811 msgid \"Install\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:43 #: includes/class-tgm-plugin-activation.php:2708 #, php-format msgid \"Activate %2$s\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:43 #: includes/class-tgm-plugin-activation.php:2820 msgid \"Activate\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:62 #: includes/class-tgm-plugin-activation.php:2702 #, php-format msgid \"Update %2$s\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:62 #: includes/class-tgm-plugin-activation.php:2817 msgid \"Update\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:85 #, php-format msgid \"Deactivate %2$s\" msgstr \"\" #: framework-customizations/theme/class-welcome.php:85 msgid \"Deactivate\" msgstr \"\" #: framework-customizations/theme/config.php:47 msgid \"d\" msgstr \"\" #: framework-customizations/theme/config.php:48 msgid \"M\" msgstr \"\" #: framework-customizations/theme/config.php:49 msgid \"Y\" msgstr \"\" #: framework-customizations/theme/config.php:526 msgid \"Portfolio Settings\" msgstr \"\" #: framework-customizations/theme/config.php:527 msgid \"Team Settings\" msgstr \"\" #: framework-customizations/theme/config.php:528 msgid \"Service Settings\" msgstr \"\" #: framework-customizations/theme/config.php:529 msgid \"Recruitment Settings\" msgstr \"\" #: framework-customizations/theme/config.php:530 msgid \"Cause Settings\" msgstr \"\" #: framework-customizations/theme/config.php:531 msgid \"Event Settings\" msgstr \"\" #: framework-customizations/theme/config.php:532 msgid \"FAQ Settings\" msgstr \"\" #: framework-customizations/theme/config.php:533 msgid \"Product Settings\" msgstr \"\" #: framework-customizations/theme/config.php:538 msgid \"Service\" msgstr \"\" #: framework-customizations/theme/config.php:539 msgid \"Recruitment\" msgstr \"\" #: framework-customizations/theme/config.php:540 msgid \"Cause\" msgstr \"\" #: framework-customizations/theme/config.php:542 #: framework-customizations/theme/options/template-settings.php:505 msgid \"FAQ\" msgstr \"\" #: framework-customizations/theme/config.php:543 msgid \"Product\" msgstr \"\" #: framework-customizations/theme/config.php:549 msgid \"Font EduChain\" msgstr \"\" #: framework-customizations/theme/config.php:556 msgid \"Font Ionicons\" msgstr \"\" #: framework-customizations/theme/config.php:607 msgid \"Main Color\" msgstr \"\" #: framework-customizations/theme/config.php:607 msgid \"Select the main color\" msgstr \"\" #: framework-customizations/theme/config.php:608 msgid \"Gradient Color\" msgstr \"\" #: framework-customizations/theme/config.php:608 msgid \"Select the gradient color\" msgstr \"\" #: framework-customizations/theme/manifest.php:80 msgid \"EduChain\" msgstr \"\" #: framework-customizations/theme/manifest.php:85 msgid \"A basic start that fits all general requirements for almost courses.\" msgstr \"\" #: framework-customizations/theme/manifest.php:107 msgid \"Market Place\" msgstr \"\" #: framework-customizations/theme/manifest.php:112 msgid \"You can create successful market place like udemy, coursera, lynda ...\" msgstr \"\" #: framework-customizations/theme/manifest.php:134 msgid \"Less Courses\" msgstr \"\" #: framework-customizations/theme/manifest.php:139 msgid \"\" \"Market place Less Course Suitable for small market place, or lecturers with \" \"specialized courses.\" msgstr \"\" #: framework-customizations/theme/manifest.php:161 msgid \"Affiliate\" msgstr \"\" #: framework-customizations/theme/manifest.php:166 msgid \"\" \"Use the impressive interface of EduChain to easily attract students' \" \"attention to click to link of a market place course.\" msgstr \"\" #: framework-customizations/theme/manifest.php:191 msgid \"WPBakery Visual Composer\" msgstr \"\" #: framework-customizations/theme/manifest.php:198 msgid \"\" \"Drag and drop page builder for WordPress. Take full control over your \" \"WordPress site, build any layout you can imagine - no programming knowledge \" \"required.\" msgstr \"\" #: framework-customizations/theme/manifest.php:201 msgid \"Solazu Unyson\" msgstr \"\" #: framework-customizations/theme/manifest.php:208 msgid \"\" \"A free drag & drop framework that comes with a bunch of built in extensions \" \"that will help you develop premium themes fast & easy.\" msgstr \"\" #: framework-customizations/theme/manifest.php:218 msgid \"\" \"This is a short description of what the plugin does. It's displayed in the \" \"WordPress admin area.\" msgstr \"\" #: framework-customizations/theme/manifest.php:221 msgid \"Lema Subscription\" msgstr \"\" #: framework-customizations/theme/manifest.php:228 #: framework-customizations/theme/manifest.php:238 msgid \"One plugin of Learn Master.\" msgstr \"\" #: framework-customizations/theme/manifest.php:231 msgid \"Lema Affiliate\" msgstr \"\" #: framework-customizations/theme/manifest.php:241 #: framework-customizations/theme/options/posts/page.php:168 msgid \"Revolution Slider\" msgstr \"\" #: framework-customizations/theme/manifest.php:248 msgid \"Slider Revolution - Premium responsive slider\" msgstr \"\" #: framework-customizations/theme/manifest.php:251 msgid \"Newsletter\" msgstr \"\" #: framework-customizations/theme/manifest.php:257 msgid \"\" \"Newsletter is a cool plugin to create your own subscriber list, to send \" \"newsletters, to build your business.\" msgstr \"\" #: framework-customizations/theme/manifest.php:260 msgid \"Contact Form 7\" msgstr \"\" #: framework-customizations/theme/manifest.php:266 msgid \"Just another contact form plugin. Simple but flexible.\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:7 #: framework-customizations/theme/options/advertisement-settings.php:11 #: framework-customizations/theme/options/advertisement-settings.php:15 msgid \"Advertisement\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:17 msgid \"\" \"Click to add new advertisement area. Advertisement area help you to create \" \"and manager the banner\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:18 msgid \"Add Advertisement Area\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:22 msgid \"Area Name\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:24 msgid \"Input the advertisement area name\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:32 msgid \"Display Banner\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:37 msgid \"Custom Code\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:47 msgid \"Banner Image\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:48 msgid \"Upload the banner image .png or .jpg\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:53 msgid \"Banner Link\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:54 msgid \"Set the banner link.\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:58 msgid \"Banner Alt Attribute\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:59 msgid \"\" \"Appears inside the image container when the banner image can not be \" \"displayed. It helps search engines understand what an banner image is about.\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:64 msgid \"Open Link In New Tab\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:65 msgid \"Open Link In New Tab?\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:80 msgid \"Textarea Option Code\" msgstr \"\" #: framework-customizations/theme/options/advertisement-settings.php:81 msgid \"Custom HTML allowed. Paste your ad code here.\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:19 #: framework-customizations/theme/options/course-settings.php:23 msgid \"Course Settings\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:42 msgid \"Choose device\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:45 msgid \"Laptop\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:46 msgid \"Phone\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:49 msgid \"Help tip\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:60 msgid \"Memory\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:62 msgid \"16Gb\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:63 msgid \"32Gb\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:64 msgid \"64Gb\" msgstr \"\" #: framework-customizations/theme/options/course-settings.php:75 msgid \"Webcam\" msgstr \"\" #: framework-customizations/theme/options/custom-scripts.php:11 #: framework-customizations/theme/options/custom-scripts.php:17 msgid \"Custom Scripts\" msgstr \"\" #: framework-customizations/theme/options/custom-scripts.php:18 msgid \"Custom Scripts changes that will be applied to the theme\" msgstr \"\" #: framework-customizations/theme/options/custom-styles.php:15 #: framework-customizations/theme/options/custom-styles.php:21 msgid \"Custom Styles\" msgstr \"\" #: framework-customizations/theme/options/custom-styles.php:22 msgid \"Custom Styles changes that will be applied to the theme\" msgstr \"\" #: framework-customizations/theme/options/footer-settings.php:11 msgid \"Footer\" msgstr \"\" #: framework-customizations/theme/options/footer-settings.php:15 #: framework-customizations/theme/options/posts/page.php:205 #: framework-customizations/theme/options/posts/slz-faq.php:82 msgid \"Footer Settings\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:15 msgid \"Global Settings\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:24 msgid \"Site Layout\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:25 msgid \"This option will change layout for all pages of theme.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:62 #: framework-customizations/theme/options/page-boxed-layout.php:38 msgid \"Boxed Width\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:63 #: framework-customizations/theme/options/page-boxed-layout.php:39 msgid \"Select the website width\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:67 #: framework-customizations/theme/options/page-boxed-layout.php:43 msgid \"Select the boxed background color\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:77 #: framework-customizations/theme/options/page-boxed-layout.php:90 msgid \"Select background image or try to upload new image.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:80 #: framework-customizations/theme/options/page-boxed-layout.php:94 msgid \"Website Alignment\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:81 #: framework-customizations/theme/options/page-boxed-layout.php:95 msgid \"Choose the website alignment.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:107 msgid \"Has Box Shadow?\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:108 msgid \"Choose YES to enable box shadow.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:121 msgid \"Has Box Border?\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:122 msgid \"Choose YES to enable box border.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:139 msgid \"Site Favicon\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:140 msgid \"Upload the site favicon. Size recommend: 16x16 px.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:146 msgid \"Site Logo Image\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:147 msgid \"Upload the site logo .png or .jpg\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:154 msgid \"Sticky Sidebar\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:155 msgid \"Enable sticky sidebar\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:173 msgid \"Logo Transparent\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:188 msgid \"Site Logo Transparent\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:189 msgid \"Upload the site logo .png or .jpg use for header transparent\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:200 msgid \"Site Logo Text\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:201 msgid \"You can use this field instead of above field \\\"Site Logo Image\\\".\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:206 msgid \"Logo Alt Attribute\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:207 msgid \"\" \"Appears inside the image container when the image can not be displayed. It \" \"helps search engines understand what an image is about.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:211 msgid \"Logo Title Attribute\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:212 msgid \"\" \"Used to provide a title for your image. It is displayed in a popup when a \" \"user takes their mouse over to an image.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:235 msgid \"Select icon type\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:240 #: framework-customizations/theme/options/general-settings.php:400 #: framework-customizations/theme/options/general-settings.php:463 msgid \"Font Awesome\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:241 #: framework-customizations/theme/options/general-settings.php:401 #: framework-customizations/theme/options/general-settings.php:464 msgid \"Custom Upload\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:257 msgid \"For best results upload a square image, larger then 30px x 30px.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:282 msgid \"Button To Top\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:283 msgid \"Enable scroll to top?\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:296 msgid \"WooCommerce Account\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:297 msgid \"Show WooCommerce account on header top right.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:310 msgid \"Language Switcher\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:311 msgid \"Show language switcher of WPML plugin on header top\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:324 msgid \"Google Map - API Key\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:325 msgid \"\" \"This key is used to run a some feature of Google Map. Please refer document \" \"to create a key\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:334 msgid \"Enable reCaptcha\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:335 msgid \"Choose to enable reCaptcha when user register.\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:350 msgid \"ReCaptcha API Site Key\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:351 #: framework-customizations/theme/options/general-settings.php:357 msgid \"\" \"This key is used to run reCaptcha. Please refer document to create a key\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:356 msgid \"ReCaptcha API Secret Key\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:370 msgid \"Social Profiles\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:374 msgid \"Social Settings\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:379 msgid \"Social Links\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:380 msgid \"Add your social profiles\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:385 msgid \"\" \"Enter a name (it is for internal use and will not appear on the front end)\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:395 msgid \"Select social icon type\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:423 msgid \"Enter your social URL link\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:433 #: framework-customizations/theme/options/general-settings.php:437 #: framework-customizations/theme/options/general-settings.php:442 msgid \"Customize Icon\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:443 msgid \"Add your customizable icon\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:448 msgid \"Enter a name (it will show in front end)\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:458 msgid \"Select customize icon type\" msgstr \"\" #: framework-customizations/theme/options/general-settings.php:486 msgid \"Enter your customize icon URL link\" msgstr \"\" #: framework-customizations/theme/options/header-settings.php:11 msgid \"Header\" msgstr \"\" #: framework-customizations/theme/options/header-settings.php:15 #: framework-customizations/theme/options/posts/page.php:179 msgid \"Header Settings\" msgstr \"\" #: framework-customizations/theme/options/header-settings.php:24 msgid \"Header Layout\" msgstr \"\" #: framework-customizations/theme/options/import-export.php:7 msgid \"Import / Export\" msgstr \"\" #: framework-customizations/theme/options/import-export.php:12 msgid \"Import Options\" msgstr \"\" #: framework-customizations/theme/options/import-export.php:13 msgid \"\" \"WARNING! This will overwrite all existing option values, please proceed with \" \"caution!\" msgstr \"\" #: framework-customizations/theme/options/import-export.php:17 msgid \"Export Options\" msgstr \"\" #: framework-customizations/theme/options/import-export.php:18 msgid \"\" \"Here you can copy/download your current option settings. Keep this safe as \" \"you can use it as a backup should anything go wrong, or you can use it to \" \"restore your settings on this site (or any other site).\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:16 #: framework-customizations/theme/options/page-404-settings.php:20 msgid \"404 Settings\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:26 msgid \"Choose layout for page 404.\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:40 msgid \"Page 404\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:41 msgid \"Choose page to display as page 404.\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:56 msgid \"Illustration Image\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:59 msgid \"Upload illustration image.\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:80 msgid \"Back To Home Text\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:84 msgid \"Button 02 Text\" msgstr \"\" #: framework-customizations/theme/options/page-404-settings.php:88 msgid \"Enter link for button 02\" msgstr \"\" #: framework-customizations/theme/options/page-boxed-layout.php:6 #: framework-customizations/theme/options/page-boxed-layout.php:17 msgid \"Boxed Layout\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:12 msgid \"Area Setting\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:23 #: framework-customizations/theme/options/page-options.php:76 msgid \"Choose layout for page header area.\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:34 #: framework-customizations/theme/options/page-options.php:87 msgid \"Choose style for page header area.\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:45 msgid \"Select the page header background color\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:62 #: framework-customizations/theme/options/page-options.php:108 #: framework-customizations/theme/options/post-settings.php:212 msgid \"Featured Image\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:73 #: framework-customizations/theme/options/page-options.php:119 msgid \"Upload an image to make background image\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:95 msgid \"Page Header Align\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:100 #: framework-customizations/theme/options/page-options.php:126 msgid \"Page Header Padding Top\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:101 #: framework-customizations/theme/options/page-options.php:127 msgid \"Enter padding top in pixels. Ex:80 \" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:106 #: framework-customizations/theme/options/page-options.php:131 msgid \"Page Header Padding Bottom\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:107 #: framework-customizations/theme/options/page-options.php:132 msgid \"Enter padding bottom in pixels. Ex:80 \" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:115 #: framework-customizations/theme/options/page-header-settings.php:186 msgid \"Title Setting\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:126 #: framework-customizations/theme/options/page-header-settings.php:197 #: framework-customizations/theme/options/page-options.php:137 msgid \"Title On Page Header\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:148 #: framework-customizations/theme/options/page-header-settings.php:219 #: framework-customizations/theme/options/page-options.php:156 #: framework-customizations/theme/options/template-settings.php:259 #: framework-customizations/theme/options/template-settings.php:329 #: framework-customizations/theme/options/template-settings.php:399 #: framework-customizations/theme/options/template-settings.php:469 #: framework-customizations/theme/options/template-settings.php:533 msgid \"Choose Title\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:150 msgid \"Page Title\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:159 #: framework-customizations/theme/options/page-header-settings.php:231 #: framework-customizations/theme/options/page-options.php:165 #: framework-customizations/theme/options/taxonomies/category.php:63 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:60 #: framework-customizations/theme/options/template-settings.php:267 #: framework-customizations/theme/options/template-settings.php:337 #: framework-customizations/theme/options/template-settings.php:407 #: framework-customizations/theme/options/template-settings.php:477 #: framework-customizations/theme/options/template-settings.php:541 msgid \"Custom Title\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:162 #: framework-customizations/theme/options/page-header-settings.php:234 #: framework-customizations/theme/options/page-options.php:168 #: framework-customizations/theme/options/taxonomies/category.php:66 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:63 msgid \"Enter custom title to display in page header\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:258 msgid \"Breadcrumb Setting\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:269 #: framework-customizations/theme/options/page-options.php:176 msgid \"Breadcrumb On Page Header\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:284 msgid \"Breadcrumb Styling\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:295 msgid \"Breadcrumb Active Styling\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:323 #: framework-customizations/theme/options/page-header-settings.php:357 #: framework-customizations/theme/options/page-header-settings.php:404 #: framework-customizations/theme/options/page-options.php:54 msgid \"Page Header Area\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:346 msgid \"Posts\" msgstr \"\" #: framework-customizations/theme/options/page-header-settings.php:430 #: framework-customizations/theme/options/page-options.php:22 msgid \"Page Header\" msgstr \"\" #: framework-customizations/theme/options/page-options.php:5 #: framework-customizations/theme/options/page-options.php:14 #: framework-customizations/theme/options/template-settings.php:26 msgid \" Default\" msgstr \"\" #: framework-customizations/theme/options/page-options.php:6 msgid \" Post Title\" msgstr \"\" #: framework-customizations/theme/options/page-options.php:7 msgid \" Category\" msgstr \"\" #: framework-customizations/theme/options/page-options.php:8 #: framework-customizations/theme/options/page-options.php:16 #: framework-customizations/theme/options/template-settings.php:27 msgid \" Custom\" msgstr \"\" #: framework-customizations/theme/options/page-options.php:15 msgid \" Page Title\" msgstr \"\" #: framework-customizations/theme/options/page-options.php:158 msgid \"\" \"Choose title to display in page header. To get setting from \\\"Theme Setting\" \"\\\", choose \\\"Default\\\"\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:38 msgid \"Social Share\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:39 msgid \"Enable social share links in single pages ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:53 msgid \"Add Social\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:58 msgid \"Facebook\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:59 msgid \"Twitter\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:60 msgid \"Google Plus\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:61 msgid \"Pinterest\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:62 msgid \"LinkedIn\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:63 msgid \"Digg\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:75 msgid \"Share Count\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:76 msgid \"Enable social share count in single pages ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:91 msgid \"Facebook App ID\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:92 msgid \"Enter App ID to get the share count of Facebook.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:96 msgid \"Facebook Secret Key\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:97 msgid \"Enter Secret Key to get the share count of Facebook.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:113 #: framework-customizations/theme/options/post-settings.php:573 msgid \"Post Settings\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:117 msgid \"Post Layout\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:122 msgid \"Blog Style\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:123 msgid \"Select the blog display style\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:128 #: framework-customizations/theme/options/post-settings.php:346 #: framework-customizations/theme/options/posts/page.php:85 #: framework-customizations/theme/options/posts/post.php:44 #: framework-customizations/theme/options/posts/product.php:32 #: framework-customizations/theme/options/posts/slz-faq.php:32 #: framework-customizations/theme/options/posts/slz-portfolio.php:32 #: framework-customizations/theme/options/posts/slz-service.php:32 #: framework-customizations/theme/options/posts/slz-team.php:32 #: framework-customizations/theme/options/taxonomies/category.php:30 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:27 #: framework-customizations/theme/options/template-settings.php:43 #: framework-customizations/theme/options/template-settings.php:72 #: framework-customizations/theme/options/template-settings.php:97 #: framework-customizations/theme/options/template-settings.php:122 #: framework-customizations/theme/options/template-settings.php:147 #: framework-customizations/theme/options/template-settings.php:172 #: framework-customizations/theme/options/template-settings.php:197 #: framework-customizations/theme/options/template-settings.php:239 #: framework-customizations/theme/options/template-settings.php:309 #: framework-customizations/theme/options/template-settings.php:379 #: framework-customizations/theme/options/template-settings.php:449 #: framework-customizations/theme/options/template-settings.php:513 msgid \"Sidebar Layout\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:129 msgid \"Set how to display sidebar in single pages.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:136 msgid \"Post Sidebar\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:137 #: framework-customizations/theme/options/post-settings.php:355 #: framework-customizations/theme/options/posts/page.php:114 #: framework-customizations/theme/options/posts/post.php:73 #: framework-customizations/theme/options/posts/product.php:61 #: framework-customizations/theme/options/posts/slz-faq.php:61 #: framework-customizations/theme/options/posts/slz-portfolio.php:61 #: framework-customizations/theme/options/posts/slz-service.php:61 #: framework-customizations/theme/options/posts/slz-team.php:61 #: framework-customizations/theme/options/taxonomies/category.php:58 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55 #: framework-customizations/theme/options/template-settings.php:52 #: framework-customizations/theme/options/template-settings.php:81 #: framework-customizations/theme/options/template-settings.php:106 #: framework-customizations/theme/options/template-settings.php:131 #: framework-customizations/theme/options/template-settings.php:156 #: framework-customizations/theme/options/template-settings.php:181 #: framework-customizations/theme/options/template-settings.php:206 #: framework-customizations/theme/options/template-settings.php:248 #: framework-customizations/theme/options/template-settings.php:318 #: framework-customizations/theme/options/template-settings.php:388 #: framework-customizations/theme/options/template-settings.php:458 #: framework-customizations/theme/options/template-settings.php:522 msgid \"You can create new sidebar in\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:137 #: framework-customizations/theme/options/post-settings.php:355 #: framework-customizations/theme/options/template-settings.php:52 #: framework-customizations/theme/options/template-settings.php:81 #: framework-customizations/theme/options/template-settings.php:106 #: framework-customizations/theme/options/template-settings.php:131 #: framework-customizations/theme/options/template-settings.php:156 #: framework-customizations/theme/options/template-settings.php:181 #: framework-customizations/theme/options/template-settings.php:206 #: framework-customizations/theme/options/template-settings.php:248 #: framework-customizations/theme/options/template-settings.php:318 #: framework-customizations/theme/options/template-settings.php:388 #: framework-customizations/theme/options/template-settings.php:458 #: framework-customizations/theme/options/template-settings.php:522 msgid \"Appearance > Widgets\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:143 msgid \"Post Info\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:147 msgid \"Select Post Info\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:155 msgid \"Tag\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:156 msgid \"Comment Count\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:157 msgid \"View Count\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:158 msgid \"Like Count\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:162 msgid \"Select post info to show in single pages and blocks.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:176 msgid \"Show Related Articles\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:177 msgid \"Show related articles in single pages ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:194 msgid \"Filter related articles by ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:198 #: framework-customizations/theme/options/post-settings.php:533 msgid \"By Category\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:202 msgid \"By Tag\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:207 msgid \"Display Options\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:213 msgid \"Meta Info(Date, View, Comment,...)\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:217 msgid \"Select options to show in related posts.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:222 msgid \"Enter number of columns to display related articles. Ex: 3\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:227 msgid \"Article Post Limit\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:228 msgid \"Total post of related article will be show. Ex: 6\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:233 msgid \"Article Order By\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:234 msgid \"Order the post in related article by ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:236 msgid \"ID\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:245 msgid \"Article Order\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:246 msgid \"Order the post in related article with ascending or descending mode ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:248 msgid \"Desc\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:249 msgid \"Asc\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:259 msgid \"Other Settings\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:263 msgid \"Post Tags\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:264 msgid \"Show list of post tags in single pages?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:277 msgid \"Post Categories\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:278 msgid \"Show list of post categories in single pages ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:291 msgid \"Author Box\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:292 msgid \"Show author box in single pages?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:305 msgid \"Post Navigation\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:306 msgid \"Show post navigation in single pages ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:320 msgid \"Date Type\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:323 msgid \"Ribbon\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:347 msgid \"Set how to display sidebar in service single pages.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:354 #: framework-customizations/theme/options/posts/page.php:113 #: framework-customizations/theme/options/posts/post.php:72 #: framework-customizations/theme/options/posts/product.php:60 #: framework-customizations/theme/options/posts/slz-faq.php:60 #: framework-customizations/theme/options/posts/slz-portfolio.php:60 #: framework-customizations/theme/options/posts/slz-service.php:60 #: framework-customizations/theme/options/posts/slz-team.php:60 #: framework-customizations/theme/options/taxonomies/category.php:57 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:54 #: framework-customizations/theme/options/template-settings.php:51 #: framework-customizations/theme/options/template-settings.php:80 #: framework-customizations/theme/options/template-settings.php:105 #: framework-customizations/theme/options/template-settings.php:130 #: framework-customizations/theme/options/template-settings.php:155 #: framework-customizations/theme/options/template-settings.php:180 #: framework-customizations/theme/options/template-settings.php:205 #: framework-customizations/theme/options/template-settings.php:247 #: framework-customizations/theme/options/template-settings.php:317 #: framework-customizations/theme/options/template-settings.php:387 #: framework-customizations/theme/options/template-settings.php:457 #: framework-customizations/theme/options/template-settings.php:521 msgid \"Choose Sidebar\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:364 msgid \"Select default event label background color.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:370 msgid \"Label Text Color\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:371 msgid \"Select default event label text color.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:388 #: framework-customizations/theme/options/posts/slz-faq.php:91 #: framework-customizations/theme/options/template-settings.php:561 msgid \"Footer Top Other Content\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:389 #: framework-customizations/theme/options/posts/slz-faq.php:92 #: framework-customizations/theme/options/template-settings.php:562 msgid \"Choose to display footer top other content.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:401 #: framework-customizations/theme/options/posts/slz-faq.php:104 #: framework-customizations/theme/options/template-settings.php:574 msgid \"Custom Content\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:402 #: framework-customizations/theme/options/posts/slz-faq.php:105 #: framework-customizations/theme/options/template-settings.php:575 msgid \"Enter footer top other content.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:425 msgid \"Related Products\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:434 msgid \"Show Related Products\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:435 msgid \"Show related products in product pages ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:453 msgid \"Total posts of related posts will be show.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:459 #: framework-customizations/theme/options/post-settings.php:550 msgid \"Enter number of columns to show.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:476 msgid \"Portfolio Info\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:480 msgid \"Review Rating\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:481 msgid \"Show review rating in portfolio blocks?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:497 msgid \"Related Posts\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:506 msgid \"Show Related Posts\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:507 msgid \"Show related posts in portfolio single pages ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:523 msgid \"Related Box Title\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:524 msgid \"Enter title for related box in portfolio single pages.\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:529 msgid \"Filter related posts by ?\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:537 msgid \"By Author\" msgstr \"\" #: framework-customizations/theme/options/post-settings.php:544 msgid \"Total posts of related post will be show.\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:16 #: framework-customizations/theme/options/posts/post.php:4 #: framework-customizations/theme/options/posts/product.php:5 #: framework-customizations/theme/options/posts/slz-faq.php:5 #: framework-customizations/theme/options/posts/slz-portfolio.php:5 #: framework-customizations/theme/options/posts/slz-service.php:5 #: framework-customizations/theme/options/posts/slz-team.php:5 #: framework-customizations/theme/options/taxonomies/category.php:20 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:18 msgid \"-- Default --\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:86 msgid \"Set how to display page sidebar.\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:114 #: framework-customizations/theme/options/posts/post.php:73 #: framework-customizations/theme/options/posts/product.php:61 #: framework-customizations/theme/options/posts/slz-faq.php:61 #: framework-customizations/theme/options/posts/slz-portfolio.php:61 #: framework-customizations/theme/options/posts/slz-service.php:61 #: framework-customizations/theme/options/posts/slz-team.php:61 #: framework-customizations/theme/options/taxonomies/category.php:58 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55 msgid \"Widgets\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:120 msgid \"Select background color for this page\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:128 msgid \"Upload background image for this page.\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:139 #: framework-customizations/theme/options/typography.php:28 msgid \"Custom Colors\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:156 #: framework-customizations/theme/options/posts/slz-faq.php:67 #: framework-customizations/theme/options/posts/slz-portfolio.php:67 #: framework-customizations/theme/options/posts/slz-service.php:67 #: framework-customizations/theme/options/posts/slz-team.php:67 msgid \"Content Padding Top\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:157 #: framework-customizations/theme/options/posts/slz-faq.php:68 #: framework-customizations/theme/options/posts/slz-portfolio.php:68 #: framework-customizations/theme/options/posts/slz-service.php:68 #: framework-customizations/theme/options/posts/slz-team.php:68 msgid \"Custom padding top for content (px).\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:162 #: framework-customizations/theme/options/posts/slz-faq.php:73 #: framework-customizations/theme/options/posts/slz-portfolio.php:73 #: framework-customizations/theme/options/posts/slz-service.php:73 #: framework-customizations/theme/options/posts/slz-team.php:73 msgid \"Content Padding Bottom\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:163 #: framework-customizations/theme/options/posts/slz-faq.php:74 #: framework-customizations/theme/options/posts/slz-portfolio.php:74 #: framework-customizations/theme/options/posts/slz-service.php:74 #: framework-customizations/theme/options/posts/slz-team.php:74 msgid \"Custom padding bottom for content (px).\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:169 msgid \"You can add revolution slider in header.\" msgstr \"\" #: framework-customizations/theme/options/posts/page.php:230 msgid \" Page Options\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:30 msgid \" Post Options\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:37 msgid \"Post Template\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:45 #: framework-customizations/theme/options/taxonomies/category.php:31 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:28 #: framework-customizations/theme/options/template-settings.php:44 #: framework-customizations/theme/options/template-settings.php:73 #: framework-customizations/theme/options/template-settings.php:98 #: framework-customizations/theme/options/template-settings.php:123 #: framework-customizations/theme/options/template-settings.php:148 #: framework-customizations/theme/options/template-settings.php:173 #: framework-customizations/theme/options/template-settings.php:198 msgid \"Set how to display blog sidebar.\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:81 msgid \"Feature Video\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:90 msgid \"Video Thumbnail\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:91 msgid \"Create thumbnail from video and using it as featured image?.\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:101 msgid \"Type of Video\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:136 msgid \"Feature Audio\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:145 msgid \"Audio Link\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:146 msgid \"Input full link of audio.\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:153 msgid \"Feature Gallery\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:163 msgid \"Choose Images to upload\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:171 msgid \"Feature Quote\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:180 msgid \"Quote Text\" msgstr \"\" #: framework-customizations/theme/options/posts/post.php:181 msgid \"Input quote content. Accept some htmls as div, p, cite, ...\" msgstr \"\" #: framework-customizations/theme/options/posts/product.php:25 #: framework-customizations/theme/options/posts/slz-faq.php:25 #: framework-customizations/theme/options/posts/slz-portfolio.php:25 #: framework-customizations/theme/options/posts/slz-service.php:25 #: framework-customizations/theme/options/posts/slz-team.php:25 msgid \"Page Options\" msgstr \"\" #: framework-customizations/theme/options/posts/product.php:33 #: framework-customizations/theme/options/posts/slz-portfolio.php:33 msgid \"Set how to display portfolio sidebar.\" msgstr \"\" #: framework-customizations/theme/options/posts/slz-faq.php:33 #: framework-customizations/theme/options/posts/slz-service.php:33 #: framework-customizations/theme/options/posts/slz-team.php:33 msgid \"Set how to display team sidebar.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:31 msgid \"Rejected Page Types\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:32 msgid \"\" \"Do not cache the following page types. See the Conditional Tags \" \"documentation for a complete discussion on each type.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:34 msgid \"Single Posts (is_single)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:35 msgid \"Pages (is_page)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:36 msgid \"Front Page (is_front_page)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:37 msgid \"Home (is_home)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:38 msgid \"Archives (is_archive)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:39 msgid \"Tags (is_tag)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:40 msgid \"Category (is_category)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:41 msgid \"Feeds (is_feed)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:42 msgid \"Search Pages (is_search)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:43 msgid \"Author Pages (is_author)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:47 msgid \"Rejected Post ID\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:50 msgid \"\" \"Enter here the post IDs separated by commas (ex: 10,23,50) to disable cache \" \"in this page.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:55 msgid \"Rejected User Roles\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:56 msgid \"Select user roles that should not receive cached pages.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:58 msgid \"Administrator\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:59 msgid \"Editor\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:61 msgid \"Contributor\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:62 msgid \"Subscriber)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:66 msgid \"Rejected User Agents\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:69 msgid \"Never send cache pages for these user agents.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:76 msgid \"Rejected User Cookies\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:79 msgid \"Never cache pages that use the specified cookies.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:86 msgid \"Accepted Query Strings\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:89 msgid \"Always cache URLs with these query strings.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:106 msgid \"Rejected WooCommerce Pages\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:107 msgid \"Do not cache the above pages.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:113 msgid \"My Account\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:114 msgid \"Cart\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:116 msgid \"Shop\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:125 msgid \"Optimize Performance\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:129 msgid \"Minify Resource\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:133 #: framework-customizations/theme/options/speed-optimize.php:216 #: framework-customizations/theme/options/speed-optimize.php:281 msgid \"General Configuration\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:139 msgid \"JavaScript Minification\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:140 msgid \"Enable / Disable javaScript minification\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:153 msgid \"Stylesheet Minification\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:154 msgid \"Enable / Disable stylesheet minification\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:166 #: framework-customizations/theme/options/speed-optimize.php:167 msgid \"Delete Minify Files\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:168 msgid \"\" \"Minify files are stored on your server as .js and .css files. If you need to \" \"delete them, use the button below.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:173 msgid \"Advanced Settings\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:178 #: framework-customizations/theme/options/speed-optimize.php:348 msgid \"Cache Time\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:179 msgid \"Cache Time (seconds)\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:185 #: framework-customizations/theme/options/speed-optimize.php:186 msgid \"JavaScript Placement\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:188 msgid \"Both header and footer\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:189 msgid \"All in header\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:190 msgid \"All in footer\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:196 msgid \"Using Async Tag\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:197 msgid \"Using async tag in javascript tag\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:212 msgid \"Browser Cache\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:222 msgid \"Gzip Compression\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:223 msgid \"Enable / Disable gzip compression\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:241 msgid \"Leverage Browser Caching\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:257 msgid \"HTML Expire Time\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:262 msgid \"CSS JS Expire Time\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:267 msgid \"Other Expire Time\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:277 msgid \"Page Cache\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:289 msgid \"Page Cache Status\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:290 msgid \"Enable / Disable page cache\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:303 msgid \"Delete Cached Pages\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:304 msgid \"\" \"Cached pages are stored on your server as html and PHP files. If you need to \" \"delete them, use the button below.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:307 msgid \"Compress Content\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:310 msgid \"\" \"Compress pages so they are served more quickly to visitors (Recommended).\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:311 msgid \"\" \"Compression is disabled by default because some hosts have problems with \" \"compressed files. Switching it on and off clears the cache.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:315 msgid \"Cache Content\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:318 msgid \"\" \"Unauthenticated users may view a cached version of the last authenticated \" \"users view of a given page. Disabling this option is not recommended.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:319 msgid \"Do not cache pages for logged in users\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:331 msgid \"Cache Preload\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:332 msgid \"Automatically prime the page cache.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:349 msgid \"\" \"How long should cached pages remain fresh? Set to 0 to disable garbage \" \"collection. A good starting point is 3600 seconds.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:355 msgid \"Scheduler Clear Cache\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:356 msgid \"\" \"Check for stale cached files at this time (UTC) or starting at this time \" \"every interval below.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:367 msgid \"Scheduler Clear Cache Interval\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:376 msgid \"Cache Update Configuration\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:380 msgid \"When Update Post\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:383 msgid \"Auto update when edit, delete, publish, trash post.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:390 msgid \"Update edited posts\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:391 msgid \"Update front page and posts page\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:392 msgid \"Update category page\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:396 msgid \"When Post Comment\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:399 msgid \"Auto refresh cache when post, edit, approve user comment.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:403 msgid \"When Switch Theme\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:406 msgid \"Auto refresh all cache. Include all cache content you selected\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:410 msgid \"When Update Nav Menu\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:413 msgid \"Auto clear all cache. Where used this nav menu\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:417 msgid \"When Update User Profile\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:420 msgid \"Update cache when user update profile.\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:422 msgid \"Update page author\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:423 msgid \"Update posts belong to this user\" msgstr \"\" #: framework-customizations/theme/options/speed-optimize.php:429 msgid \"Reject Cache Configuration\" msgstr \"\" #: framework-customizations/theme/options/taxonomies/cat_course.php:9 msgid \"Choose if this category is feature category.\" msgstr \"\" #: framework-customizations/theme/options/taxonomies/cat_course.php:10 #: includes/hooks.php:432 msgid \"Is Feature?\" msgstr \"\" #: framework-customizations/theme/options/taxonomies/cat_course.php:16 #: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:24 msgid \"Choose a icon for FAQ category.\" msgstr \"\" #: framework-customizations/theme/options/taxonomies/cat_course.php:20 #: includes/hooks.php:440 msgid \"Attach Image\" msgstr \"\" #: framework-customizations/theme/options/taxonomies/cat_course.php:21 msgid \"Upload image for category.\" msgstr \"\" #: framework-customizations/theme/options/taxonomies/category.php:24 #: framework-customizations/theme/options/template-settings.php:66 #: framework-customizations/theme/options/template-settings.php:91 #: framework-customizations/theme/options/template-settings.php:116 #: framework-customizations/theme/options/template-settings.php:141 #: framework-customizations/theme/options/template-settings.php:166 #: framework-customizations/theme/options/template-settings.php:191 msgid \"Article Style\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:39 msgid \"Page Settings\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:62 msgid \"Blog Settings\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:87 msgid \"Search Settings\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:112 msgid \"Author Settings\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:137 msgid \"Category Settings\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:162 msgid \"Archive Settings\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:187 msgid \"Tag Settings\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:235 msgid \"Portfolio Archive\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:240 msgid \"Set how to display sidebar in portfolio archive pages.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:270 #: framework-customizations/theme/options/template-settings.php:340 #: framework-customizations/theme/options/template-settings.php:410 #: framework-customizations/theme/options/template-settings.php:480 #: framework-customizations/theme/options/template-settings.php:544 msgid \"Add custom title for archive\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:277 #: framework-customizations/theme/options/template-settings.php:347 #: framework-customizations/theme/options/template-settings.php:417 #: framework-customizations/theme/options/template-settings.php:487 #: framework-customizations/theme/options/template-settings.php:551 msgid \"Post Per Page\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:278 #: framework-customizations/theme/options/template-settings.php:348 #: framework-customizations/theme/options/template-settings.php:418 #: framework-customizations/theme/options/template-settings.php:488 #: framework-customizations/theme/options/template-settings.php:552 msgid \"Add limit posts per page. Set -1 or empty to show all.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:283 msgid \"Enter number of columns to display list of portfolio.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:305 msgid \"Team Archive\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:310 msgid \"Set how to display sidebar in team archive pages.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:353 msgid \"Enter number of columns to display list of teams.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:371 msgid \"Services\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:375 msgid \"Service Archive\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:380 msgid \"Set how to display sidebar in service archive pages.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:423 msgid \"Enter number of columns to display list of services.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:445 msgid \"Events Archive\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:450 msgid \"Set how to display sidebar in event archive pages.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:509 msgid \"FAQ Archive\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:514 msgid \"Set how to display sidebar in FAQ archive pages.\" msgstr \"\" #: framework-customizations/theme/options/template-settings.php:594 msgid \"Template Settings\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:12 #: setup/class-educhain-setup.php:1083 msgid \"The version of WordPress installed on your site.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:12 msgid \"\" \"We recommend you update WordPress to the latest version. The minimum \" \"required version for this theme is:\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:12 msgid \"Do that right now\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:16 msgid \"The version of WordPress installed on your site\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:30 msgid \"\" \"Displays whether or not WordPress is in Debug Mode. This mode is used by \" \"developers to test the theme. We recommend you turn it off for an optimal \" \"user experience on your website.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:30 #: framework-customizations/theme/options/theme-requirements.php:42 #: framework-customizations/theme/options/theme-requirements.php:67 #: framework-customizations/theme/options/theme-requirements.php:79 #: framework-customizations/theme/options/theme-requirements.php:89 #: framework-customizations/theme/options/theme-requirements.php:126 #: setup/class-educhain-setup.php:1097 msgid \"Learn how to do it\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:34 msgid \"Displays whether or not WordPress is in Debug Mode\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:42 #: setup/class-educhain-setup.php:1101 msgid \"The maximum amount of memory (RAM) that your site can use at one time.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:42 msgid \"\" \"We recommend setting memory to at least <strong>256MB</strong>. Please \" \"define memory limit in <strong>wp-config.php</strong> file.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:45 msgid \"The maximum amount of memory (RAM) that your site can use at one time\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:52 #: setup/class-educhain-setup.php:1114 msgid \"The version of PHP installed on your hosting server.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:52 msgid \"\" \"We recommend you update PHP to the latest version. The minimum required \" \"version for this theme is:\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:52 #: framework-customizations/theme/options/theme-requirements.php:115 #: framework-customizations/theme/options/theme-requirements.php:245 msgid \"Contact your hosting provider, they can install it for you.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:56 msgid \"The version of PHP installed on your hosting server\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:60 msgid \"No PHP Installed\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:67 #: setup/class-educhain-setup.php:1120 msgid \"The largest file size that can be contained in one post.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:67 msgid \"We recommend setting the post maximum size to at least:\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:71 msgid \"The largest file size that can be contained in one post\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:79 msgid \"\" \"The amount of time (in seconds) that your site will spend on a single \" \"operation before timing out (to avoid server lockups).\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:79 msgid \"We recommend setting the maximum execution time to at least\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:81 #: setup/class-educhain-setup.php:1126 msgid \"\" \"The amount of time (in seconds) that your site will spend on a single \" \"operation before timing out (to avoid server lockups)\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:89 #: framework-customizations/theme/options/theme-requirements.php:92 #: setup/class-educhain-setup.php:1132 msgid \"\" \"The maximum number of variables your server can use for a single function to \" \"avoid overloads.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:89 msgid \"Please increase the maximum input variables limit to:\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:99 msgid \"\" \"Suhosin is an advanced protection system for PHP installations and may need \" \"to be configured to increase its data submission limits\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:103 #, php-format msgid \"\" \"%s - Recommended Value is: %s. <a href=\\\"%s\\\" target=\\\"_blank\\\">Increasing \" \"max input vars limit.</a>\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:108 #: setup/class-educhain-setup.php:1138 msgid \"Suhosin is an advanced protection system for PHP installations.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:115 #: setup/class-educhain-setup.php:1150 msgid \"The version of MySQL installed on your hosting server.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:115 msgid \"\" \"We recommend you update MySQL to the latest version. The minimum required \" \"version for this theme is:\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:119 msgid \"The version of MySQL installed on your hosting server\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:126 #: setup/class-educhain-setup.php:1156 msgid \"\" \"The largest file size that can be uploaded to your WordPress installation.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:126 msgid \"We recommend setting the maximum upload file size to at least:\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:136 msgid \"\" \"Payment gateways can use cURL to communicate with remote servers to \" \"authorize payments, other plugins may also use it when communicating with \" \"remote services\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:140 msgid \"\" \"Payment gateways can use cURL to communicate with remote servers to \" \"authorize payments, other plugins may also use it when communicating with \" \"remote services. Your server does not have <strong>fsockopen</strong> or \" \"<strong>cURL</strong> enabled thus PayPal IPN and other scripts which \" \"communicate with other servers will not work. Contact your hosting provider, \" \"they can install it for you.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:145 msgid \"Requirements\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:149 #: setup/class-educhain-setup.php:1070 msgid \"WordPress Environment\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:154 #: setup/class-educhain-setup.php:1072 msgid \"Home URL\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:155 msgid \"The URL of your site's homepage\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:161 #: setup/class-educhain-setup.php:1077 msgid \"Site URL\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:162 msgid \"The root URL of your site\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:168 #: setup/class-educhain-setup.php:1082 msgid \"WP Version\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:175 #: setup/class-educhain-setup.php:1088 msgid \"WP Multisite\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:177 msgid \"Whether or not you have WordPress Multisite enabled\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:182 #: setup/class-educhain-setup.php:1094 msgid \"WP Debug Mode\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:189 #: setup/class-educhain-setup.php:1100 msgid \"WP Memory Limit\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:197 #: setup/class-educhain-setup.php:1106 msgid \"Server Environment\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:202 #: setup/class-educhain-setup.php:1108 msgid \"Server Info\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:203 #: setup/class-educhain-setup.php:1109 msgid \"Information about the web server that is currently hosting your site\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:209 #: setup/class-educhain-setup.php:1113 msgid \"PHP Version\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:216 #: setup/class-educhain-setup.php:1119 msgid \"PHP Post Max Size\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:223 #: setup/class-educhain-setup.php:1125 msgid \"PHP Time Limit\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:230 #: setup/class-educhain-setup.php:1131 msgid \"PHP Max Input Vars\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:237 #: setup/class-educhain-setup.php:1137 msgid \"SUHOSIN Installed\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:244 msgid \"ZipArchive\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:245 msgid \"\" \"ZipArchive is required for importing demos. They are used to import and \" \"export zip files specifically for sliders\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:245 msgid \"\" \"ZipArchive is required for importing demos. They are used to import and \" \"export zip files specifically for sliders.\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:251 #: setup/class-educhain-setup.php:1149 msgid \"MySQL Version\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:258 #: setup/class-educhain-setup.php:1155 msgid \"Max Upload Size\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:265 #: setup/class-educhain-setup.php:1161 msgid \"fsockopen/cURL\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:274 #: setup/steps/check-requirement.php:35 msgid \"Meets minimum requirements\" msgstr \"\" #: framework-customizations/theme/options/theme-requirements.php:274 #: setup/steps/check-requirement.php:39 msgid \"We have some improvements to suggest\" msgstr \"\" #: framework-customizations/theme/options/typography.php:17 msgid \"Styling Settings\" msgstr \"\" #: framework-customizations/theme/options/typography.php:46 msgid \"Link Settings\" msgstr \"\" #: framework-customizations/theme/options/typography.php:57 msgid \"Custom Link Colors\" msgstr \"\" #: framework-customizations/theme/options/typography.php:71 msgid \"Regular Color\" msgstr \"\" #: framework-customizations/theme/options/typography.php:74 msgid \"Select a color for link\" msgstr \"\" #: framework-customizations/theme/options/typography.php:77 msgid \"Hover Color\" msgstr \"\" #: framework-customizations/theme/options/typography.php:78 msgid \"Select a color for link hover\" msgstr \"\" #: framework-customizations/theme/options/typography.php:83 msgid \"Active Color\" msgstr \"\" #: framework-customizations/theme/options/typography.php:84 msgid \"Select a color for link active\" msgstr \"\" #: framework-customizations/theme/options/typography.php:94 msgid \"Typography\" msgstr \"\" #: framework-customizations/theme/options/typography.php:116 msgid \"Body Text\" msgstr \"\" #: framework-customizations/theme/options/typography.php:117 msgid \"Paragraph\" msgstr \"\" #: framework-customizations/theme/options/typography.php:118 msgid \"H1 Text\" msgstr \"\" #: framework-customizations/theme/options/typography.php:119 msgid \"H2 Text\" msgstr \"\" #: framework-customizations/theme/options/typography.php:120 msgid \"H3 Text\" msgstr \"\" #: framework-customizations/theme/options/typography.php:121 msgid \"H4 Text\" msgstr \"\" #: framework-customizations/theme/options/typography.php:122 msgid \"H5 Text\" msgstr \"\" #: framework-customizations/theme/options/typography.php:123 msgid \"H6 Text\" msgstr \"\" #: framework-customizations/theme/options/typography.php:154 msgid \"Typography Settings\" msgstr \"\" #: framework-customizations/theme/options/typography.php:159 msgid \"Styling / Typography\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:7 msgid \"Welcome to\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:11 msgid \"Please kindly DO NOT update Unyson Plugin separately!\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:12 msgid \"\" \"We had customized its coding structure and create it a our own unique \" \"technique, if you update it, it will turn your site into \\\"Forbidden\\\" state \" \"and let your site DOWN.\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:19 msgid \"Plugins\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:24 msgid \"Changes Log\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:29 msgid \"Extension Manager\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:34 msgid \"Theme Settings\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:40 msgid \"Backup Data\" msgstr \"\" #: framework-customizations/theme/views/welcome-header.php:47 msgid \"Demo Install\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:28 msgid \"\" \"These are the plugins we include with EduChain. Currently Solazu Unyson is \" \"the only required plugin that is needed to use EduChain. You can activate, \" \"deactivate or update the plugins from this tab.\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:52 #: framework-customizations/theme/views/welcome.php:104 msgid \"Active:\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:65 msgid \"Update Available: Version\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:70 #: framework-customizations/theme/views/welcome.php:122 #, php-format msgid \"Version %s | %s\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:75 #: includes/class-tgm-plugin-activation.php:2362 #: setup/steps/import-theme-setting.php:90 msgid \"Required\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:81 #: setup/steps/active-plugin.php:113 msgid \"Recommend Plugins\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:82 msgid \"\" \"These are the plugins we tested with EduChain and they are compatible with \" \"together. If you want to use these plugins, you can activate, deactivate or \" \"update them in this tab.\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:117 #, php-format msgid \"Update Available: Version %s\" msgstr \"\" #: framework-customizations/theme/views/welcome.php:126 msgid \"Recommend\" msgstr \"\" #: includes/class-breadcrumb.php:98 includes/helpers.php:659 #: includes/helpers.php:1705 msgid \"Error 404\" msgstr \"\" #: includes/class-breadcrumb.php:205 msgid \"Posts tagged\" msgstr \"\" #: includes/class-breadcrumb.php:275 msgid \"Search results for\" msgstr \"\" #: includes/class-breadcrumb.php:284 msgid \"Page\" msgstr \"\" #: includes/class-editor-format.php:28 msgid \"Drop Cap\" msgstr \"\" #: includes/class-editor-format.php:32 msgid \"Regular\" msgstr \"\" #: includes/class-editor-format.php:39 msgid \"Italic\" msgstr \"\" #: includes/class-editor-format.php:46 msgid \"Bold\" msgstr \"\" #: includes/class-editor-format.php:54 msgid \"Blockquote\" msgstr \"\" #: includes/class-editor-format.php:58 msgid \"US - Florida\" msgstr \"\" #: includes/class-editor-format.php:64 msgid \"US - California\" msgstr \"\" #: includes/class-editor-format.php:71 msgid \"US - Georgia\" msgstr \"\" #: includes/class-editor-format.php:78 msgid \"US - New York\" msgstr \"\" #: includes/class-editor-format.php:86 msgid \"Bulleted List\" msgstr \"\" #: includes/class-editor-format.php:90 msgid \"1 Column\" msgstr \"\" #: includes/class-editor-format.php:96 msgid \"2 Columns\" msgstr \"\" #: includes/class-editor-format.php:102 msgid \"3 Columns\" msgstr \"\" #: includes/class-editor-format.php:108 msgid \"4 Columns\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:334 includes/hooks.php:121 msgid \"Install Required Plugins\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:335 includes/hooks.php:122 msgid \"Install Plugins\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:337 includes/hooks.php:123 #, php-format msgid \"Installing Plugin: %s\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:339 #, php-format msgid \"Updating Plugin: %s\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:340 includes/hooks.php:124 msgid \"Something went wrong with the plugin API.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:343 #, php-format msgid \"This theme requires the following plugin: %1$s.\" msgid_plural \"This theme requires the following plugins: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:349 #, php-format msgid \"This theme recommends the following plugin: %1$s.\" msgid_plural \"This theme recommends the following plugins: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:355 includes/hooks.php:131 #, php-format msgid \"\" \"The following plugin needs to be updated to its latest version to ensure \" \"maximum compatibility with this theme: %1$s.\" msgid_plural \"\" \"The following plugins need to be updated to their latest version to ensure \" \"maximum compatibility with this theme: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:361 #, php-format msgid \"There is an update available for: %1$s.\" msgid_plural \"There are updates available for the following plugins: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:367 includes/hooks.php:128 #, php-format msgid \"The following required plugin is currently inactive: %1$s.\" msgid_plural \"The following required plugins are currently inactive: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:373 includes/hooks.php:129 #, php-format msgid \"The following recommended plugin is currently inactive: %1$s.\" msgid_plural \"The following recommended plugins are currently inactive: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:378 includes/hooks.php:133 msgid \"Begin installing plugin\" msgid_plural \"Begin installing plugins\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:383 msgid \"Begin updating plugin\" msgid_plural \"Begin updating plugins\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:388 msgid \"Begin activating plugin\" msgid_plural \"Begin activating plugins\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:392 includes/hooks.php:135 msgid \"Return to Required Plugins Installer\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:393 #: includes/class-tgm-plugin-activation.php:912 #: includes/class-tgm-plugin-activation.php:2622 #: includes/class-tgm-plugin-activation.php:3677 msgid \"Return to the Dashboard\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:394 #: includes/class-tgm-plugin-activation.php:3253 includes/hooks.php:136 msgid \"Plugin activated successfully.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:395 #: includes/class-tgm-plugin-activation.php:3046 msgid \"The following plugin was activated successfully:\" msgid_plural \"The following plugins were activated successfully:\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:397 #, php-format msgid \"No action taken. Plugin %1$s was already active.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:399 #, php-format msgid \"\" \"Plugin not activated. A higher version of %s is needed for this theme. \" \"Please update the plugin.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:401 #, php-format msgid \"All plugins installed and activated successfully. %1$s\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:402 msgid \"Dismiss this notice\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:403 msgid \"\" \"There are one or more required or recommended plugins to install, update or \" \"activate.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:404 msgid \"Please contact the administrator of this site for help.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:608 msgid \"Update Required\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:1023 msgid \"\" \"The remote plugin package does not contain a folder with the desired slug \" \"and renaming did not work.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:1023 #: includes/class-tgm-plugin-activation.php:1026 msgid \"\" \"Please contact the plugin provider and ask them to package their plugin \" \"according to the WordPress guidelines.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:1026 msgid \"\" \"The remote plugin package consists of more than one file, but the files are \" \"not packaged in a folder.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:1210 #: includes/class-tgm-plugin-activation.php:3042 msgid \"and\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2071 #, php-format msgid \"TGMPA v%s\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2365 #: setup/steps/import-theme-setting.php:90 msgid \"Recommended\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2381 msgid \"WordPress Repository\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2384 msgid \"External Source\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2387 msgid \"Pre-Packaged\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2404 #: setup/steps/active-plugin.php:89 setup/steps/active-plugin.php:127 #: setup/steps/import-theme-setting.php:85 msgid \"Not Installed\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2408 msgid \"Installed But Not Activated\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2410 msgid \"Active\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2416 msgid \"Required Update not Available\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2419 msgid \"Requires Update\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2422 msgid \"Update recommended\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2477 #, php-format msgid \"All <span class=\\\"count\\\">(%s)</span>\" msgid_plural \"All <span class=\\\"count\\\">(%s)</span>\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:2481 #, php-format msgid \"To Install <span class=\\\"count\\\">(%s)</span>\" msgid_plural \"To Install <span class=\\\"count\\\">(%s)</span>\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:2485 #, php-format msgid \"Update Available <span class=\\\"count\\\">(%s)</span>\" msgid_plural \"Update Available <span class=\\\"count\\\">(%s)</span>\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:2489 #, php-format msgid \"To Activate <span class=\\\"count\\\">(%s)</span>\" msgid_plural \"To Activate <span class=\\\"count\\\">(%s)</span>\" msgstr[0] \"\" msgstr[1] \"\" #: includes/class-tgm-plugin-activation.php:2579 msgid \"Installed version:\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2587 msgid \"Minimum required version:\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2599 msgid \"Available version:\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2622 msgid \"No plugins to install, update or activate.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2641 msgid \"Plugin\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2642 msgid \"Source\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2647 msgid \"Version\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2648 #: setup/steps/import-theme-setting.php:68 msgid \"Status\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2778 msgid \"Upgrade message from the plugin author:\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2851 msgid \"No plugins were selected to be installed. No action taken.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2853 msgid \"No plugins were selected to be updated. No action taken.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2894 msgid \"No plugins are available to be installed at this time.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:2896 msgid \"No plugins are available to be updated at this time.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3002 msgid \"No plugins were selected to be activated. No action taken.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3028 msgid \"No plugins are available to be activated at this time.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3252 msgid \"Plugin activation failed.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3592 #, php-format msgid \"Updating Plugin %1$s (%2$d/%3$d)\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3595 #, php-format msgid \"An error occurred while installing %1$s: <strong>%2$s</strong>.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3597 #, php-format msgid \"The installation of %1$s failed.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3601 msgid \"\" \"The installation and activation process is starting. This process may take a \" \"while on some hosts, so please be patient.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3603 #, php-format msgid \"%1$s installed and activated successfully.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3603 #: includes/class-tgm-plugin-activation.php:3611 msgid \"Show Details\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3603 #: includes/class-tgm-plugin-activation.php:3611 msgid \"Hide Details\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3604 msgid \"All installations and activations have been completed.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3606 #, php-format msgid \"Installing and Activating Plugin %1$s (%2$d/%3$d)\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3609 msgid \"\" \"The installation process is starting. This process may take a while on some \" \"hosts, so please be patient.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3611 #, php-format msgid \"%1$s installed successfully.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3612 msgid \"All installations have been completed.\" msgstr \"\" #: includes/class-tgm-plugin-activation.php:3614 #, php-format msgid \"Installing Plugin %1$s (%2$d/%3$d)\" msgstr \"\" #: includes/helpers.php:262 includes/helpers.php:281 msgid \" \" msgstr \"\" #: includes/helpers.php:269 msgid \"Tags:\" msgstr \"\" #: includes/helpers.php:458 msgid \"Helpful Links\" msgstr \"\" #: includes/helpers.php:508 includes/helpers.php:511 includes/helpers.php:1603 #: includes/helpers.php:1608 msgid \"Home\" msgstr \"\" #: includes/helpers.php:628 includes/helpers.php:1702 msgid \"Search results\" msgstr \"\" #: includes/helpers.php:631 includes/helpers.php:1710 msgid \"F Y\" msgstr \"\" #: includes/helpers.php:633 includes/helpers.php:1714 msgid \"F j, Y\" msgstr \"\" #: includes/helpers.php:642 includes/helpers.php:1815 #, php-format msgid \"Category: %s\" msgstr \"\" #: includes/helpers.php:811 msgid \"Please enter your name.\" msgstr \"\" #: includes/helpers.php:812 msgid \"Name \" msgstr \"\" #: includes/helpers.php:824 msgid \"Please enter your email address.\" msgstr \"\" #: includes/helpers.php:825 msgid \"Please enter a valid email address.\" msgstr \"\" #: includes/helpers.php:827 msgid \"Email \" msgstr \"\" #: includes/helpers.php:836 msgid \"Please enter comment.\" msgstr \"\" #: includes/helpers.php:837 msgid \"Your Comment \" msgstr \"\" #: includes/helpers.php:846 msgid \"Website \" msgstr \"\" #: includes/helpers.php:850 msgid \"Cancel\" msgstr \"\" #: includes/helpers.php:858 msgid \"Post Comment \" msgstr \"\" #: includes/helpers.php:861 msgid \"Leave your comment\" msgstr \"\" #: includes/helpers.php:876 msgid \"Oops! Page Not Found!\" msgstr \"\" #: includes/helpers.php:877 msgid \"\" \"Sorry, we could not find the page you are looking for. Please click below \" \"button to back to the Home page.\" msgstr \"\" #: includes/helpers.php:878 msgid \"Back To Home\" msgstr \"\" #: includes/helpers.php:880 msgid \"404\" msgstr \"\" #: includes/helpers.php:1011 msgid \"User Avatar\" msgstr \"\" #: includes/helpers.php:1332 msgid \"Import Data For Course Setting\" msgstr \"\" #: includes/hooks.php:60 msgid \"Custom Widget Area\" msgstr \"\" #: includes/hooks.php:62 msgid \"Appears on sidebar of posts and pages\" msgstr \"\" #: includes/hooks.php:125 #, php-format msgid \"This theme requires the following plugin installed or update: %1$s.\" msgid_plural \"\" \"This theme requires the following plugins installed or updated: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/hooks.php:126 #, php-format msgid \"This theme recommends the following plugin installed or updated: %1$s.\" msgid_plural \"\" \"This theme recommends the following plugins installed or updated: %1$s.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/hooks.php:127 #, php-format msgid \"\" \"Sorry, but you do not have the correct permissions to install the %s plugin. \" \"Contact the administrator of this site for help on getting the plugin \" \"installed.\" msgid_plural \"\" \"Sorry, but you do not have the correct permissions to install the %s \" \"plugins. Contact the administrator of this site for help on getting the \" \"plugins installed.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/hooks.php:130 #, php-format msgid \"\" \"Sorry, but you do not have the correct permissions to activate the %s \" \"plugin. Contact the administrator of this site for help on getting the \" \"plugin activated.\" msgid_plural \"\" \"Sorry, but you do not have the correct permissions to activate the %s \" \"plugins. Contact the administrator of this site for help on getting the \" \"plugins activated.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/hooks.php:132 #, php-format msgid \"\" \"Sorry, but you do not have the correct permissions to update the %s plugin. \" \"Contact the administrator of this site for help on getting the plugin \" \"updated.\" msgid_plural \"\" \"Sorry, but you do not have the correct permissions to update the %s plugins. \" \"Contact the administrator of this site for help on getting the plugins \" \"updated.\" msgstr[0] \"\" msgstr[1] \"\" #: includes/hooks.php:134 msgid \"Activate installed plugin\" msgid_plural \"Activate installed plugins\" msgstr[0] \"\" msgstr[1] \"\" #: includes/hooks.php:137 #, php-format msgid \"All plugins installed and activated successfully. %s\" msgstr \"\" #: includes/hooks.php:520 msgid \"Add Begin Gradient\" msgstr \"\" #: includes/hooks.php:523 msgid \"Add start point color for background gradient.\" msgstr \"\" #: includes/hooks.php:528 msgid \"Add End Gradient\" msgstr \"\" #: includes/hooks.php:531 msgid \"Add end point color for background gradient.\" msgstr \"\" #: includes/hooks.php:536 msgid \"Add Rotate\" msgstr \"\" #: includes/hooks.php:539 msgid \"Rotate background gradient (degrees).\" msgstr \"\" #: includes/hooks.php:544 msgid \"Add Background Image\" msgstr \"\" #: includes/hooks.php:546 msgid \"Background Image.\" msgstr \"\" #: includes/hooks.php:964 msgid \"\" \"Sorry we could not log you in. The credentials supplied were not recognised.\" msgstr \"\" #: includes/hooks.php:977 msgid \"Your account is not correct !\" msgstr \"\" #: includes/hooks.php:997 msgid \"Email and Display name are required !\" msgstr \"\" #: includes/hooks.php:1005 msgid \"Captcha not found !\" msgstr \"\" #: includes/hooks.php:1022 msgid \"Email already exists !\" msgstr \"\" #: includes/hooks.php:1033 msgid \"Your account was created ! Please confirm at email \" msgstr \"\" #: includes/hooks.php:1036 msgid \"Can not create User !\" msgstr \"\" #: includes/hooks.php:1145 msgid \"\" \"The setup progress of EduChain theme has not yet been completed and can not \" \"work properly.\" msgstr \"\" #: includes/hooks.php:1479 includes/hooks.php:1480 msgid \"Setup Educhain\" msgstr \"\" #: includes/menus.php:10 msgid \"Top Left Menu\" msgstr \"\" #: includes/menus.php:11 msgid \"Top Center Menu\" msgstr \"\" #: includes/menus.php:12 msgid \"Top Right Menu\" msgstr \"\" #: includes/menus.php:13 msgid \"Main Left Menu\" msgstr \"\" #: includes/menus.php:14 msgid \"Main Center Menu\" msgstr \"\" #: includes/menus.php:15 msgid \"Main Right Menu\" msgstr \"\" #: includes/menus.php:16 msgid \"Bottom menu\" msgstr \"\" #: includes/menus.php:21 msgid \"Main menu\" msgstr \"\" #: page-templates/login-page.php:17 msgid \"Login page\" msgstr \"\" #: searchform.php:5 searchform.php:60 msgid \"Search\" msgstr \"\" #: setup/class-educhain-setup.php:540 msgid \"Activated plugin : \" msgstr \"\" #: setup/class-educhain-setup.php:540 msgid \" successfully!\" msgstr \"\" #: setup/class-educhain-setup.php:574 setup/class-educhain-setup.php:899 msgid \"Active failed!\" msgstr \"\" #: setup/class-educhain-setup.php:578 msgid \"Install failed. Reason:\" msgstr \"\" #: setup/class-educhain-setup.php:902 msgid \"Alreadt Activated!\" msgstr \"\" #: setup/class-educhain-setup.php:1073 msgid \"The URL of your site's homepage.\" msgstr \"\" #: setup/class-educhain-setup.php:1078 msgid \"The root URL of your site.\" msgstr \"\" #: setup/class-educhain-setup.php:1085 #, php-format msgid \"Please update your wordpress to version newer than %s.\" msgstr \"\" #: setup/class-educhain-setup.php:1089 msgid \"Whether or not you have WordPress Multisite enabled.\" msgstr \"\" #: setup/class-educhain-setup.php:1091 msgid \"Please disable multisite mode.\" msgstr \"\" #: setup/class-educhain-setup.php:1095 msgid \"Displays whether or not WordPress is in Debug Mode.\" msgstr \"\" #: setup/class-educhain-setup.php:1097 msgid \"\" \"Please disable debug mode. This mode is used by developers to test the \" \"theme. We recommend you turn it off for an optimal user experience on your \" \"website.\" msgstr \"\" #: setup/class-educhain-setup.php:1103 #, php-format msgid \"Please config memory limit larger than %sB.\" msgstr \"\" #: setup/class-educhain-setup.php:1116 #, php-format msgid \"Please update PHP to version newer %s.\" msgstr \"\" #: setup/class-educhain-setup.php:1122 #, php-format msgid \"Please config Post Max Size larger than %sB.\" msgstr \"\" #: setup/class-educhain-setup.php:1128 #, php-format msgid \"Please config Time Limit larger than %s.\" msgstr \"\" #: setup/class-educhain-setup.php:1134 #, php-format msgid \"Please config Max Input Vars larger than %s.\" msgstr \"\" #: setup/class-educhain-setup.php:1140 msgid \"Please disable or uninstall SUHOSIN.\" msgstr \"\" #: setup/class-educhain-setup.php:1143 msgid \"Zip Archive\" msgstr \"\" #: setup/class-educhain-setup.php:1144 msgid \"\" \"Zip Archive is required for importing demos. They are used to import and \" \"export zip files specifically for sliders.\" msgstr \"\" #: setup/class-educhain-setup.php:1146 msgid \"Please enable Zip Archive.\" msgstr \"\" #: setup/class-educhain-setup.php:1152 #, php-format msgid \"Please update MySQL to version newer than %s.\" msgstr \"\" #: setup/class-educhain-setup.php:1158 #, php-format msgid \"Please config Max Upload Size larger than %sB.\" msgstr \"\" #: setup/class-educhain-setup.php:1162 msgid \"\" \"Payment gateways can use cURL to communicate with remote servers to \" \"authorize payments, other plugins may also use it when communicating with \" \"remote services.\" msgstr \"\" #: setup/class-educhain-setup.php:1164 msgid \"Please enable fsockopen/cURL.\" msgstr \"\" #: setup/class-educhain-setup.php:1195 setup/class-educhain-setup.php:1196 msgid \"YES\" msgstr \"\" #: setup/class-educhain-setup.php:1195 setup/class-educhain-setup.php:1196 msgid \"NO\" msgstr \"\" #: setup/data-master/views/import_attachments.php:14 msgid \"Attachments Import\" msgstr \"\" #: setup/data-master/views/import_attachments.php:19 msgid \"From Server\" msgstr \"\" #: setup/data-master/views/import_attachments.php:23 #: setup/data-master/views/import_pages.php:28 msgid \"Import\" msgstr \"\" #: setup/data-master/views/import_pages.php:8 msgid \"Pages Import\" msgstr \"\" #: setup/layout.php:50 setup/steps/import-theme-setting.php:113 msgid \"Continue\" msgstr \"\" #: setup/layout.php:51 setup/steps/welcome.php:19 msgid \"Not right now\" msgstr \"\" #: setup/layout.php:60 msgid \"Loading...\" msgstr \"\" #: setup/steps/active-plugin.php:67 msgid \"Your site will have these features\" msgstr \"\" #: setup/steps/active-plugin.php:69 msgid \"\" \"These are the plugins we include with this theme. Currently Solazu Unyson is \" \"the only required plugin that is needed to use it. You can activate, \" \"deactivate or update the plugins from this step.\" msgstr \"\" #: setup/steps/active-plugin.php:76 msgid \"Required Plugins\" msgstr \"\" #: setup/steps/active-plugin.php:83 setup/steps/active-plugin.php:121 #: setup/steps/import-theme-setting.php:79 msgid \"Installed\" msgstr \"\" #: setup/steps/active-plugin.php:86 setup/steps/active-plugin.php:124 #: setup/steps/import-theme-setting.php:82 msgid \"Activated\" msgstr \"\" #: setup/steps/check-requirement.php:32 msgid \"System check\" msgstr \"\" #: setup/steps/check-requirement.php:33 msgid \"Please make sure all requirement are passed\" msgstr \"\" #: setup/steps/check-requirement.php:66 msgid \"Required:\" msgstr \"\" #: setup/steps/check-requirement.php:72 msgid \"Current:\" msgstr \"\" #: setup/steps/generate-demo.php:19 msgid \"Levels\" msgstr \"\" #: setup/steps/generate-demo.php:20 msgid \"Tags\" msgstr \"\" #: setup/steps/generate-demo.php:21 msgid \"Categories\" msgstr \"\" #: setup/steps/generate-demo.php:22 msgid \"Languages\" msgstr \"\" #: setup/steps/generate-demo.php:23 msgid \"Instructors\" msgstr \"\" #: setup/steps/generate-demo.php:24 msgid \"Courses\" msgstr \"\" #: setup/steps/generate-demo.php:33 msgid \"Generate demo\" msgstr \"\" #: setup/steps/generate-demo.php:38 msgid \"Check all\" msgstr \"\" #: setup/steps/generate-demo.php:53 msgid \"Total items\" msgstr \"\" #: setup/steps/generate-demo.php:53 msgid \"( Max 20 items )\" msgstr \"\" #: setup/steps/import-theme-setting.php:45 msgid \"Theme setting completed!\" msgstr \"\" #: setup/steps/import-theme-setting.php:46 msgid \"Almost of setting tasks have been done with activated plugins below\" msgstr \"\" #: setup/steps/import-theme-setting.php:48 msgid \"Theme\" msgstr \"\" #: setup/steps/import-theme-setting.php:62 msgid \"Functions / Plugins\" msgstr \"\" #: setup/steps/import-theme-setting.php:66 msgid \"Detail\" msgstr \"\" #: setup/steps/import-theme-setting.php:67 msgid \"Requirement\" msgstr \"\" #: setup/steps/import-theme-setting.php:112 msgid \"Skip this step\" msgstr \"\" #: setup/steps/welcome.php:13 msgid \"RubikThemes Setup Wizard\" msgstr \"\" #: setup/steps/welcome.php:14 msgid \"\" \"Welcome to the setup wizard for RubikThemes Theme. You're using RubikThemes \" \"theme.\" msgstr \"\" #: setup/steps/welcome.php:15 msgid \"\" \"Thank you for choosing the RubikThemes from ThemeForest. This quick setup \" \"wizard will help you configure your new website. This wizard will install \" \"the required WordPress plugins, default content, logo and tell you a little \" \"about Help &amp; Support options. It should only take 5 minutes.\" msgstr \"\" #: setup/steps/welcome.php:16 msgid \"\" \"No time right now? If you don't want to go through the wizard, you can skip \" \"and return to the WordPress dashboard. Come back anytime if you change your \" \"mind!\" msgstr \"\" #: setup/steps/welcome.php:20 msgid \"Let's Go!\" msgstr \"\" "; // result will be an iterator over tuples containing the start and end indices for each match in the string let result = regex.captures_iter(string); for mat in result { println!("{:?}", mat); } }

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Rust, please visit: https://docs.rs/regex/latest/regex/