Regular Expressions 101

Save & Manage Regex

  • Current Version: 1
  • Save & Share
  • Community Library

Flavor

  • PCRE2 (PHP)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java
  • .NET 7.0 (C#)
  • Rust
  • PCRE (Legacy)
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests
Sponsors
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
Processing...

Test String

Code Generator

Generated Code

import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example { public static void main(String[] args) { final String regex = "(#:|#,).+[\\n]*"; final String string = "#, fuzzy\n" + "msgid \"\"\n" + "msgstr \"\"\n" + "\"Project-Id-Version: \\n\"\n" + "\"POT-Creation-Date: 2017-12-05 11:39+0700\\n\"\n" + "\"PO-Revision-Date: 2016-08-17 19:26+0700\\n\"\n" + "\"Last-Translator: \\n\"\n" + "\"Language-Team: \\n\"\n" + "\"Language: en_US\\n\"\n" + "\"MIME-Version: 1.0\\n\"\n" + "\"Content-Type: text/plain; charset=UTF-8\\n\"\n" + "\"Content-Transfer-Encoding: 8bit\\n\"\n" + "\"X-Generator: Poedit 1.8.7.1\\n\"\n" + "\"X-Poedit-Basepath: ..\\n\"\n" + "\"Plural-Forms: nplurals=2; plural=(n != 1);\\n\"\n" + "\"X-Poedit-SourceCharset: UTF-8\\n\"\n" + "\"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e;esc_html_x;_n:1,2;\"\n" + "\"_n_noop:1,2;_nx:1,2;_nx_noop:1,2\\n\"\n" + "\"X-Poedit-SearchPath-0: .\\n\"\n" + "\"X-Poedit-SearchPathExcluded-0: *.js\\n\"\n\n" + "#: comments.php:20\n" + "#, php-format\n" + "msgid \"Comment (%1$s)\"\n" + "msgid_plural \"Comments (%1$s)\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: comments.php:44 includes/helpers.php:87\n" + "msgid \"Previous\"\n" + "msgstr \"\"\n\n" + "#: comments.php:45 includes/helpers.php:88\n" + "msgid \"Next\"\n" + "msgstr \"\"\n\n" + "#: comments.php:57\n" + "msgid \"Comments are closed.\"\n" + "msgstr \"\"\n\n" + "#: default-templates/article.php:29 default-templates/page.php:22\n" + "#: default-templates/single.php:26\n" + "#: framework-customizations/extensions/articles/articles/article-04/views/view.php:29\n" + "#: framework-customizations/extensions/events/views/single.php:90\n" + "#: framework-customizations/extensions/faq/views/single.php:16\n" + "#: framework-customizations/extensions/portfolio/views/single.php:47\n" + "#: framework-customizations/extensions/services/views/single.php:33\n" + "#: framework-customizations/extensions/teams/views/single.php:81\n" + "msgid \"Continue reading\"\n" + "msgstr \"\"\n\n" + "#: default-templates/article.php:36 default-templates/page.php:25\n" + "#: default-templates/single.php:30\n" + "#: framework-customizations/extensions/articles/articles/article-04/views/view.php:33\n" + "#: framework-customizations/extensions/portfolio/views/single.php:51\n" + "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:32\n" + "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:30\n" + "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:32\n" + "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:30\n" + "#: framework-customizations/extensions/posts/posts/post-05/views/view.php:27\n" + "#: framework-customizations/extensions/services/views/single.php:37\n" + "msgid \"Pages:\"\n" + "msgstr \"\"\n\n" + "#: default-templates/footer.php:12\n" + "msgid \"&#169; Designed by RubikThemes. All Rights Reserved.\"\n" + "msgstr \"\"\n\n" + "#: default-templates/no-content.php:3\n" + "msgid \"We can&rsquo;t find what you&rsquo;re looking for!\"\n" + "msgstr \"\"\n\n" + "#: default-templates/no-content.php:9\n" + "msgid \"Ready to publish your first post?\"\n" + "msgstr \"\"\n\n" + "#: default-templates/no-content.php:9\n" + "msgid \"Get started here\"\n" + "msgstr \"\"\n\n" + "#: default-templates/no-content.php:13\n" + "msgid \"Please try again with different keywords.\"\n" + "msgstr \"\"\n\n" + "#: default-templates/no-content.php:18\n" + "msgid \"\"\n" + "\"It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps \"\n" + "\"searching can help.\"\n" + "msgstr \"\"\n\n" + "#: default-templates/page.php:34\n" + "#: framework-customizations/extensions/events/views/single.php:94\n" + "#: framework-customizations/extensions/faq/views/single.php:39\n" + "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:41\n" + "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:39\n" + "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:41\n" + "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:39\n" + "#: includes/helpers.php:224\n" + "msgid \"Edit\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:11\n" + "msgid \"Donation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:161\n" + "#: framework-customizations/extensions/events/hooks.php:193\n" + "msgid \"Exceeds the ticket class allows\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:591\n" + "msgid \"Pending\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:592\n" + "msgid \"Approve\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:596\n" + "msgid \"All Status\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:617\n" + "msgid \"All Events\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:634\n" + "msgid \"All Event Categories\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:651\n" + "msgid \"Money From\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:653\n" + "msgid \"To\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:727\n" + "msgid \"Speaker\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:730\n" + "msgid \"Name of event speaker.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:733\n" + "msgid \"Speaker Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:736\n" + "msgid \"Image of event speaker.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:740\n" + "msgid \"Start And End Of Event\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:741\n" + "msgid \"Set start and end events datetime\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:763\n" + "msgid \"Event Location\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:765\n" + "msgid \"Where does the event take place?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:772\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:102\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:124\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:46\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:40\n" + "#: framework-customizations/theme/options/course-settings.php:48\n" + "#: framework-customizations/theme/options/page-404-settings.php:72\n" + "msgid \"Description\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:775\n" + "msgid \"Event Label\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:778\n" + "msgid \"Label of event.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:787\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:86\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:210\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:337\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:85\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:209\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:330\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:85\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:209\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:318\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:85\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:209\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:322\n" + "#: framework-customizations/theme/options/general-settings.php:223\n" + "msgid \"Custom Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:788\n" + "#: framework-customizations/theme/options/general-settings.php:224\n" + "msgid \"Change the style / typography of this shortcode\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:789\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:88\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:212\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:339\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:87\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:211\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:332\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:87\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:211\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:320\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:87\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:211\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:324\n" + "#: framework-customizations/theme/options/general-settings.php:225\n" + "#: framework-customizations/theme/options/page-header-settings.php:169\n" + "#: framework-customizations/theme/options/page-header-settings.php:241\n" + "msgid \"Styling\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:795\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:25\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:86\n" + "#: framework-customizations/extensions/portfolio/config.php:155\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:67\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:231\n" + "#: framework-customizations/theme/options/general-settings.php:234\n" + "#: framework-customizations/theme/options/general-settings.php:394\n" + "#: framework-customizations/theme/options/general-settings.php:457\n" + "#: framework-customizations/theme/options/taxonomies/cat_course.php:15\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:23\n" + "#: includes/hooks.php:436\n" + "msgid \"Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:796\n" + "msgid \"Select icon for label.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:799\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:92\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:343\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:504\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:657\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:810\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:91\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:336\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:497\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:649\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:801\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:91\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:324\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:485\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:637\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:789\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:91\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:328\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:489\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:641\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:793\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:161\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:232\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:165\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:236\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:88\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:78\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:74\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:34\n" + "#: framework-customizations/theme/options/general-settings.php:66\n" + "#: framework-customizations/theme/options/general-settings.php:263\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:42\n" + "#: framework-customizations/theme/options/page-header-settings.php:44\n" + "#: framework-customizations/theme/options/posts/page.php:119\n" + "msgid \"Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:800\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:162\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:233\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:166\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:237\n" + "#: framework-customizations/theme/options/general-settings.php:264\n" + "msgid \"Select the background color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:806\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:125\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:375\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:511\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:664\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:817\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:124\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:368\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:504\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:656\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:808\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:124\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:356\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:492\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:644\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:796\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:124\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:360\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:496\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:648\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:800\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:54\n" + "#: framework-customizations/theme/options/general-settings.php:270\n" + "msgid \"Text Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:807\n" + "#: framework-customizations/theme/options/general-settings.php:271\n" + "msgid \"Select the text color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:817\n" + "msgid \"Hide Event When Expired\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:818\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:46\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:13\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:155\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:165\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:174\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:184\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:8\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:3\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:3\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:6\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:13\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:12\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:11\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:4\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:9\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:87\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:98\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:109\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:120\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:131\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:142\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:153\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:177\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:193\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:209\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:225\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:122\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:130\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:138\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:150\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:290\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:303\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:317\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:331\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:96\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:88\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:13\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:66\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:163\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:13\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:108\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:4\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:12\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:5\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:10\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:8\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:14\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:9\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:8\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:5\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:10\n" + "#: framework-customizations/theme/options/advertisement-settings.php:72\n" + "#: framework-customizations/theme/options/general-settings.php:116\n" + "#: framework-customizations/theme/options/general-settings.php:130\n" + "#: framework-customizations/theme/options/post-settings.php:268\n" + "#: framework-customizations/theme/options/post-settings.php:282\n" + "#: framework-customizations/theme/options/post-settings.php:296\n" + "#: framework-customizations/theme/options/post-settings.php:310\n" + "#: framework-customizations/theme/options/post-settings.php:485\n" + "#: framework-customizations/theme/options/theme-requirements.php:21\n" + "#: framework-customizations/theme/options/theme-requirements.php:29\n" + "#: framework-customizations/theme/options/theme-requirements.php:98\n" + "#: framework-customizations/theme/options/theme-requirements.php:135\n" + "#: framework-customizations/theme/options/theme-requirements.php:247\n" + "msgid \"Yes\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:825\n" + "msgid \"Ticket Price\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:828\n" + "#: framework-customizations/extensions/events/hooks.php:835\n" + "msgid \"Price to sale the ticket of the event\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:832\n" + "msgid \"Ticket Promotion Price\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:839\n" + "msgid \"Number Ticket\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:842\n" + "msgid \"Number of the ticket of the event\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:846\n" + "msgid \"Button Buy Ticket Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:848\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:496\n" + "msgid \"Buy Ticket\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:849\n" + "msgid \"Input text for Buy Ticket button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:852\n" + "msgid \"Button Buy Ticket URL\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:854\n" + "msgid \"Input URL for payment method on button Buy Ticket\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:860\n" + "#: framework-customizations/extensions/portfolio/config.php:125\n" + "#: framework-customizations/theme/options/general-settings.php:7\n" + "#: framework-customizations/theme/options/general-settings.php:11\n" + "#: framework-customizations/theme/options/page-header-settings.php:312\n" + "#: framework-customizations/theme/options/template-settings.php:216\n" + "msgid \"General\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/hooks.php:865\n" + "msgid \"Ticket\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:231\n" + "#: framework-customizations/extensions/events/views/single.php:258\n" + "#: framework-customizations/extensions/portfolio/views/course-info.php:65\n" + "msgid \"Price:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:231\n" + "msgid \"from \"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:234\n" + "msgid \"Donation Now\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:490\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:983\n" + "msgid \"Buy ticket\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:511\n" + "msgid \"Ticket Prices\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1080\n" + "msgid \"Event Host\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1143\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:14\n" + "msgid \"days\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1150\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:22\n" + "msgid \"hours\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1157\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:30\n" + "msgid \"mins\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1164\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:56\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/views/view.php:38\n" + "msgid \"secs\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1202\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1271\n" + "msgid \"Donate now\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1249\n" + "msgid \"Events Donation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/includes/class-slz-event.php:1254\n" + "msgid \"How much would you like to donate?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:8\n" + "msgid \"SLZ Events Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:9\n" + "msgid \"List of events\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:16\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:18\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:13\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:13\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:15\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:39\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:41\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:42\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:57\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:16\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:24\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:16\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:27\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:10\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:16\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:14\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:27\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:18\n" + "#: framework-customizations/extensions/widgets/widgets/button/config.php:13\n" + "#: framework-customizations/theme/options/page-404-settings.php:29\n" + "#: framework-customizations/theme/options/page-header-settings.php:25\n" + "#: framework-customizations/theme/options/page-options.php:78\n" + "msgid \"United States\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:17\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:19\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:40\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:42\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:43\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:58\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:17\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:23\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:17\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:28\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:60\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:17\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:15\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:28\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:19\n" + "#: framework-customizations/extensions/widgets/widgets/button/config.php:14\n" + "#: framework-customizations/theme/options/page-404-settings.php:30\n" + "msgid \"India\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:18\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:16\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:20\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:41\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:20\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:29\n" + "#: framework-customizations/extensions/widgets/widgets/button/config.php:15\n" + "msgid \"United Kingdom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:35\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:102\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:112\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:113\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:123\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:124\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:134\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:144\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:154\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:164\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:174\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:184\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:8\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:215\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:225\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:226\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:236\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:237\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:247\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:257\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:267\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:277\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:287\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:297\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:307\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:152\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:285\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:415\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:434\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:449\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:474\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:568\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:588\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:602\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:627\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:721\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:741\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:755\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:780\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:151\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:278\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:408\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:427\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:442\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:467\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:560\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:580\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:594\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:619\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:712\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:732\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:746\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:771\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:151\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:266\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:396\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:415\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:430\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:455\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:548\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:568\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:582\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:607\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:700\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:720\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:734\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:759\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:151\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:270\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:400\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:419\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:434\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:459\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:552\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:572\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:586\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:611\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:704\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:724\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:738\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:763\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:27\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:72\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:83\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:94\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:116\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:28\n" + "#: framework-customizations/theme/options/general-settings.php:318\n" + "#: framework-customizations/theme/options/post-settings.php:181\n" + "#: framework-customizations/theme/options/post-settings.php:439\n" + "#: framework-customizations/theme/options/post-settings.php:511\n" + "msgid \"Show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:36\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:9\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:156\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:289\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:419\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:439\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:453\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:478\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:572\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:592\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:606\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:631\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:725\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:745\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:759\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:784\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:155\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:282\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:412\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:432\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:446\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:471\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:564\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:584\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:598\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:623\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:716\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:736\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:750\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:775\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:155\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:270\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:400\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:420\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:434\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:459\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:552\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:572\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:586\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:611\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:704\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:724\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:738\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:763\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:155\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:274\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:404\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:424\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:438\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:463\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:556\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:576\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:590\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:615\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:708\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:728\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:742\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:767\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:54\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:32\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:84\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:95\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:117\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:29\n" + "#: framework-customizations/theme/options/general-settings.php:314\n" + "#: framework-customizations/theme/options/post-settings.php:185\n" + "#: framework-customizations/theme/options/post-settings.php:392\n" + "#: framework-customizations/theme/options/post-settings.php:443\n" + "#: framework-customizations/theme/options/post-settings.php:515\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:95\n" + "#: framework-customizations/theme/options/template-settings.php:565\n" + "msgid \"Hide\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:40\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:52\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:27\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:18\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:104\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:20\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:34\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:47\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:154\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:214\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:39\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:52\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:138\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:198\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:38\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:51\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:130\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:190\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:30\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:8\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:64\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:15\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:62\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:15\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:144\n" + "#: framework-customizations/theme/options/page-header-settings.php:222\n" + "#: framework-customizations/theme/options/post-settings.php:154\n" + "msgid \"Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:41\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:28\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:19\n" + "#: framework-customizations/theme/config.php:541\n" + "msgid \"Event\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/config.php:45\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:14\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:8\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:4\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:4\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:7\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:14\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:13\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:12\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:5\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:10\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:88\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:99\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:110\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:121\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:132\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:143\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:154\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:178\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:194\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:210\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:226\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:97\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:89\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:9\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:17\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:14\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:67\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:164\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:12\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:5\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:13\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:6\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:11\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:7\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:13\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:8\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:7\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:6\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:11\n" + "#: framework-customizations/theme/options/advertisement-settings.php:68\n" + "#: framework-customizations/theme/options/general-settings.php:112\n" + "#: framework-customizations/theme/options/general-settings.php:126\n" + "#: framework-customizations/theme/options/post-settings.php:272\n" + "#: framework-customizations/theme/options/post-settings.php:286\n" + "#: framework-customizations/theme/options/post-settings.php:300\n" + "#: framework-customizations/theme/options/post-settings.php:314\n" + "#: framework-customizations/theme/options/post-settings.php:489\n" + "#: framework-customizations/theme/options/theme-requirements.php:24\n" + "#: framework-customizations/theme/options/theme-requirements.php:33\n" + "#: framework-customizations/theme/options/theme-requirements.php:107\n" + "#: framework-customizations/theme/options/theme-requirements.php:139\n" + "#: framework-customizations/theme/options/theme-requirements.php:247\n" + "msgid \"No\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:6\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:7\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:17\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:18\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:23\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:23\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:25\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:9\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:5\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:69\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:43\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:6\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:3\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:3\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:31\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:36\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:3\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:10\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:20\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:3\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:3\n" + "#: framework-customizations/extensions/widgets/widgets/partner/config.php:13\n" + "#: framework-customizations/theme/options/page-header-settings.php:36\n" + "#: framework-customizations/theme/options/page-options.php:89\n" + "msgid \"Florida\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:7\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:8\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:18\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:19\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:24\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:10\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:6\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:70\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:44\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:7\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:39\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:32\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:37\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:21\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:4\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:4\n" + "#: framework-customizations/extensions/widgets/widgets/partner/config.php:14\n" + "#: framework-customizations/theme/options/page-header-settings.php:37\n" + "#: framework-customizations/theme/options/page-options.php:90\n" + "msgid \"California\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:8\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:19\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:20\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:26\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:11\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:71\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:45\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:9\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:27\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:33\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:22\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:5\n" + "#: framework-customizations/extensions/widgets/widgets/partner/config.php:15\n" + "msgid \"Georgia\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:15\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:14\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:12\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:14\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:15\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:10\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:63\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:66\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:21\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:21\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:23\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:6\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:25\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:13\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:64\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:66\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:40\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:13\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:10\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:36\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:17\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:32\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:33\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:9\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:16\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:14\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:17\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:11\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:15\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:14\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:20\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:15\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:14\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:13\n" + "#: framework-customizations/extensions/widgets/widgets/partner/options.php:11\n" + "#: framework-customizations/theme/options/page-header-settings.php:33\n" + "#: framework-customizations/theme/options/page-options.php:86\n" + "msgid \"Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:18\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:29\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:17\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:20\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:14\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:18\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:17\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:23\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:18\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:17\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:20\n" + "msgid \"Select style for blocks\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:23\n" + "msgid \"Label Position\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:26\n" + "msgid \"Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:27\n" + "msgid \"Bottom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-1.php:29\n" + "msgid \"Select positon for display label.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:7\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:12\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:76\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:95\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:75\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:68\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:62\n" + "msgid \"Columns On Row\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:10\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:10\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:15\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:79\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:98\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:78\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:71\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:65\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:3\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:71\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:5\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:25\n" + "msgid \"One\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:11\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:11\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:7\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:6\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:16\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:80\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:99\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:79\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:72\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:66\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:23\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:72\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:6\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:26\n" + "msgid \"Two\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:12\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:12\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:8\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:7\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:6\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:17\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:81\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:100\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:80\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:73\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:13\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:67\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:27\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:7\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:27\n" + "msgid \"Three\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:13\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:13\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:9\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:8\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:7\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:18\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:82\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:101\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:81\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:74\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:14\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:68\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:28\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:74\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:8\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:28\n" + "msgid \"Four\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/options/layout-3.php:15\n" + "msgid \"Select item columns on row .\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:20\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:26\n" + "msgid \"-All Event Categories-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:24\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:30\n" + "msgid \"-All Event-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:33\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:36\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:42\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:11\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:11\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:13\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:18\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:22\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:25\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:54\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:56\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:50\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:10\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:49\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:10\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:20\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:41\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:40\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:45\n" + "#: framework-customizations/theme/options/page-404-settings.php:25\n" + "#: framework-customizations/theme/options/page-header-settings.php:22\n" + "#: framework-customizations/theme/options/page-options.php:75\n" + "msgid \"Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:37\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:41\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:23\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:26\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:30\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:47\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:76\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:27\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:46\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:45\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:50\n" + "msgid \"Choose layout will be displayed.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:44\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:96\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:142\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:202\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:126\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:186\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:118\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:178\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:56\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:54\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:136\n" + "msgid \"Display By\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:47\n" + "msgid \"Choose team category or special events to display\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:48\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:70\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:92\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:100\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:122\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:144\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:135\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:146\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:172\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:195\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:206\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:232\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:255\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:130\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:156\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:179\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:190\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:216\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:239\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:122\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:148\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:171\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:182\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:208\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:231\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:180\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:193\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:138\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:147\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:111\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:120\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:60\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:82\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:104\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:58\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:80\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:102\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:140\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:162\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:185\n" + "msgid \"Filter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:58\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:110\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:160\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:220\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:144\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:204\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:136\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:196\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:36\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:70\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:68\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:150\n" + "msgid \"Add Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:61\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:163\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:223\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:147\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:207\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:139\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:199\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:39\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:73\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:71\n" + "msgid \"Choose special category to filter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:65\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:117\n" + "msgid \"Choose Event Category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:74\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:126\n" + "#: framework-customizations/theme/options/template-settings.php:441\n" + "msgid \"Events\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:80\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:132\n" + "msgid \"Add Event\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:83\n" + "msgid \"Choose special event to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:87\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:139\n" + "msgid \"\"\n" + "\"Default display All Event if no event is selected and Number event is empty.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:100\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:213\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:138\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:34\n" + "msgid \"Show Feature Image?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:104\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:217\n" + "msgid \"Choose to show or hide image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:105\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:116\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:127\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:137\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:147\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:157\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:167\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:177\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:187\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:195\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:218\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:229\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:240\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:250\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:260\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:270\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:280\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:290\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:300\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:314\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:322\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:181\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:188\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:195\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:202\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:209\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:216\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:227\n" + "msgid \"Custom Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:110\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:223\n" + "msgid \"Show Event Label?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:115\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:228\n" + "msgid \"Choose to show or hide event label.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:121\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:234\n" + "msgid \"Show Event Description?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:126\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:239\n" + "msgid \"Choose to show or hide event description.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:132\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:245\n" + "msgid \"Show Event Speaker?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:136\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:249\n" + "msgid \"Choose to show or hide event speaker.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:142\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:255\n" + "msgid \"Show Event Location?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:146\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:259\n" + "msgid \"Choose to show or hide event location.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:152\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:265\n" + "msgid \"Show Event Time?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:156\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:269\n" + "msgid \"Choose to show or hide event time.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:162\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:275\n" + "msgid \"Show Event Ticket Number?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:166\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:279\n" + "msgid \"Choose to show or hide event ticket number.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:172\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:285\n" + "msgid \"Show Event Ticket Price?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:176\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:289\n" + "msgid \"Choose to show or hide event ticket price.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:182\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:295\n" + "msgid \"Show Meta Info?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:186\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:299\n" + "msgid \"Choose to show or hide event meta info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:192\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:319\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:74\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:392\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:359\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:398\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:33\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:117\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:136\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:94\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:101\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:56\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:192\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:330\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:126\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:92\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:84\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:126\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:52\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:101\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:49\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:40\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:178\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:194\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:205\n" + "msgid \"Title Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:194\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:321\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:76\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:51\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:42\n" + "msgid \"Choose a custom color for title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:202\n" + "msgid \"Shortcode Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:205\n" + "msgid \"Add title for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:210\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:90\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:16\n" + "#: framework-customizations/theme/options/post-settings.php:221\n" + "#: framework-customizations/theme/options/post-settings.php:458\n" + "#: framework-customizations/theme/options/post-settings.php:549\n" + "msgid \"Columns\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:214\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:89\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:200\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:213\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:260\n" + "msgid \"Choose number column will be displayed.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:223\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:74\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:79\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:102\n" + "msgid \"Excerpt Length\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:226\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:77\n" + "msgid \"Enter number of excerpt length. Default: 15\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:231\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:43\n" + "msgid \"Pagination\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:234\n" + "msgid \"Choose pagination display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:239\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:56\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:86\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:97\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:93\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:95\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:14\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:268\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:159\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:104\n" + "#: framework-customizations/theme/options/post-settings.php:452\n" + "#: framework-customizations/theme/options/post-settings.php:543\n" + "msgid \"Limit Posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:243\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:58\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:89\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:100\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:96\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:98\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:271\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:162\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:107\n" + "msgid \"\"\n" + "\"Add limit posts per page. Set -1 or empty to show all. The number of posts \"\n" + "\"to display. If it blank the number posts will be the number from Settings -> \"\n" + "\"Reading\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:248\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:62\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:100\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:102\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:94\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:19\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:275\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:166\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:111\n" + "msgid \"Offset Post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:251\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:64\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:103\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:105\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:97\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:278\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:169\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:114\n" + "msgid \"\"\n" + "\"Enter offset to pass over posts. If you want to start on record 6, using \"\n" + "\"offset 5\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:256\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:66\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:107\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:109\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:101\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:115\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:72\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:148\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:301\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:173\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:118\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:17\n" + "msgid \"Sort By\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:259\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:69\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:176\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:121\n" + "msgid \"Select order to display list properties.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:266\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:329\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:68\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:115\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:114\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:116\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:108\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:53\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/cart_icon.php:6\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:20\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:44\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:43\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:17\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:17\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:74\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:54\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:107\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:254\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:160\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:35\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:34\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:28\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:58\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:71\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:95\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:78\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:83\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:114\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:80\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:238\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:162\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:128\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:42\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:72\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:234\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:200\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:132\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:178\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:70\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:75\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:257\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:97\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:155\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:48\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:23\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:101\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:129\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:308\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:187\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:125\n" + "msgid \"Extra Class\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-block/vc_options.php:269\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:70\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:118\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:117\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:119\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:111\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:77\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:57\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:110\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:257\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:86\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:83\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:45\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:135\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:260\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:100\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:158\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:51\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:311\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:190\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:128\n" + "msgid \"Add extra class to block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:8\n" + "msgid \"SLZ Events Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:9\n" + "msgid \"Banner of events\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:17\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:62\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:21\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:31\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:20\n" + "msgid \"Italy\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:18\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:26\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:32\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:22\n" + "msgid \"Turkey\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/config.php:40\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:84\n" + "#: framework-customizations/extensions/portfolio/views/archive.php:47\n" + "#: framework-customizations/extensions/posts/posts/post-01/views/related_item.php:53\n" + "#: framework-customizations/extensions/posts/posts/post-02/views/related_item.php:53\n" + "#: framework-customizations/extensions/posts/posts/post-03/views/related_item.php:53\n" + "#: framework-customizations/extensions/posts/posts/post-04/views/related_item.php:53\n" + "#: framework-customizations/extensions/posts/posts/post-05/views/related_item.php:53\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:79\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:88\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/large_module.php:68\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/medium_module.php:45\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-mansory/views/layout-1.php:23\n" + "#: framework-customizations/theme/views/article.php:29\n" + "msgid \"Read More\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:42\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:3\n" + "msgid \"London\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:43\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:4\n" + "msgid \"Harrogate\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:44\n" + "msgid \"Leeds\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-1.php:17\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:15\n" + "msgid \"Select style for event block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/options/layout-3.php:6\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:3\n" + "msgid \"Istanbul\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:50\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:22\n" + "msgid \"Title Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:53\n" + "msgid \"Add title for shortcode block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:58\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:88\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:108\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:100\n" + "msgid \"Limit Post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:61\n" + "msgid \"Limit post display. Default: -1\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:82\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:86\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:180\n" + "msgid \"Button \\\"Read More\\\" Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:89\n" + "msgid \"Enter text for button \\\"Read More\\\"\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:99\n" + "msgid \"Choose event category or special events to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:113\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:153\n" + "msgid \"Choose special category to filter.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:135\n" + "msgid \"Choose special event to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:152\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:60\n" + "msgid \"Is Auto Play?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:154\n" + "msgid \"Choose YES to slide auto play. Default: Yes\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:157\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:167\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:177\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:187\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:196\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:205\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:129\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:142\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:151\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:160\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:169\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:93\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:106\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:119\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:132\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:144\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:166\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:182\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:198\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:214\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:230\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:243\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:178\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:187\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:196\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:205\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:213\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:221\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:266\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:275\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:284\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:293\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:302\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:310\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:299\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:312\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:322\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:331\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:340\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:348\n" + "msgid \"Slide Custom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:162\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:68\n" + "msgid \"Is Dots Navigation?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:163\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:197\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:70\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:72\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:355\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:283\n" + "msgid \"Choose YES to show dot navigation.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:172\n" + "msgid \"Is Arrows Navigation?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:176\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:213\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:78\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:85\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:368\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:292\n" + "msgid \"Choose YES to show arrow navigation.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:182\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:164\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:123\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:222\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:84\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:94\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:200\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:297\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:335\n" + "msgid \"Is Loop Infinite ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:186\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:168\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:127\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:229\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:86\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:98\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:204\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:381\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:301\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:339\n" + "msgid \"Choose YES to slide loop infinite.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:192\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:124\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:124\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:161\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:266\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:53\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:90\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:326\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:261\n" + "msgid \"Slide To Show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:195\n" + "msgid \"Enter number of items to show. Default: 1\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:201\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:136\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:238\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:107\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:209\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:390\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:306\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:344\n" + "msgid \"Speed Slide\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:204\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:139\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:242\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:110\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:212\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:393\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:309\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:347\n" + "msgid \"Enter number value. Unit is millisecond. Example: 600.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:305\n" + "msgid \"Show Countdown?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:313\n" + "msgid \"Choose show or hide event countdown.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/vc_options.php:332\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:61\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:74\n" + "msgid \"Add extra class to block shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:26\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:35\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:44\n" + "#: framework-customizations/extensions/events/shortcodes/event-carousel/views/layout-2.php:53\n" + "msgid \"00\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:50\n" + "msgid \"Last updated:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:79\n" + "msgid \"Location\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:144\n" + "#: framework-customizations/extensions/events/views/single.php:151\n" + "msgid \"FREE\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:161\n" + "msgid \"/slot\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:166\n" + "msgid \"Booked time\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:171\n" + "msgid \"Booked slot\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:172\n" + "msgid \"Unlimited\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:177\n" + "msgid \"Quantity\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:181\n" + "#: setup/data-master/views/import_attachments.php:18\n" + "msgid \"Total\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:184\n" + "msgid \"BOOK TICKET NOW\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:207\n" + "msgid \"You might also like...\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:259\n" + "msgid \"Quantity:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:260\n" + "msgid \"Total:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:274\n" + "#: framework-customizations/theme/options/speed-optimize.php:115\n" + "msgid \"Checkout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:298\n" + "msgid \"Payment Successful!\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:299\n" + "msgid \"Please check your mail box to receive invoice.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:305\n" + "msgid \"Payment Fail!\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/events/views/single.php:306\n" + "msgid \"Please try again.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/config.php:10\n" + "msgid \"SLZ FAQ Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/config.php:11\n" + "msgid \"Show list of FAQ.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:11\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:207\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:39\n" + "msgid \"- All Categories -\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:23\n" + "msgid \"Choose category to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:27\n" + "msgid \"Display Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:31\n" + "msgid \"Choose to show category title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:35\n" + "msgid \"Display Readmore\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:39\n" + "msgid \"Choose to show readmore buton.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:47\n" + "msgid \"Choose to show pagination.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:77\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:85\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:93\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:101\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:109\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:117\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:125\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:133\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:181\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:193\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:205\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:217\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:229\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:241\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:288\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:32\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:40\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:48\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:56\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:22\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:30\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:80\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:88\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:96\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:104\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:112\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:120\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:105\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:113\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:121\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:129\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:137\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:198\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:206\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:214\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:222\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:230\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:238\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:246\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:254\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:322\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:334\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:346\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:358\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:370\n" + "#: framework-customizations/theme/options/page-header-settings.php:151\n" + "#: framework-customizations/theme/options/page-header-settings.php:223\n" + "#: framework-customizations/theme/options/page-options.php:40\n" + "#: framework-customizations/theme/options/post-settings.php:393\n" + "#: framework-customizations/theme/options/posts/page.php:146\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:96\n" + "#: framework-customizations/theme/options/template-settings.php:566\n" + "#: framework-customizations/theme/options/typography.php:35\n" + "#: framework-customizations/theme/options/typography.php:64\n" + "#: framework-customizations/theme/options/typography.php:142\n" + "msgid \"Custom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:82\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:202\n" + "msgid \"Title Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:84\n" + "msgid \"Choose a custom color hover for title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:90\n" + "msgid \"Item Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:92\n" + "msgid \"Choose a custom color for item.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:98\n" + "msgid \"Item Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:100\n" + "msgid \"Choose a custom color hover for item.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:106\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:44\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:176\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:204\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:110\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:206\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:312\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:31\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:104\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:161\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:240\n" + "msgid \"Icon Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:108\n" + "msgid \"Choose a custom color for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:114\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:118\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:321\n" + "msgid \"Icon Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:116\n" + "msgid \"Choose a custom color hover for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:122\n" + "msgid \"Read More Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:124\n" + "msgid \"Choose a custom color for read more button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:130\n" + "msgid \"Read More Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/vc_options.php:132\n" + "msgid \"Choose a custom color hover for read more button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/views/view.php:31\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:49\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:43\n" + "msgid \"All Categories\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/shortcodes/faq-block/views/view.php:78\n" + "msgid \"SEE ALL ARTICLES\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/views/single.php:17\n" + "msgid \"Updated\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/views/single.php:17\n" + "msgid \"ago\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/views/single.php:47\n" + "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:97\n" + "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:91\n" + "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:96\n" + "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:95\n" + "#: framework-customizations/extensions/posts/posts/post-05/views/view.php:86\n" + "#: framework-customizations/theme/options/post-settings.php:167\n" + "msgid \"Related Articles\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:7\n" + "msgid \"faq-category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:8\n" + "msgid \"SLZ: FAQ Categories\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:9\n" + "msgid \"A list of FAQ categories.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/config.php:13\n" + "msgid \"FAQ Categories\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:18\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:31\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:68\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:154\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:61\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:19\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:9\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:91\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:34\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:94\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:37\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:116\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:78\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:36\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:27\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:19\n" + "#: framework-customizations/extensions/widgets/widgets/partner/options.php:18\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:7\n" + "#: framework-customizations/theme/options/page-404-settings.php:67\n" + "#: framework-customizations/theme/options/post-settings.php:237\n" + "msgid \"Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:24\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:32\n" + "msgid \"Title Color:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:33\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:37\n" + "msgid \"Optional - Choose a custom title text color for this block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:36\n" + "msgid \"FAQ Category:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/faq/widgets/faq-category/views/admin.php:46\n" + "msgid \"Choose FAQ category to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:7\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:7\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:7\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:7\n" + "#: framework-customizations/theme/options/footer-options.php:5\n" + "#: framework-customizations/theme/options/post-settings.php:10\n" + "#: framework-customizations/theme/options/template-settings.php:4\n" + "msgid \"-- Select widget area --\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:9\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:9\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:9\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:9\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:3\n" + "#: framework-customizations/theme/options/posts/page.php:61\n" + "msgid \"-- Select Menu --\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:14\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:14\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:14\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:14\n" + "#: framework-customizations/extensions/headers/headers/header-09/config.php:22\n" + "#: framework-customizations/theme/options/footer-options.php:70\n" + "msgid \"Light\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:15\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:15\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:15\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:15\n" + "#: framework-customizations/extensions/headers/headers/header-09/config.php:21\n" + "#: framework-customizations/theme/options/footer-options.php:71\n" + "msgid \"Dark\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:30\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:29\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:29\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:29\n" + "#: framework-customizations/theme/options/posts/page.php:81\n" + "#: framework-customizations/theme/options/posts/post.php:34\n" + "#: framework-customizations/theme/options/posts/product.php:29\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:29\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:29\n" + "#: framework-customizations/theme/options/posts/slz-service.php:29\n" + "#: framework-customizations/theme/options/posts/slz-team.php:29\n" + "msgid \"General Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:33\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:32\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:32\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:32\n" + "msgid \"Footer Undercover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:37\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:62\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:191\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:323\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:36\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:61\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:190\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:316\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:36\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:61\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:190\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:304\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:36\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:61\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:190\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:308\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:143\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:214\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:90\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:124\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:151\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:222\n" + "#: framework-customizations/theme/options/footer-options.php:20\n" + "#: framework-customizations/theme/options/footer-options.php:55\n" + "#: framework-customizations/theme/options/footer-options.php:98\n" + "#: framework-customizations/theme/options/general-settings.php:162\n" + "#: framework-customizations/theme/options/general-settings.php:176\n" + "#: framework-customizations/theme/options/general-settings.php:290\n" + "#: framework-customizations/theme/options/general-settings.php:304\n" + "#: framework-customizations/theme/options/general-settings.php:338\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:24\n" + "#: framework-customizations/theme/options/page-header-settings.php:133\n" + "#: framework-customizations/theme/options/page-header-settings.php:204\n" + "#: framework-customizations/theme/options/page-header-settings.php:276\n" + "#: framework-customizations/theme/options/page-header-settings.php:330\n" + "#: framework-customizations/theme/options/page-header-settings.php:364\n" + "#: framework-customizations/theme/options/page-header-settings.php:411\n" + "#: framework-customizations/theme/options/page-options.php:61\n" + "#: framework-customizations/theme/options/page-options.php:144\n" + "#: framework-customizations/theme/options/page-options.php:183\n" + "#: framework-customizations/theme/options/post-settings.php:46\n" + "#: framework-customizations/theme/options/post-settings.php:83\n" + "#: framework-customizations/theme/options/posts/page.php:50\n" + "#: framework-customizations/theme/options/speed-optimize.php:143\n" + "#: framework-customizations/theme/options/speed-optimize.php:157\n" + "#: framework-customizations/theme/options/speed-optimize.php:200\n" + "#: framework-customizations/theme/options/speed-optimize.php:226\n" + "#: framework-customizations/theme/options/speed-optimize.php:244\n" + "#: framework-customizations/theme/options/speed-optimize.php:293\n" + "#: framework-customizations/theme/options/speed-optimize.php:335\n" + "msgid \"Enable\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:41\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:66\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:195\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:327\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:40\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:65\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:194\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:320\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:40\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:65\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:194\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:308\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:40\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:65\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:194\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:312\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:147\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:218\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:94\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:120\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:147\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:218\n" + "#: framework-customizations/theme/options/advertisement-settings.php:38\n" + "#: framework-customizations/theme/options/footer-options.php:24\n" + "#: framework-customizations/theme/options/footer-options.php:59\n" + "#: framework-customizations/theme/options/footer-options.php:102\n" + "#: framework-customizations/theme/options/general-settings.php:158\n" + "#: framework-customizations/theme/options/general-settings.php:180\n" + "#: framework-customizations/theme/options/general-settings.php:286\n" + "#: framework-customizations/theme/options/general-settings.php:300\n" + "#: framework-customizations/theme/options/general-settings.php:342\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:20\n" + "#: framework-customizations/theme/options/page-header-settings.php:129\n" + "#: framework-customizations/theme/options/page-header-settings.php:200\n" + "#: framework-customizations/theme/options/page-header-settings.php:272\n" + "#: framework-customizations/theme/options/page-header-settings.php:326\n" + "#: framework-customizations/theme/options/page-header-settings.php:360\n" + "#: framework-customizations/theme/options/page-header-settings.php:407\n" + "#: framework-customizations/theme/options/page-options.php:57\n" + "#: framework-customizations/theme/options/page-options.php:140\n" + "#: framework-customizations/theme/options/page-options.php:179\n" + "#: framework-customizations/theme/options/post-settings.php:42\n" + "#: framework-customizations/theme/options/post-settings.php:79\n" + "#: framework-customizations/theme/options/posts/page.php:54\n" + "#: framework-customizations/theme/options/speed-optimize.php:147\n" + "#: framework-customizations/theme/options/speed-optimize.php:161\n" + "#: framework-customizations/theme/options/speed-optimize.php:204\n" + "#: framework-customizations/theme/options/speed-optimize.php:230\n" + "#: framework-customizations/theme/options/speed-optimize.php:248\n" + "#: framework-customizations/theme/options/speed-optimize.php:297\n" + "#: framework-customizations/theme/options/speed-optimize.php:339\n" + "msgid \"Disable\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:49\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:48\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:48\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:48\n" + "msgid \"Footer Top Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:57\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:56\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:56\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:56\n" + "#: framework-customizations/theme/options/footer-options.php:15\n" + "#: framework-customizations/theme/options/posts/page.php:45\n" + "msgid \"Enable Footer Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:58\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:57\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:57\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:57\n" + "#: framework-customizations/theme/options/footer-options.php:16\n" + "#: framework-customizations/theme/options/posts/page.php:46\n" + "msgid \"Enable the footer top?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:76\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:75\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:75\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:75\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:256\n" + "#: framework-customizations/theme/options/footer-options.php:34\n" + "#: framework-customizations/theme/options/footer-options.php:77\n" + "msgid \"Choose Widget Area\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:77\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:76\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:76\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:76\n" + "#: framework-customizations/theme/options/footer-options.php:35\n" + "msgid \"Choose widget area will show in footer top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:87\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:86\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:86\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:86\n" + "msgid \"Change the style of footer top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:93\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:92\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:92\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:92\n" + "msgid \"Select background color for footer top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:100\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:350\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:99\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:343\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:99\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:331\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:99\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:335\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:69\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:82\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:14\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:21\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:27\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:22\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:21\n" + "#: framework-customizations/theme/options/general-settings.php:73\n" + "#: framework-customizations/theme/options/page-404-settings.php:50\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:49\n" + "#: framework-customizations/theme/options/page-header-settings.php:59\n" + "#: framework-customizations/theme/options/page-options.php:105\n" + "#: framework-customizations/theme/options/posts/page.php:127\n" + "msgid \"Background Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:101\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:351\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:100\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:344\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:100\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:332\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:100\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:336\n" + "msgid \"Upload the background image .png or .jpg\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:106\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:229\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:356\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:105\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:228\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:349\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:105\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:228\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:337\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:105\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:228\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:341\n" + "#: framework-customizations/theme/options/page-header-settings.php:80\n" + "msgid \"Background Attachment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:111\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:234\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:361\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:110\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:233\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:354\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:110\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:233\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:342\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:110\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:233\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:346\n" + "#: framework-customizations/theme/options/page-header-settings.php:85\n" + "msgid \"Background Size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:116\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:239\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:366\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:115\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:238\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:359\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:115\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:238\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:347\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:115\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:238\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:351\n" + "#: framework-customizations/theme/options/page-header-settings.php:90\n" + "msgid \"Background Position\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:121\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:120\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:120\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:120\n" + "msgid \"Border Bottom Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:122\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:372\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:121\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:365\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:121\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:353\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:121\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:357\n" + "msgid \"Choose border top color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:126\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:125\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:125\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:125\n" + "msgid \"Select footer's top bar text color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:132\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:131\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:131\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:131\n" + "msgid \"Text Alignment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:133\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:132\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:132\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:132\n" + "msgid \"Setting text alignment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:138\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:137\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:137\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:137\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:17\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:16\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:9\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:13\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:11\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:21\n" + "#: framework-customizations/theme/options/page-header-settings.php:5\n" + "msgid \"Left\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:139\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:138\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:138\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:138\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:18\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:17\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:16\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:37\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:12\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:20\n" + "#: framework-customizations/theme/options/page-header-settings.php:7\n" + "msgid \"Center\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:140\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:139\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:139\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:139\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:19\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:18\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:17\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:13\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:39\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:13\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:22\n" + "#: framework-customizations/theme/options/page-header-settings.php:6\n" + "msgid \"Right\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:147\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:280\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:146\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:273\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:146\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:261\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:146\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:265\n" + "msgid \"Show Other Content?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:148\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:281\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:147\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:274\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:147\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:262\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:147\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:266\n" + "msgid \"Choose show or hide other content in footer.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:161\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:294\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:160\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:287\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:160\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:275\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:160\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:279\n" + "msgid \"Other Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:162\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:295\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:161\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:288\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:161\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:276\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:161\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:280\n" + "msgid \"Enter other content in footer.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:178\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:177\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:177\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:177\n" + "msgid \"Footer Content Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:186\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:185\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:185\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:185\n" + "#: framework-customizations/theme/options/footer-options.php:50\n" + "msgid \"Enable Footer Main\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:187\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:186\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:186\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:186\n" + "#: framework-customizations/theme/options/footer-options.php:51\n" + "msgid \"Enable the footer main?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:204\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:203\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:203\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:203\n" + "#: framework-customizations/theme/options/footer-options.php:68\n" + "#: framework-customizations/theme/options/footer-settings.php:24\n" + "#: framework-customizations/theme/options/posts/page.php:213\n" + "msgid \"Footer Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:211\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:210\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:210\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:210\n" + "msgid \"Change the style of footer main\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:216\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:215\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:215\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:215\n" + "msgid \"Footer Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:217\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:216\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:216\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:216\n" + "msgid \"Choose background color for footer main.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:221\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:220\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:220\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:220\n" + "msgid \"Footer Background Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:224\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:223\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:223\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:223\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:73\n" + "#: framework-customizations/theme/options/page-404-settings.php:53\n" + "msgid \"Upload background image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:246\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:245\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:245\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:245\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:50\n" + "msgid \"Padding Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:247\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:246\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:246\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:246\n" + "msgid \"Enter padding top for footer main\\\".\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:251\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:250\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:250\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:250\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:58\n" + "msgid \"Padding Bottom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:252\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:251\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:251\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:251\n" + "msgid \"Enter padding bottom for footer main\\\".\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:256\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:255\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:255\n" + "msgid \"Widget Area 01\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:257\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:256\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:256\n" + "msgid \"Choose widget area will show in footer collumn 1\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:262\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:261\n" + "msgid \"Widget Area 02\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:263\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:262\n" + "msgid \"Choose widget area will show in footer collumn 2\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:268\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:267\n" + "msgid \"Widget Area 03\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:269\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:268\n" + "msgid \"Choose widget area will show in footer collumn 3\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:274\n" + "msgid \"Widget Area 04\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:275\n" + "msgid \"Choose widget area will show in footer collumn 4\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:310\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:303\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:291\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:295\n" + "msgid \"Footer Bottom Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:318\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:311\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:299\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:303\n" + "#: framework-customizations/theme/options/footer-options.php:93\n" + "msgid \"Enable Footer Bottom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:319\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:312\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:300\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:304\n" + "#: framework-customizations/theme/options/footer-options.php:94\n" + "msgid \"Enable the footer bottom?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:338\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:331\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:319\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:323\n" + "msgid \"Change the style of footer bottom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:344\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:337\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:325\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:329\n" + "msgid \"Select the footer bottom background color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:371\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:364\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:352\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:356\n" + "msgid \"Border Top Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:376\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:369\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:357\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:361\n" + "msgid \"Select footer bottom text color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:381\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:374\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:362\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:366\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:226\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:242\n" + "msgid \"Social Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:382\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:375\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:363\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:367\n" + "msgid \"Select the social icons color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:388\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:381\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:369\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:373\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:234\n" + "msgid \"Social Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:389\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:382\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:370\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:374\n" + "msgid \"Select the social icons hover color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:396\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:389\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:377\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:381\n" + "msgid \"Social Icon Size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:397\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:390\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:378\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:382\n" + "msgid \"Enter icon size in pixels. Ex: 16\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:404\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:397\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:385\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:389\n" + "msgid \"Left Area Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:410\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:563\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:716\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:403\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:555\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:707\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:391\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:543\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:695\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:395\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:547\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:699\n" + "msgid \"Show/Hide This Area\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:412\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:405\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:393\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:397\n" + "msgid \"Show or hide Left Area Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:425\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:578\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:731\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:418\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:570\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:722\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:406\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:558\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:710\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:410\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:562\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:714\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:6\n" + "msgid \"Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:426\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:579\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:732\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:419\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:571\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:723\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:407\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:559\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:711\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:411\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:563\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:715\n" + "msgid \"Write text will display in this area\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:430\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:583\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:736\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:423\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:575\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:727\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:411\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:563\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:715\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:415\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:567\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:719\n" + "msgid \"Social\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:436\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:585\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:738\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:429\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:577\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:729\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:417\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:565\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:717\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:421\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:569\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:721\n" + "msgid \"\"\n" + "\"Show social icon in footer bottom? Change social in the \\\"General\\\" settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:444\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:597\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:750\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:437\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:589\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:741\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:425\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:577\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:729\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:429\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:581\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:733\n" + "msgid \"Navigation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:445\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:598\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:751\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:438\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:590\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:742\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:426\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:578\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:730\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:430\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:582\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:734\n" + "msgid \"\"\n" + "\"Show navigation in this area? Please choose locations is \\\"Bottom menu\\\" in \"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:445\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:598\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:751\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:438\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:590\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:742\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:426\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:578\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:730\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:430\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:582\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:734\n" + "#: framework-customizations/theme/options/posts/page.php:114\n" + "#: framework-customizations/theme/options/posts/post.php:73\n" + "#: framework-customizations/theme/options/posts/product.php:61\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:61\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:61\n" + "#: framework-customizations/theme/options/posts/slz-service.php:61\n" + "#: framework-customizations/theme/options/posts/slz-team.php:61\n" + "#: framework-customizations/theme/options/taxonomies/category.php:58\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55\n" + "msgid \"Appearance\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:445\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:598\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:751\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:438\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:590\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:742\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:426\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:578\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:730\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:430\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:582\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:734\n" + "msgid \"Menus\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:458\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:611\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:764\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:451\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:603\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:755\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:439\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:591\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:743\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:443\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:595\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:747\n" + "msgid \" Add Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:461\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:614\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:767\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:454\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:606\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:758\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:442\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:594\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:746\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:446\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:598\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:750\n" + "msgid \"Upload an image to display in footer bottom.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:469\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:622\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:775\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:462\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:614\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:766\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:450\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:602\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:754\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:454\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:606\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:758\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:101\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:25\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:42\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:33\n" + "msgid \"Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:470\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:623\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:776\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:463\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:615\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:767\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:451\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:603\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:755\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:455\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:607\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:759\n" + "msgid \"Show button in this area\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:490\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:643\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:796\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:483\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:635\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:787\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:471\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:623\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:775\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:475\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:627\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:779\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:131\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:140\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:149\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:158\n" + "msgid \"Button Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:491\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:644\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:797\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:484\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:636\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:788\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:472\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:624\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:776\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:476\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:628\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:780\n" + "msgid \"Setting for button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:492\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:645\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:798\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:485\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:637\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:789\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:473\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:625\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:777\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:477\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:629\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:781\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:36\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:42\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:46\n" + "msgid \"Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:497\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:650\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:803\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:490\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:642\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:794\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:478\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:630\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:782\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:482\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:634\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:786\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:100\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:62\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:85\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:43\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:251\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:18\n" + "msgid \"Button Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:501\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:654\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:807\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:494\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:646\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:798\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:482\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:634\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:786\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:486\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:638\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:790\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:94\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:260\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:23\n" + "#: framework-customizations/theme/options/page-404-settings.php:87\n" + "msgid \"Button Link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:505\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:658\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:498\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:650\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:802\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:486\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:638\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:490\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:642\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:794\n" + "msgid \"Select background color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:512\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:818\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:505\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:657\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:809\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:493\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:645\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:797\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:497\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:649\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:801\n" + "msgid \"Select text color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:518\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:671\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:824\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:511\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:663\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:815\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:499\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:651\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:803\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:503\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:655\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:807\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:46\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:52\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:47\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:38\n" + "msgid \"Border Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:519\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:672\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:825\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:512\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:664\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:816\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:500\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:652\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:804\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:504\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:656\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:808\n" + "msgid \"Select border color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:525\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:678\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:831\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:518\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:670\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:822\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:506\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:658\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:810\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:510\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:662\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:814\n" + "msgid \"Background Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:531\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:684\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:837\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:524\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:676\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:828\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:512\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:664\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:816\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:516\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:668\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:820\n" + "msgid \"Text Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:537\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:690\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:843\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:530\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:682\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:834\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:518\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:670\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:822\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:522\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:674\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:826\n" + "msgid \"Border Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:557\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:549\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:537\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:541\n" + "msgid \"Center Area Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:565\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:557\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:545\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:549\n" + "msgid \"Show or hide Center Area Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:580\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:572\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:560\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:564\n" + "msgid \"&copy; Designed by RubikThemes.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:665\n" + "msgid \"Select text color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:710\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:701\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:689\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:693\n" + "msgid \"Right Area Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:718\n" + "#: framework-customizations/extensions/footers/footers/footer-02/options.php:709\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:697\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:701\n" + "msgid \"Show or hide Right Area Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-01/options.php:811\n" + "#: framework-customizations/extensions/footers/footers/footer-03/options.php:790\n" + "msgid \"Select background color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/footers/footers/footer-04/options.php:257\n" + "#: framework-customizations/theme/options/footer-options.php:78\n" + "msgid \"Choose widget area will show in footer main\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:10\n" + "msgid \"SLZ Gallery Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:11\n" + "msgid \"Animated Carousel with gallery or portfolio.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/config.php:23\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:27\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:33\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:21\n" + "msgid \"Brazil\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-1.php:18\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:19\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:14\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:47\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:68\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:71\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-1.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:142\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:153\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:74\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:17\n" + "msgid \"Choose style to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:7\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:6\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:67\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:51\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:4\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:37\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:4\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:4\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:3\n" + "msgid \"Chennai\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:8\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:7\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:68\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:52\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:5\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:5\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-2.php:5\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:4\n" + "msgid \"Mumbai\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:23\n" + "msgid \"Picture Frame\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-2.php:29\n" + "msgid \"Upload one image to make frame for featured image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:3\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:3\n" + "msgid \"Sao Paulo\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:4\n" + "msgid \"Rio\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:5\n" + "msgid \"Brasilia\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:22\n" + "msgid \"Main Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/options/layout-6.php:25\n" + "msgid \"Title of gallery\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:13\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:18\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:24\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:29\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:35\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:176\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:29\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:34\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:40\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:160\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:28\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:33\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:39\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:152\n" + "#: framework-customizations/extensions/portfolio/config.php:70\n" + "msgid \"Gallery\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:14\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:25\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:48\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:236\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:30\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:53\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:220\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:29\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:52\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:212\n" + "#: framework-customizations/extensions/portfolio/config.php:59\n" + "#: framework-customizations/extensions/portfolio/config.php:60\n" + "#: framework-customizations/theme/config.php:536\n" + "#: framework-customizations/theme/options/template-settings.php:231\n" + "msgid \"Portfolio\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:24\n" + "#: framework-customizations/theme/options/page-header-settings.php:221\n" + "msgid \"Post Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:30\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:39\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:44\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:43\n" + "msgid \"-All Gallery-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:35\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:52\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:57\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:56\n" + "msgid \"-All Portfolio-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:55\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:72\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:76\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:75\n" + "msgid \"Post Type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:60\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:76\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:80\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:79\n" + "msgid \"Choose post type to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:64\n" + "msgid \"Choose Gallery\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:71\n" + "msgid \"Choose special gallery to show list of gallery images in the post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:75\n" + "msgid \"Choose Portfolio\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:82\n" + "msgid \"Choose special portfolio to show list of gallery images in the post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:108\n" + "msgid \"Limit Images\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:111\n" + "msgid \"\"\n" + "\"Add number of images to display. If it blank, display all gallery images\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:128\n" + "msgid \"Please input number of item show in slider.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:137\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:110\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:174\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:191\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:270\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:326\n" + "msgid \"Is Auto Play ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:141\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:114\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:181\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:195\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:342\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:274\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:330\n" + "msgid \"Choose YES to slide auto play.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:146\n" + "msgid \"Show Dots Navigation ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:150\n" + "msgid \"Choose YES to show dots navigation.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:155\n" + "msgid \"Show Arrows Navigation ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:159\n" + "msgid \"Choose YES to show arrows navigation.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:173\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:242\n" + "msgid \"Arrows Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:176\n" + "msgid \"Choose color to slide arrows.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:185\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:254\n" + "msgid \"Arrows Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:188\n" + "msgid \"Choose hover color to slide arrows.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:197\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:266\n" + "msgid \"Arrows Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:200\n" + "msgid \"Choose background color to slide arrows.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:209\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:278\n" + "msgid \"Arrows Background Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:212\n" + "msgid \"Choose background hover color to slide arrow.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:221\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:230\n" + "msgid \"Dots Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:224\n" + "msgid \"Choose color to slide dots.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:233\n" + "msgid \"Dots Color Active\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/vc_options.php:236\n" + "msgid \"Choose color to slide dots when active, hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/views/layout-6.php:48\n" + "msgid \"All gallery\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-carousel/views/layout-6.php:60\n" + "msgid \"VIEW MORE\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:9\n" + "msgid \"SLZ Gallery Grid\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:10\n" + "msgid \"List of galleries in grid\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:20\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:21\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:27\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:12\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:46\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:23\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:41\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:7\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:6\n" + "msgid \"New York\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:21\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:22\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:28\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:42\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:10\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:43\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:8\n" + "msgid \"Illinois\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:22\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:23\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:43\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:9\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:42\n" + "msgid \"Connecticut\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:23\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:45\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:39\n" + "msgid \"Texas\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/config.php:24\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:40\n" + "msgid \"Arizona\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:10\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:9\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:8\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:102\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:82\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:75\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:7\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:29\n" + "msgid \"Five\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:43\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:48\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:47\n" + "msgid \"-All Gallery Categories-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:56\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:61\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:60\n" + "msgid \"-All Portfolio Categories-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:59\n" + "msgid \"-All Authors-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:84\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:67\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:49\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:157\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:228\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:89\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:195\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:208\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:16\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:255\n" + "#: framework-customizations/theme/options/template-settings.php:282\n" + "#: framework-customizations/theme/options/template-settings.php:352\n" + "#: framework-customizations/theme/options/template-settings.php:422\n" + "msgid \"Column\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:110\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:112\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:104\n" + "msgid \"Select order to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:121\n" + "#: framework-customizations/theme/options/post-settings.php:153\n" + "#: framework-customizations/theme/options/post-settings.php:239\n" + "#: framework-customizations/theme/options/speed-optimize.php:60\n" + "#: includes/class-breadcrumb.php:250\n" + "msgid \"Author\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:127\n" + "msgid \"Add Author\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:130\n" + "msgid \"Choose special author to filter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:134\n" + "msgid \"Choose author to filter.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:145\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:129\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:121\n" + "msgid \"Choose gallery category or special gallery to display\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:167\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:151\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:143\n" + "msgid \"Choose Gallery Category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:182\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:166\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:158\n" + "msgid \"Add Gallery\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:185\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:169\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:161\n" + "msgid \"Choose special gallery to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:190\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:174\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:166\n" + "msgid \"\"\n" + "\"Default display All Gallery if no gallery is selected and Number gallery is \"\n" + "\"empty.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:205\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:189\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:181\n" + "msgid \"Choose portfolio category or special portfolio to display\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:227\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:211\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:203\n" + "msgid \"Choose Portfolio Category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:242\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:226\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:218\n" + "msgid \"Add Portfolio\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:245\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:229\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:221\n" + "msgid \"Choose special portfolio to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:250\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:234\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:226\n" + "msgid \"\"\n" + "\"Default display All Portfolio if no portfolio is selected and Number \"\n" + "\"portfolio is empty.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:262\n" + "msgid \"Show Tab Filter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:266\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:250\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:242\n" + "msgid \"Choose if you want to show category filter tab or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:267\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:275\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:289\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:301\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:314\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:323\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:336\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:349\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:251\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:260\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:273\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:282\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:295\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:303\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:316\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:115\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:124\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:133\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:142\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:151\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:160\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:171\n" + "msgid \"Extra Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:271\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:260\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:93\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:85\n" + "msgid \"Show Pagination\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:274\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:263\n" + "msgid \"Choose if you want to show pagination.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:284\n" + "msgid \"Filter Alignment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:288\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:259\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:251\n" + "msgid \"Choose alignment for category filter.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:297\n" + "msgid \"Load More Button Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:300\n" + "msgid \"Enter load more button content to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:309\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:120\n" + "msgid \"Show Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:313\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:272\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:289\n" + "msgid \"Choose if you want to show title or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:318\n" + "msgid \"Show Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:322\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:281\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:302\n" + "msgid \"Choose if you want to show category or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:331\n" + "msgid \"Show Read More Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:335\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:294\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:341\n" + "msgid \"Choose if you want to show read more button or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:344\n" + "msgid \"Show Zoom Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:348\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:315\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:354\n" + "msgid \"Choose if you want to show fancybox zoom in or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:356\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:323\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:362\n" + "msgid \"Tab Filter Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:359\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:326\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:365\n" + "msgid \"Choose a custom tab filter color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:360\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:372\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:384\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:396\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:404\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:413\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:425\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:437\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:449\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:327\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:339\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:351\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:363\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:371\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:383\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:395\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:407\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:415\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:366\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:378\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:390\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:402\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:414\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:426\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:438\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:450\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:462\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:474\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:486\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:498\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:120\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:127\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:134\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:141\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:148\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:155\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:140\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:148\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:156\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:164\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:172\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:180\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:188\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:196\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:204\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:87\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:94\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:101\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:108\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:115\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:122\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:129\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:136\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:143\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:75\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:82\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:26\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:37\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:49\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:32\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:43\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:55\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:27\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:38\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:50\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:26\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:33\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:41\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:196\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:208\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:216\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:224\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:237\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:249\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:261\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:273\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:286\n" + "msgid \"Custom CSS\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:368\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:335\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:374\n" + "msgid \"Tab Active Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:371\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:338\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:377\n" + "msgid \"Choose a custom tab active color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:380\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:347\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:386\n" + "msgid \"Category Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:383\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:350\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:389\n" + "msgid \"Choose a custom category color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:395\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:362\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:401\n" + "msgid \"Choose a custom title color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:400\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:367\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:410\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:41\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:124\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:102\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:109\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:186\n" + "msgid \"Title Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:403\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:370\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:413\n" + "msgid \"Choose a custom title hover color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:409\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:379\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:458\n" + "msgid \"Read More Button Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:412\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:382\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:461\n" + "msgid \"Choose a custom read more button color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:421\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:391\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:470\n" + "msgid \"Read More Button Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:424\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:394\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:473\n" + "msgid \"Choose a custom read more button hover color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:433\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:403\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:482\n" + "msgid \"Zoom in Button Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:436\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:406\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:485\n" + "msgid \"Choose a custom zoom in button color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:445\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:411\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:494\n" + "msgid \"Zoom in Button Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-grid/vc_options.php:448\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:414\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:497\n" + "msgid \"Choose a custom zoom in button hover color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/config.php:10\n" + "msgid \"SLZ Gallery Masonry\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/config.php:11\n" + "msgid \"Gallery Masonry of post feature image from custom post type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:21\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:20\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:24\n" + "msgid \"Option 1\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:22\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:21\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:25\n" + "msgid \"Option 2\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:23\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:22\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:26\n" + "msgid \"Option 3\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:24\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:23\n" + "msgid \"Option 4\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:72\n" + "msgid \"Choose columns to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:88\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:87\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:65\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:79\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:24\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:22\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:244\n" + "msgid \"Option Show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:91\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:90\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:29\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:247\n" + "msgid \"It is used for aligning the inner content of blocks\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:246\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:238\n" + "msgid \"Show Tab Filter?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:255\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:247\n" + "msgid \"Alignment Filter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:268\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:285\n" + "msgid \"Show Title?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:277\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:298\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:16\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:99\n" + "msgid \"Show Category?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:290\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:337\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:68\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:151\n" + "msgid \"Show Read More Button?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:299\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:273\n" + "msgid \"Load More Button Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:302\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:276\n" + "msgid \"Enter load more button text. If empty, not show buttony.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/gallery-masonry/vc_options.php:311\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:350\n" + "msgid \"Show Zoom Button?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:10\n" + "msgid \"SLZ Isotope\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:11\n" + "msgid \"Isotope of post feature image from custom post type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:9\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:46\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:13\n" + "msgid \"Oregon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:27\n" + "msgid \"Kentucky\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:28\n" + "msgid \"Missouri\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:29\n" + "msgid \"Ohio\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/config.php:30\n" + "msgid \"North Carolina\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:243\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:252\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:264\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:277\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:290\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:303\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:316\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:329\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:342\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:355\n" + "msgid \"Custom Isotope\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:311\n" + "msgid \"Show Meta Data?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:315\n" + "msgid \"Choose if you want to show meta data or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:324\n" + "msgid \"Show Description?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:328\n" + "msgid \"Choose if you want to show description or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:422\n" + "msgid \"Meta Data Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:425\n" + "msgid \"Choose a custom meta data color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:434\n" + "msgid \"Meta Data Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:437\n" + "msgid \"Choose a custom meta data hover color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:446\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:138\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:117\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:352\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:111\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:91\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:52\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:218\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:234\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:221\n" + "msgid \"Description Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/vc_options.php:449\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:140\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:114\n" + "msgid \"Choose a custom description color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/shortcodes/isotope/views/view.php:60\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/views/layout-1.php:69\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/views/layout-1.php:10\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/views/layout-1.php:10\n" + "msgid \"By\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/views/content.php:18\n" + "msgid \"Google Calendar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/views/content.php:19\n" + "msgid \"Ical Export\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/views/content.php:22\n" + "msgid \"Start\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/views/content.php:23\n" + "msgid \"End\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/gallery/views/content.php:27\n" + "msgid \"Speakers\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:90\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:14\n" + "msgid \"Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:91\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:15\n" + "msgid \"Choose block to display\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:93\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:17\n" + "msgid \"- None -\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:94\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:18\n" + "msgid \"Logo\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:95\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:19\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:7\n" + "msgid \"Course Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:96\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:20\n" + "msgid \"Course Search\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:97\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:21\n" + "msgid \"Login - Register\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:98\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:22\n" + "msgid \"Cart Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:99\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:23\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:37\n" + "msgid \"Menu\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:100\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:24\n" + "msgid \"Text Link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:123\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:74\n" + "#: framework-customizations/theme/options/posts/page.php:187\n" + "msgid \"Header Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:124\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:75\n" + "msgid \"Choose header style.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:130\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:134\n" + "msgid \"Header Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:139\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:143\n" + "msgid \"Enable Header Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:140\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:144\n" + "msgid \"Choose to enable header top.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:155\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:159\n" + "msgid \"Header Top Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:156\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:160\n" + "msgid \"Choose style for header top.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:169\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:240\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:173\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:244\n" + "msgid \"Left Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:170\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:241\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:174\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:245\n" + "msgid \"Choose shortcode to display in left block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:173\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:182\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:191\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:244\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:253\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:262\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:177\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:186\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:195\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:248\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:257\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:266\n" + "#: framework-customizations/extensions/portfolio/config.php:109\n" + "#: framework-customizations/theme/options/speed-optimize.php:72\n" + "#: framework-customizations/theme/options/speed-optimize.php:81\n" + "#: framework-customizations/theme/options/speed-optimize.php:91\n" + "msgid \"Add\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:178\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:249\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:182\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:253\n" + "msgid \"Center Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:179\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:250\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:183\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:254\n" + "msgid \"Choose shortcode to display in center block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:187\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:258\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:191\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:262\n" + "msgid \"Right Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:188\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:259\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:192\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:263\n" + "msgid \"Choose shortcode to display in right block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:201\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:205\n" + "msgid \"Header Main\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:210\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:214\n" + "msgid \"Enable Header Main\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:211\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:215\n" + "msgid \"Choose to enable header main.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:226\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:230\n" + "msgid \"Header Main Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:227\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:231\n" + "msgid \"Choose style for header main.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:280\n" + "#: framework-customizations/theme/options/page-options.php:33\n" + "msgid \"Default Setting\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/class-slz-header-header-09.php:284\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:187\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:125\n" + "#: framework-customizations/theme/options/page-404-settings.php:3\n" + "#: framework-customizations/theme/options/page-404-settings.php:28\n" + "#: framework-customizations/theme/options/page-options.php:36\n" + "#: framework-customizations/theme/options/post-settings.php:391\n" + "#: framework-customizations/theme/options/posts/page.php:142\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:94\n" + "#: framework-customizations/theme/options/template-settings.php:564\n" + "#: framework-customizations/theme/options/typography.php:31\n" + "#: framework-customizations/theme/options/typography.php:60\n" + "#: framework-customizations/theme/options/typography.php:138\n" + "msgid \"Default\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/config.php:8\n" + "#: framework-customizations/extensions/headers/headers/header-09/config.php:9\n" + "msgid \"Header 09\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/config.php:23\n" + "msgid \"Transparent\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:48\n" + "msgid \"Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:49\n" + "msgid \"Choose color for gradient line in header.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:59\n" + "msgid \"Gradient Line Position\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:60\n" + "msgid \"Choose position for gradient line in Header.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:62\n" + "msgid \"After Top Header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:63\n" + "msgid \"Before Main Header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:64\n" + "msgid \"After Main Header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:86\n" + "msgid \"Enable Preloader\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:87\n" + "msgid \"Choose to enable preloader on site.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:102\n" + "msgid \"Preloader Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:103\n" + "msgid \"Upload image for preloader.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:116\n" + "msgid \"Gradient Line\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options.php:117\n" + "msgid \"Choose to Enable gradient line in Header.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:32\n" + "msgid \"Enter title for this button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:36\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:108\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:124\n" + "#: framework-customizations/theme/options/general-settings.php:422\n" + "#: framework-customizations/theme/options/general-settings.php:485\n" + "msgid \"Link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:37\n" + "msgid \"\"\n" + "\"Link for this button. If blank, this will display only title without link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:42\n" + "msgid \"Target\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:43\n" + "msgid \"Choose how to open link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:45\n" + "msgid \"Opens the link in the same frame as it was clicked.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:46\n" + "msgid \"Opens the link in a new window or tab.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:47\n" + "msgid \"Opens the link in the parent frame.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:48\n" + "msgid \"Opens the link in the full body of the window\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/button.php:54\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/cart_icon.php:7\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:21\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:45\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:44\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:18\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:18\n" + "msgid \"Add extra class to this block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:6\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:6\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:21\n" + "#: includes/class-tgm-plugin-activation.php:2643\n" + "msgid \"Type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:7\n" + "msgid \"Choose type of Course Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:11\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:24\n" + "msgid \"Box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/course_category.php:15\n" + "msgid \"Tabs\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:7\n" + "msgid \"Choose type of login, register button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:11\n" + "msgid \"Popup\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:20\n" + "msgid \"Login Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:21\n" + "msgid \"Enter login text.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:25\n" + "msgid \"Register Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/login_register.php:26\n" + "msgid \"Enter register text.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:32\n" + "msgid \"Custom Logo\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:33\n" + "msgid \"\"\n" + "\"Choose to use custom logo. If blank, this block will use default logo in \"\n" + "\"theme settings.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/logo.php:39\n" + "msgid \"Select the background color for this block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/menu.php:38\n" + "msgid \"\"\n" + "\"Choose custom menu. If blank, menu assign in Menu Location will use as \"\n" + "\"default.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/search_box.php:7\n" + "msgid \"Choose style for this block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:7\n" + "msgid \"Enter text for this block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:11\n" + "msgid \"URL\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/options/text_link.php:12\n" + "msgid \"\"\n" + "\"Link for this block. If blank, this will display only text without link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:13\n" + "msgid \"Avatar of\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:35\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:39\n" + "msgid \"Dashboard\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:37\n" + "msgid \"Wishlist\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:54\n" + "msgid \"Log out\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:64\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:6\n" + "#: page-templates/login-page.php:70\n" + "msgid \"Login\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register.php:65\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:7\n" + "#: page-templates/login-page.php:71\n" + "msgid \"Register\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:19\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:49\n" + "#: page-templates/login-page.php:83 page-templates/login-page.php:113\n" + "msgid \"or\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:23\n" + "#: page-templates/login-page.php:87\n" + "msgid \"Email\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:26\n" + "#: page-templates/login-page.php:90\n" + "msgid \"Password\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:29\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:88\n" + "#: page-templates/login-page.php:93 page-templates/login-page.php:152\n" + "msgid \"LOGIN\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:33\n" + "#: page-templates/login-page.php:97\n" + "msgid \"FORGOT MY PASSWORD\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:35\n" + "#: page-templates/login-page.php:99\n" + "msgid \"Don't have an account?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:36\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:82\n" + "#: page-templates/login-page.php:100 page-templates/login-page.php:146\n" + "msgid \"REGISTER\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:87\n" + "#: page-templates/login-page.php:151\n" + "msgid \"I have an account!\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92\n" + "#: page-templates/login-page.php:156\n" + "msgid \"By signing up to create an account I accept EduChain's \"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92\n" + "#: page-templates/login-page.php:156\n" + "msgid \"Terms of Use\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/login_register_modal.php:92\n" + "#: page-templates/login-page.php:156\n" + "msgid \"Privacy Policy\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/headers/headers/header-09/views/search_box.php:8\n" + "msgid \"Search your courses...\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/config.php:10\n" + "msgid \"SLZ Instagram\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/config.php:11\n" + "msgid \"Show Instagram Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:11\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:18\n" + "msgid \"Block Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:14\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:32\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:58\n" + "msgid \"Block title. If it blank the block will not have a title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:18\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:36\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:53\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:62\n" + "msgid \"Block Title Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:21\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:119\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:39\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:56\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:139\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:104\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:65\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:104\n" + "msgid \"Choose a custom title text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:25\n" + "msgid \"Template\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:28\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:81\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:60\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:53\n" + "msgid \"Grid\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:29\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:82\n" + "msgid \"Slider\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:35\n" + "msgid \"Instagram ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:42\n" + "msgid \"Number images\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:52\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:22\n" + "msgid \"3\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:53\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:23\n" + "msgid \"4\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:63\n" + "msgid \"Number items\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:84\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:173\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:307\n" + "msgid \"Show Dots ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:88\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:177\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:311\n" + "msgid \"If choose Yes, block will be show dots.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:97\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:182\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:25\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:317\n" + "msgid \"Show Arrow ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/instagram/shortcodes/instagram/vc_options.php:101\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:186\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:32\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:321\n" + "msgid \"If choose Yes, block will be show arrow.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:58\n" + "msgid \"Icon library\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:69\n" + "msgid \"Select icon library.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:96\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:236\n" + "msgid \"Select icon from library.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:127\n" + "msgid \"Enter number of items to show..\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:136\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:277\n" + "msgid \"Slide To Scroll\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:139\n" + "msgid \"Enter number of items to scroll..\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:148\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:288\n" + "msgid \"Show Dots\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:151\n" + "msgid \"Show dots in carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:161\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:301\n" + "msgid \"Show Arrows\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:164\n" + "msgid \"Show arrows in carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:174\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:315\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:377\n" + "msgid \"Loop Infinite\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:177\n" + "msgid \"Is carousel loop infinite?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:187\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:329\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:338\n" + "msgid \"Auto Play\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/SLZ_Lema_Shortcode.php:190\n" + "msgid \"Is carousel play?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/class-slz-lema-course.php:19\n" + "#: framework-customizations/theme/options/posts/post.php:162\n" + "msgid \"Gallery Images\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/includes/class-slz-lema-course.php:779\n" + "msgid \"Zoom in\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/manifest.php:6\n" + "msgid \"Lema\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/manifest.php:7\n" + "msgid \"This extension use add to portfolio.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:108\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:186\n" + "msgid \"CLICK TO SEE\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:108\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/class-slz-shortcode-course-collection.php:186\n" + "msgid \"COURSE\"\n" + "msgid_plural \"COURSES\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:10\n" + "msgid \"SLZ Course Collection\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/config.php:11\n" + "msgid \"List of course.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-1.php:21\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:84\n" + "msgid \"Select item columns on row.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:36\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:128\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:86\n" + "msgid \"Choose color for title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:37\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:45\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:53\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:34\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:75\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:33\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:46\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:72\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:295\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:308\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:317\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:326\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:335\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:348\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:357\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:129\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:141\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:149\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:157\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:169\n" + "msgid \"Custom Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:44\n" + "msgid \"Choose hover color for title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:49\n" + "msgid \"Link Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:52\n" + "msgid \"Choose color for link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:57\n" + "msgid \"Link Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/options/layout-2.php:60\n" + "msgid \"Choose hover color for link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:43\n" + "msgid \"Choose Course Category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:47\n" + "msgid \"Limit Items\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/course-collection/vc_options.php:50\n" + "msgid \"Number of items limit on page.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:10\n" + "msgid \"SLZ Featured Course\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/config.php:11\n" + "msgid \"Display a featured course.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:5\n" + "#: framework-customizations/extensions/portfolio/hooks.php:18\n" + "msgid \"- Choose Course -\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:35\n" + "msgid \"Featured Post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:36\n" + "msgid \"Choose post to featured post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:43\n" + "msgid \"Enter button. If blank title button will not display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:51\n" + "msgid \"Display Description\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:57\n" + "msgid \"Select show/hide description.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:61\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:164\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:149\n" + "msgid \"Description Length\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:64\n" + "msgid \"Length of course description display. Default: 25.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:88\n" + "msgid \"Label Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:91\n" + "msgid \"Add label for this block. If blank, it will not display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:103\n" + "msgid \"Text of button. If blank, it will not display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:126\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:112\n" + "msgid \"Choose a custom title text hover color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:131\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:98\n" + "msgid \"Label Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:133\n" + "msgid \"Choose a custom label color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:145\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:28\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:125\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:269\n" + "msgid \"Button Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:147\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:128\n" + "msgid \"Choose a custom button color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:152\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:36\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:133\n" + "msgid \"Button Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/featured-course/vc_options.php:154\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:136\n" + "msgid \"Choose a custom button hover color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:10\n" + "msgid \"SLZ Instructor\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/config.php:11\n" + "msgid \"List of instructor.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:10\n" + "msgid \"- All Instructors -\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:34\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:55\n" + "msgid \"List Instructors\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:39\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:60\n" + "msgid \"Instructor Name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:44\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:65\n" + "msgid \"Choose instructor to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:84\n" + "msgid \"Show Avatar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:91\n" + "msgid \"Choose to display avatar.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:95\n" + "msgid \"Show Icon Avatar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:102\n" + "msgid \"Choose to display icon avatar.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:106\n" + "msgid \"Show Statistic\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:113\n" + "msgid \"Choose to display instructor's statistic.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:117\n" + "msgid \"Show Role\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:124\n" + "msgid \"Choose to display role.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:128\n" + "msgid \"Show Social Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:135\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:146\n" + "msgid \"Choose to display social icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:139\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:128\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:155\n" + "msgid \"Show Description\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:150\n" + "msgid \"Show Course Popular\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:157\n" + "msgid \"Choose to display course popular.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:165\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:329\n" + "msgid \"Enter number of items to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:190\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:68\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:279\n" + "msgid \"Is Dots Navigation ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/instructor/vc_options.php:206\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:76\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:81\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:288\n" + "msgid \"Is Arrows Navigation ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:13\n" + "msgid \"Category List\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:14\n" + "msgid \"Display course category list.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:15\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:8\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:8\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:19\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:14\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:33\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:9\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:17\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:7\n" + "#: framework-customizations/theme/manifest.php:211\n" + "msgid \"Learn Master\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:60\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:70\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:84\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:14\n" + "msgid \"Choose layout for this shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:78\n" + "msgid \"Display Type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:91\n" + "msgid \"Enter number of category to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:105\n" + "msgid \"Choose columns on row. Default: Three.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:113\n" + "msgid \"Description Limit\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:116\n" + "msgid \"Enter number of description's words limit.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:124\n" + "msgid \"Choose to show title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:132\n" + "msgid \"Choose to show description.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:136\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:87\n" + "msgid \"Show Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:140\n" + "msgid \"Choose to show icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:148\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:88\n" + "msgid \"Show Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:152\n" + "msgid \"Choose to show image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:163\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:38\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:37\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:31\n" + "msgid \"Add extra class to block shortcode\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:167\n" + "msgid \"List Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:172\n" + "msgid \"Category Name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:176\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:146\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:119\n" + "msgid \"Choose category to filter.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:179\n" + "msgid \"Add category to filter.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:184\n" + "#: framework-customizations/theme/options/post-settings.php:193\n" + "#: framework-customizations/theme/options/post-settings.php:528\n" + "msgid \"Filter By\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:188\n" + "msgid \"Feature\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:189\n" + "msgid \"Top Enroll\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:192\n" + "msgid \"Choose to filter by.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:268\n" + "msgid \"Enter number of items to show. Default is 1.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:279\n" + "msgid \"Enter number of items to scroll. Default is 1.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:292\n" + "msgid \"Show dots in carousel. Default is Yes.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:305\n" + "msgid \"Show arrows in carousel. Default is Yes.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:319\n" + "msgid \"Is carousel loop infinite? Default is Yes.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-category-list.php:333\n" + "msgid \"Is carousel play? Default is Yes.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:9\n" + "msgid \"Display course category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:25\n" + "msgid \"Tab\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-category.php:28\n" + "msgid \"Select type of category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:7\n" + "msgid \"Course List Best Selling\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-best-selling.php:9\n" + "msgid \"Display course list best selling.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:18\n" + "msgid \"Course List Filtered\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:20\n" + "msgid \"Display course list with filter conditional.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:59\n" + "msgid \"List\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:61\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:54\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:40\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:167\n" + "msgid \"Slide\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:64\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:57\n" + "msgid \"Select type of course list. Default: Grid.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:71\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:64\n" + "msgid \"Enter title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:85\n" + "msgid \"Choose columns on row. Default: Four.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:100\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:92\n" + "msgid \"Choose to display pagination.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:111\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:103\n" + "msgid \"Enter post per page. Default: -1 (Unlimited).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:119\n" + "msgid \"Select field to sort courses.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:123\n" + "msgid \"Sort Order\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:126\n" + "msgid \"Ascending\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:127\n" + "msgid \"Descending\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:130\n" + "msgid \"Select type of sort. Default: Descending.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:134\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:107\n" + "msgid \"Search Term\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:137\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:110\n" + "msgid \"Enter keyword to search. Default: 1.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:142\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:115\n" + "msgid \"Filter By Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:155\n" + "#: framework-customizations/theme/options/post-settings.php:152\n" + "#: framework-customizations/theme/options/post-settings.php:238\n" + "msgid \"Date\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:156\n" + "msgid \"Course Price\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:157\n" + "msgid \"Rate\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list-filtered.php:158\n" + "msgid \"Review\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:13\n" + "msgid \"Course List\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:15\n" + "msgid \"Display course list.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course-list.php:77\n" + "msgid \"Choose columns on row. Default: One.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:32\n" + "#: framework-customizations/extensions/portfolio/hooks.php:47\n" + "msgid \"Course\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:46\n" + "msgid \"Course Name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:49\n" + "msgid \"Enter course name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:138\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:23\n" + "msgid \"Choose Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-course.php:161\n" + "msgid \"Choose Template\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:7\n" + "msgid \"Price Box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:8\n" + "msgid \"Buy Service Cource.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:21\n" + "msgid \"Enter title for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:27\n" + "msgid \"Enter description old for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:31\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:135\n" + "#: framework-customizations/theme/options/course-settings.php:56\n" + "#: framework-customizations/theme/options/course-settings.php:71\n" + "msgid \"Price\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:33\n" + "msgid \"Enter price for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:37\n" + "msgid \"Price Old\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:39\n" + "msgid \"Enter price old for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:43\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:164\n" + "msgid \"Unit\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:45\n" + "msgid \"Enter unit for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:49\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:174\n" + "msgid \"Price Subfix\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:51\n" + "msgid \"Enter subfix for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:55\n" + "msgid \"Show Label\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:57\n" + "msgid \"Show label for this shortcode\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-price.php:64\n" + "msgid \"Enter button text for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:16\n" + "msgid \"Courses Search Box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:18\n" + "msgid \"Display course card search box.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:31\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:104\n" + "msgid \"Set the background color of button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:39\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:29\n" + "msgid \"Set the background color of button when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:47\n" + "msgid \"Set the background color of button icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:52\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:216\n" + "msgid \"Icon Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:55\n" + "msgid \"Set the background color of button icon when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:72\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:44\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:12\n" + "msgid \"NewYork\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:74\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:48\n" + "msgid \"Select style of search box.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:78\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:52\n" + "msgid \"Placeholder Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:81\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:88\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-search-box.php:98\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:55\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:62\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:81\n" + "msgid \"Add extra class to search box.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:6\n" + "msgid \"Course Search University\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:8\n" + "msgid \"Searchbox for university.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:66\n" + "msgid \"Limit posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:69\n" + "msgid \"Number of post to display\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:113\n" + "msgid \"Filters\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/lema/shortcodes/slz-shortcode-lema-uni-search-box.php:123\n" + "msgid \"filter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:8\n" + "msgid \"SLZ New Tweet\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/config.php:9\n" + "msgid \"Show twitter new tweet\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/options/layout-2.php:17\n" + "msgid \"Choose number of column on row.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:37\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:81\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:47\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:11\n" + "msgid \"Layouts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:33\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:40\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:51\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:30\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:14\n" + "msgid \"Choose layout to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:43\n" + "msgid \"Number Tweets\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:46\n" + "msgid \"The number of tweets to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:50\n" + "msgid \"Show Tweet's media\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:53\n" + "msgid \"Choose if you want to show Tweet's media or not.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:57\n" + "msgid \"Show Re-Tweet\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:60\n" + "msgid \"Choose if you want to show Re-Tweet.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:64\n" + "msgid \"Is Carousel?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:68\n" + "msgid \"Choose if you want display tweets list as carousel.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:72\n" + "msgid \"Number Tweets per Slide\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:79\n" + "msgid \"The number of tweets per slide to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:90\n" + "msgid \"Account Name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:93\n" + "msgid \"\"\n" + "\"Enter the ID as it appears after the twitter url (ex. https://twitter.com/\"\n" + "\"myID).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/new-tweet/shortcodes/new-tweet/vc_options.php:94\n" + "msgid \"Channel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:39\n" + "msgid \"Project Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:42\n" + "msgid \"- Latest -\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:43\n" + "msgid \"A to Z\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:44\n" + "msgid \"Z to A\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:45\n" + "msgid \"Post is selected\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:46\n" + "#: framework-customizations/theme/options/post-settings.php:240\n" + "msgid \"Random\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:57\n" + "msgid \"Portfolio base\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:58\n" + "msgid \"Portfolio category base\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:61\n" + "msgid \"Portfolio Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:62\n" + "msgid \"Portfolio Categories\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:63\n" + "msgid \"Portfolio Tag\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:64\n" + "msgid \"Portfolio Tags\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:65\n" + "#: framework-customizations/extensions/portfolio/config.php:66\n" + "msgid \"Portfolio Status\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:77\n" + "msgid \"Images Gallery\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:78\n" + "msgid \"\"\n" + "\"Add images to gallery. Images should have minimum size: 800x600. Bigger size \"\n" + "\"images will be cropped automatically.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:86\n" + "#: framework-customizations/extensions/portfolio/config.php:93\n" + "msgid \"Attributes\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:94\n" + "msgid \"Add attributes for this post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:98\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:60\n" + "#: framework-customizations/theme/options/general-settings.php:384\n" + "#: framework-customizations/theme/options/general-settings.php:447\n" + "msgid \"Name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:99\n" + "msgid \"Enter attribute name.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:103\n" + "msgid \"Value\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:104\n" + "msgid \"Enter attribute value. Support HTML.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:116\n" + "msgid \"Visible On Page\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:117\n" + "msgid \"Check to show attributes on single page.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:118\n" + "msgid \"Visible\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:132\n" + "msgid \"Thumnail\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:133\n" + "msgid \"Add thumbnail to the post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:139\n" + "msgid \"Short Description\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:140\n" + "msgid \"Short description of post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:146\n" + "msgid \"Information\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:147\n" + "msgid \"Information of post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/config.php:156\n" + "msgid \"Choose icon to post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/hooks.php:32\n" + "msgid \"- Choose Student -\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/hooks.php:48\n" + "msgid \"Choose course for this project.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/hooks.php:54\n" + "msgid \"Student\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/hooks.php:55\n" + "msgid \"Choose student for this project.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:9\n" + "msgid \"SLZ Project Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:10\n" + "msgid \"Animated Carousel with projects\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-carousel/config.php:47\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:92\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:58\n" + "msgid \"All\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:9\n" + "msgid \"SLZ Project List\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/config.php:10\n" + "msgid \"List of project\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/shortcodes/portfolio-list/options/layout-1.php:13\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:36\n" + "msgid \"Choose style will be displayed.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/course-info.php:19\n" + "msgid \"Portfolio for this course\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/course-info.php:24\n" + "msgid \"Updated:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/course-info.php:42\n" + "msgid \"By Instructor:\"\n" + "msgid_plural \"By Instructors:\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/course-info.php:46\n" + "msgid \"Course Rating:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/course-info.php:61\n" + "msgid \"Learners:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/course-info.php:61\n" + "#, php-format\n" + "msgid \"%d Student\"\n" + "msgid_plural \"%d Students\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/meta-info.php:77\n" + "msgid \"Portfolio By:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/meta-info.php:80\n" + "#: includes/helpers.php:289\n" + "msgid \"Categories:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/meta-info.php:83\n" + "msgid \"Last Updated:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/meta-info.php:86\n" + "msgid \"Skills:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/meta-info.php:89\n" + "msgid \"Languages:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/views/related-item.php:9\n" + "msgid \"Related Courses\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:4\n" + "msgid \"-All pages-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:33\n" + "msgid \"Project Category ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:35\n" + "msgid \"Enter categories ID of project(Ex 1,2,3)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:39\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:18\n" + "msgid \"Image Type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:48\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:106\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:101\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:111\n" + "msgid \"Button Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/portfolio/widgets/project/views/admin.php:52\n" + "msgid \"Button Link (Custom)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/posts/posts/post-01/views/view.php:27\n" + "#: framework-customizations/extensions/posts/posts/post-02/views/view.php:25\n" + "#: framework-customizations/extensions/posts/posts/post-03/views/view.php:27\n" + "#: framework-customizations/extensions/posts/posts/post-04/views/view.php:25\n" + "#: framework-customizations/extensions/posts/posts/post-05/views/view.php:22\n" + "#, php-format\n" + "msgid \"Continue reading %s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:12\n" + "msgid \"SLZ About Me\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/config.php:13\n" + "msgid \"Show about me block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:22\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:8\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:6\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:6\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:5\n" + "msgid \"Pune\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:28\n" + "msgid \"Social URL (Link)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:30\n" + "msgid \"Add link to social network.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:39\n" + "msgid \"Choose style for layout India.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:49\n" + "msgid \"Enter block title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:62\n" + "msgid \"Enter your name.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:66\n" + "msgid \"Web Url\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:69\n" + "msgid \"Enter your web site.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:76\n" + "msgid \"Add custom button link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:84\n" + "msgid \"Position\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:86\n" + "msgid \"Enter your position.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:90\n" + "msgid \"Short Information\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:92\n" + "msgid \"Enter your short information.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:96\n" + "msgid \"Avatar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:98\n" + "msgid \"Upload your avatar (100x100px).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:104\n" + "msgid \"Introduce yourself.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:108\n" + "msgid \"Social Profile\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/about-me/vc_options.php:116\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:203\n" + "msgid \"Add extra class to block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:8\n" + "msgid \"SLZ Accordion\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/config.php:9\n" + "msgid \"Accordion of info list\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:8\n" + "msgid \"Georia\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/options/layout-1.php:20\n" + "msgid \"Please choose style to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:13\n" + "msgid \"Plus Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:14\n" + "msgid \"Arrow Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:15\n" + "msgid \"Custom Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:19\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:18\n" + "msgid \"Small Spacing\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:19\n" + "msgid \"Large Spacing\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:21\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:33\n" + "msgid \"No Spacing\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:43\n" + "msgid \"Please choose layout to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:53\n" + "msgid \"Style Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:58\n" + "msgid \"Please choose style icon to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:68\n" + "msgid \"It is used for aligning the inner content of accordion item\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:72\n" + "msgid \"Position of Dropdown Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:76\n" + "msgid \"Please choose postion of dropdown icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:95\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:33\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:82\n" + "msgid \"Title. If it blank the block will not have a title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:99\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:44\n" + "msgid \"Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:102\n" + "msgid \"Description. If it blank the block will not have a title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:109\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:104\n" + "msgid \"Enter button content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:113\n" + "msgid \"Link Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:116\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:111\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:64\n" + "msgid \"Add custom link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:125\n" + "msgid \"Accordion Lists\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:144\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:86\n" + "msgid \"Content Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:147\n" + "msgid \"Choose a custom content text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:152\n" + "msgid \"Content Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:155\n" + "msgid \"Choose a custom content background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:160\n" + "msgid \"Panel Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:163\n" + "msgid \"Choose a custom panel background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:168\n" + "msgid \"Panel Active Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:171\n" + "msgid \"Choose a custom panel active background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:179\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:34\n" + "msgid \"Choose a custom icon color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:184\n" + "msgid \"Icon Color Active\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:187\n" + "msgid \"Choose a custom icon color active.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:192\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:213\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:131\n" + "msgid \"Icon Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:195\n" + "msgid \"Choose a custom icon background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:200\n" + "msgid \"Icon Background Color Active\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/vc_options.php:203\n" + "msgid \"Choose a custom icon background color active.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/accordion/views/view.php:32\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/views/view.php:41\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/views/view.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/views/view.php:125\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/views/view.php:34\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/views/view.php:21\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/views/view.php:6\n" + "msgid \"Please Active Visual Composer\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/config.php:10\n" + "msgid \"SLZ Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:17\n" + "msgid \"Large Size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:18\n" + "msgid \"Small Size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:24\n" + "msgid \" Button Alignment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:28\n" + "msgid \"Choose alignment of button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:35\n" + "msgid \"Button Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:39\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:53\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:25\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:24\n" + "msgid \"Choose layout to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:50\n" + "msgid \"Enter text on button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:54\n" + "msgid \"Button size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:57\n" + "msgid \"Select size of button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:65\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:122\n" + "msgid \"Border Radius\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:68\n" + "msgid \"Add rounded corners. Unit is px ( ex:50 ).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:76\n" + "msgid \"Button Has Shadow?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:78\n" + "msgid \"Add a shadow to button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:83\n" + "msgid \"Disable button?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:85\n" + "msgid \"Make button disabled.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:97\n" + "msgid \"Enter the desination URL.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:101\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:126\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:119\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:287\n" + "msgid \"Button Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:113\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:135\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:126\n" + "msgid \"Button Background Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:116\n" + "msgid \"Set the background color of button when mouse over.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:125\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:144\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:105\n" + "msgid \"Button Text Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:128\n" + "msgid \"Set color of button text.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:137\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:153\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:112\n" + "msgid \"Button Text Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:140\n" + "msgid \"Set color of button text when mouse over.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:149\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:133\n" + "msgid \"Button Border Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:152\n" + "msgid \"Set color of button border.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:161\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:140\n" + "msgid \"Button Border Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:164\n" + "msgid \"Set color of button border when mouse over.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:182\n" + "msgid \"Icon Position\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:190\n" + "msgid \"Select the display position of icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:194\n" + "msgid \"Icon Box Shadow?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:200\n" + "msgid \"Add a shadow to icon of button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:207\n" + "msgid \"Set color of icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:219\n" + "msgid \"Set color of icon when mouse over.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:228\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:122\n" + "#: framework-customizations/theme/options/page-header-settings.php:61\n" + "#: framework-customizations/theme/options/page-options.php:107\n" + "msgid \"Upload Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:234\n" + "msgid \"Upload one image to make background for button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:241\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:237\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/vc_options.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:104\n" + "msgid \"Add extra class to button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/button/vc_options.php:248\n" + "msgid \"Add New Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/config.php:10\n" + "msgid \"SLZ Contact Form 7\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/config.php:11\n" + "msgid \"Create an block contain contact form 7\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:5\n" + "msgid \"-None-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:18\n" + "msgid \"Heading Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:21\n" + "msgid \"Add heading text to contact form.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:25\n" + "msgid \"Height Textarea\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:28\n" + "msgid \"Add height textarea for contact form(Unit is px)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:37\n" + "msgid \"Choose Contact Form\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:40\n" + "msgid \"Choose contact form to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:44\n" + "msgid \"Box Shadow?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:46\n" + "msgid \"Add a box-shadow to contact form\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:53\n" + "msgid \"Add padding top for contact form(Unit is px)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:61\n" + "msgid \"Add padding bottom for contact form(Unit is px)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:66\n" + "msgid \"Padding Right\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:69\n" + "msgid \"Add padding right for contact form(Unit is px)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:74\n" + "msgid \"Padding Left\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:77\n" + "msgid \"Add padding left for contact form(Unit is px)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:84\n" + "msgid \"Upload an background image for contact form.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:90\n" + "msgid \"Choose background color for contact form.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:94\n" + "msgid \"Heading Icon Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:97\n" + "msgid \"Choose a custom heading icon background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:102\n" + "msgid \"Heading Icon Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:105\n" + "msgid \"Choose a custom heading icon color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:110\n" + "msgid \"Heading Text Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:113\n" + "msgid \"Choose a custom heading text background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:118\n" + "msgid \"Heading Text Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:121\n" + "msgid \"Choose a custom heading text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:129\n" + "msgid \"Choose a custom background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:138\n" + "msgid \"Choose a custom background color hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:147\n" + "msgid \"Choose a custom color for button text.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:156\n" + "msgid \"Choose a custom color hover for button text.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact-form/vc_options.php:165\n" + "msgid \"Add extra class to image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:8\n" + "msgid \"SLZ Contact\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/config.php:9\n" + "msgid \"Contact information\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-1.php:18\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:18\n" + "msgid \"Choose style for this shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/options/layout-2.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:36\n" + "msgid \"Title for this block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:23\n" + "msgid \"Display title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:70\n" + "msgid \"Enter number of column contact display on row.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:46\n" + "msgid \"Content for this block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:56\n" + "msgid \"Add Contact Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:81\n" + "msgid \"Select color for background.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:89\n" + "msgid \"Select color for contact content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:97\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:96\n" + "msgid \"Select color for title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:105\n" + "msgid \"Select color for title when mouse hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:113\n" + "msgid \"Select color for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:121\n" + "msgid \"Select color for icon when mouse enter.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/contact/vc_options.php:130\n" + "msgid \"Add extra class for block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:5\n" + "msgid \"SLZ Content Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/config.php:6\n" + "msgid \"Show the content block as slider on your page.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:7\n" + "msgid \"Contents\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:8\n" + "msgid \"Add new content block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:15\n" + "msgid \"Title of content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:22\n" + "msgid \"Description of content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:84\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:96\n" + "#: framework-customizations/theme/options/advertisement-settings.php:36\n" + "#: framework-customizations/theme/options/page-header-settings.php:70\n" + "#: framework-customizations/theme/options/page-options.php:116\n" + "msgid \"Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:29\n" + "msgid \"Image of content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:36\n" + "msgid \"Button of content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:54\n" + "msgid \"Enter number of items to show. Default: 1.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:63\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:71\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:79\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:87\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:94\n" + "msgid \"Slider Custom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:92\n" + "msgid \"Slider Speed\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:93\n" + "msgid \"Enter number value. Unit is millisecond. Default: 600.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/content-carousel/vc_options.php:120\n" + "msgid \"Choose a custom description text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/config.php:10\n" + "msgid \"SLZ Count Down\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/config.php:11\n" + "msgid \"Add Count Down with custom option.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:23\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:47\n" + "msgid \"Choose style to be displayed.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:27\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:242\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:61\n" + "msgid \"Block Align\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:30\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:245\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:64\n" + "msgid \"It is used for aligning the inner content of blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:34\n" + "msgid \"Time Finish\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:36\n" + "msgid \"Enter finish time.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:40\n" + "msgid \"Items Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:43\n" + "msgid \"Choose background color for items.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:44\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:52\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:60\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:68\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:82\n" + "msgid \"Customs CSS\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:48\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:85\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:199\n" + "msgid \"Number Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:51\n" + "msgid \"Choose color for number.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:59\n" + "msgid \"Choose color for text under number.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:64\n" + "msgid \"Colon Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:67\n" + "msgid \"Choose color for colon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:74\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:77\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:132\n" + "msgid \"Enter extra class name.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:78\n" + "msgid \"Animation Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/count-down/vc_options.php:81\n" + "msgid \"Choose color for Animation.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:10\n" + "msgid \"SLZ Counter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/config.php:11\n" + "msgid \"Create counter block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:13\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:68\n" + "msgid \"Image Upload\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:18\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:27\n" + "msgid \"None\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:40\n" + "msgid \"Georgia 1\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:41\n" + "msgid \"Georgia 2\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:63\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:38\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:29\n" + "msgid \"Title. If it blank the will not have a title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:68\n" + "msgid \"Number\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:70\n" + "msgid \"Title. If it blank the will not have a number\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:76\n" + "msgid \"Choose custom color for background item.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:87\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:201\n" + "msgid \"Choose custom color for number.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:96\n" + "msgid \"Number Prefix\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:98\n" + "msgid \"Add prefix for number\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:102\n" + "msgid \"Number Suffix\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:104\n" + "msgid \"Add suffix for number\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:108\n" + "msgid \"Choose Type of Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:111\n" + "msgid \"Choose style to display block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:128\n" + "msgid \"Upload Image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:135\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:146\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:71\n" + "msgid \"Styles\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:161\n" + "msgid \"Choose number of columns to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:165\n" + "msgid \"Block Alignment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:172\n" + "msgid \"Counter Items\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:175\n" + "msgid \"List of counter items\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:179\n" + "msgid \"Number Animation?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:185\n" + "msgid \"Show Number Line?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:187\n" + "msgid \"Show line under number\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:194\n" + "msgid \"Choose custom color for title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:208\n" + "msgid \"Choose custom color for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:215\n" + "msgid \"Choose custom background color for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:220\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:133\n" + "msgid \"Line Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/counterv2/vc_options.php:222\n" + "msgid \"Choose line custom color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:10\n" + "msgid \"SLZ Icons Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/config.php:11\n" + "msgid \"Icons Block of info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:6\n" + "msgid \"Newyork\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:17\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:10\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:8\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:32\n" + "#: framework-customizations/theme/options/post-settings.php:322\n" + "msgid \"Normal\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:12\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:11\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:9\n" + "msgid \"Alternate\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:15\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/options/layout-1.php:18\n" + "msgid \"Select style for blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:32\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:31\n" + "msgid \"Choose background color for icon of blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:38\n" + "msgid \"Icon Background Color (hover)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:45\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:44\n" + "msgid \"Choose background color for icon when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:51\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:50\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:140\n" + "msgid \"Icon Border Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:58\n" + "msgid \"Choose border color for icon of blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:65\n" + "msgid \"Icon Border Color (hover)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:71\n" + "msgid \"Choose border color for icon when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:82\n" + "msgid \"It is used for Layout United States - Style Large Spacing\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-1.php:87\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:246\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:262\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:270\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:277\n" + "msgid \"Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/options/layout-2.php:7\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:6\n" + "msgid \"Jaipur\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:8\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:7\n" + "msgid \"Noida\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:9\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:8\n" + "msgid \"New Delhi\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:10\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:9\n" + "msgid \"Bengaluru\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:37\n" + "msgid \"Icon Background Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-2.php:63\n" + "msgid \"Icon Border Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:4\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:3\n" + "msgid \"Milan\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/options/layout-4.php:5\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:4\n" + "msgid \"Rome\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:10\n" + "msgid \"0.5 s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:11\n" + "msgid \"1 s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:12\n" + "msgid \"1.5 s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:13\n" + "msgid \"2 s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:20\n" + "msgid \"No Spacing 01\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:21\n" + "msgid \"No Spacing 02\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:33\n" + "msgid \"Underline\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:64\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:17\n" + "msgid \"Icon Type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:70\n" + "msgid \"Choose type of icon of block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:90\n" + "msgid \"You can use image instead of icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:97\n" + "msgid \"Title. If it blank the block will not have a title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:127\n" + "msgid \"Description. If it blank the block will not have a description.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:134\n" + "msgid \"Choose background color for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:143\n" + "msgid \"Choose border color for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:156\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:116\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:40\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:35\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:30\n" + "msgid \"Block Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:159\n" + "msgid \"Choose background color for blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:164\n" + "msgid \"Block Background Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:167\n" + "msgid \"Choose background color for blocks when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:172\n" + "msgid \"Block Background Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:175\n" + "msgid \"Choose background image for blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:179\n" + "msgid \"Block Background Image Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:182\n" + "msgid \"Choose background image for blocks when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:189\n" + "msgid \"Add Block Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:212\n" + "msgid \"Blocks Animation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:216\n" + "msgid \"Add animation for blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:220\n" + "msgid \"Animation Delay Time\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:224\n" + "msgid \"Choose delay time for animation.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:233\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:94\n" + "msgid \"Select number of single block elements per row.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:254\n" + "msgid \"Spacing Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:257\n" + "msgid \"Choose style for spacing bettween blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:266\n" + "msgid \"Title Line?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:269\n" + "msgid \"Show/Hide line of title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:274\n" + "msgid \"Icon Size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:276\n" + "msgid \"Enter icon size (unit is px).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:286\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:108\n" + "msgid \"Block Border Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:289\n" + "msgid \"Choose border color for blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:299\n" + "msgid \"Block Border Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:302\n" + "msgid \"Choose border color for blocks when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:316\n" + "msgid \"Choose color for icon of blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:325\n" + "msgid \"Choose color for icon of blocks when you mouse over it .\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:333\n" + "msgid \"Choose color for title of blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:339\n" + "msgid \"Title Line Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:343\n" + "msgid \"Choose color for title line of blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/icons-block/vc_options.php:355\n" + "msgid \"Choose color for description of blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/config.php:10\n" + "msgid \"SLZ Item List\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/config.php:11\n" + "msgid \"list of text info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:38\n" + "msgid \"Text Info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:42\n" + "msgid \"Please input text to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:46\n" + "msgid \"Text Description\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:50\n" + "msgid \"Please input text description to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:57\n" + "msgid \"Choose a custom text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:78\n" + "msgid \"Show Number\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:85\n" + "msgid \"Choose to show number replace for icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:98\n" + "msgid \"Add New Item\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:107\n" + "msgid \"Set color for all item.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:118\n" + "msgid \"Margin Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:121\n" + "msgid \"\"\n" + "\"Please input margin top between items. Exp: If want to margin 8px then input \"\n" + "\"8\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:125\n" + "msgid \"Margin Bottom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/item-list/vc_options.php:128\n" + "msgid \"\"\n" + "\"Please input margin bottom between items. Exp: If want to margin 8px then \"\n" + "\"input 8\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:12\n" + "msgid \"No Line\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:13\n" + "msgid \"Has Line\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:39\n" + "msgid \"Title. If it blank will not have a title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:43\n" + "msgid \"Extra Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:46\n" + "msgid \"Extra Title . If it blank will not have a extra title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:50\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:193\n" + "#: framework-customizations/theme/options/page-404-settings.php:63\n" + "msgid \"Sub Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:53\n" + "msgid \"Subtitle . If it blank will not have a subtitle.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:57\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:97\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:28\n" + "msgid \"Align\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:61\n" + "msgid \"Block alignment.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:65\n" + "msgid \"Show Line?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:68\n" + "msgid \"Show/Hide line for this shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:83\n" + "msgid \"Show Icon or Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:86\n" + "msgid \"Display None\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:90\n" + "msgid \"Show Icon or Show Image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:91\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:103\n" + "msgid \"Icon Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:98\n" + "msgid \"Upload your image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:115\n" + "msgid \"CSS box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:117\n" + "msgid \"Design Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:136\n" + "msgid \"Choose color for line.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:145\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:203\n" + "msgid \"Sub Title Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:148\n" + "msgid \"Choose color for sub title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:153\n" + "msgid \"Extra Title Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:156\n" + "msgid \"Choose color for extra title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:168\n" + "msgid \"Choose color for icon.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/main-title/vc_options.php:181\n" + "msgid \"Add extra class to button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:15\n" + "msgid \"SLZ Map\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/config.php:16\n" + "msgid \"Map data from google map\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:8\n" + "msgid \"Enter title for this session.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:15\n" + "msgid \"Contact Information\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:22\n" + "msgid \"Address\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:24\n" + "msgid \"Enter Address.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:28\n" + "msgid \"Add New Information\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:44\n" + "msgid \"Add New Place\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:50\n" + "msgid \"Show Block Information?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:52\n" + "msgid \"Show/Hide block information next to map.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:56\n" + "msgid \"Contact Form ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:59\n" + "msgid \"Add shortcode id of contact form 7 plugin\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:63\n" + "msgid \"Map Height\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:66\n" + "msgid \"Unit is px (ex:200)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:77\n" + "msgid \"Map Marker Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:80\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:88\n" + "msgid \"Map Setting\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:84\n" + "msgid \"Zoom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:87\n" + "msgid \"\"\n" + "\"Enter zoom number of map. Number between 0 (farthest) and 22 that sets the \"\n" + "\"zoom level of the map.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:95\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:103\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:111\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:119\n" + "msgid \"Custom Css\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:100\n" + "msgid \"Information Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:104\n" + "msgid \"Select color for contact information.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:112\n" + "msgid \"Select color for horizontal separator betwen items.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/map/vc_options.php:120\n" + "msgid \"Select background color for block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:11\n" + "msgid \"SLZ Newsletter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/config.php:12\n" + "msgid \"Extend from plugin newsletter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:25\n" + "msgid \"Please input title if want to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:32\n" + "msgid \"Please input descripton if want to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:36\n" + "msgid \"Show Input Name?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:39\n" + "msgid \"Choose if want to show input name.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:47\n" + "msgid \"Name Input Place Holder\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:50\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:61\n" + "msgid \"Enter place holder for input\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:58\n" + "msgid \"Email Input Place Holder\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:65\n" + "msgid \"Text Button Submit\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:68\n" + "msgid \"Enter text for button submit.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:93\n" + "msgid \"Choose color for description.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:98\n" + "msgid \"Input Text Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:100\n" + "msgid \"Choose color for input text.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:107\n" + "msgid \"Choose color for button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:114\n" + "msgid \"Choose color for button when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:121\n" + "msgid \"Choose background color for button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:128\n" + "msgid \"Choose background color for button when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:135\n" + "msgid \"Choose border color for button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/newsletter/vc_options.php:142\n" + "msgid \"Choose border color for button when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:9\n" + "msgid \"SLZ Partner\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/config.php:10\n" + "msgid \"List of partner\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:8\n" + "msgid \"Six\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:9\n" + "msgid \"Seven\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:10\n" + "msgid \"Eight\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:44\n" + "msgid \"Choose slide for shortcode.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:60\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:86\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:99\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:111\n" + "msgid \"Carousel Custom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:120\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:402\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:314\n" + "msgid \"Slide Arrow Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:123\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:405\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:317\n" + "msgid \"Choose color slide arrow for slide.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:128\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:140\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:152\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:164\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:176\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:188\n" + "msgid \"Color Custom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:132\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:326\n" + "msgid \"Slide Arrow Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:135\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:417\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:329\n" + "msgid \"Choose color slide arrow for slide when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:144\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:426\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:338\n" + "msgid \"Slide Arrow Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:147\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:429\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:341\n" + "msgid \"Choose background color slide arrow for slide.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:156\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:350\n" + "msgid \"Slide Arrow Background Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:159\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:441\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:353\n" + "msgid \"Choose background color slide arrow for slide when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:168\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:450\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:362\n" + "msgid \"Slide Dots Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:171\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:453\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:365\n" + "msgid \"Choose color slide dots for slide.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:180\n" + "msgid \"Slide Dots Color Active\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:183\n" + "msgid \"Choose color slide dots for slide when active, hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:221\n" + "msgid \"Is Padding ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:225\n" + "msgid \"Choose YES to block is padding.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:229\n" + "msgid \"List of Partner\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:234\n" + "msgid \"Item Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:237\n" + "msgid \"Enter title of block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:241\n" + "msgid \"Item Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:243\n" + "msgid \"Upload Image. Recommend uploading the pictures the same size.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:247\n" + "msgid \"Item Link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/partner/vc_options.php:250\n" + "msgid \"Enter link of item.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:10\n" + "msgid \"SLZ Posts Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:11\n" + "msgid \"Show posts with layouts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:45\n" + "msgid \"Portsmouth\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:46\n" + "msgid \"Chester\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:47\n" + "msgid \"Huddersfield\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:48\n" + "msgid \"Bath\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/config.php:52\n" + "msgid \"Cascina\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:11\n" + "msgid \"Choose main layout to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:34\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:60\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:21\n" + "msgid \"Main Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:20\n" + "msgid \"Choose if want to show category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:112\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:68\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:80\n" + "msgid \"Show Top Post Info?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:33\n" + "msgid \"Choose if want to show top post info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:42\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:125\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:16\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:91\n" + "msgid \"Show Bottom Post Info?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:46\n" + "msgid \"Choose if want to show bottom post info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:55\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:7\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:42\n" + "msgid \"Show Excerpt?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:51\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:46\n" + "msgid \"Choose if want to show excerpt\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:72\n" + "msgid \"Choose if want to show read more button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:85\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:11\n" + "msgid \"Choose list layout to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:86\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:95\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:104\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:117\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:130\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:143\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:156\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:30\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:39\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:52\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:12\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:21\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:34\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:47\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:60\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:73\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:85\n" + "msgid \"List Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:94\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:20\n" + "msgid \"Choose number of column.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:103\n" + "msgid \"Choose if want to show category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:116\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:72\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:87\n" + "msgid \"Choose if want to show top post info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:129\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:20\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:98\n" + "msgid \"Choose if want to show bottom post info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:142\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-2.php:38\n" + "msgid \"Choose if want to show feature image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-1.php:155\n" + "msgid \"Choose if want to show read more button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:29\n" + "msgid \"Show Left and Right layout?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:33\n" + "msgid \"Choose if want to show left and right layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:81\n" + "msgid \"Show User Info?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-3.php:84\n" + "msgid \"Choose if want to show user info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:15\n" + "msgid \"Arrow Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:18\n" + "msgid \"Choose a custom arrow color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:27\n" + "msgid \"Arrow Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/options/layout-4.php:30\n" + "msgid \"Choose a custom arrow hover color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:26\n" + "msgid \"Author Post Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:29\n" + "msgid \"Choose a author post color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:34\n" + "msgid \"Title Post Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:37\n" + "msgid \"Choose a title post color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:58\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:134\n" + "msgid \"Number Posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:61\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:137\n" + "msgid \"\"\n" + "\"The number of posts to display. If it blank the number posts will be the \"\n" + "\"number from Settings -> Reading\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:65\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:141\n" + "msgid \"Offset Posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:68\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:144\n" + "msgid \"\"\n" + "\"Enter offset to display. If you want to start on record 6, using offset 5\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:75\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:151\n" + "msgid \"Choose criteria to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:82\n" + "msgid \"Enter number of excerpt length\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-block/vc_options.php:93\n" + "msgid \"Enter text for button \\\"read more\\\"\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:10\n" + "msgid \"SLZ Posts Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/config.php:11\n" + "msgid \"Block Carousel of posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:12\n" + "msgid \"Choose a layout to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:19\n" + "msgid \"One Column\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:20\n" + "msgid \"Two Column\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:21\n" + "msgid \"Three Column\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:22\n" + "msgid \"Four Column\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:25\n" + "msgid \"Choose a column for display block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:69\n" + "msgid \"Show Excerpt\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:76\n" + "msgid \"Show or hide post excerpt\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:105\n" + "msgid \"Input number of excerpt length.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:113\n" + "msgid \"Show Readmore Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:120\n" + "msgid \"Show or hide readmore button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:126\n" + "msgid \"Add custom link for readmore buttonaa.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:168\n" + "msgid \"Fade\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:217\n" + "msgid \"Animation?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/vc_options.php:220\n" + "msgid \"Choose a animation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/posts-carousel/views/large_module.php:18\n" + "msgid \"Read more\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:10\n" + "msgid \"SLZ Pricing Box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/config.php:11\n" + "msgid \"Box of pricing info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/options/layout-1.php:12\n" + "msgid \"Select style for pricing box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:39\n" + "msgid \"Number of Pricing Box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:44\n" + "msgid \"Choose number of pricing box to display\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:58\n" + "#, php-format\n" + "msgid \"Pricing Box %s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:70\n" + "msgid \"Active?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:74\n" + "msgid \"Choose yes if you want it show as active.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:80\n" + "msgid \"Pricing Header Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:82\n" + "msgid \"Choose background color for header of pricing box.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:89\n" + "msgid \"Mark Label\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:92\n" + "msgid \"Please input mark label.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:100\n" + "msgid \"Choose label text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:107\n" + "#: framework-customizations/theme/options/post-settings.php:363\n" + "msgid \"Label Background Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:109\n" + "msgid \"Choose label background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:119\n" + "msgid \"Please input box title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:128\n" + "msgid \"Choose title color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:138\n" + "msgid \"Please input price number.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:145\n" + "msgid \"Old Price\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:148\n" + "msgid \"Please input Old price number.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:155\n" + "msgid \"Price Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:157\n" + "msgid \"Choose price color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:167\n" + "msgid \"Enter measurement units. Example: $, GBP, EUR, etc.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:177\n" + "msgid \"Please input price subfix. Exp: Month, Hour,..\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:184\n" + "msgid \"Price Subfix Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:186\n" + "msgid \"Choose price subfix color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:196\n" + "msgid \"Please input sub title.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:205\n" + "msgid \"Choose sub title color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:212\n" + "msgid \"Features\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:217\n" + "msgid \"Feature Item\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:221\n" + "msgid \"Please input feature item.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:225\n" + "msgid \"Feature Item Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:227\n" + "msgid \"Choose feature item color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:242\n" + "msgid \"Choose icon feature item color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:254\n" + "msgid \"Please input button text.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:263\n" + "msgid \"Choose button link and info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:271\n" + "msgid \"Choose button text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:278\n" + "msgid \"Button Color (hover)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:280\n" + "msgid \"Choose button text color when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:289\n" + "msgid \"Choose button background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:296\n" + "msgid \"Button Background Color (hover)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:298\n" + "msgid \"Choose button background color when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:305\n" + "msgid \"Background Color (hover)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:307\n" + "msgid \"Choose background color when you mouse over it.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:315\n" + "msgid \"Background Image Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/pricing-box/vc_options.php:316\n" + "msgid \"Upload pricing box background image hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:9\n" + "msgid \"Conneticut\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:24\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:73\n" + "msgid \"List of Progress Bar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:37\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:86\n" + "msgid \"Number show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:41\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:90\n" + "msgid \"\"\n" + "\"Please input percent of progress bar, Exp: if you want to show 80, please \"\n" + "\"input 80, maximum number is 100\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:45\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:94\n" + "msgid \"Progress Bar Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:48\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:97\n" + "msgid \"Choose a custom progress bar color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:59\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:108\n" + "msgid \"Percent Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:62\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:111\n" + "msgid \"Choose a custom percent text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:115\n" + "msgid \"Marker Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/progress-bar/options/layout-1.php:118\n" + "msgid \"Choose a custom marker color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:8\n" + "msgid \"SLZ Timeline\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/config.php:9\n" + "msgid \"Timeline of events\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:13\n" + "msgid \"Choose style for shortcode\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:17\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:8\n" + "msgid \"Add info to timeline\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:23\n" + "msgid \"Timeline\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:25\n" + "msgid \"Timeline. If it blank the will not have timeline\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:29\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:20\n" + "msgid \"Timeline Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:31\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:22\n" + "msgid \"Choose a custom color for timeline.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:42\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:33\n" + "msgid \"Url\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:45\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:36\n" + "msgid \"Please input link to timeline.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:57\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:48\n" + "msgid \"Description. If it blank the will not have a description\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:63\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:54\n" + "msgid \"Choose a custom color for description.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:72\n" + "msgid \"Milestone Point\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:74\n" + "msgid \"Choose a custom color for milestone point.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:79\n" + "msgid \"Timeline Line\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-1.php:81\n" + "msgid \"Choose a custom color for timeline line.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:14\n" + "msgid \"Year\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/timeline/options/layout-2.php:16\n" + "msgid \"Year of timeline. If it blank will not have timeline.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:10\n" + "msgid \"SLZ Video Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:11\n" + "msgid \"Show list of video as carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:26\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:6\n" + "#: framework-customizations/theme/options/posts/post.php:104\n" + "msgid \"Youtube\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/config.php:27\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:7\n" + "#: framework-customizations/theme/options/posts/post.php:108\n" + "msgid \"Vimeo\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:11\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:59\n" + "msgid \"Choose style to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:21\n" + "msgid \"Add Title for shortcode Video Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:36\n" + "msgid \"Add Video\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:41\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:33\n" + "msgid \"Video Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:44\n" + "msgid \"Add title for video\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:48\n" + "msgid \"Video Description\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:51\n" + "msgid \"Add description for video\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:55\n" + "msgid \"Type Of Video\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:63\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:56\n" + "#: framework-customizations/theme/options/posts/post.php:125\n" + "msgid \"Youtube ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:66\n" + "#: framework-customizations/theme/options/posts/post.php:126\n" + "msgid \"\"\n" + "\"Example the Video ID for http://www.youtube.com/v/8OBfr46Y0cQ is 8OBfr46Y0cQ\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:74\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:69\n" + "#: framework-customizations/theme/options/posts/post.php:117\n" + "msgid \"Vimeo ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:77\n" + "#: framework-customizations/theme/options/posts/post.php:118\n" + "msgid \"Example the Video ID for http://vimeo.com/86323053 is 86323053\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video-carousel/vc_options.php:93\n" + "msgid \"Set navigation slide to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:6\n" + "msgid \"SLZ Video\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/config.php:7\n" + "msgid \"Create video block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:36\n" + "msgid \"Set title for video.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:43\n" + "msgid \"Description for this video.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:48\n" + "msgid \"Video Type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:51\n" + "msgid \"Choose Type of Video.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:59\n" + "msgid \"\"\n" + "\"Example: the Video ID for https://www.youtube.com/watch?v=PDWvcsTloJo is \"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:72\n" + "msgid \"Example: the Video ID for https://vimeo.com/162913890 is \"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:81\n" + "msgid \"Add Video Background Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:84\n" + "msgid \"Choose background image to add.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:89\n" + "msgid \"Video height\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:92\n" + "msgid \"\"\n" + "\"Set height for video. Example: 75% - means video height by 75% video width.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:101\n" + "msgid \"Choose align for video box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:106\n" + "msgid \"Is Popup?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:109\n" + "msgid \"Choose to show video as popup.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:114\n" + "msgid \"Play Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:117\n" + "msgid \"Enter play text for video.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/vc_options.php:125\n" + "msgid \"Set border radius for video.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/views/layout-1.php:148\n" + "#: framework-customizations/extensions/shortcodes/shortcodes/video/views/layout-2.php:153\n" + "msgid \"Video not found.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:8\n" + "msgid \"SLZ Teams Block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/config.php:9\n" + "msgid \"List of teams\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-1.php:27\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/options/layout-3.php:25\n" + "msgid \"It is used for ...\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:9\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:16\n" + "#: framework-customizations/theme/config.php:537\n" + "msgid \"Team\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:17\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:27\n" + "msgid \"-All Team-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:21\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:31\n" + "msgid \"-All Team Categories-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:59\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:57\n" + "msgid \"Choose team category or special teams to display\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:77\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:75\n" + "msgid \"Choose Team Category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:86\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:84\n" + "#: framework-customizations/theme/options/template-settings.php:301\n" + "msgid \"Teams\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:92\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:90\n" + "msgid \"Add Team\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:95\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:93\n" + "msgid \"Choose special team to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:99\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:97\n" + "msgid \"\"\n" + "\"Default display All Team if no team is selected and Number team is empty.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:114\n" + "msgid \"Enter content to display button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:119\n" + "msgid \"Show Thumbnail\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:123\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:113\n" + "msgid \"If choose Yes, block will be show thumbnail image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:128\n" + "msgid \"Show Position\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:132\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:121\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:84\n" + "msgid \"If choose Yes, block will be show position.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:137\n" + "msgid \"Show Contact Info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:141\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:129\n" + "msgid \"If choose Yes, block will show contact info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:146\n" + "msgid \"Show Social\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:150\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:137\n" + "msgid \"If choose Yes, block will be show social.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:159\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:145\n" + "msgid \"If choose Yes, block will be show description.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:166\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:151\n" + "msgid \"Limit words to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:181\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:197\n" + "msgid \"Choose color title for block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:182\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:190\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:198\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:206\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:214\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:222\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:230\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:238\n" + "msgid \"Color Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:189\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:205\n" + "msgid \"Choose color title for block when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:194\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:210\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:213\n" + "msgid \"Position Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:197\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:213\n" + "msgid \"Choose color position for block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:202\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:218\n" + "msgid \"Info Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:205\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:221\n" + "msgid \"Choose color for contact info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:210\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:226\n" + "msgid \"Info Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:213\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:229\n" + "msgid \"Choose hover color for contact info.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:221\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:237\n" + "msgid \"Choose color description for block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:229\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:245\n" + "msgid \"Choose color social for block.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:237\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:253\n" + "msgid \"Choose color social for block when hover.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:282\n" + "msgid \"Show Pagination ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:286\n" + "msgid \"If choose Yes, block will be show pagination.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:290\n" + "msgid \"Max Posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:293\n" + "msgid \"Add total posts when paging.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:304\n" + "msgid \"Select order to display list of teams.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:317\n" + "msgid \"Show Slider\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:321\n" + "msgid \"If choose Yes, block will be display with slider style.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:322\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:334\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:347\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:360\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:373\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:386\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:398\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:410\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:422\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:434\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:446\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:458\n" + "msgid \"Slide Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:351\n" + "msgid \"Show Dots Navigation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:364\n" + "msgid \"Show Arrows Navigation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:414\n" + "msgid \"Slide Arrow Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-block/vc_options.php:438\n" + "msgid \"Slide Arrow Background Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:8\n" + "msgid \"SLZ Team Carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:9\n" + "msgid \"List of teams in carousel\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/config.php:34\n" + "msgid \"Germany\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:20\n" + "msgid \"1\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:21\n" + "msgid \"2\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:109\n" + "msgid \"Show Thumbnail ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:117\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:80\n" + "msgid \"Show Position ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:125\n" + "msgid \"Show Contact Info ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:133\n" + "msgid \"Show Social ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:141\n" + "msgid \"Show Description ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:183\n" + "msgid \"Enter text to button. If it blank will not have a button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:250\n" + "msgid \"Social Color Hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/teams/shortcodes/team-carousel/vc_options.php:265\n" + "msgid \"Choose number of items to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:10\n" + "msgid \"SLZ Testimonial\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/config.php:11\n" + "msgid \"Slider of testimonials\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:25\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:31\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:26\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:25\n" + "msgid \"Using featured image in post as background image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:36\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-1.php:48\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:42\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:37\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:32\n" + "msgid \"Please choose background color for block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-2.php:54\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-4.php:49\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-5.php:40\n" + "msgid \"Please choose border color for block\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:4\n" + "msgid \"Ankara\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:5\n" + "msgid \"Bilecik\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/options/layout-6.php:6\n" + "msgid \"Bolu\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:16\n" + "msgid \"Testimonial\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:25\n" + "msgid \"Show Feature Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:26\n" + "msgid \"Show Thumbnail Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:31\n" + "msgid \"-All Testimonial-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:35\n" + "msgid \"-All Testimonial Categories-\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:72\n" + "msgid \"Show Icon Quote ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:76\n" + "msgid \"If choose Yes, block will be show icon quote.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:88\n" + "msgid \"Show Ratings?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:92\n" + "msgid \"If choose Yes, block will be show ratings.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:96\n" + "msgid \"Avatar Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:100\n" + "msgid \"Select image type for Avatar.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:139\n" + "msgid \"Choose testimonial category or special testimonials to display.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:157\n" + "msgid \"Choose Testimonial Category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:166\n" + "msgid \"Testimonials\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:172\n" + "msgid \"Add Testimonial\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:175\n" + "msgid \"Choose special testimonial to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:180\n" + "msgid \"Default display all testimonials.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:193\n" + "msgid \"Quote Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:195\n" + "msgid \"Please choose quote color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:207\n" + "msgid \"Please choose title color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:215\n" + "msgid \"Please choose position color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:223\n" + "msgid \"Please choose description color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:236\n" + "msgid \"Please choose dots color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:248\n" + "msgid \"Please choose arrows color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:260\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:272\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:285\n" + "msgid \"Please choose arrows background color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:295\n" + "msgid \"Slides To Show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/testimonials/shortcodes/testimonial/vc_options.php:298\n" + "msgid \"\"\n" + "\"Please input number of item show in slider. Except for Layout India Style \"\n" + "\"Pune.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/button/config.php:7\n" + "msgid \"slz_btn\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/button/config.php:8\n" + "msgid \"SLZ: Button\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/button/config.php:9\n" + "msgid \"Add button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:12\n" + "msgid \"Choose layout.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:19\n" + "msgid \"Enter button text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:24\n" + "msgid \"Enter button link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/button/options.php:29\n" + "msgid \"Choose align button.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:25\n" + "msgid \"Style 1\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:26\n" + "msgid \"Style 2\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:27\n" + "msgid \"Style 3\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:28\n" + "msgid \"Style 4\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:40\n" + "msgid \"Category:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/category/views/admin.php:46\n" + "msgid \"Choose category to show\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/partner/config.php:7\n" + "msgid \"slz_partner\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/partner/config.php:8\n" + "msgid \"SLZ: Partner\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/partner/config.php:9\n" + "msgid \"Add Partner.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/partner/options.php:12\n" + "msgid \"Choose style.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/partner/options.php:22\n" + "msgid \"Upload Images\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:8\n" + "msgid \"slz_recent_post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:9\n" + "msgid \"SLZ: Recent Post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:10\n" + "msgid \"A recent posts list\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:14\n" + "msgid \"Display Thumbnail\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:15\n" + "msgid \"Display Post Date\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:16\n" + "msgid \"Display Author\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:17\n" + "msgid \"Display View\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/config.php:18\n" + "msgid \"Display Comment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/extensions/widgets/widgets/recent-post/views/admin.php:12\n" + "msgid \"Number Post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:19\n" + "#: includes/class-tgm-plugin-activation.php:2697\n" + "#, php-format\n" + "msgid \"Install %2$s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:19\n" + "#: includes/class-tgm-plugin-activation.php:2811\n" + "msgid \"Install\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:43\n" + "#: includes/class-tgm-plugin-activation.php:2708\n" + "#, php-format\n" + "msgid \"Activate %2$s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:43\n" + "#: includes/class-tgm-plugin-activation.php:2820\n" + "msgid \"Activate\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:62\n" + "#: includes/class-tgm-plugin-activation.php:2702\n" + "#, php-format\n" + "msgid \"Update %2$s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:62\n" + "#: includes/class-tgm-plugin-activation.php:2817\n" + "msgid \"Update\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:85\n" + "#, php-format\n" + "msgid \"Deactivate %2$s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/class-welcome.php:85\n" + "msgid \"Deactivate\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:47\n" + "msgid \"d\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:48\n" + "msgid \"M\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:49\n" + "msgid \"Y\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:526\n" + "msgid \"Portfolio Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:527\n" + "msgid \"Team Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:528\n" + "msgid \"Service Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:529\n" + "msgid \"Recruitment Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:530\n" + "msgid \"Cause Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:531\n" + "msgid \"Event Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:532\n" + "msgid \"FAQ Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:533\n" + "msgid \"Product Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:538\n" + "msgid \"Service\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:539\n" + "msgid \"Recruitment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:540\n" + "msgid \"Cause\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:542\n" + "#: framework-customizations/theme/options/template-settings.php:505\n" + "msgid \"FAQ\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:543\n" + "msgid \"Product\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:549\n" + "msgid \"Font EduChain\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:556\n" + "msgid \"Font Ionicons\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:607\n" + "msgid \"Main Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:607\n" + "msgid \"Select the main color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:608\n" + "msgid \"Gradient Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/config.php:608\n" + "msgid \"Select the gradient color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:80\n" + "msgid \"EduChain\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:85\n" + "msgid \"A basic start that fits all general requirements for almost courses.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:107\n" + "msgid \"Market Place\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:112\n" + "msgid \"You can create successful market place like udemy, coursera, lynda ...\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:134\n" + "msgid \"Less Courses\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:139\n" + "msgid \"\"\n" + "\"Market place Less Course Suitable for small market place, or lecturers with \"\n" + "\"specialized courses.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:161\n" + "msgid \"Affiliate\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:166\n" + "msgid \"\"\n" + "\"Use the impressive interface of EduChain to easily attract students' \"\n" + "\"attention to click to link of a market place course.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:191\n" + "msgid \"WPBakery Visual Composer\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:198\n" + "msgid \"\"\n" + "\"Drag and drop page builder for WordPress. Take full control over your \"\n" + "\"WordPress site, build any layout you can imagine - no programming knowledge \"\n" + "\"required.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:201\n" + "msgid \"Solazu Unyson\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:208\n" + "msgid \"\"\n" + "\"A free drag & drop framework that comes with a bunch of built in extensions \"\n" + "\"that will help you develop premium themes fast & easy.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:218\n" + "msgid \"\"\n" + "\"This is a short description of what the plugin does. It's displayed in the \"\n" + "\"WordPress admin area.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:221\n" + "msgid \"Lema Subscription\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:228\n" + "#: framework-customizations/theme/manifest.php:238\n" + "msgid \"One plugin of Learn Master.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:231\n" + "msgid \"Lema Affiliate\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:241\n" + "#: framework-customizations/theme/options/posts/page.php:168\n" + "msgid \"Revolution Slider\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:248\n" + "msgid \"Slider Revolution - Premium responsive slider\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:251\n" + "msgid \"Newsletter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:257\n" + "msgid \"\"\n" + "\"Newsletter is a cool plugin to create your own subscriber list, to send \"\n" + "\"newsletters, to build your business.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:260\n" + "msgid \"Contact Form 7\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/manifest.php:266\n" + "msgid \"Just another contact form plugin. Simple but flexible.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:7\n" + "#: framework-customizations/theme/options/advertisement-settings.php:11\n" + "#: framework-customizations/theme/options/advertisement-settings.php:15\n" + "msgid \"Advertisement\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:17\n" + "msgid \"\"\n" + "\"Click to add new advertisement area. Advertisement area help you to create \"\n" + "\"and manager the banner\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:18\n" + "msgid \"Add Advertisement Area\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:22\n" + "msgid \"Area Name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:24\n" + "msgid \"Input the advertisement area name\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:32\n" + "msgid \"Display Banner\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:37\n" + "msgid \"Custom Code\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:47\n" + "msgid \"Banner Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:48\n" + "msgid \"Upload the banner image .png or .jpg\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:53\n" + "msgid \"Banner Link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:54\n" + "msgid \"Set the banner link.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:58\n" + "msgid \"Banner Alt Attribute\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:59\n" + "msgid \"\"\n" + "\"Appears inside the image container when the banner image can not be \"\n" + "\"displayed. It helps search engines understand what an banner image is about.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:64\n" + "msgid \"Open Link In New Tab\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:65\n" + "msgid \"Open Link In New Tab?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:80\n" + "msgid \"Textarea Option Code\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/advertisement-settings.php:81\n" + "msgid \"Custom HTML allowed. Paste your ad code here.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:19\n" + "#: framework-customizations/theme/options/course-settings.php:23\n" + "msgid \"Course Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:42\n" + "msgid \"Choose device\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:45\n" + "msgid \"Laptop\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:46\n" + "msgid \"Phone\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:49\n" + "msgid \"Help tip\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:60\n" + "msgid \"Memory\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:62\n" + "msgid \"16Gb\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:63\n" + "msgid \"32Gb\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:64\n" + "msgid \"64Gb\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/course-settings.php:75\n" + "msgid \"Webcam\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/custom-scripts.php:11\n" + "#: framework-customizations/theme/options/custom-scripts.php:17\n" + "msgid \"Custom Scripts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/custom-scripts.php:18\n" + "msgid \"Custom Scripts changes that will be applied to the theme\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/custom-styles.php:15\n" + "#: framework-customizations/theme/options/custom-styles.php:21\n" + "msgid \"Custom Styles\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/custom-styles.php:22\n" + "msgid \"Custom Styles changes that will be applied to the theme\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/footer-settings.php:11\n" + "msgid \"Footer\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/footer-settings.php:15\n" + "#: framework-customizations/theme/options/posts/page.php:205\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:82\n" + "msgid \"Footer Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:15\n" + "msgid \"Global Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:24\n" + "msgid \"Site Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:25\n" + "msgid \"This option will change layout for all pages of theme.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:62\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:38\n" + "msgid \"Boxed Width\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:63\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:39\n" + "msgid \"Select the website width\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:67\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:43\n" + "msgid \"Select the boxed background color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:77\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:90\n" + "msgid \"Select background image or try to upload new image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:80\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:94\n" + "msgid \"Website Alignment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:81\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:95\n" + "msgid \"Choose the website alignment.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:107\n" + "msgid \"Has Box Shadow?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:108\n" + "msgid \"Choose YES to enable box shadow.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:121\n" + "msgid \"Has Box Border?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:122\n" + "msgid \"Choose YES to enable box border.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:139\n" + "msgid \"Site Favicon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:140\n" + "msgid \"Upload the site favicon. Size recommend: 16x16 px.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:146\n" + "msgid \"Site Logo Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:147\n" + "msgid \"Upload the site logo .png or .jpg\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:154\n" + "msgid \"Sticky Sidebar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:155\n" + "msgid \"Enable sticky sidebar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:173\n" + "msgid \"Logo Transparent\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:188\n" + "msgid \"Site Logo Transparent\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:189\n" + "msgid \"Upload the site logo .png or .jpg use for header transparent\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:200\n" + "msgid \"Site Logo Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:201\n" + "msgid \"You can use this field instead of above field \\\"Site Logo Image\\\".\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:206\n" + "msgid \"Logo Alt Attribute\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:207\n" + "msgid \"\"\n" + "\"Appears inside the image container when the image can not be displayed. It \"\n" + "\"helps search engines understand what an image is about.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:211\n" + "msgid \"Logo Title Attribute\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:212\n" + "msgid \"\"\n" + "\"Used to provide a title for your image. It is displayed in a popup when a \"\n" + "\"user takes their mouse over to an image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:235\n" + "msgid \"Select icon type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:240\n" + "#: framework-customizations/theme/options/general-settings.php:400\n" + "#: framework-customizations/theme/options/general-settings.php:463\n" + "msgid \"Font Awesome\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:241\n" + "#: framework-customizations/theme/options/general-settings.php:401\n" + "#: framework-customizations/theme/options/general-settings.php:464\n" + "msgid \"Custom Upload\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:257\n" + "msgid \"For best results upload a square image, larger then 30px x 30px.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:282\n" + "msgid \"Button To Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:283\n" + "msgid \"Enable scroll to top?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:296\n" + "msgid \"WooCommerce Account\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:297\n" + "msgid \"Show WooCommerce account on header top right.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:310\n" + "msgid \"Language Switcher\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:311\n" + "msgid \"Show language switcher of WPML plugin on header top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:324\n" + "msgid \"Google Map - API Key\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:325\n" + "msgid \"\"\n" + "\"This key is used to run a some feature of Google Map. Please refer document \"\n" + "\"to create a key\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:334\n" + "msgid \"Enable reCaptcha\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:335\n" + "msgid \"Choose to enable reCaptcha when user register.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:350\n" + "msgid \"ReCaptcha API Site Key\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:351\n" + "#: framework-customizations/theme/options/general-settings.php:357\n" + "msgid \"\"\n" + "\"This key is used to run reCaptcha. Please refer document to create a key\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:356\n" + "msgid \"ReCaptcha API Secret Key\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:370\n" + "msgid \"Social Profiles\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:374\n" + "msgid \"Social Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:379\n" + "msgid \"Social Links\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:380\n" + "msgid \"Add your social profiles\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:385\n" + "msgid \"\"\n" + "\"Enter a name (it is for internal use and will not appear on the front end)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:395\n" + "msgid \"Select social icon type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:423\n" + "msgid \"Enter your social URL link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:433\n" + "#: framework-customizations/theme/options/general-settings.php:437\n" + "#: framework-customizations/theme/options/general-settings.php:442\n" + "msgid \"Customize Icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:443\n" + "msgid \"Add your customizable icon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:448\n" + "msgid \"Enter a name (it will show in front end)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:458\n" + "msgid \"Select customize icon type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/general-settings.php:486\n" + "msgid \"Enter your customize icon URL link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/header-settings.php:11\n" + "msgid \"Header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/header-settings.php:15\n" + "#: framework-customizations/theme/options/posts/page.php:179\n" + "msgid \"Header Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/header-settings.php:24\n" + "msgid \"Header Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/import-export.php:7\n" + "msgid \"Import / Export\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/import-export.php:12\n" + "msgid \"Import Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/import-export.php:13\n" + "msgid \"\"\n" + "\"WARNING! This will overwrite all existing option values, please proceed with \"\n" + "\"caution!\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/import-export.php:17\n" + "msgid \"Export Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/import-export.php:18\n" + "msgid \"\"\n" + "\"Here you can copy/download your current option settings. Keep this safe as \"\n" + "\"you can use it as a backup should anything go wrong, or you can use it to \"\n" + "\"restore your settings on this site (or any other site).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:16\n" + "#: framework-customizations/theme/options/page-404-settings.php:20\n" + "msgid \"404 Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:26\n" + "msgid \"Choose layout for page 404.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:40\n" + "msgid \"Page 404\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:41\n" + "msgid \"Choose page to display as page 404.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:56\n" + "msgid \"Illustration Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:59\n" + "msgid \"Upload illustration image.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:80\n" + "msgid \"Back To Home Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:84\n" + "msgid \"Button 02 Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-404-settings.php:88\n" + "msgid \"Enter link for button 02\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:6\n" + "#: framework-customizations/theme/options/page-boxed-layout.php:17\n" + "msgid \"Boxed Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:12\n" + "msgid \"Area Setting\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:23\n" + "#: framework-customizations/theme/options/page-options.php:76\n" + "msgid \"Choose layout for page header area.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:34\n" + "#: framework-customizations/theme/options/page-options.php:87\n" + "msgid \"Choose style for page header area.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:45\n" + "msgid \"Select the page header background color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:62\n" + "#: framework-customizations/theme/options/page-options.php:108\n" + "#: framework-customizations/theme/options/post-settings.php:212\n" + "msgid \"Featured Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:73\n" + "#: framework-customizations/theme/options/page-options.php:119\n" + "msgid \"Upload an image to make background image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:95\n" + "msgid \"Page Header Align\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:100\n" + "#: framework-customizations/theme/options/page-options.php:126\n" + "msgid \"Page Header Padding Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:101\n" + "#: framework-customizations/theme/options/page-options.php:127\n" + "msgid \"Enter padding top in pixels. Ex:80 \"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:106\n" + "#: framework-customizations/theme/options/page-options.php:131\n" + "msgid \"Page Header Padding Bottom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:107\n" + "#: framework-customizations/theme/options/page-options.php:132\n" + "msgid \"Enter padding bottom in pixels. Ex:80 \"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:115\n" + "#: framework-customizations/theme/options/page-header-settings.php:186\n" + "msgid \"Title Setting\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:126\n" + "#: framework-customizations/theme/options/page-header-settings.php:197\n" + "#: framework-customizations/theme/options/page-options.php:137\n" + "msgid \"Title On Page Header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:148\n" + "#: framework-customizations/theme/options/page-header-settings.php:219\n" + "#: framework-customizations/theme/options/page-options.php:156\n" + "#: framework-customizations/theme/options/template-settings.php:259\n" + "#: framework-customizations/theme/options/template-settings.php:329\n" + "#: framework-customizations/theme/options/template-settings.php:399\n" + "#: framework-customizations/theme/options/template-settings.php:469\n" + "#: framework-customizations/theme/options/template-settings.php:533\n" + "msgid \"Choose Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:150\n" + "msgid \"Page Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:159\n" + "#: framework-customizations/theme/options/page-header-settings.php:231\n" + "#: framework-customizations/theme/options/page-options.php:165\n" + "#: framework-customizations/theme/options/taxonomies/category.php:63\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:60\n" + "#: framework-customizations/theme/options/template-settings.php:267\n" + "#: framework-customizations/theme/options/template-settings.php:337\n" + "#: framework-customizations/theme/options/template-settings.php:407\n" + "#: framework-customizations/theme/options/template-settings.php:477\n" + "#: framework-customizations/theme/options/template-settings.php:541\n" + "msgid \"Custom Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:162\n" + "#: framework-customizations/theme/options/page-header-settings.php:234\n" + "#: framework-customizations/theme/options/page-options.php:168\n" + "#: framework-customizations/theme/options/taxonomies/category.php:66\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:63\n" + "msgid \"Enter custom title to display in page header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:258\n" + "msgid \"Breadcrumb Setting\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:269\n" + "#: framework-customizations/theme/options/page-options.php:176\n" + "msgid \"Breadcrumb On Page Header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:284\n" + "msgid \"Breadcrumb Styling\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:295\n" + "msgid \"Breadcrumb Active Styling\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:323\n" + "#: framework-customizations/theme/options/page-header-settings.php:357\n" + "#: framework-customizations/theme/options/page-header-settings.php:404\n" + "#: framework-customizations/theme/options/page-options.php:54\n" + "msgid \"Page Header Area\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:346\n" + "msgid \"Posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-header-settings.php:430\n" + "#: framework-customizations/theme/options/page-options.php:22\n" + "msgid \"Page Header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-options.php:5\n" + "#: framework-customizations/theme/options/page-options.php:14\n" + "#: framework-customizations/theme/options/template-settings.php:26\n" + "msgid \" Default\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-options.php:6\n" + "msgid \" Post Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-options.php:7\n" + "msgid \" Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-options.php:8\n" + "#: framework-customizations/theme/options/page-options.php:16\n" + "#: framework-customizations/theme/options/template-settings.php:27\n" + "msgid \" Custom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-options.php:15\n" + "msgid \" Page Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/page-options.php:158\n" + "msgid \"\"\n" + "\"Choose title to display in page header. To get setting from \\\"Theme Setting\"\n" + "\"\\\", choose \\\"Default\\\"\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:38\n" + "msgid \"Social Share\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:39\n" + "msgid \"Enable social share links in single pages ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:53\n" + "msgid \"Add Social\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:58\n" + "msgid \"Facebook\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:59\n" + "msgid \"Twitter\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:60\n" + "msgid \"Google Plus\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:61\n" + "msgid \"Pinterest\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:62\n" + "msgid \"LinkedIn\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:63\n" + "msgid \"Digg\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:75\n" + "msgid \"Share Count\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:76\n" + "msgid \"Enable social share count in single pages ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:91\n" + "msgid \"Facebook App ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:92\n" + "msgid \"Enter App ID to get the share count of Facebook.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:96\n" + "msgid \"Facebook Secret Key\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:97\n" + "msgid \"Enter Secret Key to get the share count of Facebook.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:113\n" + "#: framework-customizations/theme/options/post-settings.php:573\n" + "msgid \"Post Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:117\n" + "msgid \"Post Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:122\n" + "msgid \"Blog Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:123\n" + "msgid \"Select the blog display style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:128\n" + "#: framework-customizations/theme/options/post-settings.php:346\n" + "#: framework-customizations/theme/options/posts/page.php:85\n" + "#: framework-customizations/theme/options/posts/post.php:44\n" + "#: framework-customizations/theme/options/posts/product.php:32\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:32\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:32\n" + "#: framework-customizations/theme/options/posts/slz-service.php:32\n" + "#: framework-customizations/theme/options/posts/slz-team.php:32\n" + "#: framework-customizations/theme/options/taxonomies/category.php:30\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:27\n" + "#: framework-customizations/theme/options/template-settings.php:43\n" + "#: framework-customizations/theme/options/template-settings.php:72\n" + "#: framework-customizations/theme/options/template-settings.php:97\n" + "#: framework-customizations/theme/options/template-settings.php:122\n" + "#: framework-customizations/theme/options/template-settings.php:147\n" + "#: framework-customizations/theme/options/template-settings.php:172\n" + "#: framework-customizations/theme/options/template-settings.php:197\n" + "#: framework-customizations/theme/options/template-settings.php:239\n" + "#: framework-customizations/theme/options/template-settings.php:309\n" + "#: framework-customizations/theme/options/template-settings.php:379\n" + "#: framework-customizations/theme/options/template-settings.php:449\n" + "#: framework-customizations/theme/options/template-settings.php:513\n" + "msgid \"Sidebar Layout\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:129\n" + "msgid \"Set how to display sidebar in single pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:136\n" + "msgid \"Post Sidebar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:137\n" + "#: framework-customizations/theme/options/post-settings.php:355\n" + "#: framework-customizations/theme/options/posts/page.php:114\n" + "#: framework-customizations/theme/options/posts/post.php:73\n" + "#: framework-customizations/theme/options/posts/product.php:61\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:61\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:61\n" + "#: framework-customizations/theme/options/posts/slz-service.php:61\n" + "#: framework-customizations/theme/options/posts/slz-team.php:61\n" + "#: framework-customizations/theme/options/taxonomies/category.php:58\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55\n" + "#: framework-customizations/theme/options/template-settings.php:52\n" + "#: framework-customizations/theme/options/template-settings.php:81\n" + "#: framework-customizations/theme/options/template-settings.php:106\n" + "#: framework-customizations/theme/options/template-settings.php:131\n" + "#: framework-customizations/theme/options/template-settings.php:156\n" + "#: framework-customizations/theme/options/template-settings.php:181\n" + "#: framework-customizations/theme/options/template-settings.php:206\n" + "#: framework-customizations/theme/options/template-settings.php:248\n" + "#: framework-customizations/theme/options/template-settings.php:318\n" + "#: framework-customizations/theme/options/template-settings.php:388\n" + "#: framework-customizations/theme/options/template-settings.php:458\n" + "#: framework-customizations/theme/options/template-settings.php:522\n" + "msgid \"You can create new sidebar in\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:137\n" + "#: framework-customizations/theme/options/post-settings.php:355\n" + "#: framework-customizations/theme/options/template-settings.php:52\n" + "#: framework-customizations/theme/options/template-settings.php:81\n" + "#: framework-customizations/theme/options/template-settings.php:106\n" + "#: framework-customizations/theme/options/template-settings.php:131\n" + "#: framework-customizations/theme/options/template-settings.php:156\n" + "#: framework-customizations/theme/options/template-settings.php:181\n" + "#: framework-customizations/theme/options/template-settings.php:206\n" + "#: framework-customizations/theme/options/template-settings.php:248\n" + "#: framework-customizations/theme/options/template-settings.php:318\n" + "#: framework-customizations/theme/options/template-settings.php:388\n" + "#: framework-customizations/theme/options/template-settings.php:458\n" + "#: framework-customizations/theme/options/template-settings.php:522\n" + "msgid \"Appearance > Widgets\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:143\n" + "msgid \"Post Info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:147\n" + "msgid \"Select Post Info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:155\n" + "msgid \"Tag\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:156\n" + "msgid \"Comment Count\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:157\n" + "msgid \"View Count\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:158\n" + "msgid \"Like Count\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:162\n" + "msgid \"Select post info to show in single pages and blocks.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:176\n" + "msgid \"Show Related Articles\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:177\n" + "msgid \"Show related articles in single pages ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:194\n" + "msgid \"Filter related articles by ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:198\n" + "#: framework-customizations/theme/options/post-settings.php:533\n" + "msgid \"By Category\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:202\n" + "msgid \"By Tag\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:207\n" + "msgid \"Display Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:213\n" + "msgid \"Meta Info(Date, View, Comment,...)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:217\n" + "msgid \"Select options to show in related posts.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:222\n" + "msgid \"Enter number of columns to display related articles. Ex: 3\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:227\n" + "msgid \"Article Post Limit\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:228\n" + "msgid \"Total post of related article will be show. Ex: 6\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:233\n" + "msgid \"Article Order By\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:234\n" + "msgid \"Order the post in related article by ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:236\n" + "msgid \"ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:245\n" + "msgid \"Article Order\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:246\n" + "msgid \"Order the post in related article with ascending or descending mode ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:248\n" + "msgid \"Desc\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:249\n" + "msgid \"Asc\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:259\n" + "msgid \"Other Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:263\n" + "msgid \"Post Tags\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:264\n" + "msgid \"Show list of post tags in single pages?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:277\n" + "msgid \"Post Categories\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:278\n" + "msgid \"Show list of post categories in single pages ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:291\n" + "msgid \"Author Box\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:292\n" + "msgid \"Show author box in single pages?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:305\n" + "msgid \"Post Navigation\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:306\n" + "msgid \"Show post navigation in single pages ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:320\n" + "msgid \"Date Type\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:323\n" + "msgid \"Ribbon\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:347\n" + "msgid \"Set how to display sidebar in service single pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:354\n" + "#: framework-customizations/theme/options/posts/page.php:113\n" + "#: framework-customizations/theme/options/posts/post.php:72\n" + "#: framework-customizations/theme/options/posts/product.php:60\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:60\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:60\n" + "#: framework-customizations/theme/options/posts/slz-service.php:60\n" + "#: framework-customizations/theme/options/posts/slz-team.php:60\n" + "#: framework-customizations/theme/options/taxonomies/category.php:57\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:54\n" + "#: framework-customizations/theme/options/template-settings.php:51\n" + "#: framework-customizations/theme/options/template-settings.php:80\n" + "#: framework-customizations/theme/options/template-settings.php:105\n" + "#: framework-customizations/theme/options/template-settings.php:130\n" + "#: framework-customizations/theme/options/template-settings.php:155\n" + "#: framework-customizations/theme/options/template-settings.php:180\n" + "#: framework-customizations/theme/options/template-settings.php:205\n" + "#: framework-customizations/theme/options/template-settings.php:247\n" + "#: framework-customizations/theme/options/template-settings.php:317\n" + "#: framework-customizations/theme/options/template-settings.php:387\n" + "#: framework-customizations/theme/options/template-settings.php:457\n" + "#: framework-customizations/theme/options/template-settings.php:521\n" + "msgid \"Choose Sidebar\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:364\n" + "msgid \"Select default event label background color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:370\n" + "msgid \"Label Text Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:371\n" + "msgid \"Select default event label text color.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:388\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:91\n" + "#: framework-customizations/theme/options/template-settings.php:561\n" + "msgid \"Footer Top Other Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:389\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:92\n" + "#: framework-customizations/theme/options/template-settings.php:562\n" + "msgid \"Choose to display footer top other content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:401\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:104\n" + "#: framework-customizations/theme/options/template-settings.php:574\n" + "msgid \"Custom Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:402\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:105\n" + "#: framework-customizations/theme/options/template-settings.php:575\n" + "msgid \"Enter footer top other content.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:425\n" + "msgid \"Related Products\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:434\n" + "msgid \"Show Related Products\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:435\n" + "msgid \"Show related products in product pages ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:453\n" + "msgid \"Total posts of related posts will be show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:459\n" + "#: framework-customizations/theme/options/post-settings.php:550\n" + "msgid \"Enter number of columns to show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:476\n" + "msgid \"Portfolio Info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:480\n" + "msgid \"Review Rating\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:481\n" + "msgid \"Show review rating in portfolio blocks?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:497\n" + "msgid \"Related Posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:506\n" + "msgid \"Show Related Posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:507\n" + "msgid \"Show related posts in portfolio single pages ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:523\n" + "msgid \"Related Box Title\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:524\n" + "msgid \"Enter title for related box in portfolio single pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:529\n" + "msgid \"Filter related posts by ?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:537\n" + "msgid \"By Author\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/post-settings.php:544\n" + "msgid \"Total posts of related post will be show.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:16\n" + "#: framework-customizations/theme/options/posts/post.php:4\n" + "#: framework-customizations/theme/options/posts/product.php:5\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:5\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:5\n" + "#: framework-customizations/theme/options/posts/slz-service.php:5\n" + "#: framework-customizations/theme/options/posts/slz-team.php:5\n" + "#: framework-customizations/theme/options/taxonomies/category.php:20\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:18\n" + "msgid \"-- Default --\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:86\n" + "msgid \"Set how to display page sidebar.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:114\n" + "#: framework-customizations/theme/options/posts/post.php:73\n" + "#: framework-customizations/theme/options/posts/product.php:61\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:61\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:61\n" + "#: framework-customizations/theme/options/posts/slz-service.php:61\n" + "#: framework-customizations/theme/options/posts/slz-team.php:61\n" + "#: framework-customizations/theme/options/taxonomies/category.php:58\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:55\n" + "msgid \"Widgets\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:120\n" + "msgid \"Select background color for this page\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:128\n" + "msgid \"Upload background image for this page.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:139\n" + "#: framework-customizations/theme/options/typography.php:28\n" + "msgid \"Custom Colors\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:156\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:67\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:67\n" + "#: framework-customizations/theme/options/posts/slz-service.php:67\n" + "#: framework-customizations/theme/options/posts/slz-team.php:67\n" + "msgid \"Content Padding Top\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:157\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:68\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:68\n" + "#: framework-customizations/theme/options/posts/slz-service.php:68\n" + "#: framework-customizations/theme/options/posts/slz-team.php:68\n" + "msgid \"Custom padding top for content (px).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:162\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:73\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:73\n" + "#: framework-customizations/theme/options/posts/slz-service.php:73\n" + "#: framework-customizations/theme/options/posts/slz-team.php:73\n" + "msgid \"Content Padding Bottom\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:163\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:74\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:74\n" + "#: framework-customizations/theme/options/posts/slz-service.php:74\n" + "#: framework-customizations/theme/options/posts/slz-team.php:74\n" + "msgid \"Custom padding bottom for content (px).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:169\n" + "msgid \"You can add revolution slider in header.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/page.php:230\n" + "msgid \" Page Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:30\n" + "msgid \" Post Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:37\n" + "msgid \"Post Template\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:45\n" + "#: framework-customizations/theme/options/taxonomies/category.php:31\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:28\n" + "#: framework-customizations/theme/options/template-settings.php:44\n" + "#: framework-customizations/theme/options/template-settings.php:73\n" + "#: framework-customizations/theme/options/template-settings.php:98\n" + "#: framework-customizations/theme/options/template-settings.php:123\n" + "#: framework-customizations/theme/options/template-settings.php:148\n" + "#: framework-customizations/theme/options/template-settings.php:173\n" + "#: framework-customizations/theme/options/template-settings.php:198\n" + "msgid \"Set how to display blog sidebar.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:81\n" + "msgid \"Feature Video\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:90\n" + "msgid \"Video Thumbnail\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:91\n" + "msgid \"Create thumbnail from video and using it as featured image?.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:101\n" + "msgid \"Type of Video\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:136\n" + "msgid \"Feature Audio\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:145\n" + "msgid \"Audio Link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:146\n" + "msgid \"Input full link of audio.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:153\n" + "msgid \"Feature Gallery\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:163\n" + "msgid \"Choose Images to upload\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:171\n" + "msgid \"Feature Quote\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:180\n" + "msgid \"Quote Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/post.php:181\n" + "msgid \"Input quote content. Accept some htmls as div, p, cite, ...\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/product.php:25\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:25\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:25\n" + "#: framework-customizations/theme/options/posts/slz-service.php:25\n" + "#: framework-customizations/theme/options/posts/slz-team.php:25\n" + "msgid \"Page Options\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/product.php:33\n" + "#: framework-customizations/theme/options/posts/slz-portfolio.php:33\n" + "msgid \"Set how to display portfolio sidebar.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/posts/slz-faq.php:33\n" + "#: framework-customizations/theme/options/posts/slz-service.php:33\n" + "#: framework-customizations/theme/options/posts/slz-team.php:33\n" + "msgid \"Set how to display team sidebar.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:31\n" + "msgid \"Rejected Page Types\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:32\n" + "msgid \"\"\n" + "\"Do not cache the following page types. See the Conditional Tags \"\n" + "\"documentation for a complete discussion on each type.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:34\n" + "msgid \"Single Posts (is_single)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:35\n" + "msgid \"Pages (is_page)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:36\n" + "msgid \"Front Page (is_front_page)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:37\n" + "msgid \"Home (is_home)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:38\n" + "msgid \"Archives (is_archive)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:39\n" + "msgid \"Tags (is_tag)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:40\n" + "msgid \"Category (is_category)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:41\n" + "msgid \"Feeds (is_feed)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:42\n" + "msgid \"Search Pages (is_search)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:43\n" + "msgid \"Author Pages (is_author)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:47\n" + "msgid \"Rejected Post ID\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:50\n" + "msgid \"\"\n" + "\"Enter here the post IDs separated by commas (ex: 10,23,50) to disable cache \"\n" + "\"in this page.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:55\n" + "msgid \"Rejected User Roles\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:56\n" + "msgid \"Select user roles that should not receive cached pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:58\n" + "msgid \"Administrator\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:59\n" + "msgid \"Editor\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:61\n" + "msgid \"Contributor\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:62\n" + "msgid \"Subscriber)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:66\n" + "msgid \"Rejected User Agents\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:69\n" + "msgid \"Never send cache pages for these user agents.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:76\n" + "msgid \"Rejected User Cookies\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:79\n" + "msgid \"Never cache pages that use the specified cookies.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:86\n" + "msgid \"Accepted Query Strings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:89\n" + "msgid \"Always cache URLs with these query strings.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:106\n" + "msgid \"Rejected WooCommerce Pages\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:107\n" + "msgid \"Do not cache the above pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:113\n" + "msgid \"My Account\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:114\n" + "msgid \"Cart\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:116\n" + "msgid \"Shop\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:125\n" + "msgid \"Optimize Performance\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:129\n" + "msgid \"Minify Resource\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:133\n" + "#: framework-customizations/theme/options/speed-optimize.php:216\n" + "#: framework-customizations/theme/options/speed-optimize.php:281\n" + "msgid \"General Configuration\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:139\n" + "msgid \"JavaScript Minification\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:140\n" + "msgid \"Enable / Disable javaScript minification\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:153\n" + "msgid \"Stylesheet Minification\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:154\n" + "msgid \"Enable / Disable stylesheet minification\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:166\n" + "#: framework-customizations/theme/options/speed-optimize.php:167\n" + "msgid \"Delete Minify Files\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:168\n" + "msgid \"\"\n" + "\"Minify files are stored on your server as .js and .css files. If you need to \"\n" + "\"delete them, use the button below.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:173\n" + "msgid \"Advanced Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:178\n" + "#: framework-customizations/theme/options/speed-optimize.php:348\n" + "msgid \"Cache Time\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:179\n" + "msgid \"Cache Time (seconds)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:185\n" + "#: framework-customizations/theme/options/speed-optimize.php:186\n" + "msgid \"JavaScript Placement\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:188\n" + "msgid \"Both header and footer\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:189\n" + "msgid \"All in header\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:190\n" + "msgid \"All in footer\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:196\n" + "msgid \"Using Async Tag\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:197\n" + "msgid \"Using async tag in javascript tag\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:212\n" + "msgid \"Browser Cache\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:222\n" + "msgid \"Gzip Compression\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:223\n" + "msgid \"Enable / Disable gzip compression\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:241\n" + "msgid \"Leverage Browser Caching\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:257\n" + "msgid \"HTML Expire Time\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:262\n" + "msgid \"CSS JS Expire Time\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:267\n" + "msgid \"Other Expire Time\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:277\n" + "msgid \"Page Cache\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:289\n" + "msgid \"Page Cache Status\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:290\n" + "msgid \"Enable / Disable page cache\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:303\n" + "msgid \"Delete Cached Pages\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:304\n" + "msgid \"\"\n" + "\"Cached pages are stored on your server as html and PHP files. If you need to \"\n" + "\"delete them, use the button below.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:307\n" + "msgid \"Compress Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:310\n" + "msgid \"\"\n" + "\"Compress pages so they are served more quickly to visitors (Recommended).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:311\n" + "msgid \"\"\n" + "\"Compression is disabled by default because some hosts have problems with \"\n" + "\"compressed files. Switching it on and off clears the cache.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:315\n" + "msgid \"Cache Content\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:318\n" + "msgid \"\"\n" + "\"Unauthenticated users may view a cached version of the last authenticated \"\n" + "\"users view of a given page. Disabling this option is not recommended.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:319\n" + "msgid \"Do not cache pages for logged in users\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:331\n" + "msgid \"Cache Preload\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:332\n" + "msgid \"Automatically prime the page cache.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:349\n" + "msgid \"\"\n" + "\"How long should cached pages remain fresh? Set to 0 to disable garbage \"\n" + "\"collection. A good starting point is 3600 seconds.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:355\n" + "msgid \"Scheduler Clear Cache\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:356\n" + "msgid \"\"\n" + "\"Check for stale cached files at this time (UTC) or starting at this time \"\n" + "\"every interval below.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:367\n" + "msgid \"Scheduler Clear Cache Interval\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:376\n" + "msgid \"Cache Update Configuration\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:380\n" + "msgid \"When Update Post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:383\n" + "msgid \"Auto update when edit, delete, publish, trash post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:390\n" + "msgid \"Update edited posts\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:391\n" + "msgid \"Update front page and posts page\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:392\n" + "msgid \"Update category page\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:396\n" + "msgid \"When Post Comment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:399\n" + "msgid \"Auto refresh cache when post, edit, approve user comment.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:403\n" + "msgid \"When Switch Theme\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:406\n" + "msgid \"Auto refresh all cache. Include all cache content you selected\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:410\n" + "msgid \"When Update Nav Menu\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:413\n" + "msgid \"Auto clear all cache. Where used this nav menu\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:417\n" + "msgid \"When Update User Profile\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:420\n" + "msgid \"Update cache when user update profile.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:422\n" + "msgid \"Update page author\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:423\n" + "msgid \"Update posts belong to this user\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/speed-optimize.php:429\n" + "msgid \"Reject Cache Configuration\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/taxonomies/cat_course.php:9\n" + "msgid \"Choose if this category is feature category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/taxonomies/cat_course.php:10\n" + "#: includes/hooks.php:432\n" + "msgid \"Is Feature?\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/taxonomies/cat_course.php:16\n" + "#: framework-customizations/theme/options/taxonomies/slz-faq-cat.php:24\n" + "msgid \"Choose a icon for FAQ category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/taxonomies/cat_course.php:20\n" + "#: includes/hooks.php:440\n" + "msgid \"Attach Image\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/taxonomies/cat_course.php:21\n" + "msgid \"Upload image for category.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/taxonomies/category.php:24\n" + "#: framework-customizations/theme/options/template-settings.php:66\n" + "#: framework-customizations/theme/options/template-settings.php:91\n" + "#: framework-customizations/theme/options/template-settings.php:116\n" + "#: framework-customizations/theme/options/template-settings.php:141\n" + "#: framework-customizations/theme/options/template-settings.php:166\n" + "#: framework-customizations/theme/options/template-settings.php:191\n" + "msgid \"Article Style\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:39\n" + "msgid \"Page Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:62\n" + "msgid \"Blog Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:87\n" + "msgid \"Search Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:112\n" + "msgid \"Author Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:137\n" + "msgid \"Category Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:162\n" + "msgid \"Archive Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:187\n" + "msgid \"Tag Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:235\n" + "msgid \"Portfolio Archive\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:240\n" + "msgid \"Set how to display sidebar in portfolio archive pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:270\n" + "#: framework-customizations/theme/options/template-settings.php:340\n" + "#: framework-customizations/theme/options/template-settings.php:410\n" + "#: framework-customizations/theme/options/template-settings.php:480\n" + "#: framework-customizations/theme/options/template-settings.php:544\n" + "msgid \"Add custom title for archive\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:277\n" + "#: framework-customizations/theme/options/template-settings.php:347\n" + "#: framework-customizations/theme/options/template-settings.php:417\n" + "#: framework-customizations/theme/options/template-settings.php:487\n" + "#: framework-customizations/theme/options/template-settings.php:551\n" + "msgid \"Post Per Page\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:278\n" + "#: framework-customizations/theme/options/template-settings.php:348\n" + "#: framework-customizations/theme/options/template-settings.php:418\n" + "#: framework-customizations/theme/options/template-settings.php:488\n" + "#: framework-customizations/theme/options/template-settings.php:552\n" + "msgid \"Add limit posts per page. Set -1 or empty to show all.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:283\n" + "msgid \"Enter number of columns to display list of portfolio.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:305\n" + "msgid \"Team Archive\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:310\n" + "msgid \"Set how to display sidebar in team archive pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:353\n" + "msgid \"Enter number of columns to display list of teams.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:371\n" + "msgid \"Services\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:375\n" + "msgid \"Service Archive\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:380\n" + "msgid \"Set how to display sidebar in service archive pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:423\n" + "msgid \"Enter number of columns to display list of services.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:445\n" + "msgid \"Events Archive\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:450\n" + "msgid \"Set how to display sidebar in event archive pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:509\n" + "msgid \"FAQ Archive\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:514\n" + "msgid \"Set how to display sidebar in FAQ archive pages.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/template-settings.php:594\n" + "msgid \"Template Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:12\n" + "#: setup/class-educhain-setup.php:1083\n" + "msgid \"The version of WordPress installed on your site.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:12\n" + "msgid \"\"\n" + "\"We recommend you update WordPress to the latest version. The minimum \"\n" + "\"required version for this theme is:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:12\n" + "msgid \"Do that right now\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:16\n" + "msgid \"The version of WordPress installed on your site\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:30\n" + "msgid \"\"\n" + "\"Displays whether or not WordPress is in Debug Mode. This mode is used by \"\n" + "\"developers to test the theme. We recommend you turn it off for an optimal \"\n" + "\"user experience on your website.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:30\n" + "#: framework-customizations/theme/options/theme-requirements.php:42\n" + "#: framework-customizations/theme/options/theme-requirements.php:67\n" + "#: framework-customizations/theme/options/theme-requirements.php:79\n" + "#: framework-customizations/theme/options/theme-requirements.php:89\n" + "#: framework-customizations/theme/options/theme-requirements.php:126\n" + "#: setup/class-educhain-setup.php:1097\n" + "msgid \"Learn how to do it\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:34\n" + "msgid \"Displays whether or not WordPress is in Debug Mode\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:42\n" + "#: setup/class-educhain-setup.php:1101\n" + "msgid \"The maximum amount of memory (RAM) that your site can use at one time.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:42\n" + "msgid \"\"\n" + "\"We recommend setting memory to at least <strong>256MB</strong>. Please \"\n" + "\"define memory limit in <strong>wp-config.php</strong> file.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:45\n" + "msgid \"The maximum amount of memory (RAM) that your site can use at one time\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:52\n" + "#: setup/class-educhain-setup.php:1114\n" + "msgid \"The version of PHP installed on your hosting server.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:52\n" + "msgid \"\"\n" + "\"We recommend you update PHP to the latest version. The minimum required \"\n" + "\"version for this theme is:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:52\n" + "#: framework-customizations/theme/options/theme-requirements.php:115\n" + "#: framework-customizations/theme/options/theme-requirements.php:245\n" + "msgid \"Contact your hosting provider, they can install it for you.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:56\n" + "msgid \"The version of PHP installed on your hosting server\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:60\n" + "msgid \"No PHP Installed\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:67\n" + "#: setup/class-educhain-setup.php:1120\n" + "msgid \"The largest file size that can be contained in one post.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:67\n" + "msgid \"We recommend setting the post maximum size to at least:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:71\n" + "msgid \"The largest file size that can be contained in one post\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:79\n" + "msgid \"\"\n" + "\"The amount of time (in seconds) that your site will spend on a single \"\n" + "\"operation before timing out (to avoid server lockups).\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:79\n" + "msgid \"We recommend setting the maximum execution time to at least\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:81\n" + "#: setup/class-educhain-setup.php:1126\n" + "msgid \"\"\n" + "\"The amount of time (in seconds) that your site will spend on a single \"\n" + "\"operation before timing out (to avoid server lockups)\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:89\n" + "#: framework-customizations/theme/options/theme-requirements.php:92\n" + "#: setup/class-educhain-setup.php:1132\n" + "msgid \"\"\n" + "\"The maximum number of variables your server can use for a single function to \"\n" + "\"avoid overloads.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:89\n" + "msgid \"Please increase the maximum input variables limit to:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:99\n" + "msgid \"\"\n" + "\"Suhosin is an advanced protection system for PHP installations and may need \"\n" + "\"to be configured to increase its data submission limits\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:103\n" + "#, php-format\n" + "msgid \"\"\n" + "\"%s - Recommended Value is: %s. <a href=\\\"%s\\\" target=\\\"_blank\\\">Increasing \"\n" + "\"max input vars limit.</a>\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:108\n" + "#: setup/class-educhain-setup.php:1138\n" + "msgid \"Suhosin is an advanced protection system for PHP installations.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:115\n" + "#: setup/class-educhain-setup.php:1150\n" + "msgid \"The version of MySQL installed on your hosting server.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:115\n" + "msgid \"\"\n" + "\"We recommend you update MySQL to the latest version. The minimum required \"\n" + "\"version for this theme is:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:119\n" + "msgid \"The version of MySQL installed on your hosting server\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:126\n" + "#: setup/class-educhain-setup.php:1156\n" + "msgid \"\"\n" + "\"The largest file size that can be uploaded to your WordPress installation.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:126\n" + "msgid \"We recommend setting the maximum upload file size to at least:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:136\n" + "msgid \"\"\n" + "\"Payment gateways can use cURL to communicate with remote servers to \"\n" + "\"authorize payments, other plugins may also use it when communicating with \"\n" + "\"remote services\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:140\n" + "msgid \"\"\n" + "\"Payment gateways can use cURL to communicate with remote servers to \"\n" + "\"authorize payments, other plugins may also use it when communicating with \"\n" + "\"remote services. Your server does not have <strong>fsockopen</strong> or \"\n" + "\"<strong>cURL</strong> enabled thus PayPal IPN and other scripts which \"\n" + "\"communicate with other servers will not work. Contact your hosting provider, \"\n" + "\"they can install it for you.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:145\n" + "msgid \"Requirements\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:149\n" + "#: setup/class-educhain-setup.php:1070\n" + "msgid \"WordPress Environment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:154\n" + "#: setup/class-educhain-setup.php:1072\n" + "msgid \"Home URL\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:155\n" + "msgid \"The URL of your site's homepage\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:161\n" + "#: setup/class-educhain-setup.php:1077\n" + "msgid \"Site URL\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:162\n" + "msgid \"The root URL of your site\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:168\n" + "#: setup/class-educhain-setup.php:1082\n" + "msgid \"WP Version\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:175\n" + "#: setup/class-educhain-setup.php:1088\n" + "msgid \"WP Multisite\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:177\n" + "msgid \"Whether or not you have WordPress Multisite enabled\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:182\n" + "#: setup/class-educhain-setup.php:1094\n" + "msgid \"WP Debug Mode\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:189\n" + "#: setup/class-educhain-setup.php:1100\n" + "msgid \"WP Memory Limit\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:197\n" + "#: setup/class-educhain-setup.php:1106\n" + "msgid \"Server Environment\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:202\n" + "#: setup/class-educhain-setup.php:1108\n" + "msgid \"Server Info\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:203\n" + "#: setup/class-educhain-setup.php:1109\n" + "msgid \"Information about the web server that is currently hosting your site\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:209\n" + "#: setup/class-educhain-setup.php:1113\n" + "msgid \"PHP Version\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:216\n" + "#: setup/class-educhain-setup.php:1119\n" + "msgid \"PHP Post Max Size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:223\n" + "#: setup/class-educhain-setup.php:1125\n" + "msgid \"PHP Time Limit\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:230\n" + "#: setup/class-educhain-setup.php:1131\n" + "msgid \"PHP Max Input Vars\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:237\n" + "#: setup/class-educhain-setup.php:1137\n" + "msgid \"SUHOSIN Installed\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:244\n" + "msgid \"ZipArchive\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:245\n" + "msgid \"\"\n" + "\"ZipArchive is required for importing demos. They are used to import and \"\n" + "\"export zip files specifically for sliders\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:245\n" + "msgid \"\"\n" + "\"ZipArchive is required for importing demos. They are used to import and \"\n" + "\"export zip files specifically for sliders.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:251\n" + "#: setup/class-educhain-setup.php:1149\n" + "msgid \"MySQL Version\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:258\n" + "#: setup/class-educhain-setup.php:1155\n" + "msgid \"Max Upload Size\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:265\n" + "#: setup/class-educhain-setup.php:1161\n" + "msgid \"fsockopen/cURL\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:274\n" + "#: setup/steps/check-requirement.php:35\n" + "msgid \"Meets minimum requirements\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/theme-requirements.php:274\n" + "#: setup/steps/check-requirement.php:39\n" + "msgid \"We have some improvements to suggest\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:17\n" + "msgid \"Styling Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:46\n" + "msgid \"Link Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:57\n" + "msgid \"Custom Link Colors\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:71\n" + "msgid \"Regular Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:74\n" + "msgid \"Select a color for link\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:77\n" + "msgid \"Hover Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:78\n" + "msgid \"Select a color for link hover\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:83\n" + "msgid \"Active Color\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:84\n" + "msgid \"Select a color for link active\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:94\n" + "msgid \"Typography\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:116\n" + "msgid \"Body Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:117\n" + "msgid \"Paragraph\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:118\n" + "msgid \"H1 Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:119\n" + "msgid \"H2 Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:120\n" + "msgid \"H3 Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:121\n" + "msgid \"H4 Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:122\n" + "msgid \"H5 Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:123\n" + "msgid \"H6 Text\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:154\n" + "msgid \"Typography Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/options/typography.php:159\n" + "msgid \"Styling / Typography\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:7\n" + "msgid \"Welcome to\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:11\n" + "msgid \"Please kindly DO NOT update Unyson Plugin separately!\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:12\n" + "msgid \"\"\n" + "\"We had customized its coding structure and create it a our own unique \"\n" + "\"technique, if you update it, it will turn your site into \\\"Forbidden\\\" state \"\n" + "\"and let your site DOWN.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:19\n" + "msgid \"Plugins\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:24\n" + "msgid \"Changes Log\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:29\n" + "msgid \"Extension Manager\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:34\n" + "msgid \"Theme Settings\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:40\n" + "msgid \"Backup Data\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome-header.php:47\n" + "msgid \"Demo Install\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:28\n" + "msgid \"\"\n" + "\"These are the plugins we include with EduChain. Currently Solazu Unyson is \"\n" + "\"the only required plugin that is needed to use EduChain. You can activate, \"\n" + "\"deactivate or update the plugins from this tab.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:52\n" + "#: framework-customizations/theme/views/welcome.php:104\n" + "msgid \"Active:\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:65\n" + "msgid \"Update Available: Version\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:70\n" + "#: framework-customizations/theme/views/welcome.php:122\n" + "#, php-format\n" + "msgid \"Version %s | %s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:75\n" + "#: includes/class-tgm-plugin-activation.php:2362\n" + "#: setup/steps/import-theme-setting.php:90\n" + "msgid \"Required\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:81\n" + "#: setup/steps/active-plugin.php:113\n" + "msgid \"Recommend Plugins\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:82\n" + "msgid \"\"\n" + "\"These are the plugins we tested with EduChain and they are compatible with \"\n" + "\"together. If you want to use these plugins, you can activate, deactivate or \"\n" + "\"update them in this tab.\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:117\n" + "#, php-format\n" + "msgid \"Update Available: Version %s\"\n" + "msgstr \"\"\n\n" + "#: framework-customizations/theme/views/welcome.php:126\n" + "msgid \"Recommend\"\n" + "msgstr \"\"\n\n" + "#: includes/class-breadcrumb.php:98 includes/helpers.php:659\n" + "#: includes/helpers.php:1705\n" + "msgid \"Error 404\"\n" + "msgstr \"\"\n\n" + "#: includes/class-breadcrumb.php:205\n" + "msgid \"Posts tagged\"\n" + "msgstr \"\"\n\n" + "#: includes/class-breadcrumb.php:275\n" + "msgid \"Search results for\"\n" + "msgstr \"\"\n\n" + "#: includes/class-breadcrumb.php:284\n" + "msgid \"Page\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:28\n" + "msgid \"Drop Cap\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:32\n" + "msgid \"Regular\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:39\n" + "msgid \"Italic\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:46\n" + "msgid \"Bold\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:54\n" + "msgid \"Blockquote\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:58\n" + "msgid \"US - Florida\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:64\n" + "msgid \"US - California\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:71\n" + "msgid \"US - Georgia\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:78\n" + "msgid \"US - New York\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:86\n" + "msgid \"Bulleted List\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:90\n" + "msgid \"1 Column\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:96\n" + "msgid \"2 Columns\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:102\n" + "msgid \"3 Columns\"\n" + "msgstr \"\"\n\n" + "#: includes/class-editor-format.php:108\n" + "msgid \"4 Columns\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:334 includes/hooks.php:121\n" + "msgid \"Install Required Plugins\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:335 includes/hooks.php:122\n" + "msgid \"Install Plugins\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:337 includes/hooks.php:123\n" + "#, php-format\n" + "msgid \"Installing Plugin: %s\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:339\n" + "#, php-format\n" + "msgid \"Updating Plugin: %s\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:340 includes/hooks.php:124\n" + "msgid \"Something went wrong with the plugin API.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:343\n" + "#, php-format\n" + "msgid \"This theme requires the following plugin: %1$s.\"\n" + "msgid_plural \"This theme requires the following plugins: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:349\n" + "#, php-format\n" + "msgid \"This theme recommends the following plugin: %1$s.\"\n" + "msgid_plural \"This theme recommends the following plugins: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:355 includes/hooks.php:131\n" + "#, php-format\n" + "msgid \"\"\n" + "\"The following plugin needs to be updated to its latest version to ensure \"\n" + "\"maximum compatibility with this theme: %1$s.\"\n" + "msgid_plural \"\"\n" + "\"The following plugins need to be updated to their latest version to ensure \"\n" + "\"maximum compatibility with this theme: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:361\n" + "#, php-format\n" + "msgid \"There is an update available for: %1$s.\"\n" + "msgid_plural \"There are updates available for the following plugins: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:367 includes/hooks.php:128\n" + "#, php-format\n" + "msgid \"The following required plugin is currently inactive: %1$s.\"\n" + "msgid_plural \"The following required plugins are currently inactive: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:373 includes/hooks.php:129\n" + "#, php-format\n" + "msgid \"The following recommended plugin is currently inactive: %1$s.\"\n" + "msgid_plural \"The following recommended plugins are currently inactive: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:378 includes/hooks.php:133\n" + "msgid \"Begin installing plugin\"\n" + "msgid_plural \"Begin installing plugins\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:383\n" + "msgid \"Begin updating plugin\"\n" + "msgid_plural \"Begin updating plugins\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:388\n" + "msgid \"Begin activating plugin\"\n" + "msgid_plural \"Begin activating plugins\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:392 includes/hooks.php:135\n" + "msgid \"Return to Required Plugins Installer\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:393\n" + "#: includes/class-tgm-plugin-activation.php:912\n" + "#: includes/class-tgm-plugin-activation.php:2622\n" + "#: includes/class-tgm-plugin-activation.php:3677\n" + "msgid \"Return to the Dashboard\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:394\n" + "#: includes/class-tgm-plugin-activation.php:3253 includes/hooks.php:136\n" + "msgid \"Plugin activated successfully.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:395\n" + "#: includes/class-tgm-plugin-activation.php:3046\n" + "msgid \"The following plugin was activated successfully:\"\n" + "msgid_plural \"The following plugins were activated successfully:\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:397\n" + "#, php-format\n" + "msgid \"No action taken. Plugin %1$s was already active.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:399\n" + "#, php-format\n" + "msgid \"\"\n" + "\"Plugin not activated. A higher version of %s is needed for this theme. \"\n" + "\"Please update the plugin.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:401\n" + "#, php-format\n" + "msgid \"All plugins installed and activated successfully. %1$s\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:402\n" + "msgid \"Dismiss this notice\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:403\n" + "msgid \"\"\n" + "\"There are one or more required or recommended plugins to install, update or \"\n" + "\"activate.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:404\n" + "msgid \"Please contact the administrator of this site for help.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:608\n" + "msgid \"Update Required\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:1023\n" + "msgid \"\"\n" + "\"The remote plugin package does not contain a folder with the desired slug \"\n" + "\"and renaming did not work.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:1023\n" + "#: includes/class-tgm-plugin-activation.php:1026\n" + "msgid \"\"\n" + "\"Please contact the plugin provider and ask them to package their plugin \"\n" + "\"according to the WordPress guidelines.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:1026\n" + "msgid \"\"\n" + "\"The remote plugin package consists of more than one file, but the files are \"\n" + "\"not packaged in a folder.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:1210\n" + "#: includes/class-tgm-plugin-activation.php:3042\n" + "msgid \"and\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2071\n" + "#, php-format\n" + "msgid \"TGMPA v%s\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2365\n" + "#: setup/steps/import-theme-setting.php:90\n" + "msgid \"Recommended\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2381\n" + "msgid \"WordPress Repository\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2384\n" + "msgid \"External Source\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2387\n" + "msgid \"Pre-Packaged\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2404\n" + "#: setup/steps/active-plugin.php:89 setup/steps/active-plugin.php:127\n" + "#: setup/steps/import-theme-setting.php:85\n" + "msgid \"Not Installed\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2408\n" + "msgid \"Installed But Not Activated\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2410\n" + "msgid \"Active\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2416\n" + "msgid \"Required Update not Available\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2419\n" + "msgid \"Requires Update\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2422\n" + "msgid \"Update recommended\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2477\n" + "#, php-format\n" + "msgid \"All <span class=\\\"count\\\">(%s)</span>\"\n" + "msgid_plural \"All <span class=\\\"count\\\">(%s)</span>\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2481\n" + "#, php-format\n" + "msgid \"To Install <span class=\\\"count\\\">(%s)</span>\"\n" + "msgid_plural \"To Install <span class=\\\"count\\\">(%s)</span>\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2485\n" + "#, php-format\n" + "msgid \"Update Available <span class=\\\"count\\\">(%s)</span>\"\n" + "msgid_plural \"Update Available <span class=\\\"count\\\">(%s)</span>\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2489\n" + "#, php-format\n" + "msgid \"To Activate <span class=\\\"count\\\">(%s)</span>\"\n" + "msgid_plural \"To Activate <span class=\\\"count\\\">(%s)</span>\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2579\n" + "msgid \"Installed version:\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2587\n" + "msgid \"Minimum required version:\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2599\n" + "msgid \"Available version:\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2622\n" + "msgid \"No plugins to install, update or activate.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2641\n" + "msgid \"Plugin\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2642\n" + "msgid \"Source\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2647\n" + "msgid \"Version\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2648\n" + "#: setup/steps/import-theme-setting.php:68\n" + "msgid \"Status\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2778\n" + "msgid \"Upgrade message from the plugin author:\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2851\n" + "msgid \"No plugins were selected to be installed. No action taken.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2853\n" + "msgid \"No plugins were selected to be updated. No action taken.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2894\n" + "msgid \"No plugins are available to be installed at this time.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:2896\n" + "msgid \"No plugins are available to be updated at this time.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3002\n" + "msgid \"No plugins were selected to be activated. No action taken.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3028\n" + "msgid \"No plugins are available to be activated at this time.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3252\n" + "msgid \"Plugin activation failed.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3592\n" + "#, php-format\n" + "msgid \"Updating Plugin %1$s (%2$d/%3$d)\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3595\n" + "#, php-format\n" + "msgid \"An error occurred while installing %1$s: <strong>%2$s</strong>.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3597\n" + "#, php-format\n" + "msgid \"The installation of %1$s failed.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3601\n" + "msgid \"\"\n" + "\"The installation and activation process is starting. This process may take a \"\n" + "\"while on some hosts, so please be patient.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3603\n" + "#, php-format\n" + "msgid \"%1$s installed and activated successfully.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3603\n" + "#: includes/class-tgm-plugin-activation.php:3611\n" + "msgid \"Show Details\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3603\n" + "#: includes/class-tgm-plugin-activation.php:3611\n" + "msgid \"Hide Details\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3604\n" + "msgid \"All installations and activations have been completed.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3606\n" + "#, php-format\n" + "msgid \"Installing and Activating Plugin %1$s (%2$d/%3$d)\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3609\n" + "msgid \"\"\n" + "\"The installation process is starting. This process may take a while on some \"\n" + "\"hosts, so please be patient.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3611\n" + "#, php-format\n" + "msgid \"%1$s installed successfully.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3612\n" + "msgid \"All installations have been completed.\"\n" + "msgstr \"\"\n\n" + "#: includes/class-tgm-plugin-activation.php:3614\n" + "#, php-format\n" + "msgid \"Installing Plugin %1$s (%2$d/%3$d)\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:262 includes/helpers.php:281\n" + "msgid \" \"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:269\n" + "msgid \"Tags:\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:458\n" + "msgid \"Helpful Links\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:508 includes/helpers.php:511 includes/helpers.php:1603\n" + "#: includes/helpers.php:1608\n" + "msgid \"Home\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:628 includes/helpers.php:1702\n" + "msgid \"Search results\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:631 includes/helpers.php:1710\n" + "msgid \"F Y\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:633 includes/helpers.php:1714\n" + "msgid \"F j, Y\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:642 includes/helpers.php:1815\n" + "#, php-format\n" + "msgid \"Category: %s\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:811\n" + "msgid \"Please enter your name.\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:812\n" + "msgid \"Name \"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:824\n" + "msgid \"Please enter your email address.\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:825\n" + "msgid \"Please enter a valid email address.\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:827\n" + "msgid \"Email \"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:836\n" + "msgid \"Please enter comment.\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:837\n" + "msgid \"Your Comment \"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:846\n" + "msgid \"Website \"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:850\n" + "msgid \"Cancel\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:858\n" + "msgid \"Post Comment \"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:861\n" + "msgid \"Leave your comment\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:876\n" + "msgid \"Oops! Page Not Found!\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:877\n" + "msgid \"\"\n" + "\"Sorry, we could not find the page you are looking for. Please click below \"\n" + "\"button to back to the Home page.\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:878\n" + "msgid \"Back To Home\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:880\n" + "msgid \"404\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:1011\n" + "msgid \"User Avatar\"\n" + "msgstr \"\"\n\n" + "#: includes/helpers.php:1332\n" + "msgid \"Import Data For Course Setting\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:60\n" + "msgid \"Custom Widget Area\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:62\n" + "msgid \"Appears on sidebar of posts and pages\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:125\n" + "#, php-format\n" + "msgid \"This theme requires the following plugin installed or update: %1$s.\"\n" + "msgid_plural \"\"\n" + "\"This theme requires the following plugins installed or updated: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/hooks.php:126\n" + "#, php-format\n" + "msgid \"This theme recommends the following plugin installed or updated: %1$s.\"\n" + "msgid_plural \"\"\n" + "\"This theme recommends the following plugins installed or updated: %1$s.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/hooks.php:127\n" + "#, php-format\n" + "msgid \"\"\n" + "\"Sorry, but you do not have the correct permissions to install the %s plugin. \"\n" + "\"Contact the administrator of this site for help on getting the plugin \"\n" + "\"installed.\"\n" + "msgid_plural \"\"\n" + "\"Sorry, but you do not have the correct permissions to install the %s \"\n" + "\"plugins. Contact the administrator of this site for help on getting the \"\n" + "\"plugins installed.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/hooks.php:130\n" + "#, php-format\n" + "msgid \"\"\n" + "\"Sorry, but you do not have the correct permissions to activate the %s \"\n" + "\"plugin. Contact the administrator of this site for help on getting the \"\n" + "\"plugin activated.\"\n" + "msgid_plural \"\"\n" + "\"Sorry, but you do not have the correct permissions to activate the %s \"\n" + "\"plugins. Contact the administrator of this site for help on getting the \"\n" + "\"plugins activated.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/hooks.php:132\n" + "#, php-format\n" + "msgid \"\"\n" + "\"Sorry, but you do not have the correct permissions to update the %s plugin. \"\n" + "\"Contact the administrator of this site for help on getting the plugin \"\n" + "\"updated.\"\n" + "msgid_plural \"\"\n" + "\"Sorry, but you do not have the correct permissions to update the %s plugins. \"\n" + "\"Contact the administrator of this site for help on getting the plugins \"\n" + "\"updated.\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/hooks.php:134\n" + "msgid \"Activate installed plugin\"\n" + "msgid_plural \"Activate installed plugins\"\n" + "msgstr[0] \"\"\n" + "msgstr[1] \"\"\n\n" + "#: includes/hooks.php:137\n" + "#, php-format\n" + "msgid \"All plugins installed and activated successfully. %s\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:520\n" + "msgid \"Add Begin Gradient\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:523\n" + "msgid \"Add start point color for background gradient.\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:528\n" + "msgid \"Add End Gradient\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:531\n" + "msgid \"Add end point color for background gradient.\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:536\n" + "msgid \"Add Rotate\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:539\n" + "msgid \"Rotate background gradient (degrees).\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:544\n" + "msgid \"Add Background Image\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:546\n" + "msgid \"Background Image.\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:964\n" + "msgid \"\"\n" + "\"Sorry we could not log you in. The credentials supplied were not recognised.\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:977\n" + "msgid \"Your account is not correct !\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:997\n" + "msgid \"Email and Display name are required !\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:1005\n" + "msgid \"Captcha not found !\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:1022\n" + "msgid \"Email already exists !\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:1033\n" + "msgid \"Your account was created ! Please confirm at email \"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:1036\n" + "msgid \"Can not create User !\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:1145\n" + "msgid \"\"\n" + "\"The setup progress of EduChain theme has not yet been completed and can not \"\n" + "\"work properly.\"\n" + "msgstr \"\"\n\n" + "#: includes/hooks.php:1479 includes/hooks.php:1480\n" + "msgid \"Setup Educhain\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:10\n" + "msgid \"Top Left Menu\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:11\n" + "msgid \"Top Center Menu\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:12\n" + "msgid \"Top Right Menu\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:13\n" + "msgid \"Main Left Menu\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:14\n" + "msgid \"Main Center Menu\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:15\n" + "msgid \"Main Right Menu\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:16\n" + "msgid \"Bottom menu\"\n" + "msgstr \"\"\n\n" + "#: includes/menus.php:21\n" + "msgid \"Main menu\"\n" + "msgstr \"\"\n\n" + "#: page-templates/login-page.php:17\n" + "msgid \"Login page\"\n" + "msgstr \"\"\n\n" + "#: searchform.php:5 searchform.php:60\n" + "msgid \"Search\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:540\n" + "msgid \"Activated plugin : \"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:540\n" + "msgid \" successfully!\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:574 setup/class-educhain-setup.php:899\n" + "msgid \"Active failed!\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:578\n" + "msgid \"Install failed. Reason:\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:902\n" + "msgid \"Alreadt Activated!\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1073\n" + "msgid \"The URL of your site's homepage.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1078\n" + "msgid \"The root URL of your site.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1085\n" + "#, php-format\n" + "msgid \"Please update your wordpress to version newer than %s.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1089\n" + "msgid \"Whether or not you have WordPress Multisite enabled.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1091\n" + "msgid \"Please disable multisite mode.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1095\n" + "msgid \"Displays whether or not WordPress is in Debug Mode.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1097\n" + "msgid \"\"\n" + "\"Please disable debug mode. This mode is used by developers to test the \"\n" + "\"theme. We recommend you turn it off for an optimal user experience on your \"\n" + "\"website.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1103\n" + "#, php-format\n" + "msgid \"Please config memory limit larger than %sB.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1116\n" + "#, php-format\n" + "msgid \"Please update PHP to version newer %s.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1122\n" + "#, php-format\n" + "msgid \"Please config Post Max Size larger than %sB.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1128\n" + "#, php-format\n" + "msgid \"Please config Time Limit larger than %s.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1134\n" + "#, php-format\n" + "msgid \"Please config Max Input Vars larger than %s.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1140\n" + "msgid \"Please disable or uninstall SUHOSIN.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1143\n" + "msgid \"Zip Archive\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1144\n" + "msgid \"\"\n" + "\"Zip Archive is required for importing demos. They are used to import and \"\n" + "\"export zip files specifically for sliders.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1146\n" + "msgid \"Please enable Zip Archive.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1152\n" + "#, php-format\n" + "msgid \"Please update MySQL to version newer than %s.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1158\n" + "#, php-format\n" + "msgid \"Please config Max Upload Size larger than %sB.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1162\n" + "msgid \"\"\n" + "\"Payment gateways can use cURL to communicate with remote servers to \"\n" + "\"authorize payments, other plugins may also use it when communicating with \"\n" + "\"remote services.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1164\n" + "msgid \"Please enable fsockopen/cURL.\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1195 setup/class-educhain-setup.php:1196\n" + "msgid \"YES\"\n" + "msgstr \"\"\n\n" + "#: setup/class-educhain-setup.php:1195 setup/class-educhain-setup.php:1196\n" + "msgid \"NO\"\n" + "msgstr \"\"\n\n" + "#: setup/data-master/views/import_attachments.php:14\n" + "msgid \"Attachments Import\"\n" + "msgstr \"\"\n\n" + "#: setup/data-master/views/import_attachments.php:19\n" + "msgid \"From Server\"\n" + "msgstr \"\"\n\n" + "#: setup/data-master/views/import_attachments.php:23\n" + "#: setup/data-master/views/import_pages.php:28\n" + "msgid \"Import\"\n" + "msgstr \"\"\n\n" + "#: setup/data-master/views/import_pages.php:8\n" + "msgid \"Pages Import\"\n" + "msgstr \"\"\n\n" + "#: setup/layout.php:50 setup/steps/import-theme-setting.php:113\n" + "msgid \"Continue\"\n" + "msgstr \"\"\n\n" + "#: setup/layout.php:51 setup/steps/welcome.php:19\n" + "msgid \"Not right now\"\n" + "msgstr \"\"\n\n" + "#: setup/layout.php:60\n" + "msgid \"Loading...\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/active-plugin.php:67\n" + "msgid \"Your site will have these features\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/active-plugin.php:69\n" + "msgid \"\"\n" + "\"These are the plugins we include with this theme. Currently Solazu Unyson is \"\n" + "\"the only required plugin that is needed to use it. You can activate, \"\n" + "\"deactivate or update the plugins from this step.\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/active-plugin.php:76\n" + "msgid \"Required Plugins\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/active-plugin.php:83 setup/steps/active-plugin.php:121\n" + "#: setup/steps/import-theme-setting.php:79\n" + "msgid \"Installed\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/active-plugin.php:86 setup/steps/active-plugin.php:124\n" + "#: setup/steps/import-theme-setting.php:82\n" + "msgid \"Activated\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/check-requirement.php:32\n" + "msgid \"System check\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/check-requirement.php:33\n" + "msgid \"Please make sure all requirement are passed\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/check-requirement.php:66\n" + "msgid \"Required:\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/check-requirement.php:72\n" + "msgid \"Current:\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:19\n" + "msgid \"Levels\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:20\n" + "msgid \"Tags\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:21\n" + "msgid \"Categories\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:22\n" + "msgid \"Languages\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:23\n" + "msgid \"Instructors\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:24\n" + "msgid \"Courses\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:33\n" + "msgid \"Generate demo\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:38\n" + "msgid \"Check all\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:53\n" + "msgid \"Total items\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/generate-demo.php:53\n" + "msgid \"( Max 20 items )\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/import-theme-setting.php:45\n" + "msgid \"Theme setting completed!\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/import-theme-setting.php:46\n" + "msgid \"Almost of setting tasks have been done with activated plugins below\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/import-theme-setting.php:48\n" + "msgid \"Theme\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/import-theme-setting.php:62\n" + "msgid \"Functions / Plugins\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/import-theme-setting.php:66\n" + "msgid \"Detail\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/import-theme-setting.php:67\n" + "msgid \"Requirement\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/import-theme-setting.php:112\n" + "msgid \"Skip this step\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/welcome.php:13\n" + "msgid \"RubikThemes Setup Wizard\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/welcome.php:14\n" + "msgid \"\"\n" + "\"Welcome to the setup wizard for RubikThemes Theme. You're using RubikThemes \"\n" + "\"theme.\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/welcome.php:15\n" + "msgid \"\"\n" + "\"Thank you for choosing the RubikThemes from ThemeForest. This quick setup \"\n" + "\"wizard will help you configure your new website. This wizard will install \"\n" + "\"the required WordPress plugins, default content, logo and tell you a little \"\n" + "\"about Help &amp; Support options. It should only take 5 minutes.\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/welcome.php:16\n" + "msgid \"\"\n" + "\"No time right now? If you don't want to go through the wizard, you can skip \"\n" + "\"and return to the WordPress dashboard. Come back anytime if you change your \"\n" + "\"mind!\"\n" + "msgstr \"\"\n\n" + "#: setup/steps/welcome.php:20\n" + "msgid \"Let's Go!\"\n" + "msgstr \"\"\n"; final Pattern pattern = Pattern.compile(regex); final Matcher matcher = pattern.matcher(string); while (matcher.find()) { System.out.println("Full match: " + matcher.group(0)); for (int i = 1; i <= matcher.groupCount(); i++) { System.out.println("Group " + i + ": " + matcher.group(i)); } } } }

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 Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html